/* ============================================================
   Ohene Consult — design system
   Structure follows the Vercel language documented in DESIGN.md
   (hairlines, stacked shadows, mono eyebrows, generous bands,
   sentence-case display type, pill CTAs) with the polarity
   inverted to the Ohene brand: deep navy canvas, cream ink,
   gold as the single accent. Type is Garamond throughout.
   ============================================================ */

@import url('../fonts/fonts.css');

/* ---------- tokens ---------- */
:root {
  /* surfaces — the four-step ladder, darkest first */
  --canvas:        #05070C;
  --canvas-soft:   #080C14;
  --canvas-raised: #0B1220;
  --canvas-card:   #0E1526;

  /* ink */
  --ink:        #F4ECD9;
  --ink-body:   #B9B0A0;
  --ink-mute:   #7E7768;

  /* accent — gold is the only one. Do not add a second. */
  --gold:        #C4881E;
  --gold-bright: #D9A64A;
  --gold-deep:   #8A5E12;
  --gold-wash:   rgba(196, 136, 30, 0.10);

  /* hairlines */
  --line:        rgba(240, 230, 212, 0.10);
  --line-strong: rgba(240, 230, 212, 0.20);

  /* type */
  --serif:   'EB Garamond', Georgia, 'Times New Roman', serif;
  --display: 'Cormorant Garamond', 'EB Garamond', Georgia, serif;
  --mono:    ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Monaco, monospace;

  /* spacing — 4px base, same ladder as the reference system */
  --s-xxs: 4px;  --s-xs: 8px;   --s-sm: 12px;  --s-md: 16px;
  --s-lg: 24px;  --s-xl: 32px;  --s-2xl: 40px; --s-3xl: 48px;
  --s-4xl: 64px; --s-5xl: 96px; --s-6xl: 128px;

  /* shape */
  --r-sm: 6px; --r-md: 8px; --r-lg: 12px; --r-xl: 16px; --r-pill: 100px;

  /* stacked elevation, tuned for a dark canvas */
  --e-1: inset 0 0 0 1px rgba(240, 230, 212, 0.08);
  --e-2: 0 1px 1px rgba(0, 0, 0, 0.30), 0 2px 4px rgba(0, 0, 0, 0.20),
         inset 0 0 0 1px rgba(240, 230, 212, 0.08);
  --e-3: 0 2px 4px rgba(0, 0, 0, 0.30), 0 8px 16px -8px rgba(0, 0, 0, 0.50),
         inset 0 0 0 1px rgba(240, 230, 212, 0.10);
  --e-4: 0 2px 4px rgba(0, 0, 0, 0.30), 0 12px 28px -8px rgba(0, 0, 0, 0.55),
         inset 0 0 0 1px rgba(240, 230, 212, 0.12);

  --wrap: 1200px;
  --wrap-wide: 1360px;
  --wrap-prose: 720px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--canvas-soft);
  color: var(--ink-body);
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--gold); color: #05070C; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- type ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.015em;
  line-height: 1.08;
}

/* Display sizes fluid-scale so the hero never breaks between breakpoints. */
.d-xl { font-size: clamp(2.75rem, 6.4vw, 5.25rem); line-height: 1.02; letter-spacing: -0.022em; }
.d-lg { font-size: clamp(2.1rem, 4.4vw, 3.4rem);  line-height: 1.08; letter-spacing: -0.018em; }
.d-md { font-size: clamp(1.6rem, 2.7vw, 2.15rem); line-height: 1.16; letter-spacing: -0.012em; }
.d-sm { font-size: clamp(1.25rem, 1.9vw, 1.5rem); line-height: 1.24; letter-spacing: -0.008em; }

