/* ============================================================
   REASONmethod.com — Master Stylesheet
   Brand: Navy #0D1B2A · Teal #0A7EA4 · Gold #C8952A
   Fonts: DM Serif Display (headings) · Sora (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Sora:wght@300;400;500;600&family=JetBrains+Mono:wght@400;600&display=swap');

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
  --navy:      #0D1B2A;
  --navy-deep: #08111C;
  --navy-mid:  #152234;
  --teal:      #0A7EA4;
  --teal-lt:   #0E9CC4;
  --gold:      #C8952A;
  --gold-lt:   #DDA83A;
  --white:     #FFFFFF;
  --off-white: #F4F7FA;
  --slate:     #607080;
  --border:    rgba(255,255,255,0.08);
  --border-lt: rgba(10,126,164,0.2);

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'Sora', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --radius:    8px;
  --radius-lg: 16px;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
  --shadow:    0 4px 24px rgba(0,0,0,0.25);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.4);
}

/* ── RESET ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-lt); }

/* ── TYPOGRAPHY ────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 400;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}
.lead {
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255,255,255,0.72);
  max-width: 56ch;
  line-height: 1.8;
}
.muted { color: var(--slate); }

/* ── LAYOUT ────────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container--narrow { max-width: 760px; margin: 0 auto; padding: 0 2rem; }
section { padding: 6rem 0; }
.section--dark  { background: var(--navy); }
.section--deep  { background: var(--navy-deep); }
.section--mid   { background: var(--navy-mid); }
.section--light {
  background: var(--off-white);
  color: var(--navy);
}
.section--light h1,
.section--light h2,
.section--light h3,
.section--light h4 { color: var(--navy); }
.section--light .lead { color: rgba(13,27,42,0.65); }
.section--light .eyebrow { color: var(--teal); }

.text-center { text-align: center; }
.text-center .lead { margin: 0 auto; }

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy);
}
.btn--primary:hover {
  background: var(--gold-lt);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,149,42,0.35);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn--outline:hover {
  border-color: var(--teal);
  color: var(--teal-lt);
  transform: translateY(-2px);
}
.btn--teal {
  background: var(--teal);
  color: var(--white);
}
.btn--teal:hover {
  background: var(--teal-lt);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,126,164,0.35);
}
.btn--lg { padding: 1.1rem 2.6rem; font-size: 1rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* ── NAVIGATION ────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(8,17,28,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.nav.scrolled {
  height: 60px;
  background: rgba(8,17,28,0.97);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.nav__logo-mark {
  width: 36px;
  height: 36px;
  background: var(--navy-mid);
  border: 1.5px solid var(--teal);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  position: relative;
}
.nav__logo-mark::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 2px;
  background: var(--gold);
  border-radius: var(--radius) var(--radius) 0 0;
}
.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav__logo-reason {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white);
}
.nav__logo-method {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: var(--teal);
  text-transform: uppercase;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.03em;
  transition: color var(--transition);
}
.nav__links a:hover,
.nav__links a.active { color: var(--white); }
.nav__cta { margin-left: 1rem; }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}
.nav__mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--navy-deep);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
  flex-direction: column;
  gap: 1.25rem;
  z-index: 999;
}
.nav__mobile a {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
.nav__mobile.open { display: flex; }

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  background: var(--navy-deep);
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10,126,164,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,126,164,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero__glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(10,126,164,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero__glow-2 {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,149,42,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(10,126,164,0.12);
  border: 1px solid rgba(10,126,164,0.3);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero__badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
.hero__headline {
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero__headline em {
  font-style: italic;
  color: var(--teal);
}
.hero__headline .accent { color: var(--gold); }
.hero__sub {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 50ch;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.hero__pill {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
}
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__frame {
  position: relative;
  width: 100%;
  max-width: 480px;
}
.hero__tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.hero__tile {
  background: rgba(21,34,52,0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.hero__tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  transition: opacity 0.3s;
  opacity: 0.8;
}
.hero__tile:nth-child(1)::before,
.hero__tile:nth-child(3)::before,
.hero__tile:nth-child(5)::before { background: var(--gold); }
.hero__tile:nth-child(2)::before,
.hero__tile:nth-child(4)::before,
.hero__tile:nth-child(6)::before { background: var(--teal); }
.hero__tile:hover {
  background: rgba(10,126,164,0.12);
  border-color: rgba(10,126,164,0.4);
  transform: translateY(-4px);
}
.hero__tile-letter {
  font-family: var(--font-mono);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 0.4rem;
}
.hero__tile-word {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.hero__tile:nth-child(odd) .hero__tile-word { color: var(--gold); }
.hero__tile:nth-child(even) .hero__tile-word { color: var(--teal); }
.hero__tagline {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  font-family: var(--font-mono);
}

/* ── REASON PILLARS ────────────────────────────────────────── */
.pillars { background: var(--navy-mid); }
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 4rem;
}
.pillar {
  background: var(--navy-mid);
  padding: 2.5rem 2rem;
  transition: background var(--transition);
  position: relative;
}
.pillar:hover { background: rgba(10,126,164,0.08); }
.pillar__letter {
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 0.2rem;
  display: block;
}
.pillar:nth-child(odd)  .pillar__letter { color: var(--gold); }
.pillar:nth-child(even) .pillar__letter { color: var(--teal); }
.pillar__name {
  font-size: 0.7rem;
  font-family: var(--font-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.pillar h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.pillar p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}
.pillar__accent {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.pillar:nth-child(odd) .pillar__accent  { background: var(--gold); }
.pillar:nth-child(even) .pillar__accent { background: var(--teal); }
.pillar:hover .pillar__accent { transform: scaleX(1); }

/* ── ARGUMENT ──────────────────────────────────────────────── */
.argument { background: var(--navy-deep); }
.argument__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.argument__table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
}
.argument__table th {
  padding: 0.75rem 1rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.argument__table th:first-child { color: var(--gold); }
.argument__table th:last-child  { color: var(--teal); }
.argument__table td {
  padding: 0.9rem 1rem;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  vertical-align: top;
  line-height: 1.6;
}
.argument__table td:first-child {
  color: rgba(255,255,255,0.45);
  width: 50%;
}
.argument__table td:last-child { color: rgba(255,255,255,0.8); }
.argument__table tr:last-child td:last-child {
  color: #4AE08A;
  font-weight: 600;
}
.argument__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.stat-card {
  background: rgba(21,34,52,0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.stat-card__num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat-card__label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.4rem;
  line-height: 1.5;
}

/* ── HEALTH CHECK CTA ──────────────────────────────────────── */
.health-check {
  background: var(--navy-mid);
  position: relative;
  overflow: hidden;
}
.health-check__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,149,42,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,149,42,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.health-check__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}
.health-check__badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  border: 1px solid rgba(10,126,164,0.3);
  background: rgba(10,126,164,0.08);
  color: var(--teal-lt);
}
.badge::before {
  content: '✓';
  font-size: 0.65rem;
  color: var(--teal);
}
.health-check__card {
  background: rgba(8,17,28,0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  min-width: 280px;
  text-align: center;
}
.health-check__price {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
}
.health-check__price-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.3rem;
  margin-bottom: 1.5rem;
}

/* ── BOOKING SECTION ───────────────────────────────────────── */
.booking {
  background: var(--navy-deep);
  padding: 6rem 0;
}
.booking__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.booking__widget {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 500px;
  position: relative;
}
.booking__widget iframe {
  width: 100%;
  min-height: 600px;
  border: none;
  display: block;
}
.booking__list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.booking__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
}
.booking__list li::before {
  content: '→';
  color: var(--teal);
  font-family: var(--font-mono);
  flex-shrink: 0;
  margin-top: 0.05em;
}

