/* Fallback styles if Next CSS chunk fails — site never looks like bare text */
:root {
  --ink: #10262c;
  --deep: #0a3a42;
  --sea: #1f6f78;
  --mist: #d7e8ea;
  --sand: #f3f7f8;
  --gold: #c9a227;
  --line: rgba(16, 38, 44, 0.12);
  --shadow: 0 24px 60px rgba(10, 58, 66, 0.18);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--sand);
  color: var(--ink);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

h1,
h2,
h3,
.brand-font {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.03em;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  background: linear-gradient(135deg, var(--deep), var(--sea));
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(10, 58, 66, 0.28);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
}

.btn-soft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.8rem 1.2rem;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.field {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  padding: 0.85rem 1rem;
  background: #fff;
  color: var(--ink);
  box-sizing: border-box;
}
