:root {
  --bg: #0b0a09;
  --bg-raised: #131110;
  --surface: #15130f;
  --text: #f4eee2;
  --text-dim: #948c7d;
  --text-faint: #5c5750;
  --accent: #ff5a1f;
  --accent-bright: #ff8a4c;
  --accent-deep: #a5340c;
  --accent-grad: linear-gradient(135deg, #ff8a4c, #ff5a1f);
  --border: rgba(255,90,31,0.18);
  --border-soft: rgba(244,238,226,0.09);
  --container: 1180px;
  --font-display: "Fraunces", "Georgia", serif;
  --font-mono: "Space Mono", "SFMono-Regular", monospace;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
strong { font-weight: 600; color: var(--text); }

/* Film-grain texture overlay — gives the flat colour system a physical, printed quality */
.grain {
  position: fixed;
  inset: -100px;
  z-index: -1;
  pointer-events: none;
  opacity: .05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px 160px;
}

/* Top scroll-progress rule */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--accent-grad);
  z-index: 200;
}

/* Background spotlight that follows the travelling object */
.scene-spotlight {
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background: radial-gradient(560px circle at var(--sx, 80%) var(--sy, 40%), rgba(255,90,31,0.14), transparent 62%);
  transition: background-color .6s ease;
}

/* Cursor glow */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 380px; height: 380px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255,90,31,0.08), transparent 70%);
  transform: translate(-50%, -50%);
  z-index: -3;
  will-change: transform;
}

/* Fixed corner section label — quiet editorial signature */
.section-index {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 90;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-faint);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  pointer-events: none;
}
.section-index span { color: var(--accent); }
@media (max-width: 760px) { .section-index { display: none; } }

/* Growth readout — a small always-on-top badge (independent of the
   background chart card, which sits behind content and can get covered by
   headings) so the live scroll percentage is never hidden. */
.growth-readout {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  font-family: var(--font-mono);
  font-size: .85rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 6px 12px;
  pointer-events: none;
}
@media (max-width: 760px) { .growth-readout { display: none; } }

/* Scroll companion — one flat graphic object that morphs shape through every section */
.scroll-companion {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2;
  pointer-events: none;
  transform: translate3d(-200px, -200px, 0);
}
.companion-inner {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}
.companion-shape { filter: drop-shadow(0 14px 22px rgba(0,0,0,0.5)); }
@media (max-width: 760px), (prefers-reduced-motion: reduce) {
  .scroll-companion { display: none; }
}

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 26px 0;
  transition: padding .3s ease, background .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(11,10,9,0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 14px 0;
  border-bottom-color: var(--border-soft);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .12em;
}
.logo-mark { width: 11px; height: 11px; background: var(--accent); display: inline-block; }

.nav { display: flex; align-items: center; gap: 34px; }
.nav a { display: flex; align-items: center; gap: 8px; font-size: .88rem; color: var(--text-dim); position: relative; }
.nav a:hover { color: var(--text); }
.nav-index { font-family: var(--font-mono); font-size: .68rem; color: var(--text-faint); }
.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute; left: 0; bottom: -6px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .25s ease;
}
.nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta { color: var(--text); font-weight: 600; }
.nav-cta span { transition: transform .2s ease; display: inline-block; }
.nav-cta:hover span { transform: translateX(4px); }