.lead {
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  line-height: 1.6;
  color: var(--ink-body);
  max-width: 62ch;
}
.prose { max-width: var(--wrap-prose); }
.prose p { margin: 0 0 var(--s-lg); }
.prose h2 { margin: var(--s-3xl) 0 var(--s-md); }
.prose h3 { margin: var(--s-xl) 0 var(--s-xs); }
.prose ul, .prose ol { margin: 0 0 var(--s-lg); padding-left: 1.25em; }
.prose li { margin-bottom: var(--s-xs); }
.prose strong { color: var(--ink); font-weight: 500; }
.prose a { color: var(--gold-bright); text-decoration: underline; text-underline-offset: 3px; }

/* Mono eyebrow — the technical voice, the one place we go uppercase. */
.eyebrow {
  font-family: var(--mono);
  font-size: 0.688rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 var(--s-md);
  display: flex;
  align-items: center;
  gap: var(--s-sm);
}
.eyebrow::before {
  content: "";
  width: 24px; height: 1px;
  background: var(--gold);
  flex: none;
}
.eyebrow--plain::before { display: none; }

.rule { height: 1px; background: var(--line); border: 0; margin: 0; }
.rule-gold { width: 56px; height: 2px; background: var(--gold); border: 0; margin: var(--s-lg) 0; }

.mute  { color: var(--ink-mute); }
.cream { color: var(--ink); }
.gold  { color: var(--gold-bright); }
.italic-note { font-style: italic; color: var(--ink-mute); }

/* ---------- layout ---------- */
.wrap  { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--s-lg); }
.wrap-wide { width: 100%; max-width: var(--wrap-wide); margin: 0 auto; padding: 0 var(--s-lg); }
.band  { padding: clamp(64px, 9vw, 128px) 0; }
.band-tight { padding: clamp(48px, 6vw, 80px) 0; }
.band-raised { background: var(--canvas-raised); }
.band-deep   { background: var(--canvas); }
.band-line   { border-top: 1px solid var(--line); }

.grid { display: grid; gap: var(--s-lg); }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.split-40 { grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); }
.stack-sm > * + * { margin-top: var(--s-sm); }
.stack    > * + * { margin-top: var(--s-md); }
.stack-lg > * + * { margin-top: var(--s-lg); }

.section-head { max-width: 780px; margin-bottom: clamp(40px, 5vw, 64px); }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(8, 12, 20, 0.82);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--wrap-wide); margin: 0 auto;
  padding: 0 var(--s-lg);
  height: 68px;
  display: flex; align-items: center; gap: var(--s-lg);
}
/* Sankofa mark + wordmark lockup */
.brand {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--display);
  font-size: 1.35rem; font-weight: 600;
  color: var(--ink); text-decoration: none;
  letter-spacing: -0.01em; white-space: nowrap;
}
.brand-mark {
  width: 26px; height: auto; flex: none;
  transition: transform .3s ease;
}
.brand:hover .brand-mark { transform: translateX(-2px); }
.brand .dot { color: var(--gold); }
.foot-brand .brand { font-size: 1.5rem; }
.foot-brand .brand-mark { width: 30px; }
.nav-links { display: flex; align-items: center; gap: var(--s-xxs); margin-left: auto; }
.nav-links a {
  font-size: 0.95rem; color: var(--ink-body); text-decoration: none;
  padding: var(--s-xs) var(--s-sm); border-radius: var(--r-pill);
  transition: color .18s ease, background .18s ease;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--ink); background: rgba(240, 230, 212, 0.06); }
.nav-links a[aria-current="page"] { color: var(--gold-bright); }

