/* ============================== TOKENS ============================== */
:root {
  --bg: #ffffff;            /* white primary */
  --bg-2: #f5f5f5;          /* soft gray for alt rows / cards */
  --bg-cream: #f6f1ea;      /* warm cream for stats band */
  --bg-dark: #1f1f1f;       /* deep charcoal for final CTA */
  --ink: #2a2a2a;           /* charcoal text on white */
  --ink-dim: #4a4a4a;       /* secondary */
  --ink-mute: #8a8a8a;      /* tertiary */
  --line: rgba(0, 0, 0, 0.08);
  --line-strong: rgba(0, 0, 0, 0.15);
  --ink-on-dark: #fafafa;
  --ink-on-dark-dim: #bdbdbd;
  --line-on-dark: rgba(250, 250, 250, 0.12);
  --accent: #f94b0f;        /* Arpeggio orange */
  --accent-dark: #d83a00;   /* deeper for hover */
  --sans: 'Geist', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --maxw: 1240px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: normal; font-weight: 300; color: var(--accent); letter-spacing: -.005em; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.arrow { display: inline-block; transition: transform .25s ease; }
a:hover .arrow, button:hover .arrow { transform: translate(2px, -2px); }

/* ============================== PRELOADER ============================== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  overflow: hidden;
}
.preloader__panel {
  position: absolute;
  left: 0;
  right: 0;
  height: 50vh;
  background: #faf3e0;
  pointer-events: auto;
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 1;
}
.preloader__panel--top { top: 0; }
.preloader__panel--bottom { bottom: 0; }

.preloader__inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  transition: opacity 0.35s ease;
}
.preloader__mark {
  display: flex;
  animation: preloaderStamp 0.6s cubic-bezier(.34, 1.56, .64, 1) both;
  filter: drop-shadow(0 8px 24px rgba(249, 75, 15, 0.25));
}
.preloader__wordmark {
  font-family: var(--sans);
  font-size: clamp(30px, 7vw, 80px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
  opacity: 0;
  display: inline-flex;
  align-items: center;
  animation: preloaderFadeIn 0.35s ease 0s both;
}
.preloader__codestamp {
  display: inline-block;
  width: 1.9em;
  height: 1.9em;
  margin-left: 0.15em;
  color: var(--accent);
  position: relative;
  top: -0.06em;
  transform-origin: center center;
  animation: stampPress 1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}
.preloader__codestamp svg { width: 100%; height: 100%; display: block; }

@keyframes stampPress {
  0%   { transform: scale(2.4); opacity: 0; }
  35%  { transform: scale(2.0); opacity: 0.4; }
  55%  { transform: scale(0.85); opacity: 1; }
  72%  { transform: scale(1.12); opacity: 1; }
  86%  { transform: scale(0.97); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .preloader__codestamp { animation: none; }
}

.preloader.is-loaded .preloader__inner { opacity: 0; }
.preloader.is-loaded .preloader__panel--top { transform: translateY(-100%); }
.preloader.is-loaded .preloader__panel--bottom { transform: translateY(100%); }

@keyframes preloaderStamp {
  0%   { transform: scale(0) rotate(-12deg); opacity: 0; }
  60%  { transform: scale(1.12) rotate(2deg); opacity: 1; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}
@keyframes preloaderFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .preloader__mark, .preloader__wordmark {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .preloader__panel { transition: opacity 0.3s ease; }
}

/* ============================== NAV ============================== */
.nav {
  position: fixed; top: 16px; left: 16px; right: 16px; z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 12px 22px;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(252, 230, 134, 0.55);
  border: 1px solid rgba(245, 213, 71, 0.5);
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}
.nav__social { display: flex; gap: 22px; align-items: center; }
.nav__social a {
  display: inline-flex;
  align-items: center;
  font-size: 12px; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent);
  transition: color .2s ease;
}
.nav__social a:hover { color: var(--accent-dark); }
.nav__social svg { display: block; }
.nav__brand {
  justify-self: center;
  display: inline-flex;
  align-items: center;
}
.nav__brand-svg {
  height: 24px;
  width: auto;
  display: block;
}
.nav__right { display: flex; justify-content: flex-end; align-items: center; gap: 24px; }
.nav__links { display: flex; gap: 24px; }
.nav__links a { font-size: 14px; color: var(--ink-dim); transition: color .2s ease; }
.nav__links a:hover { color: var(--ink); }
.nav__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 13px; font-weight: 500;
  transition: transform .2s ease, background .2s ease;
}
.nav__cta:hover { transform: translateY(-1px); background: var(--accent-dark); }