.nav-item { position: relative; }
.nav-item .caret {
  font-size: .6rem; color: var(--text-faint); transition: transform .2s ease;
  padding: 8px 4px; margin: -8px -4px; cursor: pointer;
}
.nav-item:hover .caret, .nav-item:focus-within .caret, .nav-item.open .caret { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 18px;
  min-width: 240px;
  background: var(--bg-raised);
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 24px 50px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 150;
}
.nav-item:hover .nav-dropdown, .nav-item:focus-within .nav-dropdown, .nav-item.open .nav-dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-dropdown a {
  display: block;
  padding: 10px 12px;
  font-size: .85rem;
  color: var(--text-dim);
  border-radius: 4px;
}
.nav-dropdown a::after { display: none; content: none; }
.nav-dropdown a:hover { background: var(--surface-2); color: var(--text); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 22px; height: 1px; background: var(--text); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 26px;
  border-radius: 4px;
  font-weight: 600;
  font-size: .92rem;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn-primary {
  background: var(--accent-grad);
  color: #1c0e04;
  box-shadow: 0 10px 30px rgba(255,90,31,0.22);
  animation: ctaPulse 3.2s ease-in-out infinite;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(255,90,31,0.32); animation-play-state: paused; }
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(255,90,31,0.22); }
  50% { box-shadow: 0 10px 34px rgba(255,90,31,0.4); }
}
.btn-text { color: var(--text-dim); padding: 15px 4px; }
.btn-text span { transition: transform .2s ease; display: inline-block; }
.btn-text:hover { color: var(--text); }
.btn-text:hover span { transform: translateY(3px); }

/* Hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding-top: 130px; padding-bottom: 60px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--border-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-soft) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 65% at 50% 20%, black 30%, transparent 85%);
}

.hero-inner { position: relative; z-index: 1; }
.hero-top { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 10px; margin-bottom: 48px; }
.eyebrow, .section-eyebrow {
  font-family: var(--font-mono);
  color: var(--accent);
  font-size: .8rem;
  letter-spacing: .04em;
}
.hero-meta { font-family: var(--font-mono); font-size: .78rem; color: var(--text-faint); }
.hero-meta strong { color: var(--text-dim); font-weight: 400; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 6.2rem);
  line-height: 1.04;
  font-weight: 550;
  letter-spacing: -0.02em;
  margin: 0;
  max-width: 16ch;
}
.rotating-words { display: block; min-height: 1.1em; position: relative; font-style: italic; color: var(--accent); }
.rotating-words .word {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .45s ease, transform .45s ease;
}
.rotating-words .word.is-active { display: inline-block; }
.rotating-words .word.is-active.is-shown { opacity: 1; transform: translateY(0); }

.hero-rule { height: 1px; background: var(--border-soft); margin: 44px 0 40px; transform: scaleX(0); transform-origin: left; transition: transform 1s cubic-bezier(.16,1,.3,1); }
.hero-rule.in-view { transform: scaleX(1); }

.hero-lower { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; align-items: start; }
.hero-lower > * { min-width: 0; }
.hero-sub { color: var(--text-dim); font-size: 1.05rem; line-height: 1.75; margin: 0 0 32px; max-width: 52ch; }
.hero-actions { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }

.hero-stats { display: flex; flex-direction: column; }
.stat { display: flex; align-items: baseline; gap: 6px; padding: 14px 0; border-top: 1px solid var(--border-soft); }
.stat:last-child { border-bottom: 1px solid var(--border-soft); }
.stat-num { font-family: var(--font-mono); font-size: 1.8rem; font-weight: 700; }
.stat-suffix { font-family: var(--font-mono); font-size: 1.8rem; font-weight: 700; color: var(--accent); }
.stat-label { font-size: .76rem; color: var(--text-faint); line-height: 1.4; margin-left: auto; text-align: right; }

.scroll-cue { position: absolute; left: 32px; bottom: 40px; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.scroll-cue span { width: 1px; height: 46px; background: var(--border-soft); position: relative; overflow: hidden; display: block; }
.scroll-cue span::after {
  content: ""; position: absolute; left: 0; top: -100%; width: 100%; height: 100%;
  background: var(--accent); animation: cueDrop 2s ease-in-out infinite;
}
@keyframes cueDrop { 0% { top: -100%; } 60%, 100% { top: 100%; } }
.scroll-cue em {
  font-family: var(--font-mono); font-style: normal; font-size: .68rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--text-faint); writing-mode: vertical-rl;
}

/* Section shared */
section { position: relative; padding: 150px 0; }
.section-head { margin-bottom: 72px; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  font-weight: 550;
  letter-spacing: -0.01em;
  margin: 14px 0 0;
  line-height: 1.08;
}