/* dropdown for the destinations cluster */
.nav-drop { position: relative; }
.nav-drop > button {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: 0; cursor: pointer;
  font-size: 0.95rem; color: var(--ink-body);
  padding: var(--s-xs) var(--s-sm); border-radius: var(--r-pill);
  font-family: var(--serif);
  transition: color .18s ease, background .18s ease;
}
.nav-drop > button:hover,
.nav-drop[data-open="true"] > button { color: var(--ink); background: rgba(240, 230, 212, 0.06); }
.nav-drop > button svg { transition: transform .18s ease; }
.nav-drop[data-open="true"] > button svg { transform: rotate(180deg); }
.nav-menu {
  position: absolute; top: calc(100% + 10px); right: 0;
  min-width: 260px; padding: var(--s-xs);
  background: var(--canvas-card);
  border-radius: var(--r-lg);
  box-shadow: var(--e-4);
  display: none; flex-direction: column;
}
.nav-drop[data-open="true"] .nav-menu { display: flex; }
.nav-menu a {
  padding: 10px var(--s-sm); border-radius: var(--r-sm);
  font-size: 0.95rem; text-decoration: none; color: var(--ink-body);
}
.nav-menu a:hover { background: rgba(240, 230, 212, 0.06); color: var(--ink); }
.nav-menu .m-sub { display: block; font-size: 0.75rem; color: var(--ink-mute); }

.nav-cta { margin-left: var(--s-xs); }
.nav-toggle {
  display: none; margin-left: auto;
  background: none; border: 1px solid var(--line-strong);
  border-radius: var(--r-sm); padding: 8px 10px; cursor: pointer;
  color: var(--ink);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--s-xs);
  height: 50px; padding: 0 var(--s-lg);
  border-radius: var(--r-pill);
  font-family: var(--serif); font-size: 1.02rem; font-weight: 500;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: transform .16s ease, background .18s ease,
              border-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--gold); color: #05070C; font-weight: 500; }
.btn-primary:hover { background: var(--gold-bright); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--ink-body); background: rgba(240, 230, 212, 0.04); }
.btn-sm { height: 40px; padding: 0 var(--s-md); font-size: 0.94rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--s-sm); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--gold-bright); text-decoration: none;
  font-size: 0.98rem;
}
.link-arrow::after { content: "→"; transition: transform .18s ease; }
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- cards ---------- */
.card {
  background: var(--canvas-card);
  border-radius: var(--r-lg);
  padding: var(--s-xl);
  box-shadow: var(--e-2);
  transition: box-shadow .2s ease, transform .2s ease;
}
.card-hover:hover { box-shadow: var(--e-4); transform: translateY(-2px); }
.card-soft { background: var(--canvas-raised); box-shadow: var(--e-1); }
.card h3 { margin-bottom: var(--s-xs); }
.card p:last-child { margin-bottom: 0; }

/* destination card — image cap + body */
.dest {
  display: flex; flex-direction: column;
  background: var(--canvas-card);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--e-2);
  text-decoration: none;
  transition: box-shadow .2s ease, transform .2s ease;
}
.dest:hover { box-shadow: var(--e-4); transform: translateY(-2px); }
.dest-img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--canvas-raised); }
.dest-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.dest:hover .dest-img img { transform: scale(1.04); }
.dest-img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,7,12,.78), rgba(5,7,12,.06) 60%);
}
.dest-flag {
  position: absolute; left: var(--s-md); top: var(--s-md); z-index: 2;
  font-size: 1.4rem; line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.5));
}
.dest-body { padding: var(--s-lg); display: flex; flex-direction: column; flex: 1; }
.dest-body h3 { font-size: 1.45rem; margin-bottom: 6px; }
.dest-body p { margin: 0 0 var(--s-md); font-size: 0.97rem; color: var(--ink-body); }
.dest-meta {
  margin-top: auto; padding-top: var(--s-sm);
  border-top: 1px solid var(--line);
  font-family: var(--mono); font-size: 0.66rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-mute);
  display: flex; justify-content: space-between; gap: var(--s-sm);
}

/* numbered step / process */
.step { display: grid; grid-template-columns: auto 1fr; gap: var(--s-lg); align-items: start; }
.step-n {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.12em;
  color: var(--gold);
  border: 1px solid var(--line-strong); border-radius: var(--r-pill);
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.step h3 { font-size: 1.3rem; margin-bottom: var(--s-xxs); }
.step p { margin: 0; font-size: 1rem; }

/* stat */
.stat-n {
  font-family: var(--display); font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  color: var(--ink); line-height: 1; font-weight: 600; letter-spacing: -0.02em;
}
.stat-l {
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-mute); margin-top: var(--s-xs);
}