/* ============================== BUTTONS ============================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px; font-weight: 500; letter-spacing: .02em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.btn--light { background: var(--accent); color: #fff; }
.btn--light:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { transform: translateY(-2px); background: #0a0a0a; }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-strong); }
.btn--ghost:hover { background: var(--bg-2); }

/* ============================== PILL & HEADINGS ============================== */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: var(--bg);
  font-size: 12px;
  color: var(--ink-dim);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.pill::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
}
.section__eyebrow {
  display: inline-block;
  padding: 7px 14px 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .22em;
  text-transform: uppercase;
  margin: 0 0 22px 0;
  border: 1.5px solid var(--accent);
  border-radius: 4px;
  transform: rotate(-2deg);
  transform-origin: left center;
  position: relative;
}
.section__eyebrow::before {
  content: "";
  position: absolute;
  inset: 3px;
  border: 1px solid var(--accent);
  border-radius: 2px;
  pointer-events: none;
  opacity: 0.55;
}

/* ============================== STAMP MARKS ============================== */
.case__num {
  width: 110px;
  height: 110px;
  align-self: start;
}
.case__num svg { width: 100%; height: 100%; display: block; }

.hero__stamp {
  position: absolute;
  top: 130px;
  right: clamp(20px, 4vw, 60px);
  width: clamp(90px, 11vw, 140px);
  pointer-events: none;
  z-index: 2;
}
.hero__stamp svg { width: 100%; height: auto; display: block; }