/* Services — numbered index list, not icon cards */
.service-list { display: flex; flex-direction: column; }
.service-row {
  display: grid;
  grid-template-columns: 90px 1fr 260px;
  gap: 40px;
  padding: 48px 0;
  border-top: 1px solid var(--border-soft);
  transition: border-color .3s ease;
}
.service-row > * { min-width: 0; }
.service-list .service-row:last-child { border-bottom: 1px solid var(--border-soft); }
.service-row:hover { border-top-color: var(--accent); }
.service-num {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  color: var(--text-faint);
  transition: color .3s ease;
}
.service-row:hover .service-num { color: var(--accent); }
.service-body h3 { font-family: var(--font-display); font-size: 1.9rem; font-weight: 550; margin: 0 0 10px; }
.service-hook { font-style: italic; color: var(--accent-bright); font-size: 1.05rem; margin: 0 0 14px; }
.service-why { color: var(--text-dim); line-height: 1.75; margin: 0 0 16px; max-width: 62ch; }
.service-includes { font-size: .86rem; color: var(--text-faint); line-height: 1.6; }
.service-includes strong { color: var(--text-dim); font-weight: 600; }
.service-link {
  margin-top: 20px;
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  font-weight: 600;
  font-size: .85rem;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.service-link:hover { background: var(--surface-2); border-color: var(--accent); transform: translateY(-2px); }
.service-link:hover span { transform: translateY(0); }
.service-outcome {
  font-size: .92rem;
  color: var(--text-dim);
  line-height: 1.6;
  padding-top: 4px;
  border-left: 1px solid var(--border);
  padding-left: 24px;
  align-self: start;
}

/* About */
.about-inner { display: grid; grid-template-columns: 280px 1fr; gap: 72px; align-items: start; }
.about-inner > * { min-width: 0; }
.about-photo { position: relative; max-width: 260px; }
.about-photo::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,90,31,0.35), transparent 70%);
  filter: blur(10px);
  animation: photoPulse 4.5s ease-in-out infinite;
  z-index: -1;
}
@keyframes photoPulse {
  0%, 100% { opacity: .6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
.photo-frame {
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}
.photo-placeholder { font-family: var(--font-display); font-weight: 550; font-size: 2.2rem; color: var(--text-faint); }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.25) contrast(1.05); }
.photo-tag {
  position: absolute; bottom: -14px; left: -14px;
  background: var(--accent); color: #1c0e04;
  font-family: var(--font-mono); font-size: .7rem; font-weight: 700;
  padding: 6px 10px; transform: rotate(-3deg);
}
.about-sub { margin-top: 40px; }
.about-subhead {
  font-family: var(--font-mono); font-size: .74rem; color: var(--text-faint);
  text-transform: uppercase; letter-spacing: .08em; margin: 0 0 16px;
}
.cert-list { display: flex; flex-direction: column; }
.cert-list li {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 12px 0; border-top: 1px solid var(--border-soft); font-size: .92rem;
  transition: border-color .25s ease, padding-left .25s ease;
}
.cert-list li:last-child { border-bottom: 1px solid var(--border-soft); }
.cert-list li:hover { border-top-color: var(--accent); padding-left: 8px; }
.cert-list li span { color: var(--text-faint); font-family: var(--font-mono); font-size: .78rem; white-space: nowrap; }
.tool-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.tool-marquee-track {
  display: flex;
  width: max-content;
  gap: 10px;
  animation: toolScroll 26s linear infinite;
}
.tool-marquee:hover .tool-marquee-track { animation-play-state: paused; }
.tool-marquee-track span {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: .78rem; color: var(--text-dim);
  border: 1px solid var(--border-soft); padding: 8px 16px 8px 8px; border-radius: 3px;
  white-space: nowrap; flex-shrink: 0;
}
.tool-marquee-track span::before {
  content: attr(data-mono);
  display: flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 6px;
  background: var(--accent-grad);
  color: #1c0e04;
  font-weight: 700;
  font-size: .62rem;
  letter-spacing: -0.02em;
}
.tool-marquee-track span.has-logo::before { content: none; }
.tool-logo {
  width: 20px; height: 20px; flex-shrink: 0;
  opacity: .92;
  transition: opacity .25s ease, transform .25s ease;
}
.tool-marquee-track span:hover .tool-logo { opacity: 1; transform: scale(1.08); }
@keyframes toolScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .tool-marquee-track { animation: none; }
}
.about-content .section-eyebrow { display: block; margin-bottom: 20px; }
.about-quote { font-family: var(--font-display); font-style: italic; font-size: clamp(1.3rem, 2.4vw, 1.8rem); line-height: 1.5; color: var(--text); margin: 0 0 28px; padding-left: 24px; border-left: 2px solid var(--accent); }
.about-body { color: var(--text-dim); line-height: 1.8; font-size: 1rem; margin: 0 0 36px; max-width: 62ch; }
.about-facts { display: flex; flex-direction: column; }
.about-facts div { display: flex; justify-content: space-between; padding: 14px 0; border-top: 1px solid var(--border-soft); font-size: .92rem; }
.about-facts div:last-child { border-bottom: 1px solid var(--border-soft); }
.about-facts span { color: var(--text-faint); font-family: var(--font-mono); font-size: .78rem; text-transform: uppercase; letter-spacing: .05em; }

