:root {
  --navy: #14243d;
  --navy-soft: #1d3152;
  --sand: #f5f1ea;
  --sand-deep: #ebe3d6;
  --white: #ffffff;
  --ink: #1b2230;
  --muted: #5f6775;
  --line: rgba(20, 36, 61, 0.12);
  --gold: #b68c52;
  --gold-soft: rgba(182, 140, 82, 0.14);
  --success: #2f6b57;
  --shadow: 0 20px 60px rgba(20, 36, 61, 0.08);
  --shadow-soft: 0 12px 30px rgba(20, 36, 61, 0.06);
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 22px;
  --max: 1180px;
  --pad: clamp(1.25rem, 2vw, 1.8rem);
  --space-xs: clamp(0.65rem, 1vw, 0.85rem);
  --space-sm: clamp(0.9rem, 1.4vw, 1.1rem);
  --space-md: clamp(1.3rem, 2vw, 1.8rem);
  --space-lg: clamp(2rem, 3.5vw, 3.2rem);
  --space-xl: clamp(3rem, 6vw, 5.6rem);
  --space-xxl: clamp(4.5rem, 8vw, 7.5rem);
  --nav-h: 78px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
p { color: var(--muted); }

.container {
  width: min(100% - 2.4rem, var(--max));
  margin: 0 auto;
}

.section { padding: var(--space-xxl) 0; }
.section--sand { background: var(--sand); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy p,
.section--navy .section-intro { color: rgba(255, 255, 255, 0.72); }

/* ── EYEBROW ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: "Playfair Display", serif;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: inherit;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.55rem); }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  max-width: 44ch;
  color: var(--muted);
}

/* ── LAYOUT ── */
.grid-2 {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.stack > * + * { margin-top: 1rem; }

/* ── BUTTONS ── */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.93rem;
  transition: 0.2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn--primary:hover { background: var(--navy-soft); }

.btn--light {
  background: var(--white);
  color: var(--navy);
  border-color: var(--line);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--white);
}
.btn--ghost:hover { background: rgba(255, 255, 255, 0.06); }

/* ── NAV ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(20, 36, 61, 0.08);
  transition: box-shadow 0.2s;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(20, 36, 61, 0.07); }

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  color: var(--navy);
  line-height: 1;
}
.brand small {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 0.67rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.14rem;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.72;
  transition: opacity 0.15s;
}
.nav-links a:hover { opacity: 1; }
.nav-cta {
  padding: 0.72rem 1.2rem !important;
  border-radius: 999px !important;
  background: var(--navy) !important;
  color: var(--white) !important;
  opacity: 1 !important;
  font-size: 0.88rem !important;
}

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  height: 100%;
}
.card h3 { color: var(--navy); margin-bottom: 0.8rem; }

/* ── LISTS ── */
.list-soft {
  list-style: none;
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}
.list-soft li {
  position: relative;
  padding-left: 1.5rem;
}
.list-soft li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

/* ── FORMS ── */
.form-shell {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.4rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.field--full { grid-column: 1 / -1; }

label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--muted);
  font-weight: 700;
}

input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.95rem 1rem;
  background: var(--white);
  color: var(--ink);
  font-size: 0.95rem;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
}
textarea { min-height: 130px; resize: vertical; }
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: rgba(20, 36, 61, 0.28);
  box-shadow: 0 0 0 4px rgba(20, 36, 61, 0.05);
}

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: var(--sand);
  border: 1px solid rgba(182, 140, 82, 0.18);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.5vw, 2rem);
}

/* ── PRICE CARD ── */
.price-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  box-shadow: var(--shadow);
}
.price-card p { color: rgba(255, 255, 255, 0.74); }
.price-label {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 700;
}
.price-value {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  margin: 0.2rem 0 0.5rem;
  line-height: 1;
}

/* ── QUOTE / BLOCK ── */
.quote-block {
  padding: clamp(1.6rem, 2.6vw, 2.1rem);
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.quote-block p {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
}

/* ── ABOUT PANELS ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.about-panel {
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

/* ── CTA BAND ── */
.cta-band {
  padding: clamp(2.2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  color: var(--white);
  box-shadow: var(--shadow);
}
.cta-band p { color: rgba(255, 255, 255, 0.76); max-width: 44ch; }

/* ── FOOTER ── */
.footer {
  padding: 2rem 0 2.6rem;
  background: #f9f6f1;
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.footer a { color: var(--muted); font-size: 0.86rem; transition: color 0.15s; }
.footer a:hover { color: var(--navy); }
.footer-copy {
  font-size: 0.82rem;
  color: rgba(20, 36, 61, 0.32);
  margin-top: 1.3rem;
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
}
.reveal.in {
  animation: revealUp 0.72s ease forwards;
}
.d1 { animation-delay: 0.08s; }
.d2 { animation-delay: 0.17s; }
.d3 { animation-delay: 0.28s; }
.d4 { animation-delay: 0.4s; }

.ha1 { opacity: 0; animation: revealUp 0.7s 0.08s forwards; }
.ha2 { opacity: 0; animation: revealUp 0.7s 0.2s forwards; }
.ha3 { opacity: 0; animation: revealUp 0.7s 0.34s forwards; }
.ha4 { opacity: 0; animation: revealUp 0.7s 0.48s forwards; }
.ha5 { opacity: 0; animation: revealUp 0.8s 0.42s forwards; }

@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 980px) {
  .grid-2,
  .about-grid,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .nav-links { display: none; }
}

@media (max-width: 720px) {
  .form-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
}
