:root {
  --bg: #0F0F0F;
  --surface: #161616;
  --surface-2: #1A1A1A;
  --text: #FFFFFF;
  --muted: rgba(255, 255, 255, 0.72);
  --quiet: rgba(255, 255, 255, 0.52);
  --line: rgba(255, 255, 255, 0.13);
  --accent: #B76E79;
  --accent-strong: #9F5865;
  --max: 1180px;
  --measure: 760px;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Lato, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
}
a { color: inherit; }

.skip-link { left: 1rem; position: absolute; top: -5rem; z-index: 30; }
.skip-link:focus { top: 1rem; }

.site-header {
  background: #0F0F0F;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
.nav {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin: 0 auto;
  max-width: var(--max);
  min-height: 74px;
  padding: 0.9rem 1.5rem;
}
.brand {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
}
.menu-toggle { display: none; }
.nav-links { align-items: center; display: flex; gap: 1.15rem; justify-content: flex-end; }
.nav-links a { color: var(--muted); font-size: 0.85rem; text-decoration: none; }
.nav-links a:hover, .nav-links a:focus { color: var(--text); }
.nav-links .menu-cta {
  border: 1px solid var(--accent);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.7rem 0.8rem;
  text-transform: uppercase;
}

.hero, .section { margin: 0 auto; max-width: var(--max); padding: 5.25rem 1.5rem; }
.section { border-top: 1px solid var(--line); }
.hero {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 5vw, 5.5rem);
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  min-height: 670px;
}
.home-page .hero { border-top: 0; }
.hero > div:first-child { max-width: 710px; }
.eyebrow {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin: 0 0 1.1rem;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: "Playfair Display", Georgia, serif; letter-spacing: -0.025em; line-height: 1.06; margin: 0 0 1rem; }
h1 { font-size: clamp(3rem, 5.2vw, 5.35rem); max-width: 13ch; }
.home-page h1 { max-width: 12.5ch; }
.service-page h1 { font-size: clamp(2.65rem, 4.4vw, 4.7rem); max-width: 12.4ch; }
h2 { font-size: clamp(2rem, 3.4vw, 3.5rem); max-width: 17ch; }
h3 { font-size: clamp(1.35rem, 1.8vw, 1.7rem); }
p { color: var(--muted); margin: 0 0 1rem; }
.lede { font-size: 1.08rem; max-width: 56ch; }
.notice { border-left: 2px solid var(--accent); color: var(--muted); margin-top: 1.4rem; padding: 0.1rem 0 0.1rem 1rem; }

.actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.65rem; }
.button {
  align-items: center;
  border: 1px solid var(--accent);
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.1em;
  min-height: 3.15rem;
  padding: 0.9rem 1.1rem;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}
