:root {
  --navy: #0b1f33;
  --navy-2: #122a42;
  --ink: #14181c;
  --muted: #5c6670;
  --cream: #f4f1ea;
  --paper: #fbfaf7;
  --teal: #0e6b6b;
  --teal-2: #148383;
  --gold: #c4a35a;
  --gold-deep: #8f7130; /* gold for use on light backgrounds (4:1+ contrast) */
  --line: #d8d2c6;
  --white: #ffffff;
  --danger: #8b3a2f;
  --serif: "Fraunces", "Times New Roman", serif;
  --sans: "Outfit", "Helvetica Neue", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  font-size: 17px;
}

img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.wrap-narrow { width: min(760px, calc(100% - 40px)); margin: 0 auto; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: #192c3f; /* solid, so content never shows through while scrolling */
  border-bottom: 1px solid rgba(196, 163, 90, 0.25);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 20px;
}
.brand {
  display: flex; align-items: baseline; gap: 10px;
  color: var(--cream); text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand-mark {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
}
.brand-sub {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links { display: flex; gap: 22px; align-items: center; }
.nav-links a {
  color: #d7ddd8;
  font-size: 0.88rem;
  text-decoration: none;
}
.nav-links a:hover { color: var(--gold); }
.nav-links .btn-gold, .nav-links .btn-gold:hover { color: var(--navy); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; border: 0; cursor: pointer;
  font-family: var(--sans); font-weight: 560;
  letter-spacing: 0.01em;
  padding: 12px 18px; border-radius: 2px;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: #d4b56a; }
.btn-teal { background: var(--teal); color: white; }
.btn-teal:hover { background: var(--teal-2); }
.btn-ghost {
  background: transparent; color: var(--cream);
  border: 1px solid rgba(244, 241, 234, 0.35);
}
.btn-ghost-dark {
  background: transparent; color: var(--navy);
  border: 1px solid var(--navy);
}
.btn-sm { padding: 9px 14px; font-size: 0.88rem; }

.menu-toggle {
  display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px; margin-right: -12px;
  background: none; border: 0; color: var(--cream);
  font-size: 1.4rem; cursor: pointer;
}

/* Hero */
.hero {
  background:
    radial-gradient(900px 420px at 85% -10%, rgba(14, 107, 107, 0.35), transparent 55%),
    linear-gradient(180deg, var(--navy) 0%, #081624 100%);
  color: var(--cream);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: auto -10% -40% 40%;
  height: 420px;
  background: radial-gradient(circle, rgba(196,163,90,0.12), transparent 60%);
  pointer-events: none;
}
.kicker {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 560;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 16ch;
}
.hero .lede {
  margin-top: 22px;
  max-width: 46ch;
  color: #c9d0cc;
  font-size: 1.12rem;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: end;
}
.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(244,241,234,0.12);
  padding: 22px;
}
.hero-grid > * { min-width: 0; }
/* Two per row when they fit; each stat drops to its own row when its word is too wide */
.stat-row { display: flex; flex-wrap: wrap; gap: 16px; }
.stat-row > div { flex: 1 1 calc(50% - 8px); }
.stat-num {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: var(--gold);
}
.stat-label { font-size: 0.8rem; color: #b7c0bb; margin-top: 4px; }

/* Sections */
section { padding: 80px 0; }
.section-head { max-width: 640px; margin-bottom: 36px; }
.section-head h2, .page-hero h1, article h1 {
  font-family: var(--serif);
  font-weight: 560;
  letter-spacing: -0.03em;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.15;
  color: var(--navy);
}
.muted { color: var(--muted); }
.band { background: var(--cream); }
.band-navy { background: var(--navy); color: var(--cream); }
.band-navy h2, .band-navy h3 { color: var(--cream); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.card {
  background: white;
  border: 1px solid var(--line);
  padding: 24px;
}
.card h2, .card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin: 8px 0 10px;
  color: var(--navy);
}
.card .price {
  font-family: var(--serif);
  color: var(--teal);
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.tag {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}

.steps { counter-reset: step; }
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.step:last-child { border-bottom: 0; }
.step-num {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--gold-deep);
}

/* Bowtie */
.bowtie {
  display: grid;
  grid-template-columns: 1fr 90px 1fr;
  gap: 8px;
  align-items: stretch;
  margin-top: 12px;
}
.bow-col { display: flex; flex-direction: column; gap: 8px; }
.stage {
  background: white;
  border: 1px solid var(--line);
  padding: 12px 14px;
  font-size: 0.88rem;
}
.stage strong { display: block; font-family: var(--serif); color: var(--navy); }
.bow-center {
  background: var(--navy);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--serif);
  font-size: 0.85rem;
  padding: 10px;
}

table.simple {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  background: white;
}
table.simple th {
  text-align: left;
  background: var(--navy);
  color: var(--cream);
  padding: 10px 12px;
  font-weight: 560;
}
table.simple td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
table.simple tr:nth-child(even) td { background: #faf8f3; }

form .field { margin-bottom: 14px; }
label { display: block; font-size: 0.82rem; margin-bottom: 6px; color: var(--muted); }
input, select, textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--line);
  background: white;
  font-family: var(--sans);
  font-size: 1rem;
}
textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 10px; }
.success, .form-error {
  background: #e7f3f0;
  border: 1px solid #b7d9d2;
  padding: 14px;
  margin-top: 12px;
}
.form-error { background: #f8ebe8; border-color: #e3c1ba; color: var(--danger); }
.form-error a { text-decoration: underline; }
.success[hidden], .form-error[hidden] { display: none; }
button:disabled { opacity: 0.6; cursor: wait; }

footer {
  background: #081624;
  color: #b7c0bb;
  padding: 48px 0 28px;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}
footer a { color: #d7ddd8; }
.footer-title { display: block; color: var(--cream); }
.footer-grid a, .footer-line { display: block; }
.footer-brand { font-family: var(--serif); color: var(--cream); font-size: 1.2rem; }
.legal { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 16px; color: #7e8a86; font-size: 0.78rem; }

.page-hero {
  background: var(--navy);
  color: var(--cream);
  padding: 64px 0 48px;
}
.page-hero h1 { color: var(--cream); max-width: 16ch; }
.page-hero p { color: #c9d0cc; margin-top: 14px; max-width: 52ch; }

blockquote.pull {
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.35;
  color: var(--navy);
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  margin: 8px 0 0;
}

/* Small laptops / iPad landscape: four product cards are too narrow side by side */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  .menu-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 22px 22px;
    gap: 0;
    /* Scroll inside the menu when it is taller than the screen (landscape phones) */
    max-height: calc(100vh - 68px);
    max-height: calc(100dvh - 68px);
    overflow-y: auto;
  }
  .nav-links a:not(.btn) { display: block; padding: 11px 0; }
  .nav-links .btn { margin-top: 12px; min-height: 44px; }
  .nav-links.open { display: flex; }
  .hero-grid, .grid-2, .grid-3, .grid-4, .footer-grid, .bowtie {
    grid-template-columns: 1fr;
  }
  .bow-center { min-height: 72px; }
}

/* Full-height tap targets on phones and on any touch screen (e.g. iPad landscape) */
@media (max-width: 880px), (pointer: coarse) {
  .footer-grid a { display: flex; align-items: center; min-height: 44px; }
  .footer-title { margin-bottom: 2px; }
}
@media (pointer: coarse) and (min-width: 881px) {
  .nav-links a:not(.btn) { padding: 11px 0; }
}

/* Phones: each table row becomes a card, with its column name above each value */
@media (max-width: 600px) {
  table.stack { background: transparent; }
  table.stack thead {
    position: absolute; width: 1px; height: 1px;
    overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
  }
  table.stack tbody, table.stack tr, table.stack td { display: block; }
  table.stack tr {
    background: white;
    border: 1px solid var(--line);
    padding: 8px 0;
    margin-bottom: 12px;
  }
  table.stack td, table.stack tr:nth-child(even) td {
    background: none;
    border-bottom: 0;
    padding: 6px 16px;
  }
  table.stack td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal);
  }
  table.stack td:first-child {
    font-family: var(--serif);
    font-size: 1.05rem;
    color: var(--navy);
  }
  table.stack td:first-child::before { font-family: var(--sans); }
}
