/* =========================================================
   Graphene Live — SEO & Growth Studio
   Studio Namma-inspired dark, type-led design system
   ========================================================= */

:root {
  --bg:        #0a0a0a;
  --bg-2:      #111110;
  --fg:        #ecebe4;   /* warm off-white */
  --muted:     #87867d;
  --line:      rgba(236, 235, 228, 0.12);
  --line-soft: rgba(236, 235, 228, 0.06);
  --accent:    #ccff00;   /* electric lime — growth */
  --accent-ink:#0a0a0a;

  --font-display: "Syne", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --pad: clamp(20px, 5vw, 90px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

/* Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
::selection { background: var(--accent); color: var(--accent-ink); }

/* Keyboard focus ring (does not show on mouse click) */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

/* ---------- Utility ---------- */
.accent { color: var(--accent); }
.muted  { color: var(--muted); }

/* ---------- Grain ---------- */
.grain {
  position: fixed; inset: -50%;
  z-index: 9990; pointer-events: none;
  opacity: 0.04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Custom cursor ---------- */
.cursor, .cursor-dot {
  position: fixed; top: 0; left: 0;
  border-radius: 50%; pointer-events: none;
  z-index: 9999; mix-blend-mode: difference;
  will-change: transform;
}
.cursor {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.6);
  transform: translate(-50%, -50%);
  transition: width .35s var(--ease), height .35s var(--ease), background .35s var(--ease), opacity .3s;
}
.cursor-dot {
  width: 5px; height: 5px; background: var(--fg);
  transform: translate(-50%, -50%);
}
.cursor.is-hover { width: 64px; height: 64px; background: rgba(255,255,255,0.1); }
.cursor.is-view  {
  width: 90px; height: 90px; background: var(--accent);
  border-color: var(--accent); mix-blend-mode: normal;
}
.cursor.is-view::after {
  content: "View"; color: var(--accent-ink);
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  display: grid; place-items: center; height: 100%;
}
@media (hover: none), (pointer: coarse) {
  .cursor, .cursor-dot { display: none; }
}

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--bg); display: flex;
  flex-direction: column; justify-content: flex-end;
  padding: var(--pad);
}
.preloader__inner {
  display: flex; justify-content: space-between; align-items: flex-end;
  flex-wrap: wrap; gap: 16px;
}
.preloader__mark {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(28px, 6vw, 64px); letter-spacing: -0.02em; line-height: 1;
}
.preloader__mark span { color: var(--accent); }
.preloader__count {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(40px, 12vw, 130px); line-height: 0.85; letter-spacing: -0.03em;
}
.preloader__count i { font-style: normal; font-size: 0.4em; color: var(--muted); }
.preloader__bar {
  height: 2px; background: var(--line); margin-top: 28px; overflow: hidden;
}
.preloader__bar span { display: block; height: 100%; width: 0; background: var(--accent); }
.preloader.is-done { transform: translateY(-101%); transition: transform 1s var(--ease); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 8000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--pad);
  mix-blend-mode: difference;
  transition: transform .5s var(--ease);
}
.nav.is-hidden { transform: translateY(-110%); }
.nav__logo {
  font-family: var(--font-display); font-weight: 800;
  font-size: 20px; letter-spacing: -0.02em; color: #fff;
}
.nav__logo span { color: var(--accent); }
.nav__links { display: flex; gap: 30px; }
.nav__links a {
  font-size: 14px; font-weight: 500; color: #fff; position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 1px; background: currentColor; transition: width .4s var(--ease);
}
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 600; color: #fff;
  border: 1px solid rgba(255,255,255,0.4); border-radius: 100px;
  padding: 9px 18px; transition: gap .4s var(--ease);
}
.nav__cta:hover { gap: 16px; }
.nav__cta-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.nav__burger { display: none; flex-direction: column; gap: 6px; width: 30px; z-index: 8500; }
.nav__burger span { height: 2px; width: 100%; background: #fff; transition: transform .4s var(--ease), opacity .3s; }
.nav.menu-open .nav__burger span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav.menu-open .nav__burger span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.menu {
  position: fixed; inset: 0; z-index: 7000;
  background: var(--bg-2); padding: 120px var(--pad) var(--pad);
  display: flex; flex-direction: column; justify-content: space-between;
  transform: translateY(-100%); transition: transform .7s var(--ease);
}
.menu.is-open { transform: translateY(0); }
.menu__links { display: flex; flex-direction: column; gap: 6px; }
.menu__links a {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(38px, 12vw, 76px); line-height: 1.05; letter-spacing: -0.02em;
  display: flex; align-items: baseline; gap: 16px;
}
.menu__links a span { font-size: 14px; color: var(--accent); font-family: var(--font-body); }
.menu__foot { display: flex; justify-content: space-between; color: var(--muted); font-size: 14px; }
.menu__foot a { color: var(--fg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 15px; border-radius: 100px;
  padding: 15px 28px; transition: transform .4s var(--ease), background .3s, color .3s;
}
.btn--accent { background: var(--accent); color: var(--accent-ink); }
.btn--accent:hover { transform: translateY(-3px); }
.btn--ghost { border: 1px solid var(--line); color: var(--fg); }
.btn--ghost:hover { border-color: var(--fg); transform: translateY(-3px); }
.btn--lg { padding: 19px 40px; font-size: 17px; }

/* ---------- Reveal base states ---------- */
.reveal { opacity: 0; transform: translateY(36px); }
.is-ready .reveal { opacity: 1; transform: none; } /* JS off fallback */
.reveal-lines .line-inner { display: inline-block; }

/* ---------- Section heads ---------- */
.section-head { margin-bottom: clamp(40px, 6vw, 80px); }
.section-head__tag {
  display: inline-block; font-size: 13px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 22px;
}
.section-head__title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(42px, 8vw, 110px); line-height: 0.95; letter-spacing: -0.03em;
}

/* ---------- HERO (centered) ---------- */
.hero {
  min-height: 100svh; padding: clamp(110px, 15vh, 180px) var(--pad) clamp(50px, 8vh, 96px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; top: 46%; left: 50%; transform: translate(-50%, -50%);
  width: min(92vw, 880px); height: min(92vw, 880px); border-radius: 50%;
  background: radial-gradient(circle, rgba(204,255,0,0.14), transparent 60%);
  filter: blur(50px); pointer-events: none;
}
.hero__inner {
  max-width: 1060px; margin: 0 auto; position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center;
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--muted);
  border: 1px solid var(--line); border-radius: 100px; padding: 9px 18px;
}
.hero__eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero__title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(38px, 6.4vw, 98px); line-height: 1.02;
  letter-spacing: -0.035em; max-width: 17ch; margin: clamp(26px, 4vh, 44px) auto 0;
}
.hero__lede {
  max-width: 56ch; margin: clamp(20px, 3vh, 32px) auto 0;
  font-size: clamp(16px, 1.35vw, 20px); color: var(--muted); line-height: 1.6;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: clamp(28px, 4vh, 44px); }
