:root {
  --ink: #171717;
  --ink-soft: #252525;
  --gold: #e3b421;
  --gold-dark: #b98900;
  --gold-pale: #fff7d8;
  --paper: #f7f6f1;
  --white: #ffffff;
  --muted: #686868;
  --line: #dedbd0;
  --green: #19a85b;
  --shadow: 0 24px 70px rgba(19, 19, 19, .12);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.site-intro {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
  pointer-events: none;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  contain: strict;
  will-change: opacity, transform;
  animation: intro-exit .72s cubic-bezier(.22,1,.36,1) .58s both;
}
.site-intro img {
  width: min(700px, 84vw);
  height: auto;
  transform: translate3d(0, 10px, 0) scale(.985);
  backface-visibility: hidden;
  will-change: opacity, transform;
  animation: intro-mark .5s cubic-bezier(.16,1,.3,1) .06s both;
}
.site-intro.is-skipped { display: none; }
@keyframes intro-mark {
  from { opacity: 0; transform: translate3d(0, 10px, 0) scale(.985); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}
@keyframes intro-exit {
  from { opacity: 1; transform: translate3d(0, 0, 0); }
  to { opacity: 0; transform: translate3d(0, -4%, 0); visibility: hidden; }
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -.035em;
  line-height: 1.06;
}
h1 { font-size: clamp(2.65rem, 7vw, 5.6rem); }
h2 { font-size: clamp(2.15rem, 4.7vw, 4rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.85rem); }
p { color: #4f4f4f; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  padding: .75rem 1rem;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
}
.skip-link:focus { top: 1rem; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section-tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.surface { background: var(--white); }
.dark { background: var(--ink); color: var(--white); }
.dark p { color: #c9c9c9; }
.gold-surface { background: var(--gold); color: var(--ink); }
.gold-surface p { color: #332b14; }
.grid-2 { display: grid; gap: clamp(2rem, 5vw, 5rem); grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; }
.grid-3 { display: grid; gap: 1.25rem; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.stack { display: grid; gap: 1rem; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1rem;
  color: var(--gold-dark);
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .14em;
  line-height: 1.25;
  text-transform: uppercase;
}
.dark .eyebrow { color: var(--gold); }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.section-head { max-width: 780px; margin-bottom: 2.5rem; }
.section-head h2 { margin-bottom: 1rem; }
.section-head p { max-width: 690px; font-size: 1.08rem; }
.lead { font-size: clamp(1.05rem, 1.8vw, 1.28rem); line-height: 1.65; }
.muted { color: var(--muted); }
.gold { color: var(--gold); }
.label {
  display: inline-flex;
  border: 1px solid rgba(227,180,33,.45);
  border-radius: 999px;
  padding: .45rem .75rem;
  background: rgba(227,180,33,.08);
  color: var(--gold);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(23,23,23,.95);
  color: var(--white);
  backdrop-filter: blur(14px);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: .75rem; min-width: max-content; }
.brand img { width: 45px; height: 45px; border-radius: 50%; background: #fff; object-fit: cover; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-size: .95rem; letter-spacing: .08em; }
.brand-copy small { margin-top: .3rem; color: var(--gold); font-size: .67rem; letter-spacing: .12em; text-transform: uppercase; }
.desktop-nav { display: flex; align-items: center; gap: 1.55rem; }
.desktop-nav > a:not(.btn) { color: #d7d7d7; font-size: .88rem; font-weight: 650; }
.desktop-nav > a:not(.btn):hover, .desktop-nav > a[aria-current="page"] { color: var(--gold); }
.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 12px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}
.menu-button svg { width: 24px; height: 24px; }
.mobile-panel { display: none; }
.mobile-panel.open { display: grid; gap: .35rem; padding: .25rem 20px 1.25rem; }
.mobile-panel a { min-height: 48px; display: flex; align-items: center; padding: .6rem .75rem; border-radius: 10px; color: #ececec; font-weight: 650; }
.mobile-panel a:hover { background: rgba(255,255,255,.06); color: var(--gold); }

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: .85rem 1.15rem;
  font-weight: 850;
  line-height: 1.2;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--ink); box-shadow: 0 12px 35px rgba(227,180,33,.2); }
.btn-primary:hover { background: #f0c735; }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: #000; }
.btn-outline { border-color: rgba(255,255,255,.3); color: var(--white); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-row { display: flex; flex-wrap: wrap; align-items: center; gap: .85rem; }
.text-link { display: inline-flex; align-items: center; gap: .4rem; color: var(--gold-dark); font-weight: 800; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }

.hero {
  position: relative;
  min-height: calc(100svh - 78px);
  display: flex;
  align-items: center;
  padding: clamp(3.25rem, 6vw, 5.5rem) 0;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  right: -220px;
  top: -250px;
  border: 1px solid rgba(227,180,33,.3);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(227,180,33,.025), 0 0 0 144px rgba(227,180,33,.02);
}
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.16fr) minmax(300px, .84fr); gap: clamp(2rem, 6vw, 6rem); align-items: center; }
.hero h1 { max-width: 820px; margin-bottom: 1.25rem; font-size: clamp(2.9rem, 4.8vw, 4.35rem); }
.hero .lead { max-width: 720px; color: #d0d0d0; }
.hero-actions { margin-top: 2rem; }
.hero-note { margin-top: 1.25rem; color: #a7a7a7; font-size: .88rem; }
.audience-filter { width: fit-content; display: flex; align-items: center; gap: .6rem; margin: .15rem 0 1.2rem; padding: .55rem .8rem; border: 1px solid rgba(227,180,33,.4); border-radius: 999px; background: rgba(227,180,33,.08); color: #f2e3a5; font-size: .78rem; font-weight: 800; letter-spacing: .035em; }
.audience-filter span { width: 8px; height: 8px; flex: 0 0 auto; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 5px rgba(227,180,33,.11); }
.portrait-wrap { position: relative; width: min(100%, 315px); margin-left: auto; }
.portrait-wrap::before { content: ""; position: absolute; inset: 18px -18px -18px 18px; border-radius: 28px; background: var(--gold); }
.portrait-wrap img { position: relative; width: 100%; height: auto; aspect-ratio: auto; border-radius: 24px; object-fit: contain; object-position: center; filter: saturate(.9) contrast(1.03); box-shadow: var(--shadow); }
.portrait-tag { position: absolute; left: -24px; bottom: 28px; z-index: 2; max-width: 250px; padding: .9rem 1rem; border-radius: 14px; background: #fff; color: var(--ink); box-shadow: var(--shadow); }
.portrait-tag strong { display: block; font-family: Georgia, serif; font-size: 1.12rem; }
.portrait-tag span { color: #626262; font-size: .8rem; }

.trust-strip { border-bottom: 1px solid var(--line); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); }
.trust-item { padding: 1.4rem 1.6rem; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; margin-bottom: .15rem; font-size: .96rem; }
.trust-item span { color: var(--muted); font-size: .83rem; }

.impact-strip { padding: 1.8rem 0 1.25rem; background: var(--gold); color: var(--ink); }
.impact-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); }
.impact-item { padding: .4rem 1.5rem; border-right: 1px solid rgba(23,23,23,.22); }
.impact-item:first-child { padding-left: 0; }
.impact-item:last-child { padding-right: 0; border-right: 0; }
.impact-item strong { display: block; min-width: 3ch; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.2rem,4vw,4rem); font-variant-numeric: tabular-nums; letter-spacing: -.055em; line-height: .95; }
.impact-item span { display: block; margin-top: .55rem; font-size: .78rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.impact-note { margin-top: 1.15rem; margin-bottom: 0; color: #483a0d; font-size: .8rem; font-weight: 700; }

.problem-quote { max-width: 970px; }
.problem-quote h2 { margin-bottom: 1.5rem; }
.marker { background: linear-gradient(transparent 62%, rgba(227,180,33,.45) 62%); }
.callout { padding: 1.2rem 1.3rem; border-left: 4px solid var(--gold); background: var(--gold-pale); }
.callout p:last-child { margin-bottom: 0; }
.pain-grid { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(300px,.9fr); gap: clamp(2rem,7vw,7rem); align-items: end; }
.pain-grid .problem-quote { max-width: none; }
.pain-copy { padding-left: 1.5rem; border-left: 3px solid var(--gold); }
.pain-question { margin: 1.5rem 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.8rem,3vw,2.75rem); font-weight: 700; line-height: 1.05; }

.card {
  height: 100%;
  padding: clamp(1.35rem, 2.5vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:hover { transform: translateY(-5px); border-color: #c8b66a; box-shadow: 0 18px 45px rgba(22,22,22,.09); }
.card-number { width: 44px; height: 44px; display: grid; place-items: center; margin-bottom: 1.5rem; border-radius: 50%; background: var(--ink); color: var(--gold); font-weight: 900; }
.card h3 { margin-bottom: .8rem; }
.card p { margin-bottom: 1.35rem; }
.services-grid { display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 1.25rem; }
.services-grid .card { grid-column: span 2; }
.services-grid .card:nth-child(4), .services-grid .card:nth-child(5) { grid-column: span 3; }

.method-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; counter-reset: step; }
.method-step { position: relative; min-height: 305px; padding: 1.5rem; border: 1px solid rgba(255,255,255,.13); border-radius: 20px; background: var(--ink-soft); }
.method-step::before { counter-increment: step; content: "0" counter(step); display: block; margin-bottom: 2.6rem; color: var(--gold); font-size: .8rem; font-weight: 900; letter-spacing: .16em; }
.method-step > span { display: block; margin-bottom: .55rem; color: var(--gold); font-size: .72rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.method-step h3 { color: #fff; }
.method-step p { font-size: .94rem; }
.method-summary { display: grid; grid-template-columns: auto 1fr; gap: 1rem; margin-top: 1rem; padding: 1.35rem 1.5rem; border: 1px solid rgba(227,180,33,.35); border-radius: 18px; background: #1d1d1d; }
.method-summary strong { color: var(--gold); }
.method-summary span { color: #d3d3d3; }

.fit-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1.25rem; }
.fit-card { padding: clamp(1.5rem, 3vw, 2.5rem); border-radius: 24px; }
.fit-card.good { background: var(--ink); color: #fff; }
.fit-card.not-yet { border: 2px solid #d6a20b; background: #fff9e8; }
.fit-card h3 { margin-bottom: 1.5rem; }
.fit-label { display: inline-flex; margin-bottom: 1rem; padding: .42rem .7rem; border-radius: 999px; background: var(--gold); color: var(--ink); font-size: .73rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.fit-card.not-yet .fit-label { background: var(--ink); color: #fff; }
.check-list { display: grid; gap: 1rem; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 1.8rem; color: inherit; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .58rem; width: 10px; height: 10px; border-radius: 50%; background: var(--gold); }
.fit-card.good .check-list li { color: #d5d5d5; }

.results-stage { background: #111; color: #fff; }
.results-stage p { color: #bcbcbc; }
.results-stage .eyebrow { color: var(--gold); }
.results-stage .result-card { color: var(--ink); }
.results-intro { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(250px,.65fr); gap: clamp(2rem,6vw,5rem); align-items: end; margin-bottom: 1.5rem; }
.results-intro h2 { max-width: 850px; margin-bottom: 0; }
.results-promise { min-height: 190px; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; border-radius: 22px; background: var(--gold); color: var(--ink); }
.results-promise strong { display: block; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.6rem,5vw,4.6rem); letter-spacing: -.055em; line-height: .92; }
.results-promise span { margin-top: .8rem; font-weight: 850; }
.results-lead { max-width: 800px; margin: 0 0 2rem; font-size: 1.12rem; }
.results-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1rem; }
.result-card { height: max-content; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.result-card button { width: 100%; min-height: 330px; display: flex; align-items: center; justify-content: center; padding: .75rem; border: 0; background: #f3f4f4; cursor: zoom-in; }
.result-card img { width: auto; max-width: 100%; height: auto; max-height: 520px; aspect-ratio: auto; object-fit: contain; object-position: center; }
.result-copy { padding: 1rem 1.1rem 1.2rem; }
.result-copy strong { display: block; font-size: 1.08rem; }
.result-copy span { color: var(--muted); font-size: .84rem; }
.result-question { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; margin-top: 1.5rem; padding: clamp(1.4rem,3vw,2.2rem); border: 1px solid rgba(227,180,33,.35); border-radius: 22px; background: #1d1d1d; }
.result-question > p { max-width: 700px; margin: 0; color: #fff; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.35rem,2.5vw,2rem); line-height: 1.2; }
.result-question > div { display: grid; justify-items: end; gap: .9rem; }
.result-question > div strong { color: var(--gold); font-size: 1.05rem; }
.evidence-note { margin: 1rem 0 0; color: #9c9c9c !important; font-size: .82rem; }
.gallery-instruction { margin: 0 0 1.25rem; color: #d1d1d1 !important; font-weight: 700; }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 1rem; }
.testimonial-card .result-copy { min-height: 155px; display: flex; flex-direction: column; justify-content: space-between; padding: 1.35rem; }
.testimonial-card .result-copy strong { font-family: Georgia, "Times New Roman", serif; font-size: 1.35rem; line-height: 1.25; }
.testimonial-card .result-copy span { display: block; margin-top: 1rem; font-weight: 700; }
.testimonial-card button { min-height: 360px; background: #182326; }
.testimonial-card img { max-height: 580px; }
.testimonial-card.proof-wide { grid-column: span 2; }
.position-proof { display: grid; grid-template-columns: minmax(250px,.62fr) minmax(0,1.38fr); gap: clamp(1.25rem,4vw,3rem); align-items: start; margin-top: 2rem; padding: clamp(1.35rem,3vw,2.2rem); border: 1px solid rgba(227,180,33,.3); border-radius: 24px; background: #191919; }
.position-copy h3 { margin-bottom: 1rem; color: #fff; }
.position-copy p { margin-bottom: 0; color: #bcbcbc; }
.position-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem; }
.position-grid .result-card button { min-height: 280px; }
.clients-block { margin-top: 4rem; padding: clamp(1.5rem,4vw,3.5rem); border-radius: 26px; background: var(--gold); }
.clients-heading { display: grid; grid-template-columns: minmax(0,1.35fr) minmax(240px,.65fr); gap: 1rem 3rem; align-items: end; margin-bottom: 2.25rem; }
.clients-heading .eyebrow { grid-column: 1 / -1; }
.clients-heading h2 { max-width: 700px; margin: 0; color: #171717; }
.clients-heading p { max-width: 560px; margin: 0; color: #45390f; }
.client-summary { grid-column: 1 / -1; display: flex; align-items: baseline; gap: .5rem 1rem; margin-top: .5rem; color: #40340d; }
.client-summary strong { font-family: Georgia, "Times New Roman", serif; font-size: 2rem; line-height: 1; }
.client-summary span { margin-right: 1rem; font-size: .82rem; font-weight: 750; text-transform: uppercase; letter-spacing: .045em; }
.client-wall { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1rem; }
.client-card { min-width: 0; min-height: 292px; display: flex; flex-direction: column; padding: 1.15rem; overflow: hidden; border: 1px solid rgba(23,23,23,.17); border-radius: 18px; background: rgba(255,255,255,.62); color: #171717; box-shadow: 0 12px 32px rgba(52,42,8,.08); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.client-card:hover { transform: translateY(-4px); border-color: rgba(23,23,23,.32); box-shadow: 0 18px 38px rgba(52,42,8,.14); }
.client-brand { display: flex; align-items: center; justify-content: space-between; gap: .75rem; }
.client-logo { position: relative; width: 58px; height: 58px; flex: 0 0 58px; display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(23,23,23,.13); border-radius: 15px; background: #fff; }
.client-logo img { position: relative; z-index: 2; width: 100%; height: 100%; padding: 8px; object-fit: contain; background: #fff; }
.client-logo span { position: absolute; inset: 0; display: grid; place-items: center; color: #171717; font-family: Georgia, "Times New Roman", serif; font-size: 1rem; font-weight: 800; letter-spacing: -.02em; }
.client-channel { padding: .42rem .62rem; border: 1px solid rgba(23,23,23,.14); border-radius: 999px; color: #51430f; font-size: .68rem; font-weight: 800; line-height: 1.2; text-align: center; text-transform: uppercase; letter-spacing: .045em; }
.client-copy { margin: 1.25rem 0 1rem; }
.client-category { color: #6a5819; font-size: .7rem; font-weight: 850; text-transform: uppercase; letter-spacing: .075em; }
.client-copy h3 { margin: .35rem 0 .3rem; font-family: Georgia, "Times New Roman", serif; font-size: 1.3rem; line-height: 1.12; }
.client-copy p { margin: 0; overflow: hidden; color: #645a3a; font-size: .78rem; line-height: 1.35; text-overflow: ellipsis; white-space: nowrap; }
.client-actions { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: auto; }
.client-link { min-height: 42px; display: inline-flex; align-items: center; justify-content: center; gap: .4rem; padding: .68rem .8rem; border: 1px solid rgba(23,23,23,.2); border-radius: 10px; color: #171717; font-size: .75rem; font-weight: 800; line-height: 1; text-decoration: none; transition: background .2s ease, color .2s ease, border-color .2s ease; }
.client-link-google { background: #171717; color: #fff; }
.client-link:hover { border-color: #171717; background: #171717; color: var(--gold); }
.clients-intro { margin-bottom: 2.5rem; }
.dark-wall { grid-template-columns: repeat(3,minmax(0,1fr)); }
.dark-wall .client-card { border-color: rgba(255,255,255,.14); background: #202020; color: #fff; box-shadow: none; }
.dark-wall .client-card:hover { border-color: rgba(227,180,33,.55); box-shadow: 0 18px 42px rgba(0,0,0,.28); }
.dark-wall .client-logo { border-color: rgba(255,255,255,.15); background: #fff; }
.dark-wall .client-channel { border-color: rgba(227,180,33,.28); color: var(--gold); }
.dark-wall .client-category { color: var(--gold); }
.dark-wall .client-copy p { color: #a9a9a9; }
.dark-wall .client-link { border-color: rgba(255,255,255,.17); color: #fff; }
.dark-wall .client-link-google { border-color: var(--gold); background: var(--gold); color: #171717; }
.dark-wall .client-link:hover { border-color: var(--gold); background: var(--gold); color: #171717; }
.metric-showcase { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 1px; margin: 2rem 0; overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: 20px; background: rgba(255,255,255,.14); }
.metric-showcase > div { min-height: 145px; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.25rem; background: #191919; }
.metric-showcase strong { color: var(--gold); font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem,3.8vw,3.5rem); line-height: 1; }
.metric-showcase span { margin-top: .55rem; color: #c7c7c7; font-size: .84rem; font-weight: 750; }
.hero-result-note { width: fit-content; display: grid; gap: .2rem; margin-top: 2rem; padding: 1rem 1.2rem; border: 1px solid rgba(227,180,33,.45); border-radius: 14px; }
.hero-result-note strong { color: var(--gold); font-family: Georgia, "Times New Roman", serif; font-size: 1.45rem; }
.hero-result-note span { color: #bcbcbc; font-size: .82rem; }
.metric-row { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; margin-bottom: 1.5rem; }
.metric { padding: 1.4rem; border-radius: 18px; background: var(--gold); }
.metric strong { display: block; font-family: Georgia, serif; font-size: clamp(2rem,4vw,3.4rem); line-height: 1; }
.metric span { display: block; margin-top: .5rem; color: #473a13; font-weight: 700; }

.about-photo { position: relative; width: min(100%, 380px); display: grid; place-items: center; margin-inline: auto; }
.about-photo img { width: 100%; height: auto; max-height: none; object-fit: contain; object-position: center; border-radius: 26px; box-shadow: var(--shadow); }
.about-badge { position: absolute; right: -18px; bottom: 22px; max-width: 240px; padding: 1rem 1.1rem; border-radius: 15px; background: var(--gold); font-weight: 800; line-height: 1.35; }

.credentials-section { background: #eeeae0; }
.credentials-intro { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(300px,.95fr); gap: clamp(2rem,6vw,5rem); align-items: end; margin-bottom: 2.5rem; }
.credentials-intro h2, .credentials-intro p { margin-bottom: 0; }
.credential-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1rem; }
.credential-card { overflow: hidden; border: 1px solid #d4cfc2; border-radius: 18px; background: #fff; }
.credential-card button { width: 100%; height: 210px; display: flex; align-items: center; justify-content: center; padding: .55rem; border: 0; border-bottom: 1px solid #e2ded3; background: #f5f3ec; cursor: zoom-in; }
.credential-card img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.credential-card > div { display: grid; gap: .35rem; padding: 1rem 1.1rem 1.15rem; }
.credential-card strong { line-height: 1.3; }
.credential-card span { color: var(--muted); font-size: .82rem; }

.faq-list { display: grid; gap: .75rem; max-width: 900px; }
.faq-list details { border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.faq-list summary { min-height: 60px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.2rem; cursor: pointer; font-weight: 800; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; flex: 0 0 auto; color: var(--gold-dark); font-size: 1.45rem; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { padding: 0 1.2rem 1.2rem; margin: 0; }

.cta-band { position: relative; overflow: hidden; border-radius: 30px; padding: clamp(2rem, 6vw, 5rem); background: var(--gold); }
.cta-band::after { content: "A"; position: absolute; right: -20px; bottom: -120px; color: rgba(23,23,23,.07); font-family: Georgia, serif; font-size: 23rem; line-height: 1; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { max-width: 850px; margin-bottom: 1rem; }
.cta-band p { max-width: 650px; font-size: 1.08rem; }

.page-hero { padding: clamp(4rem, 8vw, 7rem) 0; background: var(--ink); color: #fff; }
.page-hero h1 { max-width: 950px; margin-bottom: 1.25rem; font-size: clamp(2.65rem, 6vw, 5rem); }
.page-hero p { max-width: 760px; color: #c7c7c7; font-size: 1.15rem; }
.breadcrumbs { margin-bottom: 1.5rem; color: #aaa; font-size: .82rem; }
.breadcrumbs a { color: var(--gold); }
.content { max-width: 790px; }
.content h2 { margin-top: 3rem; margin-bottom: 1rem; font-size: clamp(1.8rem,3.5vw,2.7rem); }
.content h3 { margin-top: 2rem; }
.content p, .content li { font-size: 1.04rem; }
.content ul, .content ol { padding-left: 1.35rem; }
.content li { margin-bottom: .7rem; color: #4f4f4f; }
.content .callout { margin: 2rem 0; }
.toc { margin: 2rem 0; padding: 1.3rem 1.5rem; border: 1px solid var(--line); border-radius: 16px; background: #fff; }
.toc strong { display: block; margin-bottom: .7rem; }
.toc a { display: block; color: var(--gold-dark); padding: .25rem 0; }
.post-meta { display: flex; flex-wrap: wrap; gap: .75rem 1.25rem; margin: 1.2rem 0 0; color: #a7a7a7; font-size: .85rem; }
.author-box { display: grid; grid-template-columns: 78px 1fr; gap: 1rem; align-items: center; margin-top: 3rem; padding: 1.3rem; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.author-box img { width: 78px; height: 78px; border-radius: 50%; object-fit: cover; object-position: top; }
.author-box p { margin: .25rem 0 0; font-size: .9rem; }
.blog-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1.25rem; }
.blog-card { display: flex; flex-direction: column; }
.blog-card .label { align-self: flex-start; color: var(--gold-dark); }
.blog-card .text-link { margin-top: auto; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 1.25rem; }
.contact-card { padding: clamp(1.5rem,3vw,2.4rem); border-radius: 22px; }
.contact-card.dark { background: var(--ink); }
.contact-list { display: grid; gap: 1rem; margin: 1.5rem 0 0; padding: 0; list-style: none; }
.contact-list strong { display: block; color: var(--gold); font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; }
.contact-list span, .contact-list a { color: #e5e5e5; }

.site-footer { padding: 4rem 0 2rem; background: #111; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 2.5rem; }
.footer-brand p { max-width: 430px; color: #aaa; }
.footer-title { color: var(--gold); font-size: .77rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.footer-links { display: grid; gap: .55rem; margin-top: 1rem; color: #c9c9c9; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid #2a2a2a; color: #858585; font-size: .8rem; }
.slogan { margin: 2rem 0 0; color: #fff; font-family: Georgia, serif; font-size: clamp(1.5rem,3vw,2.4rem); }

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 28px rgba(10,120,62,.35);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: currentColor; }
.whatsapp-float::after { content: "1"; position: absolute; right: -2px; top: -3px; width: 20px; height: 20px; display: grid; place-items: center; border: 2px solid #fff; border-radius: 50%; background: #e53935; color: #fff; font-size: .7rem; font-weight: 900; }

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 980px;
  margin: auto;
  padding: 1rem 1.15rem;
  border: 1px solid #3c3c3c;
  border-radius: 16px;
  background: #1c1c1c;
  color: #fff;
  box-shadow: var(--shadow);
}
.cookie-banner.show { display: flex; }
.cookie-banner p { margin: 0; color: #cacaca; font-size: .86rem; }
.cookie-actions { display: flex; gap: .55rem; flex: 0 0 auto; }
.cookie-actions button { min-height: 44px; padding: .6rem .85rem; border: 1px solid #555; border-radius: 9px; background: transparent; color: #fff; cursor: pointer; }
.cookie-actions .accept { border-color: var(--gold); background: var(--gold); color: var(--ink); font-weight: 800; }

.image-dialog { width: min(92vw, 900px); max-height: 90vh; padding: 0; border: 0; border-radius: 18px; background: #111; color: #fff; box-shadow: var(--shadow); }
.image-dialog::backdrop { background: rgba(0,0,0,.78); }
.image-dialog img { width: 100%; max-height: 78vh; object-fit: contain; }
.dialog-bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .85rem 1rem; }
.dialog-bar button { width: 44px; height: 44px; border: 1px solid #444; border-radius: 50%; background: transparent; color: #fff; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .menu-button { display: inline-flex; }
  .hero-grid, .grid-2 { grid-template-columns: 1fr; }
  .hero-copy { order: 1; }
  .portrait-wrap { order: 2; width: min(72vw, 320px); margin: 1rem auto 0; }
  .services-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .services-grid .card, .services-grid .card:nth-child(4), .services-grid .card:nth-child(5) { grid-column: auto; }
  .method-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .impact-grid, .metric-showcase { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .impact-item:nth-child(2) { border-right: 0; }
  .impact-item:nth-child(-n+2) { padding-bottom: 1.25rem; margin-bottom: 1.25rem; border-bottom: 1px solid rgba(23,23,23,.22); }
  .pain-grid, .results-intro, .result-question { grid-template-columns: 1fr; }
  .position-proof, .credentials-intro { grid-template-columns: 1fr; }
  .credential-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .result-question > div { justify-items: start; }
  .client-wall, .dark-wall { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 4.25rem 0; }
  .site-header .brand-copy strong { font-size: .84rem; }
  .site-header .brand-copy small { font-size: .61rem; }
  .nav-wrap { min-height: 70px; }
  .brand img { width: 40px; height: 40px; }
  .hero { min-height: 0; padding: 3.7rem 0 4.5rem; }
  .hero-grid { gap: 3rem; }
  .hero h1 { font-size: clamp(2.45rem, 11.5vw, 3.55rem); }
  .audience-filter { align-items: flex-start; border-radius: 14px; font-size: .74rem; line-height: 1.35; }
  .audience-filter span { margin-top: .28rem; }
  .hero-actions .btn { width: 100%; }
  .portrait-wrap { width: min(76vw, 290px); max-width: none; margin: .5rem auto 0; }
  .portrait-wrap::before { inset: 12px -12px -12px 12px; }
  .portrait-tag { left: -14px; bottom: 16px; max-width: 220px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { padding: 1rem 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .grid-3, .services-grid, .method-grid, .fit-grid, .results-grid, .testimonial-grid, .metric-row, .blog-grid, .footer-grid { grid-template-columns: 1fr; }
  .impact-grid, .metric-showcase, .client-wall, .dark-wall { grid-template-columns: 1fr; }
  .impact-item { padding: 1rem 0; border-right: 0; border-bottom: 1px solid rgba(23,23,23,.22); }
  .impact-item:nth-child(-n+2) { padding-bottom: 1rem; margin-bottom: 0; }
  .impact-item:last-child { border-bottom: 0; }
  .pain-copy { padding-left: 1rem; }
  .results-promise { min-height: 150px; }
  .result-question .btn { width: 100%; }
  .result-card button, .testimonial-card button { min-height: 0; padding: .45rem; }
  .result-card img, .testimonial-card img { width: 100%; max-height: none; }
  .testimonial-card.proof-wide { grid-column: span 1; }
  .position-grid, .credential-grid { grid-template-columns: 1fr; }
  .position-grid .result-card button { min-height: 0; }
  .credential-card button { height: auto; min-height: 210px; }
  .method-summary { grid-template-columns: 1fr; }
  .clients-block { margin-top: 3rem; }
  .clients-heading { grid-template-columns: 1fr; align-items: start; }
  .clients-heading .eyebrow, .client-summary { grid-column: auto; }
  .client-summary { flex-wrap: wrap; }
  .client-summary span { margin-right: .4rem; }
  .client-card { min-height: 278px; }
  .footer-brand { grid-column: auto; }
  .method-step { min-height: 220px; }
  .method-step::before { margin-bottom: 2.5rem; }
  .cta-band { border-radius: 22px; }
  .footer-bottom { flex-direction: column; }
  .cookie-banner { left: 10px; right: 10px; bottom: 10px; align-items: stretch; flex-direction: column; }
  .cookie-actions { width: 100%; }
  .cookie-actions button { flex: 1; }
  .whatsapp-float { right: 14px; bottom: 14px; }
  .cookie-banner.show ~ .whatsapp-float { display: none; }
}

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