:root {
  --ink: #0c0c0d;
  --ink-2: #101012;
  --ink-3: #141416;
  --ink-4: #19191c;
  --paper: #f0ede8;
  --muted: #aaa59e;
  --muted-2: #7f7b76;
  --amber: #c8884a;
  --amber-hi: #dda15f;
  --amber-deep: #9a6132;
  --border: #252528;
  --border-hi: #37373b;
  --container: 1152px;
  --header-h: 64px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: "Geist", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
p { margin: 0 0 1.4rem; }
h1, h2, h3 { margin: 0; text-wrap: balance; }
h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -.035em;
  font-weight: 650;
}
h3 { line-height: 1.2; }
strong { color: var(--paper); }
::selection { background: var(--amber); color: var(--ink); }

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 1rem;
  top: 1rem;
  padding: .75rem 1rem;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-200%);
}
.skip-link:focus { transform: translateY(0); }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { position: relative; border-top: 1px solid rgba(255,255,255,.045); overflow: hidden; }
.eyebrow {
  margin: 0 0 1.5rem;
  color: var(--amber);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .13em;
  line-height: 1.5;
  text-transform: uppercase;
}
.section-intro { max-width: 680px; margin-top: 1.5rem; color: var(--muted); font-size: 1.05rem; }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-h);
  background: rgba(12,12,13,.92);
  border-bottom: 1px solid rgba(255,255,255,.06);
  backdrop-filter: blur(18px);
}
.header-inner {
  width: min(calc(100% - 48px), var(--container));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { font-size: 1rem; font-weight: 700; letter-spacing: -.04em; }
.brand span { color: var(--amber); }
.desktop-nav { display: flex; align-items: center; gap: 2.05rem; color: #a7a29c; font-size: .86rem; }
.desktop-nav > a:not(.button) { transition: color .25s ease; }
.desktop-nav > a:not(.button):hover { color: var(--paper); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: .78rem 1.75rem;
  border: 1px solid var(--amber);
  border-radius: 6px;
  background: var(--amber);
  color: var(--ink);
  font-weight: 650;
  line-height: 1;
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s var(--ease);
}
.button:hover { background: var(--amber-hi); border-color: var(--amber-hi); transform: translateY(-2px); }
.button--small { min-height: 46px; padding-inline: 1.75rem; }
.button--ghost { background: transparent; color: var(--muted); border-color: var(--border-hi); }
.button--ghost:hover { background: rgba(255,255,255,.035); border-color: #5a595a; color: var(--paper); }
.button--wide { width: 100%; }
.button--large { min-height: 58px; padding-inline: 2.2rem; gap: .8rem; }
.menu-toggle, .mobile-nav { display: none; }

.hero { min-height: 720px; padding-top: var(--header-h); background: var(--ink); display: grid; align-items: center; }
.hero-art, .hero-shade { position: absolute; inset: 0; pointer-events: none; }
.hero-art { background: url("assets/hero-bg.jpg") center / cover no-repeat; opacity: .64; }
.hero-shade {
  background:
    radial-gradient(circle at 82% 12%, rgba(200,136,74,.23), transparent 22%),
    linear-gradient(90deg, rgba(12,12,13,.26), rgba(12,12,13,.6) 64%, rgba(12,12,13,.22)),
    linear-gradient(0deg, rgba(12,12,13,.7), transparent 38%);
}
.hero-content { position: relative; z-index: 1; padding: 5.5rem 0 2.6rem; }
.hero h1 {
  max-width: 760px;
  margin-bottom: 1.4rem;
  font-size: clamp(4rem, 6.25vw, 5rem);
  line-height: 1.05;
  letter-spacing: -.045em;
  font-weight: 700;
}
.hero h1 span { color: var(--amber); }
.hero-copy { max-width: 635px; color: #b3aea7; font-size: 1.08rem; line-height: 1.72; }
.hero-actions { display: flex; gap: .75rem; margin-top: 2.1rem; }
.hero-promises {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem 2.4rem;
  margin: 2.8rem 0 0;
  padding: 0;
  color: #8e8983;
  font-size: .78rem;
  list-style: none;
}
.hero-promises li::before { content: ""; display: inline-block; width: 4px; height: 4px; margin-right: .65rem; background: var(--amber); vertical-align: middle; }

.section--geo { padding: 7rem 0; background: rgba(20,20,22,.96); }
.geo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(4rem, 10vw, 8rem); align-items: center; }
.geo-lead { min-height: 290px; position: relative; }
.geo-copy { color: var(--muted); font-size: 1.05rem; line-height: 1.75; }
.geo-copy blockquote { margin: 2.2rem 0 0; padding: 1.4rem 0 0; border-top: 1px solid var(--border); color: var(--paper); }
.geo-copy blockquote p { margin-bottom: .25rem; font-size: 1.12rem; }
.geo-copy cite { color: var(--amber); font-size: .72rem; font-style: normal; letter-spacing: .08em; text-transform: uppercase; }
.radar-mark { position: absolute; left: 0; bottom: 0; width: 150px; aspect-ratio: 1; border: 1px solid rgba(200,136,74,.14); border-radius: 50%; opacity: .7; }
.radar-mark::before, .radar-mark::after, .radar-mark span { content: ""; position: absolute; inset: 25%; border: 1px solid rgba(200,136,74,.15); border-radius: 50%; }
.radar-mark::after { inset: 43%; }
.radar-mark span:nth-child(1) { inset: 50% 0 auto; border: 0; border-top: 1px solid rgba(200,136,74,.16); border-radius: 0; }
.radar-mark span:nth-child(2) { inset: 0 auto 0 50%; border: 0; border-left: 1px solid rgba(200,136,74,.16); border-radius: 0; }
.radar-mark span:nth-child(3) { inset: 50%; width: 50%; height: 1px; border: 0; border-radius: 0; background: linear-gradient(90deg, var(--amber), transparent); transform-origin: left center; animation: radar 7s linear infinite; }
@keyframes radar { to { transform: rotate(360deg); } }

.section--signal { min-height: 420px; background: #0d0d0f; display: grid; place-items: center; }
.signal-art, .signal-lines { position: absolute; inset: 0; }
.signal-art { background: url("assets/keyboard.jpg") center 55% / cover no-repeat; opacity: .13; filter: grayscale(1); }
.signal-lines { display: grid; place-items: center; }
.signal-lines svg { width: min(780px, 78vw); overflow: visible; fill: var(--amber); opacity: .23; }
.signal-lines path { fill: none; stroke: var(--amber); stroke-width: 1; stroke-dasharray: 4 7; }
.signal-label { position: relative; z-index: 2; margin: 0; padding: .7rem 1.1rem; border: 1px solid rgba(200,136,74,.28); background: rgba(12,12,13,.74); color: var(--amber); font-family: "Geist Mono", monospace; font-size: .7rem; letter-spacing: .18em; }

.section--visibility { padding: 6.5rem 0 7rem; background: rgba(16,16,22,.96); }
.section--visibility h2 { max-width: 920px; }
.visibility-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .9rem; margin-top: 3rem; }
.visibility-card { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; background: rgba(12,12,13,.42); }
.visibility-card h3 { padding: 1.2rem; color: var(--amber); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.compare { display: grid; grid-template-columns: 1fr 1.25fr; border-top: 1px solid var(--border); }
.compare > div { min-height: 138px; padding: 1.2rem; }
.compare > div + div { border-left: 1px solid var(--border); background: rgba(200,136,74,.07); }
.compare span { display: block; margin-bottom: .65rem; color: var(--muted-2); font-size: .62rem; letter-spacing: .11em; text-transform: uppercase; }
.compare > div:last-child span { color: var(--amber); }
.compare p { margin: 0; color: #aaa69f; line-height: 1.5; }
.compare > div:last-child p { color: var(--paper); font-weight: 500; }

.proof { padding: 5.2rem 0; background: var(--ink-3); }
.proof-bg { position: absolute; inset: 0; background: url("assets/radar-bg.jpg") center / cover no-repeat; opacity: .18; }
.proof-grid { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 3.3rem; }
.proof-item strong { display: block; min-height: 85px; margin-bottom: .4rem; color: var(--amber); font-family: "Geist Mono", monospace; font-size: 3.4rem; font-weight: 600; line-height: .88; letter-spacing: -.08em; }
.proof-item span { display: block; margin-bottom: 1rem; color: var(--muted-2); font-size: .63rem; letter-spacing: .13em; text-transform: uppercase; }
.proof-item p { margin: 0; color: #9f9a94; font-size: .93rem; }

.section--why { padding: 7rem 0; background: rgba(12,12,12,.96); }
.before-after { display: grid; grid-template-columns: 1fr 80px 1fr; align-items: stretch; margin-top: 3.5rem; border: 1px solid var(--border); }
.before-after article { padding: 2rem; }
.before-after span { display: block; margin-bottom: .8rem; color: var(--amber); font-size: .7rem; letter-spacing: .13em; text-transform: uppercase; }
.before-after p { margin: 0; color: var(--muted); font-size: 1.04rem; }
.time-arrow { display: grid; place-items: center; color: var(--amber); font-size: 1.6rem; border-inline: 1px solid var(--border); }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 3.5rem; background: var(--border); border: 1px solid var(--border); }
.problem-grid article { position: relative; padding: 2rem; background: var(--ink); }
.problem-grid .number { color: var(--amber); font-family: "Geist Mono", monospace; font-size: .7rem; }
.problem-grid h3 { margin: 2.8rem 0 1rem; font-size: 1.25rem; }
.problem-grid p { margin: 0; color: var(--muted); }

.section--pricing { padding: 7rem 0; background: var(--ink) url("assets/pricing-bg.jpg") center / cover fixed; }
.section--pricing::before { content: ""; position: absolute; inset: 0; background: rgba(12,12,13,.72); }
.section--pricing > .container { position: relative; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 3.5rem; }
.price-card { position: relative; padding: 2.3rem; border: 1px solid var(--border-hi); border-radius: 8px; background: rgba(16,16,18,.9); box-shadow: 0 24px 60px rgba(0,0,0,.2); }
.price-card--featured { border-color: rgba(200,136,74,.7); }
.badge { display: inline-block; margin-bottom: 1.5rem; padding: .35rem .58rem; border-radius: 3px; background: var(--amber); color: var(--ink); font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.badge--subtle { background: transparent; border: 1px solid var(--border-hi); color: var(--amber); }
.price-name { margin-bottom: .55rem; color: var(--paper); font-size: 1.2rem; font-weight: 600; }
.price { margin: 0; color: var(--paper); font-family: "Geist Mono", monospace; font-size: clamp(3.2rem, 5vw, 4.6rem); line-height: 1; letter-spacing: -.08em; }
.price small { font-size: .45em; }
.price-meta { margin: 1rem 0 0; color: var(--muted-2); font-size: .62rem; letter-spacing: .09em; }
.price-divider { height: 1px; margin: 2rem 0; background: var(--border); }
.price-card h3 { margin-bottom: 1.2rem; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; }
.check-list { display: grid; gap: .7rem; margin: 0; padding: 0; list-style: none; color: #b5b0aa; }
.check-list li { display: flex; gap: .75rem; }
.check-list li::before { content: "—"; color: var(--amber); }
.promise { min-height: 95px; margin: 1.8rem 0; padding: 1.2rem; border-left: 2px solid var(--amber); background: rgba(200,136,74,.06); color: var(--muted); font-size: .88rem; }

.section--services { padding: 7rem 0; background: rgba(20,20,22,.97); }
.service-list { margin-top: 3.5rem; border-top: 1px solid var(--border-hi); }
.service-row { display: grid; grid-template-columns: 70px 1fr 150px 40px; gap: 1rem; align-items: center; min-height: 122px; border-bottom: 1px solid var(--border-hi); transition: background .3s ease, padding .3s var(--ease); }
.service-row:hover { padding-inline: 1rem; background: rgba(200,136,74,.06); }
.service-number { color: var(--amber); font-family: "Geist Mono", monospace; font-size: .72rem; }
.service-row h3 { margin-bottom: .5rem; font-size: 1.28rem; }
.service-row p { margin: 0; color: var(--muted); }
.service-price { color: var(--amber); font-size: .82rem; text-align: right; }
.service-arrow { color: var(--amber); font-size: 1.1rem; text-align: right; transition: transform .3s var(--ease); }
.service-row:hover .service-arrow { transform: translate(4px,-4px); }

.section--about { padding: 7rem 0; background: rgba(14,14,16,.97); }
.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 8rem; }
.about-copy > p:not(.eyebrow) { max-width: 510px; color: var(--muted); font-size: 1.03rem; }
.about-copy h2 { margin-bottom: 1.8rem; }
.portrait-placeholder { position: relative; min-height: 250px; margin-top: 2.5rem; display: grid; place-items: center; border: 1px solid var(--border); background: linear-gradient(145deg, #18181b, #0e0e10); overflow: hidden; }
.portrait-placeholder::before { content: ""; position: absolute; inset: 0; background: url("assets/radar-bg.jpg") center / cover; opacity: .12; }
.portrait-monogram { position: relative; color: var(--amber); font-family: "Geist Mono", monospace; font-size: 5rem; line-height: 1; }
.portrait-placeholder > span { position: absolute; right: 1rem; bottom: 1rem; color: var(--muted-2); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; }
.timeline .eyebrow { margin-bottom: 2rem; }
.timeline ol { position: relative; margin: 0; padding: 0; list-style: none; }
.timeline ol::before { content: ""; position: absolute; left: 57px; top: 8px; bottom: 8px; width: 1px; background: var(--border-hi); }
.timeline li { position: relative; display: grid; grid-template-columns: 90px 1fr; min-height: 115px; }
.timeline li::before { content: ""; position: absolute; left: 53px; top: 7px; width: 9px; height: 9px; border: 2px solid var(--amber); border-radius: 50%; background: var(--ink-2); }
.timeline li > span { color: var(--amber); font-family: "Geist Mono", monospace; font-size: .78rem; }
.timeline li p { margin: 0; color: var(--muted); }
.timeline li strong { font-size: 1.03rem; }

.section--faq { padding: 7rem 0; background: rgba(20,20,22,.98); }
.faq-grid { display: grid; grid-template-columns: .7fr 1.3fr; gap: 7rem; }
.accordion details { border-top: 1px solid var(--border-hi); }
.accordion details:last-child { border-bottom: 1px solid var(--border-hi); }
.accordion summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.4rem 0; cursor: pointer; list-style: none; color: #d6d2cc; font-weight: 500; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { flex: 0 0 auto; color: var(--amber); font-size: 1.3rem; transition: transform .3s var(--ease); }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { max-width: 680px; padding: 0 3rem 1.5rem 0; color: var(--muted); }

.section--blog { padding: 7rem 0; background: rgba(18,18,20,.98); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3rem; }
.blog-card { border: 1px solid var(--border); background: var(--ink-2); transition: transform .35s var(--ease), border-color .35s ease; }
.blog-card:hover { transform: translateY(-6px); border-color: rgba(200,136,74,.55); }
.blog-image { aspect-ratio: 16 / 8.7; background-position: center; background-size: cover; filter: saturate(.7); }
.blog-image--seo { background-image: url("assets/blog-seo.jpg"); }
.blog-image--geo { background-image: url("assets/blog-geo.jpg"); }
.blog-image--links { background-image: url("assets/blog-backlinks.jpg"); }
.blog-content { padding: 1.45rem; }
.blog-content > span { color: var(--amber); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; }
.blog-content h3 { min-height: 59px; margin: .8rem 0; font-size: 1.12rem; }
.blog-content p { min-height: 93px; color: var(--muted); font-size: .9rem; }
.blog-content strong { color: var(--amber); font-size: .76rem; font-weight: 500; }

.section--contact { padding: 7rem 0; background: rgba(20,20,22,.98); text-align: center; }
.contact-orbit { position: absolute; width: 520px; aspect-ratio: 1; left: 50%; top: 50%; translate: -50% -50%; border: 1px solid rgba(200,136,74,.08); border-radius: 50%; }
.contact-orbit::before, .contact-orbit::after { content: ""; position: absolute; inset: 18%; border: 1px solid rgba(200,136,74,.08); border-radius: 50%; }
.contact-orbit::after { inset: 38%; }
.contact-inner { position: relative; z-index: 1; }
.contact-inner > p:not(.eyebrow) { max-width: 580px; margin: 1.5rem auto 2rem; color: var(--muted); font-size: 1.05rem; }
.contact-inner small { display: block; margin-top: 1.1rem; color: var(--muted-2); }

.site-footer { padding: 2rem 0; border-top: 1px solid var(--border); background: #09090a; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; color: var(--muted-2); font-size: .75rem; }
.footer-inner p { margin: 0; }
.footer-inner > div { display: flex; gap: 1.4rem; }
.footer-inner a:hover { color: var(--paper); }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: .08s; }
.reveal--delay-2 { transition-delay: .16s; }
.reveal--delay-3 { transition-delay: .24s; }
.reveal--delay-4 { transition-delay: .32s; }

@media (max-width: 1000px) {
  .visibility-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 4rem; }
  .faq-grid { gap: 4rem; }
}

@media (max-width: 760px) {
  :root { --header-h: 63px; }
  .container, .header-inner { width: min(calc(100% - 40px), var(--container)); }
  h2 { font-size: clamp(2.05rem, 10vw, 2.75rem); }
  .desktop-nav { display: none; }
  .menu-toggle { display: grid; place-content: center; gap: 6px; width: 44px; height: 44px; padding: 0; border: 0; background: transparent; color: var(--paper); cursor: pointer; }
  .menu-toggle span { display: block; width: 21px; height: 1px; background: currentColor; transition: transform .3s var(--ease), opacity .3s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-nav { position: fixed; z-index: 101; top: var(--header-h); left: 0; right: 0; height: calc(100dvh - var(--header-h)); display: flex; flex-direction: column; align-items: stretch; padding: 1.2rem 20px 2rem; overflow-y: auto; background: var(--ink); }
  .mobile-nav[hidden] { display: none; }
  .mobile-nav a { padding: 1rem 0; border-bottom: 1px solid var(--border); font-size: 1.3rem; }
  .mobile-nav a:last-child { margin-top: 1rem; padding: 1rem; border: 0; border-radius: 5px; background: var(--amber); color: var(--ink); text-align: center; font-size: 1rem; font-weight: 650; }

  .hero { min-height: 780px; align-items: stretch; }
  .hero-art { background-position: 60% center; opacity: .5; }
  .hero-shade { background: linear-gradient(90deg, rgba(12,12,13,.22), rgba(12,12,13,.6)), linear-gradient(0deg, var(--ink) 0%, transparent 45%); }
  .hero-content { padding-top: 7.2rem; }
  .hero h1 { font-size: clamp(2.75rem, 12vw, 3.4rem); line-height: 1.03; letter-spacing: -.045em; }
  .hero-copy { font-size: 1rem; line-height: 1.75; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .button { width: min(100%, 230px); }
  .hero-promises { display: grid; gap: 1rem; margin-top: 2.8rem; }

  .section--geo, .section--visibility, .section--why, .section--pricing, .section--services, .section--about, .section--faq, .section--blog, .section--contact { padding: 5.5rem 0; }
  .geo-grid, .pricing-grid, .about-grid, .faq-grid { grid-template-columns: 1fr; gap: 3rem; }
  .geo-lead { min-height: 260px; }
  .section--signal { min-height: 330px; }
  .signal-lines svg { width: 125vw; }
  .visibility-grid, .proof-grid, .problem-grid, .blog-grid { grid-template-columns: 1fr; }
  .visibility-grid { gap: .75rem; }
  .proof { padding: 4rem 0; }
  .proof-grid { gap: 0; }
  .proof-item { padding: 2rem 0; border-bottom: 1px solid var(--border); }
  .proof-item:first-child { padding-top: 0; }
  .proof-item:last-child { border: 0; padding-bottom: 0; }
  .proof-item strong { min-height: auto; margin-bottom: .8rem; font-size: 3.1rem; }
  .before-after { grid-template-columns: 1fr; }
  .time-arrow { height: 56px; border-inline: 0; border-block: 1px solid var(--border); transform: rotate(90deg); }
  .problem-grid { gap: 1px; }
  .price-card { padding: 1.45rem; }
  .promise { min-height: auto; }
  .service-row { grid-template-columns: 42px 1fr 28px; padding: 1.4rem 0; }
  .service-price { grid-column: 2; text-align: left; }
  .service-arrow { grid-column: 3; grid-row: 1 / span 2; }
  .about-grid { gap: 4rem; }
  .timeline li { grid-template-columns: 76px 1fr; }
  .timeline ol::before { left: 45px; }
  .timeline li::before { left: 41px; }
  .accordion details p { padding-right: 0; }
  .blog-content h3, .blog-content p { min-height: auto; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .section--pricing { background-attachment: scroll; }
}

@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; }
}