/* badge / pill */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 0.66rem;
  letter-spacing: 0.13em; text-transform: uppercase;
  padding: 5px 11px; border-radius: var(--r-pill);
  background: var(--gold-wash); color: var(--gold-bright);
  border: 1px solid rgba(196, 136, 30, 0.24);
}
.badge-quiet { background: rgba(240,230,212,.05); color: var(--ink-mute); border-color: var(--line); }

/* pull quote */
.quote {
  font-family: var(--display); font-style: italic;
  font-size: clamp(1.45rem, 2.8vw, 2.15rem);
  line-height: 1.34; color: var(--ink); letter-spacing: -0.01em;
}
.quote-by { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-mute); margin-top: var(--s-lg); }

/* ---------- hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--canvas); }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .58; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(5,7,12,.95) 0%, rgba(5,7,12,.72) 48%, rgba(5,7,12,.55) 100%),
    linear-gradient(to top, rgba(5,7,12,1) 2%, rgba(5,7,12,0) 55%);
}
/* Only touch the vertical padding — .wrap owns the horizontal gutter. */
.hero-inner {
  position: relative; z-index: 1;
  padding-top: clamp(88px, 13vw, 176px);
  padding-bottom: clamp(64px, 8vw, 104px);
}
.hero-copy { max-width: 920px; }
.hero-copy .lead { max-width: 60ch; }
.hero h1 { margin-bottom: var(--s-lg); }
.hero .lead { margin: 0 0 var(--s-xl); }

/* page header for interior pages */
.pagehead { position: relative; overflow: hidden; background: var(--canvas); }
.pagehead-media { position: absolute; inset: 0; z-index: 0; }
.pagehead-media img { width: 100%; height: 100%; object-fit: cover; opacity: .48; }
.pagehead-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--canvas-soft) 1%, rgba(5,7,12,.62) 60%, rgba(5,7,12,.5) 100%);
}
.pagehead-inner {
  position: relative; z-index: 1;
  padding-top: clamp(72px, 10vw, 128px);
  padding-bottom: clamp(48px, 6vw, 72px);
}
.pagehead h1 { margin-bottom: var(--s-md); }

/* breadcrumb */
.crumb {
  font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--ink-mute); margin-bottom: var(--s-lg);
}
.crumb a { color: var(--ink-mute); text-decoration: none; }
.crumb a:hover { color: var(--gold-bright); }

/* framed figure */
.figure { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--e-3); background: var(--canvas-raised); }
.figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.figure-tall img { aspect-ratio: 3 / 4; }
.figure-wide img { aspect-ratio: 16 / 9; }
.figure-cap {
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-mute);
  padding: var(--s-sm) var(--s-md); border-top: 1px solid var(--line);
}

/* ---------- photo strip ---------- */
.gal { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--s-sm); }
.gal figure { margin: 0; position: relative; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--e-2); }
.gal img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .5s ease; }
.gal figure:hover img { transform: scale(1.05); }
.gal figcaption {
  position: absolute; inset: auto 0 0 0; z-index: 2;
  padding: 22px 10px 9px;
  font-family: var(--mono); font-size: 0.6rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink);
  background: linear-gradient(to top, rgba(5,7,12,.88), rgba(5,7,12,0));
}
@media (max-width: 900px) { .gal { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .gal { grid-template-columns: repeat(2, 1fr); } }

/* ---------- tables ---------- */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table.data { width: 100%; border-collapse: collapse; min-width: 560px; font-size: 0.97rem; }
table.data th {
  font-family: var(--mono); font-size: 0.66rem; font-weight: 400;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--ink-mute); text-align: left;
  padding: var(--s-sm) var(--s-md);
  border-bottom: 1px solid var(--line-strong);
  background: var(--canvas-raised); white-space: nowrap;
}
table.data td {
  padding: var(--s-sm) var(--s-md);
  border-bottom: 1px solid var(--line);
  vertical-align: top; color: var(--ink-body);
}
table.data tr:last-child td { border-bottom: 0; }
table.data td strong { color: var(--ink); font-weight: 500; }