@media (max-width: 768px) {
  .hero__stamp { width: 80px; top: 100px; right: 16px; }
  .case__num { width: 80px; height: 80px; }
  .section__eyebrow { font-size: 10px; padding: 6px 12px 5px; }
}
.section__title {
  font-size: clamp(34px, 4.4vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.025em;
  margin: 0 0 24px;
  color: var(--ink);
}
.section__title em { font-weight: 700; color: var(--accent); }

/* ============================== HERO ============================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  padding: 140px var(--gutter) 0;
  background: var(--bg);
  overflow: hidden;
}
.hero__inner { max-width: 980px; }
.hero__title {
  margin: 22px 0 22px;
  font-size: clamp(40px, 6.6vw, 96px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.035em;
}
.hero__sub {
  margin: 0 auto 36px;
  max-width: 620px;
  font-size: 16px;
  color: var(--ink-dim);
  line-height: 1.7;
}
.hero__wordmark-wrap {
  --iris-r: 0px;
  background: radial-gradient(circle at 50% 50%, var(--accent) var(--iris-r), #fff var(--iris-r));
  margin: 280px 0 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 100px var(--gutter);
  width: 100vw;
  display: block;
  will-change: background;
}
.hero__wordmark {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.05em;
  color: #fff;
  user-select: none;
  white-space: nowrap;
  text-align: center;
  width: 100%;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: font-size;
}
.hero__wordmark-by {
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  vertical-align: middle;
  color: #ffffff;
  margin-left: 0.12em;
  position: relative;
  top: -0.06em;
}
.hero__wordmark-by svg { width: 100%; height: 100%; display: block; }
.footer__wordmark-by { color: #ffe3d4; }
.hero__fade { display: none; }

/* ============================== ABOUT STRIP ============================== */
.aboutstrip {
  padding: 90px 0 0;
  background: var(--accent);
  color: #fff;
}
.aboutstrip__copy { color: #fff; }
.aboutstrip em { color: #ffe3d4; }
.aboutstrip .btn--light { background: #fff; color: var(--accent); }
.aboutstrip .btn--light:hover { background: #ffe3d4; }
.aboutstrip .container {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 48px;
  align-items: end;
  padding-bottom: 70px;
}
.aboutstrip__copy {
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.35;
  letter-spacing: -.01em;
  color: var(--ink);
  max-width: 720px;
  margin: 0;
  will-change: transform;
}

/* LINE-BY-LINE REVEAL */
.reveallines { overflow: hidden; }
.reveallines > span {
  display: block;
  opacity: 0;
  transform: translateY(110%);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
.reveallines.is-visible > span {
  opacity: 1;
  transform: translateY(0);
}
.reveallines.is-visible > span:nth-child(1) { transition-delay: .04s; }
.reveallines.is-visible > span:nth-child(2) { transition-delay: .14s; }
.reveallines.is-visible > span:nth-child(3) { transition-delay: .24s; }
.reveallines.is-visible > span:nth-child(4) { transition-delay: .34s; }
.reveallines.is-visible > span:nth-child(5) { transition-delay: .44s; }
.reveallines.is-visible > span:nth-child(6) { transition-delay: .54s; }

/* ============================== WORD WALL (interactive) ============================== */
.wordwall {
  padding: 110px 0 90px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.wordwall__row {
  overflow: hidden;
  margin: 0 -16px;
  cursor: grab;
}
.wordwall__row:active { cursor: grabbing; }
.wordwall__track {
  display: inline-flex; gap: 48px;
  white-space: nowrap;
  font-size: clamp(56px, 11vw, 160px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--ink);
  padding: 6px 0;
  will-change: transform;
}
.wordwall__track span { padding: 0 8px; }
.wordwall__track .dot { color: var(--ink-mute); font-size: .35em; }
.wordwall__row--italic .wordwall__track {
  font-weight: 300;
  font-style: normal;
  color: var(--accent);
  letter-spacing: -.025em;
}
.wordwall__row--italic .wordwall__track em {
  font-weight: 300; color: var(--accent);
}
.wordwall__hint {
  text-align: center;
  margin-top: 36px;
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* ============================== ROWLIST (services) ============================== */
.services { padding: 90px 0 100px; }
.rowlist { list-style: none; margin: 0; padding: 0; }
.rowlist__item {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}
.rowlist__item:last-child { border-bottom: 1px solid var(--line); }
.rowlist__item a {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 36px;
}
.rowlist__title {
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 400;
  letter-spacing: -.02em;
}
.rowlist__meta {
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: .04em;
}
.rowlist__arrow {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  font-size: 14px;
  transition: background .2s ease, color .2s ease, transform .2s ease, border-color .2s ease;
}
.rowlist__item:hover .rowlist__arrow {
  background: var(--accent); color: #fff; border-color: var(--accent); transform: translate(2px, -2px);
}
.rowlist__item:hover .rowlist__title { color: var(--accent); }
.rowlist__title { transition: color .2s ease; }
.rowlist__desc {
  margin: 14px 0 0;
  max-width: 760px;
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.7;
}

/* ============================== STATS ============================== */
.stats { padding: 100px 0; background: var(--bg-cream); color: var(--ink); }
.stats__title { color: var(--ink); max-width: 820px; }
.stats__title em { font-weight: 700; color: var(--accent); }
.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.12);
}
.stat__num {
  font-weight: 700;
  font-size: clamp(64px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -.045em;
  color: var(--accent);
}
.stat__num em { font-weight: 700; color: var(--accent); }
.stat__label {
  margin: 8px 0 14px;
  font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink-dim);
}
.stat__copy { color: var(--ink-dim); font-size: 14px; line-height: 1.65; }

/* ============================== WORK / CASES ============================== */
.work { padding: 110px 0 0; background: var(--bg-2); }
.work__head { display: grid; grid-template-columns: 1fr; max-width: 800px; margin-bottom: 70px; }

.cases-stack { position: relative; }
.case {
  position: sticky;
  top: 0;
  min-height: 100vh;
  background: #fff;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 48px;
  align-content: center;
  padding: 80px var(--gutter);
  max-width: 800px;
  margin: 0 auto;
}
.case__client { color: var(--ink-mute); font-size: 13px; letter-spacing: .04em; margin: 0 0 14px; text-transform: uppercase; }
.case__title {
  margin: 0 0 18px;
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: 1.15;
  color: var(--ink);
}
.case__title em { font-weight: 700; color: var(--accent); }
.case__body > p { color: var(--ink-dim); font-size: 15px; line-height: 1.7; max-width: 780px; }
.case__highlights {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  max-width: 780px;
}
.case__highlights > div { display: flex; flex-direction: column; gap: 4px; padding-top: 12px; border-top: 1px solid var(--line); }
.case__highlights strong {
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -.025em;
  color: var(--accent);
}
.case__highlights span { font-size: 12px; color: var(--ink-mute); letter-spacing: .06em; text-transform: uppercase; }
.case__link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 24px;
  font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 4px;
}

/* ============================== TESTIMONIALS ============================== */
.testimonials { padding: 100px 0; background: var(--bg); }
.testimonials__head { max-width: 760px; margin: 0 0 64px; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tcard {
  display: flex; flex-direction: column;
  background: var(--bg-2);
  border-radius: 18px;
  padding: 32px 28px;
  gap: 24px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.tcard:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -20px rgba(0,0,0,0.18); }
.tcard__mark { color: var(--accent); font-size: 32px; font-weight: 700; line-height: 1; }
.tcard__quote { color: var(--ink); font-size: 16px; line-height: 1.6; margin: 0; flex: 1; }
.tcard__person { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.tcard__avatar {
  width: 48px; height: 48px; border-radius: 50%; overflow: hidden;
  background: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 16px; flex-shrink: 0;
}
.tcard__avatar img { width: 100%; height: 100%; object-fit: cover; }
.tcard__name { font-size: 14px; font-weight: 600; color: var(--ink); display: block; }
.tcard__role { font-size: 12px; color: var(--ink-mute); display: block; margin-top: 2px; }

/* ============================== STORY ============================== */
.story { padding: 100px 0; background: var(--bg); }
.story__inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
}
.story__photo {
  position: sticky; top: 100px;
  height: fit-content;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-2);
}
.story__photo img { width: 100%; height: 100%; object-fit: cover; }
.story__body p { color: var(--ink-dim); font-size: 16px; line-height: 1.75; max-width: 640px; }

.timeline { list-style: none; margin: 48px 0 0; padding: 0; }
.timeline li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.timeline li:last-child { border-bottom: 1px solid var(--line); }
.timeline span { color: var(--accent); font-weight: 600; font-size: 13px; letter-spacing: .06em; }
.timeline p { color: var(--ink-dim); font-size: 14px; line-height: 1.6; margin: 0; }
.timeline strong { color: var(--ink); font-weight: 600; }

/* ============================== TOOLS ============================== */
.tools { padding: 80px 0 100px; background: var(--bg); }
.tools__grid {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.tools__grid li {
  padding: 12px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 14px;
  color: var(--ink-dim);
  text-align: center;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.tools__grid li:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ============================== PRICING ============================== */
.pricing { padding: 110px 0 100px; background: var(--bg); }
.pricing__head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.pricing__head .section__eyebrow { justify-content: center; }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.plan {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 36px 32px;
  background: var(--bg);
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: 0 24px 60px -30px rgba(0,0,0,0.18); }
.plan--featured {
  background: var(--bg-dark); color: var(--ink-on-dark);
  border-color: var(--bg-dark);
  position: relative;
}
.plan--featured .plan__name,
.plan--featured .plan__tag,
.plan--featured .plan__price,
.plan--featured .plan__include li { color: var(--ink-on-dark); }
.plan--featured .plan__tag { color: var(--ink-on-dark-dim); }
.plan--featured .plan__include { border-top-color: var(--line-on-dark); }
.plan--featured .plan__include li::before { color: var(--accent); }
.plan__badge {
  display: inline-block;
  align-self: flex-start;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 18px;
}
.plan__name { font-size: 22px; font-weight: 600; margin: 0 0 6px; }
.plan__tag { font-size: 14px; color: var(--ink-mute); margin: 0 0 28px; }
.plan__price { font-size: 48px; font-weight: 700; letter-spacing: -.03em; line-height: 1; color: var(--ink); }
.plan__price small { font-size: 14px; color: var(--ink-mute); font-weight: 500; letter-spacing: 0; margin-left: 8px; }
.plan--featured .plan__price small { color: var(--ink-on-dark-dim); }
.plan__include {
  list-style: none; padding: 24px 0 32px; margin: 24px 0 0; flex: 1;
  border-top: 1px solid var(--line);
}
.plan__include li {
  position: relative;
  padding: 8px 0 8px 26px;
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.5;
}
.plan__include li::before {
  content: "✓"; position: absolute; left: 0; top: 7px;
  color: var(--accent); font-weight: 700;
}
.plan .btn { width: 100%; justify-content: center; }

/* ============================== FAQ ============================== */
.faq { padding: 110px 0; background: var(--bg-2); }
.faq__head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.faq__head .section__eyebrow { justify-content: center; }
.faq__list { max-width: 880px; margin: 0 auto; border-top: 1px solid var(--line-strong); }
.faq__item { border-bottom: 1px solid var(--line-strong); }
.faq__q {
  width: 100%; background: transparent; border: 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  font-family: inherit;
  font-size: clamp(17px, 2vw, 22px); font-weight: 500;
  color: var(--ink);
  cursor: pointer; text-align: left;
  letter-spacing: -.01em;
}
.faq__icon {
  width: 36px; height: 36px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background: var(--accent);
  border: 1px solid var(--accent);
  color: #fff;
  font-size: 18px; font-weight: 500;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), background .2s ease;
}
.faq__item:hover .faq__icon { background: var(--accent-dark); border-color: var(--accent-dark); }
.faq__item.is-open .faq__icon { transform: rotate(45deg); }
.faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  color: var(--ink-dim); font-size: 15px; line-height: 1.7;
}
.faq__item.is-open .faq__a {
  max-height: 320px;
  padding: 0 0 26px;
}

/* ============================== CONTACT (dark final CTA) ============================== */
.contact { padding: 120px 0 110px; background: var(--bg-dark); color: var(--ink-on-dark); text-align: center; }
.contact .section__eyebrow { color: var(--ink-on-dark-dim); justify-content: center; }
.contact .section__title { color: var(--ink-on-dark); }
.contact__sub { color: var(--ink-on-dark-dim); font-size: 16px; max-width: 580px; margin: 0 auto 48px; line-height: 1.7; }
.contact__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto;
}
.contact__card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  border: 1px solid var(--line-on-dark);
  border-radius: 14px;
  background: rgba(250,250,250,0.04);
  transition: background .2s ease, transform .2s ease, border-color .2s ease;
  text-align: left;
}
.contact__card:hover { background: rgba(250,250,250,0.08); border-color: var(--accent); transform: translateY(-2px); }
.contact__label {
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--ink-on-dark-dim);
  text-transform: uppercase;
  flex-shrink: 0;
}
.contact__label::after { content: ":"; margin-left: 2px; }
.contact__value {
  font-size: 16px;
  color: var(--ink-on-dark);
  word-break: break-word;
  flex: 1;
}
.contact__card .arrow { margin-left: auto; flex-shrink: 0; }

/* ============================== FOOTER ============================== */
.footer { padding: 70px 0 40px; background: var(--bg); color: var(--ink); border-top: 1px solid var(--line); }
.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}
.footer__head { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); margin: 0 0 16px; }
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { margin-bottom: 10px; font-size: 14px; }
.footer__col a { color: var(--ink); border-bottom: 1px solid transparent; transition: border-color .2s ease, color .2s ease; }
.footer__col a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.footer__addr { font-size: 13px; color: var(--ink-dim); line-height: 1.6; margin: 0 0 10px; }
.footer__clock {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--ink-dim);
  margin-top: 8px;
}
.footer__clock::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%; background: #2ecc71;
}
.footer__wordmark {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.05em;
  color: var(--accent);
  margin: 160px 0 60px;
  user-select: none;
  white-space: nowrap;
  text-align: center;
  width: 100%;
  display: block;
  clip-path: circle(0 at 50% 50%);
  will-change: font-size, clip-path;
}