.hero__trust { margin-top: clamp(30px, 5vh, 54px); font-size: 13px; letter-spacing: 0.03em; color: var(--muted); }

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 26px 0; overflow: hidden; white-space: nowrap;
}
.marquee__track {
  display: inline-flex; align-items: center; gap: 40px;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(22px, 3vw, 40px); letter-spacing: -0.02em;
  animation: scroll 28s linear infinite;
}
.marquee__track .sep { color: var(--accent); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- INTRO ---------- */
.intro { padding: clamp(80px, 12vw, 180px) var(--pad); }
.intro__statement {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(26px, 4.4vw, 64px); line-height: 1.15; letter-spacing: -0.02em;
  max-width: 18ch + 100%; margin-bottom: clamp(60px, 8vw, 120px);
}
.intro__meta {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 40px; max-width: 760px; margin-left: auto;
}
.intro__meta .intro__label { font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--accent); margin-bottom: 14px; }
.intro__meta p { color: var(--muted); font-size: 17px; }

/* ---------- STATS ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.stat {
  padding: clamp(40px, 5vw, 70px) var(--pad);
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat__num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(44px, 6vw, 90px); line-height: 1; letter-spacing: -0.03em;
}
.stat__label { color: var(--muted); margin-top: 12px; font-size: 15px; }

/* ---------- WORK ---------- */
.work { padding: clamp(90px, 12vw, 180px) var(--pad); }
.work__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2vw, 28px);
}
.card {
  position: relative; border-radius: 20px; overflow: hidden;
  padding: clamp(26px, 3vw, 44px);
  min-height: clamp(320px, 38vw, 460px);
  display: flex; flex-direction: column; justify-content: space-between;
  background: linear-gradient(155deg, var(--c1, #161616), #0c0c0c 75%);
  border: 1px solid var(--line);
  transition: transform .6s var(--ease), border-color .4s;
}
.card::before {
  content: ""; position: absolute; bottom: -30%; right: -10%;
  width: 60%; height: 60%; border-radius: 50%;
  background: radial-gradient(circle, var(--c2, #ccff00), transparent 70%);
  opacity: 0.14; transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.card:hover { transform: translateY(-8px); border-color: var(--c2, var(--accent)); }
.card:hover::before { opacity: 0.28; transform: scale(1.25); }
.card__top { display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 2; }
.card__cat {
  font-size: 13px; padding: 6px 13px; border-radius: 100px;
  border: 1px solid var(--line); color: var(--fg);
}
.card__year { color: var(--muted); font-size: 13px; }
.card__metric {
  position: relative; z-index: 2; white-space: nowrap;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(52px, 8vw, 118px); line-height: 0.9; letter-spacing: -0.04em;
  color: var(--c2, var(--accent));
}
.card__metric i { font-style: normal; font-size: 0.45em; }
.card__foot { display: flex; justify-content: space-between; align-items: flex-end; position: relative; z-index: 2; }
.card__foot h3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(22px, 2.4vw, 32px); letter-spacing: -0.02em; }
.card__foot p { color: var(--muted); font-size: 15px; margin-top: 6px; }
.card__arrow {
  font-size: 30px; transition: transform .4s var(--ease);
}
.card:hover .card__arrow { transform: translate(6px, -6px); }
.work__note { color: var(--muted); font-size: 13px; margin-top: 26px; }

/* ---------- SERVICES ---------- */
.services { padding: clamp(90px, 12vw, 180px) var(--pad); border-top: 1px solid var(--line); }
.svc-list { list-style: none; }
.svc {
  display: grid; grid-template-columns: 90px 1fr 1.1fr; align-items: center; gap: 24px;
  padding: clamp(24px, 3vw, 40px) 8px;
  border-top: 1px solid var(--line);
  position: relative; transition: padding .5s var(--ease);
}
.svc:last-child { border-bottom: 1px solid var(--line); }
.svc::before {
  content: ""; position: absolute; inset: 0; background: var(--fg);
  transform: scaleY(0); transform-origin: bottom; transition: transform .5s var(--ease); z-index: 0;
}
.svc:hover::before { transform: scaleY(1); }
.svc > * { position: relative; z-index: 1; transition: color .4s var(--ease); }
.svc:hover { padding-left: 28px; }
.svc:hover, .svc:hover .svc__no, .svc:hover .svc__desc { color: var(--accent-ink); }
.svc__no { font-family: var(--font-display); font-weight: 700; color: var(--muted); font-size: 17px; }
.svc__name { font-family: var(--font-display); font-weight: 700; font-size: clamp(24px, 3.4vw, 48px); letter-spacing: -0.02em; }
.svc__desc { color: var(--muted); font-size: 16px; max-width: 42ch; }

/* ---------- APPROACH ---------- */
.approach { padding: clamp(90px, 12vw, 180px) var(--pad); border-top: 1px solid var(--line); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 40px); }
.step { border-top: 1px solid var(--accent); padding-top: 26px; }
.step__no { font-family: var(--font-display); font-weight: 700; color: var(--accent); font-size: 15px; }
.step h3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(22px, 2.4vw, 30px); margin: 18px 0 14px; letter-spacing: -0.02em; }
.step p { color: var(--muted); font-size: 16px; }

/* ---------- STUDIO ---------- */
.studio { padding: clamp(90px, 12vw, 180px) var(--pad); border-top: 1px solid var(--line); }
.studio__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(40px, 6vw, 100px); align-items: start; }
.studio__lead {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(24px, 3.2vw, 46px); line-height: 1.2; letter-spacing: -0.02em; margin-top: 24px;
}
.studio__values { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 44px; }
.studio__values span {
  border: 1px solid var(--line); border-radius: 100px; padding: 10px 20px; font-size: 15px;
}
.quote { border-left: 2px solid var(--accent); padding-left: 26px; }
.quote p { font-family: var(--font-display); font-weight: 600; font-size: clamp(20px, 2.4vw, 28px); line-height: 1.3; letter-spacing: -0.01em; }
.quote__by { margin-top: 26px; display: flex; flex-direction: column; gap: 4px; }
.quote__by strong { font-weight: 600; }
.quote__by span { color: var(--muted); font-size: 14px; }
.studio__note { color: var(--muted); font-size: 13px; margin-top: 24px; }

/* ---------- CONTACT ---------- */
.contact { padding: clamp(90px, 12vw, 180px) var(--pad); border-top: 1px solid var(--line); }
.contact__head { margin-bottom: clamp(40px, 6vw, 70px); }
.contact__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(54px, 11vw, 170px); line-height: 0.9; letter-spacing: -0.04em; }
.contact__form { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px, 3vw, 44px); max-width: 920px; }
.field { display: flex; flex-direction: column; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 12px; }
.field input, .field textarea, .field select {
  background: transparent; border: none; border-bottom: 1px solid var(--line);
  color: var(--fg); font-family: inherit; font-size: clamp(18px, 2vw, 24px);
  padding: 12px 0; transition: border-color .4s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(135,134,125,0.6); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); }
