:root {
  --cream: #f6eee3;
  --paper: #fffaf3;
  --ink: #24201d;
  --muted: #6d625b;
  --paprika: #d65338;
  --paprika-dark: #a63a27;
  --clay: #d7a98e;
  --apricot: #f1c99f;
  --sage: #9eaa91;
  --line: rgba(36, 32, 29, .15);
  --shadow: 0 24px 70px rgba(55, 37, 25, .11);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 100; background: var(--ink); color: white; padding: 10px 16px; border-radius: 8px; }
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 40px), var(--max));
  min-height: 76px;
  margin: 16px auto 0;
  padding: 14px 16px 14px 24px;
  background: rgba(255, 250, 243, .97);
  border: 1px solid rgba(214,83,56,.28);
  border-radius: 18px;
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 36px rgba(55,37,25,.13);
}
.brand { display: inline-flex; flex-direction: column; text-decoration: none; font-weight: 900; letter-spacing: -.03em; line-height: .9; }
.brand > span { font-size: 26px; }
.brand small { margin-top: 8px; color: var(--paprika-dark); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.strike-word { position: relative; }
.strike-word::after { content: ""; position: absolute; left: -4px; right: -4px; top: 48%; height: 4px; background: var(--paprika); transform: rotate(-7deg); border-radius: 2px; }
nav { display: flex; align-items: center; gap: 30px; }
nav a { font-size: 14px; font-weight: 800; text-decoration: none; }
nav a:not(.nav-cta):hover { color: var(--paprika-dark); }
.nav-cta { padding: 13px 19px; background: var(--paprika); color: white; border-radius: 11px; box-shadow: 0 8px 20px rgba(214,83,56,.2); }
.nav-cta:hover { background: var(--paprika-dark); }
.menu-button, .mobile-nav { display: none; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: center;
  gap: 70px;
  width: min(calc(100% - 40px), var(--max));
  min-height: 720px;
  margin: 0 auto;
  padding: 80px 0 90px;
}
.hero::before { content: ""; position: absolute; width: 360px; height: 360px; left: -190px; top: 80px; background: var(--apricot); border-radius: 50%; filter: blur(1px); opacity: .32; z-index: -1; }
.eyebrow { margin: 0 0 18px; color: var(--paprika-dark); font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow.light { color: var(--apricot); }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 720px; margin-bottom: 28px; font-size: clamp(52px, 6.2vw, 88px); line-height: .95; letter-spacing: -.065em; }
h1 span { color: var(--paprika); }
.hero-lede { max-width: 640px; margin-bottom: 32px; color: #514943; font-size: 20px; line-height: 1.55; }
.button-row { display: flex; align-items: center; gap: 24px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 52px; padding: 0 20px; border-radius: 12px; font-size: 14px; font-weight: 800; text-decoration: none; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--paprika); color: white; box-shadow: 0 10px 28px rgba(214,83,56,.24); }
.button-primary:hover { background: var(--paprika-dark); }
.text-link { display: inline-block; font-size: 14px; font-weight: 800; text-underline-offset: 5px; }
.microcopy { margin: 18px 0 0; color: var(--muted); font-size: 12px; }

.diagnostic-card { position: relative; overflow: hidden; padding: 32px; background: var(--ink); color: white; border-radius: 28px; box-shadow: var(--shadow); transform: rotate(1.5deg); }
.diagnostic-card::after { content: ""; position: absolute; width: 160px; height: 160px; right: -40px; bottom: -80px; border: 30px solid rgba(241,201,159,.12); border-radius: 50%; }
.card-topline { display: flex; justify-content: space-between; color: var(--apricot); font-size: 10px; font-weight: 800; letter-spacing: .12em; }
.diagnostic-card h2 { margin: 34px 0 32px; font-size: clamp(34px, 4vw, 52px); line-height: 1; letter-spacing: -.04em; }
.signal-list { display: grid; gap: 17px; }
.signal-list div { display: grid; grid-template-columns: 90px 1fr; align-items: center; gap: 16px; font-size: 12px; }
.signal-list i { position: relative; display: block; height: 7px; background: rgba(255,255,255,.12); border-radius: 8px; }
.signal-list i::after { content: ""; display: block; width: var(--w); height: 100%; background: var(--apricot); border-radius: inherit; }
.card-note { position: relative; margin: 30px 0 0; padding: 16px; background: rgba(255,255,255,.08); border-radius: 12px; font-size: 12px; }
.card-note span { text-decoration: line-through 3px var(--paprika); }

.proof-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,.12); color: white; border-bottom: 1px solid rgba(255,255,255,.12); }
.proof-strip div { display: flex; align-items: center; gap: 16px; min-height: 128px; padding: 24px max(24px, calc((100vw - var(--max))/8)); background: var(--ink); }
.proof-strip strong { color: var(--apricot); font-size: 38px; letter-spacing: -.05em; }
.proof-strip span { max-width: 160px; color: #d7d0c8; font-size: 12px; line-height: 1.4; }

.section { padding: 120px max(20px, calc((100vw - var(--max))/2)); }
.section-heading { max-width: 790px; margin-bottom: 55px; }
.section-heading h2, .approach-intro h2, .about-copy h2, .final-cta h2 { margin-bottom: 22px; font-size: clamp(40px, 5vw, 68px); line-height: 1.02; letter-spacing: -.055em; }
.section-heading > p:last-child, .approach-intro > p:last-child { max-width: 650px; color: var(--muted); font-size: 18px; }
.three-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.problem-card { min-height: 300px; padding: 28px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.problem-card > span { display: inline-flex; width: 38px; height: 38px; align-items: center; justify-content: center; background: var(--apricot); border-radius: 50%; font-size: 11px; font-weight: 900; }
.problem-card h3 { margin: 68px 0 16px; font-size: 25px; letter-spacing: -.035em; }
.problem-card p { color: var(--muted); }

.approach-section { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 80px; background: var(--ink); color: white; }
.approach-intro > p:last-child { color: #cbc1b7; }
.system-map { position: relative; min-height: 510px; }
.orbit { position: absolute; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }
.orbit span { position: absolute; padding: 5px 9px; background: var(--ink); color: #e9ded3; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }
.orbit-one { inset: 3% 10%; }.orbit-one span { top: -13px; left: 46%; }
.orbit-two { inset: 11% 2%; transform: rotate(35deg); }.orbit-two span { bottom: 4%; left: 6%; transform: rotate(-35deg); }
.orbit-three { inset: 17% 19%; transform: rotate(-50deg); }.orbit-three span { top: -7%; right: 2%; transform: rotate(50deg); }
.orbit-four { inset: 26% 7%; transform: rotate(70deg); }.orbit-four span { top: 17%; left: -8%; transform: rotate(-70deg); }
.orbit-five { inset: 32% 27%; }.orbit-five span { bottom: -13px; left: 35%; }
.map-centre { position: absolute; left: 50%; top: 50%; display: grid; width: 140px; height: 140px; place-items: center; background: var(--paprika); border-radius: 50%; transform: translate(-50%,-50%); text-align: center; font-weight: 900; line-height: 1.15; box-shadow: 0 0 0 18px rgba(214,83,56,.12); }

.shift-section { background: var(--paper); }
.shift-panel { overflow: hidden; display: grid; grid-template-columns: 310px 1fr; min-height: 410px; border: 1px solid var(--line); border-radius: 26px; box-shadow: var(--shadow); }
.tab-list { display: flex; flex-direction: column; padding: 18px; background: #ede1d4; gap: 8px; }
.tab-list button { flex: 1; padding: 18px; background: transparent; color: var(--ink); border: 0; border-radius: 12px; text-align: left; font: inherit; font-weight: 800; cursor: pointer; }
.tab-list button:hover { background: rgba(255,255,255,.52); }
.tab-list button[aria-selected="true"] { background: var(--paprika); color: white; }
.tab-content { display: grid; align-items: center; padding: 34px 50px; background: white; }
.tab-panel { display: grid; gap: 20px; }
.tab-panel[hidden] { display: none; }
.tab-panel div { display: grid; grid-template-columns: 125px 1fr; gap: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.tab-panel div:last-child { border: 0; padding-bottom: 0; }
.tab-panel span { color: var(--paprika-dark); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.tab-panel p { margin: 0; font-size: 22px; line-height: 1.35; letter-spacing: -.02em; }

.process-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 22px; }
.process-card { padding: 36px; border-radius: var(--radius); }
.free-card { background: var(--paprika); color: white; }
.card-label { color: #ffe0cf; font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.process-card h3 { font-size: 33px; letter-spacing: -.04em; }
.process-card ul { margin: 30px 0; padding-left: 20px; }
.process-card li { margin: 12px 0; }
.boundary { margin: 0; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.28); color: #ffe9dd; font-size: 13px; }
.paid-steps { overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.paid-steps article { display: grid; grid-template-columns: 46px 1fr; gap: 20px; padding: 29px 32px; border-bottom: 1px solid var(--line); }
.paid-steps article:last-child { border-bottom: 0; }
.paid-steps article > span { color: var(--paprika); font-size: 12px; font-weight: 900; }
.paid-steps h3 { margin-bottom: 7px; font-size: 20px; }
.paid-steps p { margin: 0; color: var(--muted); font-size: 14px; }

.evidence-section { background: #332d29; color: white; }
.case-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.case-card { display: flex; flex-direction: column; min-height: 510px; padding: 28px; background: #413934; border: 1px solid rgba(255,255,255,.11); border-radius: var(--radius); }
.case-card:nth-child(2) { background: #65473b; }.case-card:nth-child(3) { background: #485044; }
.case-type { color: var(--apricot); font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.case-card h3 { margin: 24px 0 18px; font-size: 27px; line-height: 1.16; letter-spacing: -.035em; }
.case-card > p:not(.case-type) { color: #ded5ce; font-size: 14px; }
.case-stat { display: flex; align-items: baseline; gap: 12px; margin-top: auto; padding-top: 13px; border-top: 1px solid rgba(255,255,255,.14); }
.case-stat + .case-stat { margin-top: 0; }
.case-stat strong { color: var(--apricot); font-size: 38px; }.case-stat span { color: #d6cdc5; font-size: 11px; }
.case-card small { margin-top: 18px; color: #bdb2aa; font-size: 9px; line-height: 1.45; }
.case-outcome { margin-top: auto; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.14); color: var(--apricot); font-size: 24px; font-weight: 800; line-height: 1.45; }

.about-section { display: grid; grid-template-columns: .7fr 1.3fr; align-items: center; gap: 85px; }
.portrait-card { position: relative; overflow: hidden; min-height: 510px; background: var(--apricot); border: 1px solid rgba(36,32,29,.1); border-radius: 40% 40% 24px 24px; box-shadow: 0 24px 55px rgba(55,37,25,.14); }
.portrait-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 40%; }
.about-copy h2 { max-width: 760px; }
.about-copy > p:not(.eyebrow) { max-width: 680px; color: var(--muted); font-size: 17px; }
.dark-link { margin-top: 18px; }

.final-cta { position: relative; overflow: hidden; padding: 120px max(20px, calc((100vw - var(--max))/2)); background: var(--paprika); color: white; }
.final-cta > div:not(.cta-mark) { position: relative; z-index: 2; }
.final-cta h2 { font-size: clamp(52px,7vw,92px); }
.final-cta p:not(.eyebrow) { max-width: 680px; color: #ffe4d8; font-size: 19px; }
.contact-layout { display: grid; grid-template-columns: .82fr 1.18fr; align-items: start; gap: 70px; }
.contact-intro { position: sticky; top: 110px; }
.contact-whatsapp { margin-top: 12px; color: white; }
.consultation-form { display: grid; gap: 18px; padding: 30px; background: var(--paper); color: var(--ink); border-radius: 24px; box-shadow: 0 24px 60px rgba(70,28,18,.2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.consultation-form label { display: grid; gap: 8px; font-size: 12px; font-weight: 800; line-height: 1.4; }
.consultation-form label small { color: #766a61; font-size: 10px; font-weight: 600; }
.consultation-form input, .consultation-form select, .consultation-form textarea { width: 100%; padding: 13px 14px; background: white; color: var(--ink); border: 1px solid var(--line); border-radius: 10px; font: inherit; font-size: 14px; }
.consultation-form textarea { resize: vertical; }
.consultation-form input:focus, .consultation-form select:focus, .consultation-form textarea:focus { outline: 3px solid var(--apricot); border-color: var(--paprika); }
.form-submit { justify-self: start; border: 0; background: var(--ink); color: white; cursor: pointer; }
.form-submit:hover { background: var(--paprika-dark); }
.final-cta .form-note { margin: 0; color: #766a61; font-size: 11px; line-height: 1.5; }
.cta-mark { position: absolute; right: -40px; top: -100px; color: rgba(255,255,255,.08); font-size: 620px; font-weight: 900; line-height: 1; transform: rotate(8deg); }
.cta-mark::after { content: ""; position: absolute; left: -40px; right: -30px; top: 46%; height: 22px; background: rgba(36,32,29,.22); transform: rotate(-13deg); }

footer { display: grid; grid-template-columns: 1fr auto auto; align-items: end; gap: 40px; padding: 38px max(20px, calc((100vw - var(--max))/2)); background: var(--ink); color: #d1c6bd; }
.footer-brand { color: white; }
footer p { margin: 0; font-size: 11px; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
:focus-visible { outline: 3px solid var(--apricot); outline-offset: 4px; }

@media (max-width: 900px) {
  nav { display: none; }
  .menu-button { display: block; padding: 10px 13px; background: var(--ink); color: white; border: 0; border-radius: 9px; font-weight: 800; }
  .mobile-nav { position: fixed; z-index: 19; left: 20px; right: 20px; top: 85px; flex-direction: column; padding: 20px; background: var(--paper); border-radius: 14px; box-shadow: var(--shadow); }
  .mobile-nav:not([hidden]) { display: flex; }
  .mobile-nav a { padding: 12px; font-weight: 800; text-decoration: none; }
  .hero { grid-template-columns: 1fr; gap: 45px; padding-top: 80px; }
  .diagnostic-card { max-width: 600px; }
  .proof-strip { grid-template-columns: repeat(2,1fr); }
  .three-grid, .case-grid { grid-template-columns: 1fr; }
  .problem-card { min-height: 240px; }.problem-card h3 { margin-top: 48px; }
  .approach-section, .process-grid, .about-section { grid-template-columns: 1fr; }
  .approach-section { gap: 30px; }.system-map { min-height: 460px; }
  .shift-panel { grid-template-columns: 1fr; }.tab-list { display: grid; grid-template-columns: 1fr 1fr; }.tab-list button { min-height: 70px; }
  .case-card { min-height: auto; }.case-stat:first-of-type, .case-outcome { margin-top: 50px; }
  .portrait-card { min-height: 430px; max-width: 500px; width: 100%; }
  .contact-layout { grid-template-columns: 1fr; gap: 38px; }
  .contact-intro { position: static; }
  footer { grid-template-columns: 1fr; align-items: start; }
}

@media (max-width: 600px) {
  .site-header { min-height: 68px; width: calc(100% - 24px); margin-top: 8px; padding: 11px 12px 11px 17px; }
  .brand > span { font-size: 22px; }
  .brand small { margin-top: 7px; font-size: 7px; }
  .hero { width: calc(100% - 32px); min-height: auto; padding: 70px 0; }
  h1 { font-size: 50px; }
  .hero-lede { font-size: 17px; }
  .button-row { align-items: flex-start; flex-direction: column; }
  .diagnostic-card { padding: 24px; transform: none; }
  .proof-strip { grid-template-columns: 1fr; }.proof-strip div { min-height: 94px; padding: 20px; }
  .section { padding: 82px 20px; }
  .section-heading h2, .approach-intro h2, .about-copy h2 { font-size: 42px; }
  .system-map { min-height: 380px; }.map-centre { width: 112px; height: 112px; font-size: 14px; }
  .tab-list { grid-template-columns: 1fr; }.tab-content { padding: 30px 24px; }.tab-panel div { grid-template-columns: 1fr; gap: 8px; }.tab-panel p { font-size: 18px; }
  .process-card { padding: 28px; }.paid-steps article { padding: 25px 22px; }
  .form-row { grid-template-columns: 1fr; }
  .consultation-form { padding: 24px 20px; }
  .final-cta { padding: 84px 20px; }.final-cta h2 { font-size: 54px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