/* Process */
.process-list { position: relative; display: flex; flex-direction: column; padding-left: 44px; }
.process-list::before { content: ""; position: absolute; left: 5px; top: 10px; bottom: 10px; width: 1px; background: var(--border-soft); }
.process-step { display: flex; gap: 32px; align-items: flex-start; padding: 30px 0; position: relative; }
.process-step::before {
  content: ""; position: absolute; left: -44px; top: 36px;
  width: 11px; height: 11px; border-radius: 50%; background: var(--bg); border: 2px solid var(--accent);
}
.process-num { font-family: var(--font-mono); font-size: 1.3rem; color: var(--text-faint); min-width: 44px; }
.process-step h3 { font-family: var(--font-display); margin: 0 0 8px; font-size: 1.35rem; font-weight: 550; }
.process-step p { margin: 0; color: var(--text-dim); line-height: 1.7; max-width: 58ch; }

/* Work */
.work-list { display: flex; flex-direction: column; }
.work-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 36px 0;
  border-top: 1px solid var(--border-soft);
  transition: border-color .3s ease;
}
.work-row > * { min-width: 0; }
.work-list .work-row:last-child { border-bottom: 1px solid var(--border-soft); }
.work-row:hover { border-top-color: var(--accent); }
.work-tag { font-family: var(--font-mono); font-size: .74rem; color: var(--accent); }
.work-row h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 550; margin: 0 0 6px; }
.work-row p { margin: 0; color: var(--text-dim); font-size: .95rem; line-height: 1.6; max-width: 56ch; }
.work-arrow { font-size: 1.3rem; color: var(--text-faint); transition: transform .25s ease, color .25s ease; }
.work-row:hover .work-arrow { color: var(--accent); transform: translateX(6px); }

/* Client logo carousel — an auto-scrolling wall of businesses worked with,
   no per-item category tags or case-study copy (same technique as the
   Tools & Platforms marquee: JS duplicates the track once for a seamless
   loop, CSS animates it, hover pauses it). */
.client-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.client-marquee-track {
  display: flex;
  width: max-content;
  animation: clientScroll 50s linear infinite;
}
.client-marquee:hover .client-marquee-track { animation-play-state: paused; }
@keyframes clientScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.client-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-shrink: 0;
  width: 220px;
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid var(--border-soft);
  transition: background .25s ease;
}
.client-card:hover { background: var(--surface); }
.client-card img {
  max-width: 120px;
  max-height: 48px;
  width: auto;
  height: auto;
  opacity: .92;
  transition: opacity .25s ease, transform .25s ease;
}
.client-card:hover img { opacity: 1; transform: scale(1.05); }
.client-card span {
  font-family: var(--font-mono);
  font-size: .74rem;
  color: var(--text-faint);
}
@media (prefers-reduced-motion: reduce) {
  .client-marquee-track { animation: none; }
}