/* ============================== RESPONSIVE ============================== */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__social { gap: 14px; }
  .aboutstrip .container { grid-template-columns: 1fr; align-items: start; }
  .stats__grid { grid-template-columns: 1fr; gap: 32px; }
  .case { grid-template-columns: 1fr; gap: 12px; }
  .case__num { font-size: 28px; }
  .testimonials__grid { grid-template-columns: 1fr; gap: 16px; }
  .pricing__grid { grid-template-columns: 1fr; gap: 16px; }
  .story__inner { grid-template-columns: 1fr; gap: 32px; }
  .story__photo { position: relative; top: 0; max-width: 400px; }
  .timeline li { grid-template-columns: 1fr; gap: 6px; }
  .contact__cards { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .rowlist__item a { grid-template-columns: 1fr auto; }
  .rowlist__meta { grid-column: 1; font-size: 12px; }
  .tools__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .nav { grid-template-columns: auto 1fr auto; gap: 12px; }
  .nav__social a:nth-child(n+3) { display: none; }
  .nav__cta { padding: 9px 14px; font-size: 11px; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; }
  .tools__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================== A11Y ============================== */
@media (prefers-reduced-motion: reduce) {
  .wordwall__track { animation: none !important; }
  .reveallines > span { opacity: 1 !important; transform: none !important; }
  * { transition-duration: 0.01ms !important; }
}