/* ---------- checklist ---------- */
.check { list-style: none; padding: 0; margin: 0; }
.check li {
  position: relative; padding-left: 30px; margin-bottom: var(--s-sm);
  color: var(--ink-body);
}
.check li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--gold); font-size: 0.95rem;
}
.check-x li::before { content: "✕"; color: var(--ink-mute); }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none;
  padding: var(--s-lg) 40px var(--s-lg) 0; position: relative;
  font-family: var(--display); font-size: 1.2rem; color: var(--ink);
  font-weight: 600; letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 6px; top: 50%;
  transform: translateY(-50%); color: var(--gold);
  font-size: 1.35rem; line-height: 1; transition: transform .2s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq details > div { padding: 0 0 var(--s-lg); max-width: 68ch; }
.faq details > div p:last-child { margin-bottom: 0; }

/* ---------- forms ---------- */
.form { display: grid; gap: var(--s-md); }
.field { display: grid; gap: 7px; }
.field label {
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--ink-mute);
}
.field input, .field select, .field textarea {
  width: 100%;
  background: var(--canvas);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  padding: 13px var(--s-md);
  color: var(--ink);
  font-family: var(--serif); font-size: 1rem;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-mute); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 136, 30, 0.16);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23B9B0A0' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--s-md) center;
  padding-right: 40px;
}
.field select option { background: var(--canvas-card); color: var(--ink); }
.form-note { font-size: 0.88rem; color: var(--ink-mute); }
.opt {
  font-family: var(--mono); font-size: 0.58rem; letter-spacing: .1em;
  color: var(--ink-mute); text-transform: uppercase; margin-left: 6px;
}
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

:where(a, button, input, select, textarea, summary, details):focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
  border-radius: var(--r-xs, 4px);
}

/* ---------- footer ---------- */
.foot { background: var(--canvas); border-top: 1px solid var(--line); padding: var(--s-5xl) 0 var(--s-xl); }
.foot-grid {
  display: grid; grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: var(--s-xl); margin-bottom: var(--s-3xl);
}
.foot h4 {
  font-family: var(--mono); font-size: 0.66rem; font-weight: 400;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-mute); margin: 0 0 var(--s-md);
}
.foot ul { list-style: none; padding: 0; margin: 0; }
.foot li { margin-bottom: 10px; }
.foot a { color: var(--ink-body); text-decoration: none; font-size: 0.96rem; }
.foot a:hover { color: var(--gold-bright); }
.foot-brand p { font-size: 0.96rem; color: var(--ink-mute); margin: var(--s-sm) 0 0; max-width: 42ch; }
.foot-bottom {
  border-top: 1px solid var(--line); padding-top: var(--s-lg);
  display: flex; flex-wrap: wrap; gap: var(--s-md);
  justify-content: space-between; align-items: center;
  font-size: 0.85rem; color: var(--ink-mute);
}
.disclaimer {
  margin-top: var(--s-lg); padding: var(--s-md) var(--s-lg);
  border-left: 2px solid var(--gold-deep);
  background: rgba(240, 230, 212, 0.025);
  font-size: 0.85rem; color: var(--ink-mute); line-height: 1.6;
}