.field select option { background: var(--bg-2); color: var(--fg); }
.field textarea { resize: vertical; }
.contact__formnote { margin-top: 18px; font-size: 15px; color: var(--accent); min-height: 1.2em; }

/* ---------- FOOTER ---------- */
.footer { padding: clamp(60px, 8vw, 120px) var(--pad) 40px; border-top: 1px solid var(--line); }
.footer__big {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(34px, 8vw, 130px); letter-spacing: -0.03em; line-height: 1;
  padding-bottom: clamp(50px, 7vw, 100px); border-bottom: 1px solid var(--line); word-break: break-word;
}
.footer__big a { transition: color .4s; }
.footer__big a:hover { color: var(--accent); }
.footer__cols { display: grid; grid-template-columns: repeat(5, 1fr); gap: 30px; padding: clamp(40px, 5vw, 70px) 0; }
.footer__col .footer__h { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 18px; font-weight: 500; font-family: var(--font-body); }
.footer__col a, .footer__col p { display: block; color: var(--fg); font-size: 16px; margin-bottom: 8px; transition: color .3s; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: var(--muted); font-size: 14px; padding-top: 30px; border-top: 1px solid var(--line); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .intro__meta { grid-template-columns: 1fr; max-width: 520px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .studio__grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav { mix-blend-mode: normal; }
  .work__grid { grid-template-columns: 1fr; }
  .svc { grid-template-columns: 50px 1fr; gap: 14px; }
  .svc__desc { grid-column: 2; }
  .contact__form { grid-template-columns: 1fr; }
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--line); }
}