/* Testimonials carousel — same seamless-loop marquee technique, styled as
   quote cards. Ships with clearly-marked placeholders only; real quotes get
   swapped in once collected (see testimonial-note below each one). */
.testimonial-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.testimonial-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: testimonialScroll 60s linear infinite;
}
.testimonial-marquee:hover .testimonial-marquee-track { animation-play-state: paused; }
@keyframes testimonialScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.testimonial-card {
  flex-shrink: 0;
  width: 320px;
  padding: 28px;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  background: var(--surface);
}
.testimonial-card p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-dim);
  margin: 0 0 18px;
}
.testimonial-card span {
  font-family: var(--font-mono);
  font-size: .78rem;
  color: var(--text-faint);
}
.testimonial-note {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: .82rem;
  color: var(--text-faint);
}
.testimonial-note a { color: var(--accent); text-decoration: underline; }
@media (prefers-reduced-motion: reduce) {
  .testimonial-marquee-track { animation: none; }
}

/* Contact */
.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 550;
  line-height: 1.08;
  margin: 16px 0 24px;
}
.contact-sub { color: var(--text-dim); font-size: 1.05rem; max-width: 56ch; margin: 0 0 56px; }
.contact-list { display: flex; flex-direction: column; }
.contact-row {
  display: grid; grid-template-columns: 140px 1fr auto;
  align-items: center; gap: 24px; padding: 26px 0;
  border-top: 1px solid var(--border-soft);
  transition: border-color .3s ease, padding-left .3s ease;
}
.contact-row > * { min-width: 0; }
.contact-list .contact-row:last-child { border-bottom: 1px solid var(--border-soft); }
.contact-row span:first-child { font-family: var(--font-mono); font-size: .78rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: .05em; }
.contact-row strong { font-family: var(--font-display); font-size: 1.5rem; font-weight: 450; }
.contact-row:hover { border-top-color: var(--accent); padding-left: 10px; }
.contact-row:hover .work-arrow { color: var(--accent); transform: translateX(6px); }
.contact-avail { font-family: var(--font-mono); font-size: .82rem; color: var(--text-faint); margin-top: 44px; }
.contact-avail strong { color: var(--accent); font-weight: 700; }

/* Shared sub-page building blocks (service / about / work / contact pages) */
.breadcrumb { font-family: var(--font-mono); font-size: .78rem; color: var(--text-faint); margin-bottom: 28px; }
.breadcrumb a { color: var(--text-dim); }
.breadcrumb a:hover { color: var(--accent); }

.page-hero { position: relative; overflow: hidden; padding-top: 170px; padding-bottom: 80px; }
.hero-watermark {
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translateY(-50%) rotate(-8deg);
  width: min(42vw, 560px);
  height: auto;
  opacity: .07;
  z-index: 0;
  pointer-events: none;
}
.hero-watermark polygon { fill: var(--accent); }
.page-hero .container { position: relative; z-index: 1; }
@media (max-width: 900px) { .hero-watermark { display: none; } }
.page-eyebrow { font-family: var(--font-mono); color: var(--accent); font-size: .82rem; margin-bottom: 20px; display: block; }
.page-title { font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 4.6rem); font-weight: 550; line-height: 1.06; margin: 0 0 26px; max-width: 18ch; }
.page-lede { color: var(--text-dim); font-size: 1.15rem; line-height: 1.7; max-width: 60ch; margin: 0; }

.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.detail-grid > * { min-width: 0; }
.detail-block h2 { font-family: var(--font-display); font-size: 1.7rem; font-weight: 550; margin: 0 0 18px; }
.detail-block p { color: var(--text-dim); line-height: 1.8; margin: 0 0 16px; }