.button.primary { background: var(--accent-strong); border-color: var(--accent-strong); color: #fff; }
.button.secondary { background: transparent; color: var(--text); }
.button:hover, .button:focus { outline: 2px solid rgba(183,110,121,0.55); outline-offset: 3px; }

.grid { display: grid; gap: 1rem; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card, .panel, .route-card, .evidence-board, .system-preview {
  background: var(--surface);
  border: 1px solid var(--line);
}
.card, .panel { padding: clamp(1.25rem, 2.5vw, 2rem); }
.card.important, .route-card.primary-route { border-color: var(--accent); }
.card p:last-child, .panel p:last-child { margin-bottom: 0; }

.route-card { display: flex; flex-direction: column; min-height: 100%; padding: 1.55rem; text-decoration: none; transition: border-color 150ms ease, transform 150ms ease; }
.route-card h3 { max-width: 16ch; }
.route-card:hover, .route-card:focus { border-color: var(--accent); outline: none; transform: translateY(-2px); }
.route-price { color: var(--accent); font-size: 0.94rem; font-weight: 700; margin-top: auto; padding-top: 1rem; }
.route-action { color: var(--text); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; margin: 0.85rem 0 0; text-transform: uppercase; }

.evidence-board { display: grid; gap: 0; padding: 0; }
.evidence-board .placeholder-mark { margin: 1.1rem 1.15rem 0; }
.flow-step, .mini-doc, .preview-doc { background: var(--surface); border: 1px solid var(--line); padding: 1.15rem; }
.evidence-board .flow-step { border-left: 0; border-right: 0; border-bottom: 0; }
.evidence-board .flow-step:first-of-type { border-top: 1px solid var(--line); margin-top: 1rem; }
.mini-doc strong, .flow-step strong { display: block; margin-bottom: 0.45rem; }
.number { color: var(--accent); display: block; font-family: "Playfair Display", Georgia, serif; font-size: 2.1rem; margin-bottom: 0.65rem; }
.line { background: rgba(255,255,255,0.14); height: 0.42rem; margin: 0.55rem 0; width: 100%; }
.line.short { width: 55%; }
.placeholder-mark { color: var(--accent); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }

.tag-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.8rem; }
.tag { border: 1px solid rgba(183,110,121,0.65); color: var(--text); font-size: 0.76rem; padding: 0.3rem 0.55rem; }
.system-preview { display: grid; gap: 1.25rem; padding: clamp(1.25rem, 3vw, 2rem); }
.preview-header { border-bottom: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; padding-bottom: 1rem; }
.preview-doc.wide { grid-column: 1 / -1; }
.preview-doc h3 { font-size: 1.2rem; }
.preview-table { border: 1px solid var(--line); display: grid; margin-top: 0.85rem; }
.preview-row { display: grid; gap: 0.75rem; grid-template-columns: repeat(4, minmax(0, 1fr)); padding: 0.7rem; }
.preview-row + .preview-row { border-top: 1px solid var(--line); }
.preview-row.header { color: var(--accent); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.message-sequence { display: grid; gap: 0.9rem; }
.message { border-left: 2px solid var(--accent); color: var(--muted); padding-left: 0.9rem; }

.form { display: grid; gap: 1rem; margin-top: 1.7rem; max-width: 760px; }
.form .grid.two { align-items: start; }
.form-step { border: 0; display: grid; gap: 1rem; margin: 0; padding: 0; }
.form-step[hidden] { display: none; }
.form-step legend { font-family: "Playfair Display", Georgia, serif; font-size: clamp(1.7rem,3vw,2.35rem); font-weight: 700; line-height: 1.1; margin-bottom: 1rem; }
.form-progress { color: var(--accent); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; margin-bottom: 0.3rem; text-transform: uppercase; }
label { color: var(--text); display: grid; font-weight: 700; gap: 0.45rem; }
input, select, textarea { background: #121212; border: 1px solid var(--line); border-radius: 0; color: var(--text); font: inherit; min-height: 3rem; padding: 0.8rem; width: 100%; }
textarea { min-height: 8rem; resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--accent); outline: 2px solid rgba(183,110,121,0.28); }
.form-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 0.35rem; }
.form-actions .button { cursor: pointer; }
.check-row { align-items: flex-start; display: grid; gap: 0.75rem; grid-template-columns: auto 1fr; }
.check-row input { margin-top: 0.35rem; min-height: auto; width: auto; }
.helper { color: var(--quiet); font-size: 0.88rem; font-weight: 400; }
.whatsapp-support { margin-top: 0.25rem; }
.whatsapp-support .small { margin-bottom: 0; }
.whatsapp-support a { color: var(--accent); font-weight: 700; }

.site-footer { border-top: 1px solid var(--line); margin-top: 2rem; padding: 3.5rem 1.5rem; }
.footer-inner { align-items: start; display: grid; gap: 1.5rem; grid-template-columns: 1.3fr 1fr; margin: 0 auto; max-width: var(--max); }
.footer-links { display: flex; flex-wrap: wrap; gap: 0.8rem 1.1rem; justify-content: flex-end; }
.footer-links a { color: var(--muted); text-decoration: none; }
.small { color: var(--quiet); font-size: 0.86rem; }

@media (max-width: 980px) {
  .nav-links { gap: 0.75rem; }
  .nav-links a { font-size: 0.78rem; }
  .hero { gap: 2rem; grid-template-columns: minmax(0, 1fr) minmax(260px, 0.78fr); }
}
@media (max-width: 820px) {
  body { font-size: 16px; }
  .nav { min-height: 68px; padding: 0.8rem 1rem; position: relative; }
  .menu-toggle { background: transparent; border: 1px solid var(--accent); color: var(--text); cursor: pointer; display: inline-flex; font: inherit; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; padding: 0.65rem 0.75rem; text-transform: uppercase; }
  .nav-links { background: #0F0F0F; border: 1px solid var(--line); display: none; flex-direction: column; left: 1rem; padding: 0.85rem 1rem; position: absolute; right: 1rem; top: calc(100% + 0.55rem); z-index: 40; }
  .nav-links.is-open { display: flex; }
  .nav-links a { border-bottom: 1px solid var(--line); display: block; font-size: 0.95rem; padding: 0.75rem 0; width: 100%; }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-links .menu-cta { background: var(--accent-strong); border-color: var(--accent-strong); margin-top: 0.35rem; padding: 0.9rem; text-align: center; }
  .hero, .section { padding: 3.75rem 1rem; }
  .hero { display: grid; grid-template-columns: 1fr; min-height: auto; }
  .hero > div:first-child { max-width: none; }
  h1, .service-page h1 { font-size: clamp(2.55rem, 12vw, 3.85rem); max-width: 12ch; }
  .home-page h1 { max-width: 12ch; }
  h2 { max-width: 13ch; }
  .grid.two, .grid.three, .footer-inner { grid-template-columns: 1fr; }
  .actions, .button, .form-actions { width: 100%; }
  .preview-row { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

/* --- Trust strip (proven: 87% of SA reads reviews before choosing) --- */
.trust-strip { border-left: 2px solid var(--accent); margin: 1.3rem 0 1.5rem; padding: 0.35rem 0 0.35rem 1rem; }
.trust-line { color: var(--text); font-size: 0.95rem; margin: 0 0 0.2rem; }
.trust-line strong { font-weight: 700; }
.trust-sub { color: var(--quiet); font-size: 0.82rem; margin: 0; }
.proof-page-strip { margin-top: 2.5rem; }

/* --- Quiet secondary link under the single primary CTA --- */
.cta-sub { margin-top: 0.9rem; }
.quiet-link { color: var(--quiet); font-size: 0.88rem; text-decoration: none; }
.quiet-link:hover, .quiet-link:focus { color: var(--text); }

/* --- Proof block on the home page --- */
.proof-stats { display: flex; flex-wrap: wrap; gap: 2.4rem; margin: 1.6rem 0 1rem; }
.proof-stat strong { display: block; font-family: "Playfair Display", Georgia, serif; font-size: clamp(2.2rem, 4vw, 3.4rem); line-height: 1; }
.proof-stat span { color: var(--quiet); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; }
.proof-quote { border-left: 2px solid var(--accent); margin: 1.6rem 0; padding: 0.2rem 0 0.2rem 1rem; }
.proof-quote p { color: var(--text); font-size: 1.02rem; margin-bottom: 0.4rem; }
.proof-quote cite { color: var(--quiet); font-size: 0.85rem; font-style: normal; }
.aeo-line { color: var(--quiet); font-size: 0.92rem; max-width: 62ch; }
.proof-numbers strong { color: var(--text); }
.proof-card h2 { font-size: clamp(1.3rem, 1.9vw, 1.65rem); }

/* --- Founder strip: a real face and a real name --- */
.founder-inner { align-items: center; display: flex; gap: 2.2rem; }
.founder-inner img { border: 1px solid var(--line); flex-shrink: 0; height: auto; max-width: 180px; }
.founder-name { font-size: clamp(1.5rem, 2.4vw, 2.1rem); }
@media (max-width: 700px) { .founder-inner { align-items: flex-start; flex-direction: column; } }

/* --- Legal footer line (required on all assets) --- */
.footer-legal { border-top: 1px solid var(--line); margin: 0 auto; max-width: var(--max); padding: 1.1rem 1.5rem; }
.footer-legal .small { color: var(--quiet); font-size: 0.72rem; margin: 0; }