/* =========================================================
   Inner pages: hero, breadcrumbs, prose, FAQ, locations, blog
   ========================================================= */
.anim { opacity: 0; transform: translateY(24px); }
.is-ready .anim { opacity: 1; transform: none; }

/* Breadcrumbs */
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 9px; font-size: 13px; color: var(--muted); }
.crumbs a { color: var(--muted); transition: color .3s; }
.crumbs a:hover { color: var(--accent); }
.crumbs li[aria-current] { color: var(--fg); }
.crumbs__sep { opacity: .45; }

/* Inner page hero */
.page-hero { padding: clamp(118px, 16vh, 178px) var(--pad) clamp(48px, 6vw, 84px); position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
.page-hero::before { content: ""; position: absolute; top: -25%; right: -8%; width: 48vw; height: 48vw; border-radius: 50%; background: radial-gradient(circle, rgba(204,255,0,0.10), transparent 62%); filter: blur(50px); pointer-events: none; }
.page-hero__eyebrow { display: inline-block; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin: 22px 0 18px; }
.page-hero__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(38px, 6.4vw, 88px); line-height: 1.0; letter-spacing: -0.035em; max-width: 19ch; }
.page-hero__lede { max-width: 62ch; margin-top: 22px; font-size: clamp(16px, 1.4vw, 20px); color: var(--muted); line-height: 1.6; }
.page-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }

/* Answer box (AEO) */
.answer-box { max-width: 840px; margin: 0 0 clamp(36px, 4.5vw, 60px); border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: 0 14px 14px 0; padding: clamp(22px, 3vw, 32px); background: var(--bg-2); }
.answer-box__tag { display: inline-block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); margin-bottom: 12px; }
.answer-box p { font-size: clamp(17px, 1.5vw, 21px); line-height: 1.55; color: var(--fg); font-family: var(--font-display); font-weight: 600; }