.benefit-list { display: flex; flex-direction: column; gap: 0; }
.benefit-list li {
  display: flex; gap: 16px; padding: 20px 0; border-top: 1px solid var(--border-soft);
  color: var(--text-dim); line-height: 1.6; font-size: .96rem;
  transition: border-color .25s ease, padding-left .25s ease, color .25s ease;
}
.benefit-list li:last-child { border-bottom: 1px solid var(--border-soft); }
.benefit-list li::before { content: "—"; color: var(--accent); flex-shrink: 0; font-family: var(--font-mono); transition: transform .25s ease; }
.benefit-list li:hover { border-top-color: var(--accent); padding-left: 8px; color: var(--text); }
.benefit-list li:hover::before { transform: translateX(2px); }

.cta-band {
  text-align: left;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 64px 0;
}
.cta-band h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 550; margin: 0 0 28px; max-width: 16ch; }

/* Contact form */
.contact-form { max-width: 640px; }
.form-hidden { position: absolute; left: -9999px; }
.form-row { margin-bottom: 26px; }
.form-row label {
  display: block;
  font-family: var(--font-mono);
  font-size: .78rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 10px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 10px 0;
  transition: border-color .25s ease;
  resize: vertical;
}
.form-row select { appearance: none; cursor: pointer; }
.form-row select option { background: var(--bg-raised); color: var(--text); }
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { outline: none; border-color: var(--accent); }
.form-status { margin-top: 20px; font-family: var(--font-mono); font-size: .85rem; color: var(--accent); min-height: 1.2em; }

/* Footer */
.site-footer { padding: 36px 0; border-top: 1px solid var(--border-soft); position: relative; z-index: 1; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-mono);
  color: var(--text-faint);
  font-size: .8rem;
}
.footer-top:hover { color: var(--accent); }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.hero-rule.reveal.in-view { transform: scaleX(1); }

.service-list .reveal:nth-child(2) { transition-delay: .05s; }
.service-list .reveal:nth-child(3) { transition-delay: .1s; }
.service-list .reveal:nth-child(4) { transition-delay: .15s; }
.service-list .reveal:nth-child(5) { transition-delay: .2s; }
.work-list .reveal:nth-child(2) { transition-delay: .08s; }
.work-list .reveal:nth-child(3) { transition-delay: .16s; }

@media (max-width: 900px) {
  .hero-lower { grid-template-columns: 1fr; gap: 40px; }
  .about-inner { grid-template-columns: 1fr; }
  .photo-frame { max-width: 240px; }
  .detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-row { grid-template-columns: 60px 1fr; }
  .service-outcome { grid-column: 1 / -1; border-left: none; padding-left: 0; border-top: 1px solid var(--border-soft); padding-top: 16px; }
  .work-row { grid-template-columns: 50px 1fr auto; }
  .contact-row { grid-template-columns: 1fr auto; }
  .contact-row span:first-child { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .nav { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--bg); flex-direction: column; justify-content: center; align-items: flex-start; padding: 32px; gap: 26px; transform: translateX(100%); transition: transform .3s ease; z-index: -1; }
  .nav.open { transform: translateX(0); z-index: 99; }
  .nav-toggle { display: flex; }
  section, .hero, .page-hero { padding-top: 120px; }
  section { padding-bottom: 100px; }
  .nav-item { width: 100%; }
  .nav-dropdown {
    position: static;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    background: none;
    border: none;
    box-shadow: none;
    padding: 6px 0 0 20px;
    margin-top: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .hero-rule { opacity: 1; transform: none; transition: none; }
  .about-photo::before { animation: none; }
}

/* Star ratings on testimonial cards */
.testimonial-card .stars {
  color: var(--accent-bright);
  font-size: .95rem;
  letter-spacing: 3px;
  margin: 0 0 14px;
  line-height: 1;
}

/* FAQ (accessible native <details>, no JS required) */
.faq { }
.faq-list { max-width: 840px; }
.faq-item {
  border-top: 1px solid var(--border-soft);
}
.faq-item:last-child { border-bottom: 1px solid var(--border-soft); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 44px 22px 0;
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 2vw, 1.2rem);
  font-weight: 550;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "\2013"; }