/* ── NEWSLETTER ────────────────────────────────────────────── */
.newsletter { background: var(--navy-deep); }
.newsletter__box {
  background: linear-gradient(135deg, rgba(10,126,164,0.12) 0%, rgba(200,149,42,0.06) 100%);
  border: 1px solid rgba(10,126,164,0.25);
  border-radius: var(--radius-lg);
  padding: 4rem;
  max-width: 760px;
  margin: 0 auto;
}
.newsletter__form {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.newsletter__input {
  flex: 1;
  min-width: 260px;
  padding: 0.9rem 1.25rem;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition);
  outline: none;
}
.newsletter__input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter__input:focus { border-color: var(--teal); }
.newsletter__consent {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.newsletter__consent input { margin-top: 0.15em; accent-color: var(--teal); }
.newsletter__topics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.topic-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: rgba(255,255,255,0.35);
}
.newsletter__success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: #4AE08A;
  font-size: 1rem;
}

/* ── TESTIMONIAL / QUOTE ───────────────────────────────────── */
.quote-section { background: var(--navy-mid); }
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.quote-card {
  background: rgba(8,17,28,0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}
.quote-card::before {
  content: '"';
  position: absolute;
  top: 1rem; left: 1.5rem;
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
}
.quote-card p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  padding-top: 1.5rem;
}
.quote-card__author {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

/* ── CONTACT PAGE ──────────────────────────────────────────── */
.page-hero {
  padding: 9rem 0 4rem;
  background: var(--navy-deep);
  position: relative;
  overflow: hidden;
}
.page-hero__grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(10,126,164,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,126,164,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
}
.form-section { background: var(--navy-mid); }
.form-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 660px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group--full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.03em;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23607080' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group select option { background: var(--navy); color: var(--white); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
  background: rgba(10,126,164,0.05);
}
.form-group textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}
.form-turnstile {
  margin: 1.5rem 0;
}
.form-submit { margin-top: 0.5rem; }
.form-success {
  display: none;
  padding: 1.5rem;
  background: rgba(74,224,138,0.08);
  border: 1px solid rgba(74,224,138,0.25);
  border-radius: var(--radius);
  color: #4AE08A;
  font-size: 0.92rem;
  margin-top: 1rem;
}
.form-error {
  display: none;
  padding: 1rem;
  background: rgba(220,50,50,0.08);
  border: 1px solid rgba(220,50,50,0.25);
  border-radius: var(--radius);
  color: #EF9090;
  font-size: 0.88rem;
  margin-top: 1rem;
}
.contact-aside {
  padding-top: 1rem;
}
.contact-aside__item {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-aside__icon {
  width: 40px;
  height: 40px;
  background: rgba(10,126,164,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-aside__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--teal);
  font-family: var(--font-mono);
  margin-bottom: 0.25rem;
}
.contact-aside__value {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
}

/* ── FOOTER ────────────────────────────────────────────────── */
.footer {
  background: var(--navy-deep);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer__logo {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.footer__tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer__heading {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer__links a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}
.footer__reason-pill {
  display: flex;
  gap: 0.5rem;
}
.footer__reason-pill span {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
}
.footer__reason-pill span:nth-child(odd)  { color: var(--gold); }
.footer__reason-pill span:nth-child(even) { color: var(--teal); }

/* ── UTILITIES ─────────────────────────────────────────────── */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.pt-0 { padding-top: 0 !important; }
.gold  { color: var(--gold) !important; }
.teal  { color: var(--teal) !important; }
.divider {
  height: 1px;
  background: var(--border);
  margin: 3rem 0;
}

/* ── ANIMATIONS ────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stagger.visible > * { opacity: 1; transform: translateY(0); }
.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.4s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.5s; }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero__visual { order: -1; }
  .hero__frame { max-width: 380px; margin: 0 auto; }
  .pillars__grid { grid-template-columns: repeat(2, 1fr); }
  .argument__grid { grid-template-columns: 1fr; gap: 3rem; }
  .health-check__inner { grid-template-columns: 1fr; text-align: center; }
  .health-check__badge-list { justify-content: center; }
  .booking__inner { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  section { padding: 4rem 0; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .hero { min-height: auto; padding: 6rem 0 3rem; }
  .hero__tiles { grid-template-columns: repeat(2, 1fr); }
  .pillars__grid { grid-template-columns: 1fr; }
  .newsletter__box { padding: 2.5rem 1.5rem; }
  .newsletter__form { flex-direction: column; }
  .newsletter__input { min-width: auto; }
  .form-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .argument__stats { grid-template-columns: 1fr 1fr; }
  .health-check__inner { grid-template-columns: 1fr; }
  .booking__inner { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.7rem; }
  .btn-group { flex-direction: column; align-items: flex-start; }
  .hero__tiles { grid-template-columns: repeat(3, 1fr); }
  .hero__tile { padding: 1rem 0.6rem; }
  .hero__tile-letter { font-size: 1.6rem; }
  .argument__stats { grid-template-columns: 1fr; }
}