/* Prose */
.prose-section { padding: clamp(48px, 6.5vw, 88px) var(--pad); }
.prose-section:first-of-type { padding-top: clamp(40px, 5vw, 64px); }
.prose { max-width: 760px; }
.prose h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(26px, 3.2vw, 40px); letter-spacing: -0.02em; line-height: 1.1; margin: clamp(34px, 4vw, 52px) 0 18px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(20px, 2.2vw, 26px); margin: 28px 0 12px; }
.prose p { color: var(--muted); font-size: 17px; line-height: 1.75; margin-bottom: 18px; }
.prose ul, .prose ol { color: var(--muted); font-size: 17px; line-height: 1.75; margin: 0 0 18px 1.2em; }
.prose li { margin-bottom: 10px; }
.prose strong { color: var(--fg); font-weight: 600; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* FAQ accordion */
.faq { padding: clamp(50px, 7vw, 100px) var(--pad); border-top: 1px solid var(--line); }
.faq__list { max-width: 900px; }
.faq__item { border-top: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__item summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: clamp(20px, 2.4vw, 30px) 0; font-family: var(--font-display); font-weight: 600; font-size: clamp(18px, 2vw, 24px); color: var(--fg); transition: color .3s; }
.faq__item summary:hover { color: var(--accent); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary i { position: relative; flex-shrink: 0; width: 18px; height: 18px; }
.faq__item summary i::before, .faq__item summary i::after { content: ""; position: absolute; background: var(--accent); transition: transform .3s var(--ease); }
.faq__item summary i::before { top: 8px; left: 0; width: 18px; height: 2px; }
.faq__item summary i::after { top: 0; left: 8px; width: 2px; height: 18px; }
.faq__item[open] summary i::after { transform: scaleY(0); }
.faq__a { padding: 0 0 clamp(22px, 2.5vw, 30px); max-width: 74ch; }
.faq__a p { color: var(--muted); font-size: 17px; line-height: 1.75; }

/* CTA band */
.cta-band { padding: clamp(60px, 9vw, 130px) var(--pad); border-top: 1px solid var(--line); text-align: center; }
.cta-band__inner { max-width: 820px; margin: 0 auto; }
.cta-band h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(32px, 5.5vw, 72px); line-height: 1.02; letter-spacing: -0.03em; }
.cta-band p { color: var(--muted); font-size: clamp(16px, 1.5vw, 20px); margin: 22px auto 36px; max-width: 52ch; }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* Locations hub */
.locations { padding: clamp(40px, 5vw, 64px) var(--pad) clamp(30px, 4vw, 60px); }
.loc-region { margin-bottom: clamp(40px, 5vw, 64px); }
.loc-region__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(20px, 2.4vw, 30px); letter-spacing: -0.02em; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.loc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 14px; }
.loc-card { display: flex; flex-direction: column; gap: 6px; padding: 22px 24px; border: 1px solid var(--line); border-radius: 14px; background: var(--bg-2); position: relative; transition: border-color .3s, transform .4s var(--ease); }
.loc-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.loc-card__name { font-family: var(--font-display); font-weight: 600; font-size: 17px; padding-right: 24px; }
.loc-card__city { font-size: 14px; color: var(--muted); }
.loc-card__arrow { position: absolute; top: 20px; right: 22px; color: var(--muted); transition: color .3s, transform .3s var(--ease); }
.loc-card:hover .loc-card__arrow { color: var(--accent); transform: translate(3px, -3px); }

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.chip { border: 1px solid var(--line); border-radius: 100px; padding: 9px 18px; font-size: 14px; color: var(--fg); }

/* Related links */
.related { padding: clamp(50px, 7vw, 100px) var(--pad); border-top: 1px solid var(--line); }
.related__links { display: flex; flex-wrap: wrap; gap: 12px; }
.related__links a { border: 1px solid var(--line); border-radius: 100px; padding: 11px 22px; font-size: 15px; transition: border-color .3s, color .3s; }
.related__links a:hover { border-color: var(--accent); color: var(--accent); }