.faq-item summary:hover { color: var(--accent-bright); }
.faq-answer { padding: 0 44px 24px 0; }
.faq-answer p {
  margin: 0;
  color: var(--text-dim);
  line-height: 1.7;
  font-size: 1rem;
}


/* Blog / article */
.article-meta { font-family: var(--font-mono); font-size: .78rem; color: var(--text-faint); margin: 0 0 6px; text-transform: uppercase; letter-spacing: 1px; }
.article-body { max-width: 760px; }
.article-body h2 { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 550; margin: 44px 0 14px; color: var(--text); }
.article-body h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 550; margin: 30px 0 10px; color: var(--text); }
.article-body p { color: var(--text-dim); line-height: 1.85; margin: 0 0 18px; font-size: 1.05rem; }
.article-body ul { margin: 0 0 22px; padding-left: 22px; }
.article-body li { color: var(--text-dim); line-height: 1.7; margin-bottom: 10px; }
.article-body strong { color: var(--text); }
.article-body a { color: var(--accent); text-decoration: underline; }
.blog-list { display: grid; gap: 20px; max-width: 840px; }
.blog-card { display: block; padding: 30px; border: 1px solid var(--border-soft); border-radius: 10px; background: var(--surface); transition: border-color .2s ease, transform .2s ease; }
.blog-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.blog-card h2 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 550; margin: 6px 0 10px; color: var(--text); }
.blog-card p { color: var(--text-dim); margin: 0; line-height: 1.6; }

/* Floating WhatsApp button */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 200;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 18px 12px 15px;
  background: #25D366; color: #072b12;
  font-family: var(--font-body); font-weight: 600; font-size: .9rem;
  border-radius: 100px; box-shadow: 0 10px 34px rgba(0,0,0,.4);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(37,211,102,.42); }
.wa-float svg { width: 22px; height: 22px; fill: #072b12; }
@media (max-width: 600px){ .wa-float span { display: none; } .wa-float { padding: 15px; right: 16px; bottom: 16px; } }

/* Free-audit band */
.audit-band .audit-sub { max-width: 620px; margin: 14px auto 26px; color: var(--text-dim); line-height: 1.7; }

/* Upgraded footer */
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 32px;
  padding: 64px 0 36px; border-top: 1px solid var(--border-soft);
}
.footer-col h4 { font-family: var(--font-mono); font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--text-faint); margin: 0 0 14px; }
.footer-col a { display: block; color: var(--text-dim); font-size: .9rem; margin-bottom: 9px; }
.footer-col a:hover { color: var(--accent); }
.footer-brand .footer-logo { font-family: var(--font-display); font-size: 1.25rem; color: var(--text); }
.footer-brand p { color: var(--text-dim); font-size: .9rem; margin-top: 10px; max-width: 280px; line-height: 1.6; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 22px 0; border-top: 1px solid var(--border-soft); font-family: var(--font-mono); font-size: .78rem; color: var(--text-faint); }
@media (max-width: 760px){ .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }

/* Case studies */
.case-card { border: 1px solid var(--border-soft); border-radius: 12px; padding: 36px; background: var(--surface); margin-bottom: 24px; }
.case-client { font-family: var(--font-mono); font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--accent); }
.case-card h2 { font-family: var(--font-display); font-size: 1.55rem; font-weight: 550; margin: 8px 0 14px; color: var(--text); }
.case-card p { color: var(--text-dim); line-height: 1.75; margin: 0 0 8px; }
.case-metrics { display: flex; gap: 40px; flex-wrap: wrap; margin: 22px 0 6px; }
.case-metric strong { display: block; font-family: var(--font-mono); font-size: 1.7rem; color: var(--accent-bright); }
.case-metric span { font-size: .8rem; color: var(--text-dim); }
.case-note { font-family: var(--font-mono); font-size: .78rem; color: var(--text-faint); border-left: 2px solid var(--accent); padding-left: 12px; margin-top: 8px; }


/* Photo logo */
.logo-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(244,238,226,0.18);
  display: block;
  flex-shrink: 0;
}