/* ---------- pricing ---------- */
.price {
  display: flex; flex-direction: column; height: 100%;
  background: var(--canvas-card); border-radius: var(--r-lg);
  padding: var(--s-xl); box-shadow: var(--e-2);
  transition: box-shadow .2s ease, transform .2s ease;
}
.price:hover { box-shadow: var(--e-4); transform: translateY(-2px); }
.price--featured {
  box-shadow: var(--e-4), inset 0 0 0 1px rgba(196,136,30,.45);
  position: relative;
}
.price--featured::before {
  content: "Most chosen";
  position: absolute; top: -11px; left: var(--s-xl);
  font-family: var(--mono); font-size: 0.6rem; letter-spacing: .14em;
  text-transform: uppercase; color: #05070C; background: var(--gold);
  padding: 3px 10px; border-radius: var(--r-pill);
}
.price-name { font-family: var(--display); font-size: 1.45rem; color: var(--ink); font-weight: 600; margin: 0 0 4px; }
.price-for { font-size: .92rem; color: var(--ink-mute); margin: 0 0 var(--s-lg); }
.price-n {
  font-family: var(--display); font-size: clamp(2.3rem, 4vw, 3rem);
  color: var(--ink); font-weight: 600; line-height: 1; letter-spacing: -.02em;
}
.price-n small { font-size: .95rem; color: var(--ink-mute); font-family: var(--serif); letter-spacing: 0; }
.price-note {
  font-family: var(--mono); font-size: .62rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold); margin: 8px 0 var(--s-lg);
  padding-bottom: var(--s-lg); border-bottom: 1px solid var(--line);
}
.price .check { flex: 1; margin-bottom: var(--s-lg); }
.price .check li { font-size: .96rem; }

/* ---------- testimonials ---------- */
.tm { display: flex; flex-direction: column; height: 100%; }
.tm-result {
  font-family: var(--mono); font-size: 0.63rem;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--gold-bright); margin: 0 0 var(--s-md);
  padding-bottom: var(--s-sm); border-bottom: 1px solid var(--line);
}
.tm-quote {
  font-family: var(--display); font-style: italic;
  font-size: 1.12rem; line-height: 1.5; color: var(--ink);
  margin: 0 0 var(--s-lg); flex: 1;
}
.tm-who {
  margin: 0; padding-top: var(--s-sm);
  border-top: 1px solid var(--line);
  font-family: var(--mono); font-size: 0.66rem;
  letter-spacing: 0.11em; text-transform: uppercase;
  color: var(--ink-mute);
}

/* ---------- whatsapp intake ---------- */
.wa-card { border-top: 2px solid #25D366; }
.wa-head { display: flex; align-items: center; gap: var(--s-md); }
.wa-badge {
  width: 42px; height: 42px; border-radius: 50%; flex: none;
  background: rgba(37, 211, 102, .12); color: #25D366;
  display: flex; align-items: center; justify-content: center;
}
.btn-wa { background: #25D366; color: #05070C; font-weight: 500; }
.btn-wa:hover { background: #34e07a; }

/* whatsapp float */
.wa {
  position: fixed; right: 20px; bottom: 20px; z-index: 70;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: #05070C;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .45);
  transition: transform .18s ease;
}
.wa:hover { transform: scale(1.06); }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .g-4 { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: var(--s-xl); }
}
@media (max-width: 860px) {
  .nav-links {
    display: none;
    position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--canvas-card);
    padding: var(--s-md);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--e-4);
    max-height: calc(100vh - 68px); overflow-y: auto;
  }
  .nav-links[data-open="true"] { display: flex; }
  .nav-links a { padding: 12px var(--s-sm); border-radius: var(--r-sm); }
  .nav-toggle { display: block; }
  .nav-cta { margin: var(--s-xs) 0 0; }
  .nav-drop { position: static; }
  .nav-menu {
    position: static; display: flex; box-shadow: none;
    background: transparent; padding: 0 0 0 var(--s-sm);
    border-left: 1px solid var(--line); margin: 4px 0 var(--s-xs) var(--s-sm);
  }
  .nav-drop > button { width: 100%; justify-content: space-between; }
  .split, .split-40 { grid-template-columns: 1fr; }
  .g-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  body { font-size: 18px; }
  .g-2, .g-3, .g-4 { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: var(--s-xl); }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .nav-cta .btn { width: 100%; }
  .card { padding: var(--s-lg); }
  .step { grid-template-columns: 1fr; gap: var(--s-sm); }
}

@media print {
  .nav, .wa, .foot { display: none; }
  body { background: #fff; color: #000; }
}