/* Blog */
.blog-list { padding: clamp(40px, 6vw, 80px) var(--pad); }
.post-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2vw, 26px); }
.post-grid--3 { grid-template-columns: repeat(3, 1fr); }
.post-card { display: flex; flex-direction: column; gap: 14px; padding: clamp(26px, 3vw, 38px); border: 1px solid var(--line); border-radius: 18px; background: var(--bg-2); min-height: 230px; transition: border-color .3s, transform .5s var(--ease); }
.post-card:hover { border-color: var(--accent); transform: translateY(-5px); }
.post-card__meta { display: flex; justify-content: space-between; gap: 14px; font-size: 12.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em; }
.post-card__title { font-family: var(--font-display); font-weight: 700; font-size: clamp(20px, 2vw, 25px); line-height: 1.2; letter-spacing: -0.02em; }
.post-card__excerpt { color: var(--muted); font-size: 15px; line-height: 1.6; flex: 1; }
.post-card__more { color: var(--accent); font-size: 14px; font-weight: 600; }

/* Blog article */
.post { padding-top: clamp(110px, 14vh, 162px); }
.post__wrap { padding: 0 var(--pad); }
.post__head { max-width: 820px; margin-bottom: clamp(34px, 4vw, 52px); }
.post__meta { display: flex; flex-wrap: wrap; gap: 18px; font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; margin: 22px 0; }
.post__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(32px, 5vw, 60px); line-height: 1.05; letter-spacing: -0.03em; max-width: 20ch; }
.post__wrap .faq { padding: clamp(40px, 5vw, 70px) 0 0; }

/* =========================================================
   Responsive: inner pages
   ========================================================= */
@media (max-width: 1024px) {
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
  .post-grid { grid-template-columns: repeat(2, 1fr); }
  .post-grid--3 { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .post-grid, .post-grid--3 { grid-template-columns: 1fr; }
  .loc-grid { grid-template-columns: 1fr; }
  .hero__eyebrow { font-size: 12.5px; padding: 8px 15px; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track, .hero__eyebrow .dot { animation: none; }
  .reveal, .anim { opacity: 1; transform: none; }
}

/* =========================================================
   Blog single: SEO layout (TOC, reading bar, share, author)
   ========================================================= */
.reading-bar { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--accent); z-index: 9000; transition: width .1s linear; }
.post__container { max-width: 1160px; margin: 0 auto; padding: 0 var(--pad); }
.post__head { max-width: 820px; margin-bottom: clamp(30px, 4vw, 50px); }
.post__lede { margin-top: 18px; font-size: clamp(17px, 1.5vw, 21px); color: var(--muted); line-height: 1.6; max-width: 60ch; }
.post__layout { display: grid; grid-template-columns: 230px minmax(0, 1fr); gap: clamp(30px, 5vw, 70px); align-items: start; }
.post__aside { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 26px; }
.post__main { min-width: 0; }
.post__main .prose { max-width: 720px; }

.toc__title { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 14px; }
.toc ul { list-style: none; display: flex; flex-direction: column; gap: 2px; border-left: 1px solid var(--line); }
.toc li a { display: block; padding: 6px 0 6px 16px; margin-left: -1px; border-left: 1px solid transparent; color: var(--muted); font-size: 14px; line-height: 1.4; transition: color .3s, border-color .3s; }
.toc li a:hover { color: var(--fg); }
.toc li.is-active > a { color: var(--accent); border-left-color: var(--accent); }
.toc li.toc--h3 a { padding-left: 30px; font-size: 13px; }

.post__share { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.post__share-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); width: 100%; margin-bottom: 4px; }
.post__share a, .post__copy { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; font-size: 13px; color: var(--fg); transition: border-color .3s, color .3s; text-transform: lowercase; cursor: pointer; background: transparent; }
.post__share a:hover, .post__copy:hover { border-color: var(--accent); color: var(--accent); }

.post__author { display: flex; gap: 18px; align-items: flex-start; margin-top: clamp(40px, 5vw, 64px); padding: clamp(22px, 3vw, 32px); border: 1px solid var(--line); border-radius: 16px; background: var(--bg-2); max-width: 720px; }
.post__author-avatar { border-radius: 50%; flex-shrink: 0; }
.post__author-by { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--accent); }
.post__author-name { display: block; font-family: var(--font-display); font-weight: 700; font-size: 19px; margin: 4px 0 8px; }
.post__author p { color: var(--muted); font-size: 15px; line-height: 1.6; }

.prose h2[id], .prose h3[id] { scroll-margin-top: 100px; }

@media (max-width: 900px) {
  .post__layout { grid-template-columns: 1fr; }
  .post__aside { position: static; top: auto; order: -1; }
  .toc { border: 1px solid var(--line); border-radius: 12px; padding: 18px; background: var(--bg-2); }
}