/* ============ Mobile menu polish + responsive fixes ============ */

/* Footer side padding on all sizes (shorthand had zeroed it) */
.site-footer .footer-grid { padding-left: 32px; padding-right: 32px; }
.site-footer .footer-bottom { padding-left: 32px; padding-right: 32px; }

/* Animated hamburger -> X */
.nav-toggle { position: relative; width: 28px; height: 20px; gap: 0; z-index: 200; }
.nav-toggle span {
  position: absolute; left: 0; right: 0; width: auto; height: 1.5px;
  background: var(--text);
  transition: transform .35s cubic-bezier(.16,1,.3,1), opacity .2s ease;
}
.nav-toggle span:nth-child(1) { top: 3px; }
.nav-toggle span:nth-child(2) { top: 9px; }
.nav-toggle span:nth-child(3) { top: 15px; }
.nav-toggle.is-open span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

/* Keep logo above the overlay; lock scroll; hide chat bubble when open */
.site-header .logo { position: relative; z-index: 200; }
body.nav-locked { overflow: hidden; }
body.nav-locked .wa-float { opacity: 0; pointer-events: none; }
body.nav-locked .site-header { background: transparent; border-color: transparent; box-shadow: none; }

@media (max-width: 720px) {
  .nav {
    position: fixed; inset: 0;
    background: radial-gradient(135% 70% at 100% 0%, rgba(255,90,31,0.13), transparent 55%), var(--bg);
    flex-direction: column; justify-content: center; align-items: stretch;
    gap: 0; padding: 108px 30px 48px;
    transform: translateX(100%);
    transition: transform .5s cubic-bezier(.16,1,.3,1);
    z-index: 90; overflow-y: auto;
  }
  .nav.open { transform: translateX(0); }

  .nav > a, .nav-item > a {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 8vw, 2.2rem);
    font-weight: 550; color: var(--text);
    padding: 15px 0; border-bottom: 1px solid var(--border-soft);
    justify-content: flex-start; align-items: baseline; gap: 14px;
  }
  .nav .nav-index { font-family: var(--font-mono); font-size: .7rem; color: var(--accent); letter-spacing: .1em; }
  .nav .caret { display: none; }

  /* stagger reveal */
  .nav.open > * { animation: navItemIn .55s cubic-bezier(.16,1,.3,1) both; }
  .nav.open > *:nth-child(1){animation-delay:.05s}
  .nav.open > *:nth-child(2){animation-delay:.11s}
  .nav.open > *:nth-child(3){animation-delay:.17s}
  .nav.open > *:nth-child(4){animation-delay:.23s}
  .nav.open > *:nth-child(5){animation-delay:.29s}
  .nav.open > *:nth-child(6){animation-delay:.35s}

  /* Services submenu — always visible, elegantly indented */
  .nav-item { width: 100%; }
  .nav-dropdown {
    position: static; opacity: 1; transform: none; pointer-events: auto;
    display: flex; flex-direction: column;
    background: none; border: none; box-shadow: none;
    padding: 2px 0 12px 6px; margin: 0;
  }
  .nav-dropdown a { font-family: var(--font-body); font-size: 1.02rem; color: var(--text-dim); padding: 10px 0; border-bottom: none; }
  .nav-dropdown a:hover { color: var(--accent); }

  /* Contact as a pill button */
  .nav .nav-cta {
    margin-top: 26px; background: var(--accent-grad); color: #0b0a09;
    border-radius: 100px; padding: 15px 26px; justify-content: center;
    font-family: var(--font-body); font-weight: 600; font-size: 1.02rem; border-bottom: none;
  }

  .site-footer .footer-grid, .site-footer .footer-bottom { padding-left: 22px; padding-right: 22px; }
  .footer-bottom { flex-direction: row; }
}

@keyframes navItemIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* Small-screen polish */
@media (max-width: 600px) {
  .footer-top { display: none; }
  .footer-bottom { justify-content: flex-start; }
  .contact-row strong { font-size: .98rem; overflow-wrap: anywhere; }
}
