/* ============================================================
   DIVYANSH SOOD — Portfolio & Design System
   Aesthetic: Dark luxe · editorial grotesk · warm sand accent
   ============================================================ */

:root {
  --ink-000: #0E0E12;
  --ink-050: #14141A;
  --ink-100: #1A1A22;
  --ink-200: #20202A;
  --ink-300: #2A2A35;
  --ink-400: #34343F;
  --ink-500: #46464F;

  --bone-100: #F5F2EC;
  --bone-200: #E8E3D9;
  --bone-300: #BFBAB0;
  --bone-400: #918C82;
  --bone-500: #61605A;

  --accent:     oklch(0.89 0.08 80);
  --accent-dim: oklch(0.89 0.08 80 / 0.16);
  --accent-ink: oklch(0.22 0.06 60);

  --hairline:   rgba(245, 242, 236, 0.09);
  --hairline-2: rgba(245, 242, 236, 0.16);

  --f-display: 'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  --f-sans:    'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono:    'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  --f-serif:   'Instrument Serif', 'Times New Roman', serif;

  --t-mega:    clamp(56px, 11vw, 160px);
  --t-display: clamp(44px, 7.5vw, 104px);
  --t-h1:      clamp(40px, 5vw, 72px);
  --t-h2:      clamp(30px, 3.2vw, 48px);
  --t-h3:      clamp(22px, 1.9vw, 28px);
  --t-body:    17px;
  --t-small:   14px;
  --t-meta:    11px;

  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 20px; --s-6: 28px; --s-7: 40px; --s-8: 52px;
  --s-9: 72px; --s-10: 96px; --s-11: 132px;

  --r-1: 4px; --r-2: 8px; --r-3: 14px; --r-4: 22px; --r-full: 999px;

  --shadow-2: 0 24px 48px -24px rgba(0,0,0,0.8), 0 0 0 1px var(--hairline);
  --shadow-glow: 0 0 80px -20px var(--accent-dim);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);

  --gutter: clamp(20px, 4vw, 48px);
  --gutter-mobile: 20px;
  --max-w: 1320px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  background: var(--ink-050);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'ss01', 'cv11', 'kern';
  overflow-x: clip;
  width: 100%;
}
/* When Lenis is active, it handles scrolling */
html.lenis { height: auto; }
html.lenis.lenis-smooth { scroll-behavior: auto !important; }
html.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
html.lenis.lenis-stopped { overflow: clip; }

body {
  font-family: var(--f-sans);
  font-size: var(--t-body);
  line-height: 1.55;
  color: var(--bone-100);
  background: var(--ink-050);
  overflow-x: clip;
  width: 100%;
  letter-spacing: -0.01em;
  margin: 0;
}

@media (max-width: 720px) {
  :root { --gutter: 20px; }
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/></svg>");
}

::selection { background: var(--accent); color: var(--accent-ink); }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img { max-width: 100%; display: block; }

/* Type */
.t-mega    { font-family: var(--f-display); font-size: var(--t-mega); line-height: 0.86; letter-spacing: -0.04em; font-weight: 500; }
.t-display { font-family: var(--f-display); font-size: var(--t-display); line-height: 0.92; letter-spacing: -0.035em; font-weight: 500; }
.t-h1      { font-family: var(--f-display); font-size: var(--t-h1);      line-height: 1.0;  letter-spacing: -0.025em; font-weight: 500; }
.t-h2      { font-family: var(--f-display); font-size: var(--t-h2);      line-height: 1.05; letter-spacing: -0.02em;  font-weight: 500; }
.t-h3      { font-family: var(--f-display); font-size: var(--t-h3);      line-height: 1.2;  letter-spacing: -0.015em; font-weight: 500; }
.t-body    { font-size: var(--t-body); line-height: 1.55; color: var(--bone-200); }
.t-small   { font-size: var(--t-small); line-height: 1.5;  color: var(--bone-300); }
.t-meta    { font-family: var(--f-mono); font-size: var(--t-meta); letter-spacing: 0.14em; text-transform: uppercase; color: var(--bone-400); }
.t-serif   { font-family: var(--f-serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }

/* Layout */
.wrap { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); position: relative; }
.section { position: relative; padding: var(--s-9) 0; border-top: 1px solid var(--hairline); }
.section:first-child { border-top: 0; }
.section-head { display: grid; grid-template-columns: 180px 1fr; gap: var(--s-7); margin-bottom: var(--s-7); align-items: baseline; }
.section-head .eyebrow { display: flex; align-items: center; gap: var(--s-2); }
.section-head .eyebrow::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
@media (max-width: 720px) {
  .section { padding: var(--s-8) 0; }
  .section-head { grid-template-columns: 1fr; gap: var(--s-3); margin-bottom: var(--s-6); }
}

/* Nav — pill stays static, slightly transparent. Brand + WhatsApp on left, links + hamburger on right.
   IMPORTANT: NO transform on .nav — that creates a containing block and would break the
   fixed-position mobile overlay (it would render inside the pill instead of covering the screen). */
.nav {
  position: fixed; top: 14px; left: 0; right: 0;
  margin-left: auto; margin-right: auto;
  width: max-content;
  z-index: 60; display: flex; align-items: center; gap: var(--s-2);
  padding: 5px 5px 5px 6px;
  background: rgba(20, 20, 26, 0.55);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  border: 1px solid rgba(245, 242, 236, 0.07);
  border-radius: var(--r-full);
  box-shadow: 0 12px 36px -16px rgba(0,0,0,0.55);
  max-width: calc(100vw - 24px);
}
.nav .brand-group { display: flex; align-items: center; gap: 6px; }
.nav .brand {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 8px 6px 10px; font-family: var(--f-mono);
  font-size: 11px; letter-spacing: 0.04em; color: var(--bone-200);
  white-space: nowrap;
}
.nav .brand .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent); animation: pulse 2.4s var(--ease-in-out) infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(0.86); } }
.nav a.nav-link { padding: 7px 12px; font-size: 12px; color: var(--bone-300); border-radius: var(--r-full); transition: color .35s var(--ease-out), background .35s var(--ease-out); white-space: nowrap; }
.nav a.nav-link:hover { color: var(--bone-100); background: rgba(255,255,255,0.06); }

/* WhatsApp pill — same white-pill style as original, just placed inline next to brand */
.nav .cta-wa {
  padding: 7px 14px 7px 11px;
  font-size: 12px; font-weight: 500;
  color: var(--ink-050);
  background: var(--bone-100);
  border-radius: var(--r-full);
  transition: background .25s var(--ease-out), transform .25s var(--ease-out);
  display: inline-flex; align-items: center; gap: 6px;
  white-space: nowrap;
  letter-spacing: 0.005em;
}
.nav .cta-wa:hover { background: var(--accent); transform: translateY(-1px); }
.nav .cta-wa svg { display: block; }

/* nav-menu container holds desktop links; on mobile becomes overlay */
.nav-menu { display: flex; align-items: center; gap: var(--s-1); }

@media (max-width: 880px) {
  .nav { top: 10px; padding: 4px 4px 4px 6px; gap: 4px; }
  .nav .brand { padding: 6px 4px 6px 8px; font-size: 10.5px; letter-spacing: 0.06em; }
  .nav .cta-wa { padding: 6px 12px 6px 10px; font-size: 11px; }
  .nav .cta-wa svg { width: 12px; height: 12px; }
}
@media (max-width: 380px) {
  .nav .cta-wa span.cta-wa-label { display: none; }
  .nav .cta-wa { padding: 6px 10px; }
}

/* Buttons */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; font-size: 14px; letter-spacing: -0.005em;
  border-radius: var(--r-full);
  transition: background .35s var(--ease-out), color .35s var(--ease-out), border-color .35s var(--ease-out);
  user-select: none;
}
.btn-primary { background: var(--bone-100); color: var(--ink-050); }
.btn-primary:hover { background: var(--accent); color: var(--accent-ink); }
.btn-ghost   { border: 1px solid var(--hairline-2); color: var(--bone-100); }
.btn-ghost:hover { border-color: var(--bone-100); }
.btn .arrow { transition: transform .5s var(--ease-out); }
.btn:hover .arrow { transform: translate(3px, -3px); }

/* Hero */
.hero {
  position: relative; padding: calc(var(--s-9) + 20px) 0 var(--s-8);
  min-height: auto;
  display: flex; flex-direction: column; justify-content: center;
  overflow: hidden;
}
@media (min-width: 900px) {
  .hero { min-height: 78vh; padding-top: calc(var(--s-10) + 24px); padding-bottom: var(--s-9); }
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px 6px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--hairline);
  border-radius: var(--r-full);
  margin-bottom: var(--s-6);
  color: var(--bone-300);
  font-size: 11px;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-eyebrow .eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 12px var(--accent);
  flex-shrink: 0;
}
@media (max-width: 520px) {
  .hero-eyebrow { font-size: 10px; padding: 5px 12px 5px 9px; letter-spacing: .12em; }
  .hero-eyebrow .eyebrow-mobile-hide { display: none; }
}
.hero-pitch .caption strong { color: var(--bone-100); font-weight: 600; }
.hero-bullets {
  list-style: none; padding: 0;
  margin-top: var(--s-5);
  display: flex; flex-direction: column; gap: 10px;
}
.hero-bullets li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: var(--bone-200);
}
.hero-bullets .bdot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}
.hero-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
  margin-top: var(--s-8);
  padding-top: var(--s-6);
  border-top: 1px solid var(--hairline);
}
.kpi { display: flex; flex-direction: column; gap: 4px; }
.kpi-n {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
  color: var(--bone-100);
  font-variant-numeric: tabular-nums;
  display: inline-flex; align-items: baseline; gap: 4px;
}
.kpi-n span {
  font-family: var(--f-mono);
  font-size: 11px; font-weight: 400;
  letter-spacing: .12em;
  color: var(--bone-400);
  text-transform: uppercase;
}
.kpi-l {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--bone-400);
  text-transform: uppercase;
}
@media (max-width: 720px) {
  .hero-kpis { grid-template-columns: repeat(2, 1fr); gap: var(--s-4); margin-top: var(--s-6); }
}
.hero-aura {
  position: absolute; inset: -20%; pointer-events: none;
  background:
    radial-gradient(50% 40% at 20% 30%, oklch(0.89 0.08 80 / 0.18), transparent 60%),
    radial-gradient(40% 30% at 80% 70%, oklch(0.55 0.1 30 / 0.22), transparent 70%);
  filter: blur(20px); z-index: 0; will-change: transform;
}
.hero .wrap { z-index: 2; }

.hero h1 { margin-bottom: var(--s-7); position: relative; }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line-inner { display: inline-block; transform: translateY(110%); transition: transform 1.1s var(--ease-out); }
.hero h1.in .line-inner { transform: translateY(0) !important; }
.hero h1.in .line:nth-child(2) .line-inner { transition-delay: .1s; }
.hero h1.in .line:nth-child(3) .line-inner { transition-delay: .2s; }

.hero h1 .accent-word { font-family: var(--f-serif); font-style: italic; color: var(--accent); font-weight: 400; }

.hero-sub {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--s-7);
  align-items: end;
  margin-top: var(--s-7);
}
.hero-pitch { max-width: 540px; }
.hero-sub .caption { font-size: 17px; line-height: 1.5; color: var(--bone-200); }
.hero-actions { display: flex; gap: var(--s-3); align-items: center; flex-shrink: 0; flex-wrap: wrap; }
@media (max-width: 860px) { .hero-sub { grid-template-columns: 1fr; gap: var(--s-5); } }

/* ============================================================
   WORK — stacked widget cards with multi-image swipe gallery
   ============================================================ */
.work {
  padding: var(--s-9) 0 var(--s-8);
  border-top: 1px solid var(--hairline);
  position: relative;
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-6);
}
@media (max-width: 760px) {
  .work-grid { grid-template-columns: 1fr; gap: var(--s-5); }
}
.work-card {
  display: flex; flex-direction: column; gap: var(--s-4);
  text-decoration: none; color: inherit;
  background: var(--ink-100);
  border: 1px solid var(--hairline);
  border-radius: var(--r-3);
  overflow: hidden;
  transition: transform .4s var(--ease-out), border-color .3s var(--ease-out), box-shadow .4s var(--ease-out);
  position: relative;
}
.work-card:hover { transform: translateY(-3px); border-color: var(--hairline-2); box-shadow: 0 24px 48px -24px rgba(0,0,0,.6); }
.work-card:hover .work-body h3 { color: var(--accent); }

.work-media {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--ink-200);
  overflow: hidden;
}
.work-fade {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.work-fade img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.1s var(--ease-out), transform 6s linear;
  will-change: opacity, transform;
}
.work-fade img.is-active {
  opacity: 1;
  transform: scale(1.0);
}
.work-card:hover .work-fade img.is-active { transform: scale(1.02); }

.work-dots {
  position: absolute;
  bottom: 10px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 6px;
  padding: 6px 10px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(6px);
  border-radius: var(--r-full);
  z-index: 2;
}
.work-dots span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  transition: background .25s var(--ease-out), width .25s var(--ease-out);
}
.work-dots span.is-active {
  background: var(--accent);
  width: 14px;
  border-radius: var(--r-full);
}

.work-body {
  padding: var(--s-5) var(--s-5) var(--s-6);
  display: flex; flex-direction: column; gap: var(--s-3);
}
.work-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-3); flex-wrap: wrap;
}
.work-pill {
  display: inline-flex; align-items: center;
  padding: 4px 10px;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid rgba(232, 198, 140, 0.25);
  border-radius: var(--r-full);
}
.work-body h3 { color: var(--bone-100); transition: color .25s var(--ease-out); }
.work-blurb {
  font-size: 14px; line-height: 1.55;
  color: var(--bone-300);
}
.work-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
  margin-top: var(--s-3);
  padding-top: var(--s-4);
  border-top: 1px solid var(--hairline);
}
.work-kpis div { display: flex; flex-direction: column; gap: 2px; }
.work-kpis strong {
  font-family: var(--f-display);
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 600;
  color: var(--bone-100);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.work-kpis span {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--bone-400);
  text-transform: uppercase;
}

/* "More coming soon" placeholder card */
.work-coming {
  background: linear-gradient(180deg, var(--ink-100) 0%, var(--ink-050) 100%);
  border-style: dashed;
  display: flex; align-items: center; justify-content: center;
  padding: var(--s-7) var(--s-6);
  min-height: 320px;
  text-decoration: none;
}
.work-coming:hover { transform: none; }
.work-coming-inner {
  display: flex; flex-direction: column; gap: var(--s-4);
  text-align: left;
}
.work-coming h3 { color: var(--bone-100); }
.work-coming .btn { align-self: flex-start; margin-top: var(--s-3); }

/* Services */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--hairline); border-left: 1px solid var(--hairline); }
.service {
  padding: var(--s-7) var(--s-6) var(--s-8);
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  position: relative;
  transition: background .5s var(--ease-out);
  min-height: 360px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.service:hover { background: var(--ink-100); }
.service .num { font-family: var(--f-mono); font-size: 11px; color: var(--bone-400); letter-spacing: .14em; }
.service .glyph {
  width: 46px; height: 46px; border: 1px solid var(--hairline-2); border-radius: var(--r-2);
  display: flex; align-items: center; justify-content: center; color: var(--accent);
  margin: var(--s-5) 0;
  transition: transform .6s var(--ease-out), border-color .4s var(--ease-out);
}
.service:hover .glyph { border-color: var(--accent); transform: rotate(-4deg); }
.service h3 { margin-bottom: var(--s-3); }
.service p  { color: var(--bone-300); font-size: 15px; line-height: 1.55; }
.service .list { margin-top: var(--s-5); display: flex; flex-direction: column; gap: 6px; }
.service .list li {
  list-style: none;
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--bone-300);
  display: flex; align-items: center; gap: 10px;
  padding-top: 8px; border-top: 1px dashed var(--hairline);
}
.service .list li::before { content: '→'; color: var(--accent); }
@media (max-width: 900px) { .services { grid-template-columns: 1fr; } }

/* Testimonial */
.testimonial { padding: var(--s-9) var(--gutter); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); position: relative; }
.testimonial .section-head { text-align: left; margin-bottom: var(--s-6); }
.testimonial .quote { font-family: var(--f-display); font-size: clamp(28px, 3vw, 44px); line-height: 1.25; letter-spacing: -0.02em; max-width: 980px; margin: 0 auto var(--s-7); color: var(--bone-100); }
.testimonial .quote em { font-family: var(--f-serif); font-style: italic; color: var(--accent); }
.testimonial .attribution { display: inline-flex; align-items: center; gap: 14px; font-family: var(--f-mono); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--bone-300); }
.testimonial .av { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, #8f6a3e, #3a2a20); flex-shrink: 0; }

.quotes {
  display: flex;
  gap: var(--s-4);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-left: var(--gutter);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: var(--s-3);
  margin: 0 calc(var(--gutter) * -1);
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.quotes::-webkit-scrollbar { display: none; }
.quote-card {
  margin: 0;
  flex: 0 0 min(420px, 82vw);
  scroll-snap-align: start;
  padding: var(--s-5) var(--s-5);
  border: 1px solid var(--hairline);
  border-radius: var(--r-3);
  background: var(--ink-100);
  display: flex; flex-direction: column; gap: var(--s-4);
  transition: background .25s var(--ease-out), border-color .25s var(--ease-out);
}
.quote-card:hover { background: var(--ink-200); border-color: var(--hairline-2); }
.quote-card .q-body {
  margin: 0;
  font-family: var(--f-display);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--bone-100);
}
.quote-card .q-foot {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
  padding-top: var(--s-3);
  border-top: 1px dashed var(--hairline);
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--bone-400);
}
.quote-card .q-foot .who { color: var(--bone-300); text-transform: none; letter-spacing: 0; font-family: var(--f-body); font-size: 13px; }
.quote-card .q-foot .who strong { color: var(--bone-100); font-weight: 500; }
.quote-card .q-foot .sig { margin-left: auto; color: var(--accent); font-size: 10px; }
.quotes-hint {
  display: none;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--bone-400);
  margin-top: var(--s-3);
}
@media (max-width: 720px) {
  .quote-card { flex: 0 0 86vw; padding: var(--s-4); }
  .quotes-hint { display: block; }
}

/* About */
.about { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: var(--s-8); align-items: start; }
.about-portrait {
  aspect-ratio: 4/5;
  border-radius: var(--r-3);
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(120% 80% at 50% 110%, oklch(0.55 0.09 60 / 0.55), transparent 60%),
    linear-gradient(165deg, #1a1513 0%, #2a201a 45%, #6b4e2e 100%);
  box-shadow: var(--shadow-2);
  isolation: isolate;
}
.about-portrait::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255,255,255,0.035) 0 2px, transparent 2px 12px);
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 2;
}
.about-portrait .portrait-tag {
  position: absolute; bottom: 16px; left: 16px;
  font-family: var(--f-mono); font-size: 10px; letter-spacing: .2em;
  color: rgba(255,255,255,0.7);
  z-index: 3;
}
.about-portrait .portrait-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.45));
  z-index: 1;
}

.about-copy .big { font-family: var(--f-display); font-size: clamp(26px, 2.4vw, 36px); line-height: 1.2; letter-spacing: -0.02em; color: var(--bone-100); margin-bottom: var(--s-6); }
.about-copy .big em { font-family: var(--f-serif); font-style: italic; color: var(--accent); }
.about-bullets {
  list-style: none; padding: 0;
  display: flex; flex-direction: column;
  gap: var(--s-3);
  margin-bottom: var(--s-6);
}
.about-bullets li {
  padding: var(--s-3) 0;
  border-top: 1px solid var(--hairline);
  color: var(--bone-300);
  font-size: 15px; line-height: 1.55;
}
.about-bullets li strong {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-right: 10px;
}
@media (max-width: 900px) { .about { grid-template-columns: 1fr; gap: var(--s-6); } .about-portrait { max-width: 420px; margin: 0 auto; } }

/* Clients */
.clients { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; border-top: 1px solid var(--hairline); border-left: 1px solid var(--hairline); }
.client { aspect-ratio: 3/2; display: flex; align-items: center; justify-content: center; border-right: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); font-family: var(--f-display); font-size: 18px; letter-spacing: -0.01em; color: var(--bone-300); transition: color .35s var(--ease-out), background .35s var(--ease-out); }
.client:hover { color: var(--bone-100); background: var(--ink-100); }
@media (max-width: 720px) { .clients { grid-template-columns: repeat(3, 1fr); } }

/* CTA */
.cta-block { padding: var(--s-7) 0 var(--s-6); text-align: center; position: relative; }
.cta-block .tiny { margin-bottom: var(--s-5); }
.cta-block h2 { font-family: var(--f-display); font-size: clamp(48px, 9vw, 140px); font-weight: 500; letter-spacing: -0.04em; line-height: 0.95; margin-bottom: var(--s-6); }
@media (max-width: 640px) { .cta-block { padding: var(--s-5) 0 var(--s-4); } .cta-block h2 { margin-bottom: var(--s-5); } }
.cta-block h2 em { font-family: var(--f-serif); font-style: italic; color: var(--accent); font-weight: 400; }
.cta-block .email { display: inline-flex; align-items: center; gap: 14px; padding: 18px 10px 18px 28px; border: 1px solid var(--hairline-2); border-radius: var(--r-full); font-size: 18px; transition: border-color .4s var(--ease-out), background .4s var(--ease-out); }
.cta-block .email:hover { border-color: var(--accent); background: var(--ink-100); }
.cta-block .email .copy { width: 44px; height: 44px; border-radius: 50%; background: var(--bone-100); color: var(--ink-050); display: flex; align-items: center; justify-content: center; transition: background .35s var(--ease-out); }
.cta-block .email:hover .copy { background: var(--accent); }

/* Footer */
footer { padding: var(--s-7) 0 var(--s-5); border-top: 1px solid var(--hairline); font-family: var(--f-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--bone-400); }
footer .row { display: grid; grid-template-columns: 1fr auto 1fr; gap: var(--s-6); align-items: center; }
footer .row .mid { color: var(--bone-300); }
footer .row a:hover { color: var(--bone-100); }
footer .socials { display: flex; gap: var(--s-4); justify-content: flex-end; }
@media (max-width: 720px) { footer .row { grid-template-columns: 1fr; text-align: left; } footer .socials { justify-content: flex-start; } }

/* Design System */
.ds-title { display: grid; grid-template-columns: 1fr auto; align-items: end; padding: var(--s-8) 0 var(--s-7); border-bottom: 1px solid var(--hairline); margin-bottom: var(--s-8); }
.ds-title h2 { font-family: var(--f-display); font-size: clamp(44px, 5vw, 76px); font-weight: 500; letter-spacing: -0.03em; line-height: 1; }
.ds-title .ver { font-family: var(--f-mono); font-size: 12px; letter-spacing: .14em; color: var(--bone-400); text-transform: uppercase; }
.ds-grid { display: grid; grid-template-columns: 220px 1fr; gap: var(--s-7); padding-bottom: var(--s-8); border-bottom: 1px solid var(--hairline); margin-bottom: var(--s-8); align-items: start; }
.ds-grid .label { font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--bone-400); }
.swatches { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: var(--s-4); }
.sw { display: flex; flex-direction: column; border: 1px solid var(--hairline); border-radius: var(--r-2); overflow: hidden; background: var(--ink-100); }
.sw .chip { height: 72px; }
.sw .meta-row { padding: 10px 12px; display: flex; justify-content: space-between; align-items: baseline; }
.sw .name { font-size: 13px; color: var(--bone-100); }
.sw .hex  { font-family: var(--f-mono); font-size: 10px; letter-spacing: .1em; color: var(--bone-400); }
.specimen { display: flex; flex-direction: column; gap: var(--s-5); }
.specimen .row { display: grid; grid-template-columns: 140px 1fr; align-items: baseline; gap: var(--s-5); padding-bottom: var(--s-4); border-bottom: 1px dashed var(--hairline); }
.specimen .row:last-child { border-bottom: 0; }
.specimen .tag { font-family: var(--f-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--bone-400); }
.ramp { display: flex; align-items: flex-end; gap: var(--s-3); flex-wrap: wrap; }
.ramp .b { display: flex; flex-direction: column; align-items: center; gap: 8px; font-family: var(--f-mono); font-size: 10px; color: var(--bone-400); letter-spacing: .1em; }
.ramp .b .bar { background: var(--accent-dim); border: 1px solid var(--accent); border-radius: 3px; width: 24px; }
.cc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: var(--s-5); }
.cc { border: 1px solid var(--hairline); border-radius: var(--r-3); padding: var(--s-5); background: var(--ink-100); display: flex; flex-direction: column; gap: var(--s-4); min-height: 180px; }
.cc .cc-head { display: flex; justify-content: space-between; align-items: baseline; }
.cc .cc-head .nm { font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--bone-300); }
.cc .cc-head .id { font-family: var(--f-mono); font-size: 10px; color: var(--bone-500); }
.cc .cc-stage { flex: 1; display: flex; align-items: center; justify-content: center; padding: var(--s-5) var(--s-4); background: var(--ink-050); border-radius: var(--r-2); border: 1px dashed var(--hairline); }
.field-demo { width: 100%; }
.field-demo input { width: 100%; padding: 14px 16px; font: inherit; font-size: 15px; background: transparent; border: 1px solid var(--hairline-2); border-radius: var(--r-2); color: var(--bone-100); transition: border-color .35s var(--ease-out); }
.field-demo input:focus { outline: 0; border-color: var(--accent); }
.field-demo input::placeholder { color: var(--bone-400); }
.badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; font-family: var(--f-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; border-radius: var(--r-full); background: var(--accent-dim); color: var(--accent); border: 1px solid var(--accent); }
.badge-ghost { background: transparent; color: var(--bone-300); border-color: var(--hairline-2); }
.elev { width: 100%; display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); }
.elev .cell { aspect-ratio: 1/1; background: var(--ink-200); border-radius: var(--r-2); display: flex; align-items: center; justify-content: center; font-family: var(--f-mono); font-size: 10px; color: var(--bone-400); letter-spacing: .12em; }
.elev .e1 { box-shadow: 0 1px 0 rgba(245,242,236,0.04) inset, 0 0 0 1px var(--hairline); }
.elev .e2 { box-shadow: 0 12px 30px -12px rgba(0,0,0,0.6), 0 0 0 1px var(--hairline); }
.elev .e3 { box-shadow: 0 30px 60px -20px rgba(0,0,0,0.9), 0 0 0 1px var(--hairline-2), 0 0 80px -20px var(--accent-dim); }
.motion-demo { display: flex; gap: 10px; flex-wrap: wrap; }
.motion-demo .dot { width: 14px; height: 14px; border-radius: 50%; background: var(--accent); animation: float 2.6s var(--ease-in-out) infinite; }
.motion-demo .dot:nth-child(2) { animation-delay: .15s; }
.motion-demo .dot:nth-child(3) { animation-delay: .30s; }
.motion-demo .dot:nth-child(4) { animation-delay: .45s; }
@keyframes float { 0%,100% { transform: translateY(0); opacity: .4 } 50% { transform: translateY(-10px); opacity: 1 } }
.grid-demo { width: 100%; display: grid; grid-template-columns: repeat(12, 1fr); gap: 4px; }
.grid-demo .col { aspect-ratio: 1/4; background: var(--accent-dim); border: 1px solid var(--accent); border-radius: 2px; }

/* ============================================================
   SCROLL REVEAL primitives
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(4px);
  transition: opacity .9s var(--ease-out), transform 1s var(--ease-out), filter .8s var(--ease-out);
}
[data-reveal].in { opacity: 1; transform: none; filter: blur(0); }

[data-stagger-item] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s var(--ease-out), transform .9s var(--ease-out);
}
[data-stagger-item].in { opacity: 1; transform: none; }

.reveal-lines .line-inner { transform: translateY(110%); transition: transform 1.1s var(--ease-out); display: inline-block; }
.reveal-lines.in .line-inner { transform: translateY(0); }
.reveal-lines.in .line:nth-child(2) .line-inner { transition-delay: .1s; }
.reveal-lines.in .line:nth-child(3) .line-inner { transition-delay: .2s; }

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--accent);
  z-index: 70;
  box-shadow: 0 0 8px var(--accent);
  will-change: width;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  [data-reveal], [data-stagger-item] { opacity: 1; transform: none; filter: none; }
  .reveal-lines .line-inner { transform: none; }
}

/* ---- Engagement bands — collapsible rows ---- */
.bands {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--hairline);
}
.band {
  border-bottom: 1px solid var(--hairline);
  background: transparent;
  transition: background .25s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.band:hover { background: var(--ink-100); }
.band[open] { background: var(--ink-100); }
.band-featured { background: linear-gradient(180deg, rgba(232,198,140,0.05) 0%, transparent 100%); }
.band-featured::before {
  content: 'Most popular';
  position: absolute; top: 0; right: 0;
  padding: 3px 10px;
  font-family: var(--f-mono); font-size: 9px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-050);
  background: var(--accent);
  border-bottom-left-radius: var(--r-2);
  z-index: 1;
}
.band summary {
  display: grid;
  grid-template-columns: 110px 1fr auto 22px;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-4) var(--s-5);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.band summary::-webkit-details-marker { display: none; }
.band .num {
  font-family: var(--f-mono); font-size: 11px;
  color: var(--bone-400); letter-spacing: .14em;
}
.band .band-title {
  font-family: var(--f-display);
  font-size: 16px; font-weight: 600;
  color: var(--bone-100); letter-spacing: -0.01em;
  line-height: 1.25;
}
.band .band-meta {
  color: var(--accent); font-variant-numeric: tabular-nums;
  font-family: var(--f-mono); font-size: 12px; letter-spacing: .06em;
}
.band .exp-icon { width: 22px; height: 22px; position: relative; flex-shrink: 0; }
.band .exp-icon::before,
.band .exp-icon::after {
  content: ''; position: absolute; left: 50%; top: 50%;
  background: var(--accent);
  transition: transform .25s var(--ease-out), opacity .25s var(--ease-out);
}
.band .exp-icon::before { width: 12px; height: 1.5px; transform: translate(-50%, -50%); }
.band .exp-icon::after  { width: 1.5px; height: 12px; transform: translate(-50%, -50%); }
.band[open] .exp-icon::after { opacity: 0; }
.band-body {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: var(--s-5);
  padding: var(--s-4) var(--s-5) var(--s-5);
  margin: 0 var(--s-5);
  border-top: 1px dashed var(--hairline);
}
.band-body p { color: var(--bone-300); font-size: 14px; line-height: 1.55; margin: 0; }
.band .list { display: flex; flex-direction: column; gap: 6px; margin: 0; padding: 0; list-style: none; }
.band .list li {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: .1em; color: var(--bone-300); text-transform: uppercase;
  padding-left: 16px; position: relative;
}
.band .list li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--accent); font-weight: 700;
}
@media (max-width: 720px) {
  .band summary { grid-template-columns: 1fr auto 22px; gap: var(--s-3); padding: var(--s-4); }
  .band .num { grid-column: 1 / -1; font-size: 10px; margin-bottom: -4px; }
  .band .band-title { font-size: 15px; }
  .band-body { grid-template-columns: 1fr; gap: var(--s-3); margin: 0 var(--s-4); padding: var(--s-4) 0 var(--s-4); }
}

/* ---- What's Included — expandable cards ---- */
.incl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
}
.incl-col {
  border: 1px solid var(--hairline);
  background: var(--ink-100);
  border-radius: var(--r-3);
  overflow: hidden;
  transition: background .25s var(--ease-out), border-color .25s var(--ease-out);
}
.incl-col:hover { border-color: var(--hairline-2); background: var(--ink-200); }
.incl-col[open] { border-color: var(--hairline-2); }
.incl-col summary {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-3);
  padding: var(--s-4) var(--s-5);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.incl-col summary::-webkit-details-marker { display: none; }
.incl-head {
  font-family: var(--f-display);
  font-size: 17px; font-weight: 600;
  color: var(--bone-100);
  letter-spacing: -0.01em;
}
.incl-count {
  margin-left: auto;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--bone-400);
}
.incl-col .exp-icon { width: 22px; height: 22px; position: relative; flex-shrink: 0; }
.incl-col .exp-icon::before,
.incl-col .exp-icon::after {
  content: ''; position: absolute; left: 50%; top: 50%;
  background: var(--accent); transition: transform .25s var(--ease-out), opacity .25s var(--ease-out);
}
.incl-col .exp-icon::before { width: 12px; height: 1.5px; transform: translate(-50%, -50%); }
.incl-col .exp-icon::after  { width: 1.5px; height: 12px; transform: translate(-50%, -50%); }
.incl-col[open] .exp-icon::after { opacity: 0; }
.incl-col ul {
  list-style: none; padding: var(--s-4) var(--s-5) var(--s-5);
  margin: 0; display: flex; flex-direction: column; gap: 8px;
  border-top: 1px solid var(--hairline);
}
.incl-col li {
  font-size: 14px; line-height: 1.5;
  color: var(--bone-300);
  padding-left: 20px;
  position: relative;
}
.incl-col li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  color: var(--accent); font-weight: 700;
}
@media (max-width: 900px) { .incl-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .incl-grid { grid-template-columns: 1fr; } }

/* ---- Contact form ---- */
.contact-form { display: flex; flex-direction: column; gap: var(--s-4); max-width: 640px; margin: var(--s-7) auto 0; text-align: left; }
.contact-form .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
.contact-form .f { display: flex; flex-direction: column; gap: 6px; }
.contact-form .f > span {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .12em;
  color: var(--bone-400); text-transform: uppercase;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  background: var(--ink-200);
  border: 1px solid var(--hairline);
  border-radius: var(--r-2, 8px);
  color: var(--bone-100);
  padding: 14px 16px;
  font: inherit; font-size: 15px;
  transition: border-color .25s var(--ease-out), background .25s var(--ease-out);
}
.contact-form textarea { resize: vertical; min-height: 120px; font-family: inherit; }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none; border-color: var(--accent); background: var(--ink-050);
}
.contact-form .f-actions { display: flex; align-items: center; gap: var(--s-5); flex-wrap: wrap; margin-top: var(--s-3); }
@media (max-width: 640px) { .contact-form .row-2 { grid-template-columns: 1fr; } }

.form-status {
  margin-top: var(--s-4);
  padding: 14px 18px;
  border-radius: var(--r-2, 8px);
  font-size: 14px; line-height: 1.5;
}
.form-status-ok { background: rgba(37, 211, 102, .12); border: 1px solid rgba(37, 211, 102, .35); color: #b6f4d0; }
.form-status-err { background: rgba(220, 80, 80, .12); border: 1px solid rgba(220, 80, 80, .35); color: #ffc2c2; }
.form-status a { color: inherit; text-decoration: underline; }

/* (Sticky WhatsApp FAB removed — keeps mobile screen real estate clean) */

/* ============================================================
   TRUST PILLS UNDER HERO CTAs
   ============================================================ */
.trust-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: var(--s-5);
  max-width: 640px;
}
.trust-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--hairline);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px; letter-spacing: .08em;
  color: var(--bone-200, var(--bone-300));
  text-transform: uppercase;
}
.trust-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ============================================================
   MOBILE HAMBURGER MENU
   ============================================================ */
.nav-toggle {
  display: none;  /* hidden on desktop */
  background: transparent;
  border: 0;
  width: 32px; height: 32px;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 110;
  margin-left: 2px;
}
.nav-toggle span {
  display: block; position: absolute; left: 7px;
  width: 18px; height: 2px;
  background: var(--bone-100);
  border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .25s var(--ease-out), top .3s var(--ease-out);
}
.nav-toggle span:nth-child(1) { top: 11px; }
.nav-toggle span:nth-child(2) { top: 15px; }
.nav-toggle span:nth-child(3) { top: 19px; }
.nav-toggle.is-open span:nth-child(1) { top: 15px; transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { top: 15px; transform: rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: block; }

  /* Mobile menu: a horizontal pill that slides DOWN below the main nav.
     Not a vertical fullscreen overlay — keeps the page visible and feels lighter. */
  .nav-menu {
    position: fixed;
    top: 56px;
    left: 50%;
    transform: translateX(-50%) translateY(-12px);
    width: max-content;
    max-width: calc(100vw - 16px);
    display: flex; flex-direction: row;
    align-items: center; justify-content: flex-start;
    gap: 2px;
    padding: 5px 6px;
    background: rgba(20, 20, 26, 0.85);
    backdrop-filter: blur(18px) saturate(1.15);
    -webkit-backdrop-filter: blur(18px) saturate(1.15);
    border: 1px solid rgba(245, 242, 236, 0.08);
    border-radius: var(--r-full);
    box-shadow: 0 16px 40px -16px rgba(0,0,0,0.6);
    overflow-x: auto;
    scrollbar-width: none;
    opacity: 0; pointer-events: none;
    transition: opacity .25s var(--ease-out), transform .3s var(--ease-out);
    z-index: 55;
  }
  .nav-menu::-webkit-scrollbar { display: none; }
  .nav-menu.is-open {
    opacity: 1; pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  .nav-menu .nav-link {
    display: inline-block;
    padding: 7px 13px;
    font-size: 12px;
    font-family: var(--f-mono);
    letter-spacing: 0.04em;
    color: var(--bone-200);
    border-radius: var(--r-full);
    white-space: nowrap;
    flex-shrink: 0;
  }
  .nav-menu .nav-link:hover,
  .nav-menu .nav-link:active { background: rgba(255,255,255,0.08); color: var(--bone-100); }
}

/* ============================================================
   TESTIMONIAL AVATAR INITIALS
   ============================================================ */
.av {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--f-mono); font-size: 12px; font-weight: 600;
  color: white;
  letter-spacing: 0;
  flex-shrink: 0;
}
.av-c { background: linear-gradient(135deg, #d99454, #8f6a3e); }
.av-m { background: linear-gradient(135deg, #4d6b3e, #2a4220); }
.av-i { background: linear-gradient(135deg, #3d5a80, #1a2030); }
.av-r { background: linear-gradient(135deg, #a3522e, #5d2515); }

/* ---- Tech Stack — expandable cards ---- */
.stack-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}
.stack-cell {
  border: 1px solid var(--hairline);
  background: var(--ink-100);
  border-radius: var(--r-3);
  transition: background .25s var(--ease-out), border-color .25s var(--ease-out);
  overflow: hidden;
}
.stack-cell:hover { border-color: var(--hairline-2); background: var(--ink-200); }
.stack-cell[open] { border-color: var(--hairline-2); }
.stack-cell summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: "num cat icon" "tease tease tease";
  column-gap: var(--s-3);
  row-gap: 6px;
  align-items: center;
  padding: var(--s-4) var(--s-5);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.stack-cell summary::-webkit-details-marker { display: none; }
.stack-cell .stack-num { grid-area: num; font-family: var(--f-mono); font-size: 11px; letter-spacing: .14em; color: var(--bone-400); }
.stack-cell .stack-cat { grid-area: cat; font-family: var(--f-display); font-size: 18px; font-weight: 600; letter-spacing: -0.01em; color: var(--bone-100); }
.stack-cell .stack-teaser { grid-area: tease; font-family: var(--f-mono); font-size: 11px; letter-spacing: .04em; color: var(--bone-400); margin-top: 2px; }
.stack-cell .exp-icon { grid-area: icon; width: 22px; height: 22px; position: relative; flex-shrink: 0; }
.stack-cell .exp-icon::before,
.stack-cell .exp-icon::after {
  content: ''; position: absolute; left: 50%; top: 50%;
  background: var(--accent); transition: transform .25s var(--ease-out);
}
.stack-cell .exp-icon::before { width: 12px; height: 1.5px; transform: translate(-50%, -50%); }
.stack-cell .exp-icon::after  { width: 1.5px; height: 12px; transform: translate(-50%, -50%); }
.stack-cell[open] .exp-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.stack-list { list-style: none; padding: 0 var(--s-5) var(--s-5); margin: 0; display: flex; flex-direction: column; gap: 8px; border-top: 1px solid var(--hairline); padding-top: var(--s-4); }
.stack-list li {
  font-size: 13px; line-height: 1.55; color: var(--bone-300);
  padding-left: 16px; position: relative;
}
.stack-list li::before {
  content: '·'; position: absolute; left: 0; top: -2px;
  color: var(--accent); font-weight: 700;
}
.stack-list li strong {
  color: var(--bone-100); font-weight: 500;
  font-family: var(--f-mono); font-size: 12px;
  letter-spacing: -0.005em;
}
@media (max-width: 980px) { .stack-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .stack-grid { grid-template-columns: 1fr; } }

/* ---- Contact quick row (WhatsApp + Phone before form) ---- */
.contact-quick {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
  margin: var(--s-7) auto var(--s-5);
  max-width: 640px;
}
.contact-quick-btn {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 22px 24px;
  border-radius: var(--r-3, 16px);
  text-decoration: none;
  transition: transform .25s var(--ease-out), background .3s var(--ease-out);
  text-align: center;
}
.contact-quick-btn .big {
  font-family: var(--f-display); font-size: 19px; letter-spacing: -0.01em; font-weight: 600;
}
.contact-quick-btn .small {
  font-family: var(--f-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; opacity: .8;
}
.contact-quick-btn.whatsapp { background: #25D366; color: #062b13; }
.contact-quick-btn.phone { background: var(--bone-100); color: var(--ink-050); }
.contact-quick-btn:hover { transform: translateY(-2px); }
.contact-or {
  text-align: center;
  margin: var(--s-5) auto;
  color: var(--bone-400);
  letter-spacing: .14em;
}
@media (max-width: 640px) { .contact-quick { grid-template-columns: 1fr; } }

/* ---- FAQ (replaces design system section) ---- */
#faq .faq-list { max-width: 820px; margin: 0 auto; border-top: 1px solid var(--hairline); }
#faq details {
  border-bottom: 1px solid var(--hairline);
  padding: var(--s-5) 0;
  cursor: pointer;
}
#faq summary {
  list-style: none;
  font-family: var(--f-display);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600; letter-spacing: -0.01em;
  color: var(--bone-100);
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--s-4);
}
#faq summary::after {
  content: '+';
  font-family: var(--f-mono); font-size: 22px;
  color: var(--accent);
  transition: transform .25s var(--ease-out);
}
#faq details[open] summary::after { transform: rotate(45deg); }
#faq details p {
  margin: var(--s-3) 0 0;
  color: var(--bone-300);
  font-size: 15px; line-height: 1.6;
  max-width: 60ch;
}

/* ---- Live performance readout ---- */
.perf {
  display: flex; flex-wrap: wrap; gap: var(--s-5);
  padding: var(--s-5) 0; margin-bottom: var(--s-5);
  border-bottom: 1px solid var(--hairline);
  font-variant-numeric: tabular-nums;
}
.perf .perf-label { color: var(--accent); }
.perf .perf-metric { color: var(--bone-300); }
.perf .perf-metric em { color: var(--bone-400); font-style: normal; margin-right: 6px; letter-spacing: .14em; }
.perf .perf-metric span { color: var(--bone-100); }

/* ---- Work card fallback media (no screenshot yet) ---- */
.work-media-fallback {
  display: flex; align-items: center; justify-content: center;
  position: relative;
  background: var(--ink-100);
}
.work-media-fallback::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(135deg, transparent 48%, var(--hairline) 49%, var(--hairline) 51%, transparent 52%),
    linear-gradient(45deg, transparent 48%, var(--hairline) 49%, var(--hairline) 51%, transparent 52%);
  background-size: 28px 28px;
  opacity: 0.6;
}
.work-media-glyph {
  font-family: var(--f-display);
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--accent);
  line-height: 1;
  z-index: 1;
  position: relative;
  text-shadow: 0 0 60px rgba(232,198,140,0.35);
}
.work-media-tag {
  position: absolute;
  bottom: 14px; left: 14px;
  z-index: 2;
  padding: 5px 10px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  border-radius: var(--r-full);
  color: var(--bone-200);
}
.work-media-nandini { background: linear-gradient(135deg, oklch(0.22 0.04 200) 0%, var(--ink-100) 70%); }
.work-media-northpeak { background: linear-gradient(135deg, oklch(0.22 0.05 140) 0%, var(--ink-100) 70%); }

/* Non-link work card (div instead of <a>) — same hover treatment */
.work-card-nopic { cursor: default; }
.work-card-nopic:hover { transform: translateY(-3px); border-color: var(--hairline-2); }

/* ============================================================
   ── Visual rhythm refresh ───────────────────────────────────
   Pricing cards · case-study strips · bento stack ·
   editorial pull-quote · marquee · logo strip ·
   mountain scroll progress
   ============================================================ */

/* Subtle alternating section tint (kills the "everything's the same dark" feel) */
.section-pricing { background: linear-gradient(180deg, rgba(232,198,140,0.025) 0%, transparent 60%); }
.section-stack   { background: linear-gradient(180deg, rgba(20,20,26,0.6) 0%, transparent 100%); }

/* ---- Case-study strip on work cards ---- */
.case-strip {
  display: flex; flex-direction: column; gap: 8px;
  padding-top: var(--s-3);
  border-top: 1px solid var(--hairline);
}
.case-line { display: grid; grid-template-columns: 78px 1fr; gap: var(--s-3); align-items: baseline; }
.case-tag {
  font-family: var(--f-mono);
  font-size: 9px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--bone-500);
  padding: 3px 7px;
  border: 1px solid var(--hairline);
  border-radius: var(--r-full);
  width: fit-content;
}
.case-text { font-size: 13px; line-height: 1.5; color: var(--bone-200); }
.case-line-out .case-tag { color: var(--accent); border-color: rgba(232,198,140,0.35); background: var(--accent-dim); }
.case-line-out .case-text { color: var(--bone-100); }
.case-text em { color: var(--accent); font-family: var(--f-serif); font-style: italic; font-weight: 400; }

@media (max-width: 520px) {
  .case-line { grid-template-columns: 64px 1fr; gap: 10px; }
  .case-text { font-size: 12.5px; }
}

/* ============================================================
   ── PRICING GRID ─────────────────────────────────────────────
   ============================================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
}
@media (max-width: 1080px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .pricing-grid { grid-template-columns: 1fr; gap: var(--s-3); } }

.pcard {
  position: relative;
  display: flex; flex-direction: column;
  padding: var(--s-5);
  background: var(--ink-100);
  border: 1px solid var(--hairline);
  border-radius: var(--r-3);
  overflow: hidden;
  transition: border-color .3s var(--ease-out), transform .3s var(--ease-out), background .3s var(--ease-out);
}
.pcard::before {
  content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
  background: var(--pcard-stripe, var(--bone-400));
  transition: width .3s var(--ease-out);
}
.pcard:hover { transform: translateY(-3px); border-color: var(--hairline-2); background: var(--ink-200); }
.pcard:hover::before { width: 6px; }

/* Per-tier color stripes — each card visually distinct */
.pcard-a { --pcard-stripe: oklch(0.72 0.02 80);  /* bone */ }
.pcard-b { --pcard-stripe: var(--accent);         /* gold — featured */ }
.pcard-c { --pcard-stripe: oklch(0.7 0.11 40);    /* terracotta */ }
.pcard-d { --pcard-stripe: oklch(0.7 0.09 160);   /* sage / premium */ }

.pcard-top { display: flex; align-items: center; gap: var(--s-3); margin-bottom: var(--s-3); }
.pcard-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  font-family: var(--f-display);
  font-size: 16px; font-weight: 600;
  color: var(--pcard-stripe);
  border: 1px solid var(--pcard-stripe);
  border-radius: var(--r-full);
  flex-shrink: 0;
}
.pcard-tier { color: var(--bone-400); }
.pcard-title {
  font-family: var(--f-display);
  font-size: 18px; line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--bone-100);
  margin: 0 0 var(--s-3);
  font-weight: 500;
  min-height: 44px;
}

.pcard-price {
  display: flex; align-items: baseline; gap: 2px;
  font-family: var(--f-display);
  color: var(--bone-100);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.pcard-cur { font-size: 20px; color: var(--bone-300); margin-right: 2px; }
.pcard-amt { font-size: 32px; font-weight: 600; }
.pcard-time { color: var(--pcard-stripe); margin-bottom: var(--s-4); }

.pcard-blurb {
  font-size: 13px; line-height: 1.55;
  color: var(--bone-300);
  margin: 0 0 var(--s-4);
}
.pcard-list {
  list-style: none; padding: 0; margin: 0 0 var(--s-5);
  display: flex; flex-direction: column; gap: 6px;
  flex-grow: 1;
}
.pcard-list li {
  font-size: 12.5px; line-height: 1.5;
  color: var(--bone-200);
  padding-left: 18px;
  position: relative;
}
.pcard-list li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  color: var(--pcard-stripe);
  font-size: 11px;
  font-weight: 600;
}
.pcard-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--pcard-stripe);
  border: 1px solid var(--pcard-stripe);
  border-radius: var(--r-full);
  text-decoration: none;
  transition: background .2s var(--ease-out), color .2s var(--ease-out);
  width: fit-content;
}
.pcard-cta:hover { background: var(--pcard-stripe); color: var(--ink-050); }
.pcard-cta .arrow { transition: transform .2s var(--ease-out); }
.pcard-cta:hover .arrow { transform: translate(2px, -2px); }

/* Featured card — Starter (B) */
.pcard-featured {
  background: linear-gradient(180deg, rgba(232,198,140,0.06) 0%, var(--ink-100) 60%);
  border-color: rgba(232,198,140,0.25);
}
.pcard-flag {
  position: absolute; top: 12px; right: 12px;
  padding: 3px 9px;
  background: var(--accent);
  color: var(--ink-050);
  border-radius: var(--r-full);
  font-weight: 600;
}

/* The 5th card — custom build, dominant CTA */
.pcard-custom {
  grid-column: 1 / -1;
  padding: var(--s-7);
  background:
    radial-gradient(ellipse at top right, rgba(232,198,140,0.12) 0%, transparent 50%),
    var(--ink-100);
  border: 1px solid rgba(232,198,140,0.28);
  position: relative;
}
.pcard-custom::before {
  width: 4px;
  background: linear-gradient(180deg, var(--accent), oklch(0.7 0.09 160));
}
.pcard-custom-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-7);
  align-items: center;
}
@media (max-width: 760px) {
  .pcard-custom { padding: var(--s-5); }
  .pcard-custom-inner { grid-template-columns: 1fr; gap: var(--s-5); }
}
.pcard-custom-left .pcard-flag {
  position: static;
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(232,198,140,0.35);
  margin-bottom: var(--s-3);
}
.pcard-custom-title {
  font-family: var(--f-display);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--bone-100);
  font-weight: 500;
  margin: 0 0 var(--s-3);
}
.pcard-custom-blurb {
  font-size: 14px; line-height: 1.55;
  color: var(--bone-300);
  margin: 0 0 var(--s-4);
}
.pcard-custom-list {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 16px;
}
.pcard-custom-list li {
  font-size: 12.5px;
  color: var(--bone-200);
  padding-left: 14px;
  position: relative;
}
.pcard-custom-list li::before {
  content: '→';
  position: absolute; left: 0; top: 0;
  color: var(--accent);
}
@media (max-width: 520px) {
  .pcard-custom-list { grid-template-columns: 1fr; }
}

.pcard-custom-right {
  display: flex; flex-direction: column;
  align-items: stretch;
  gap: var(--s-3);
}
.btn-wa-loud {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px;
  padding: var(--s-5) var(--s-5);
  background: var(--accent);
  color: var(--ink-050);
  border-radius: var(--r-3);
  text-decoration: none;
  font-family: var(--f-display);
  font-size: 18px; font-weight: 600;
  letter-spacing: -0.01em;
  box-shadow: 0 0 0 1px var(--accent), 0 16px 40px -12px rgba(232,198,140,0.5);
  transition: transform .2s var(--ease-out), box-shadow .3s var(--ease-out);
}
.btn-wa-loud:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px var(--accent), 0 24px 56px -16px rgba(232,198,140,0.7);
}
.btn-wa-loud svg { color: var(--ink-050); margin-bottom: 4px; }
.btn-wa-meta {
  color: rgba(14,14,18,0.7);
  font-weight: 400;
  letter-spacing: .14em;
}
.pcard-custom-or {
  text-align: center;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .14em;
  color: var(--bone-500);
  text-transform: uppercase;
}
.btn-call {
  text-align: center;
  padding: 12px var(--s-5);
  border: 1px solid var(--hairline-2);
  border-radius: var(--r-full);
  color: var(--bone-200);
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: .08em;
  transition: border-color .2s, color .2s;
}
.btn-call:hover { border-color: var(--accent); color: var(--accent); }

/* AMC + Add-ons supporting strip */
.pricing-secondary {
  margin-top: var(--s-7);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--s-4);
}
@media (max-width: 760px) { .pricing-secondary { grid-template-columns: 1fr; } }
.psec {
  padding: var(--s-5);
  background: var(--ink-050);
  border: 1px solid var(--hairline);
  border-radius: var(--r-3);
}
.psec-num { color: var(--bone-400); margin-bottom: var(--s-2); display: block; }
.psec-title {
  font-family: var(--f-display);
  font-size: 16px;
  color: var(--bone-100);
  margin-bottom: var(--s-3);
}
.psec-price {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: var(--s-3);
}
.psec-price > span:first-child {
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.psec-suffix { color: var(--bone-400); }
.psec-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.psec-list-2col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px var(--s-4);
}
@media (max-width: 520px) { .psec-list-2col { grid-template-columns: 1fr; } }
.psec-list li {
  font-size: 13px;
  color: var(--bone-200);
  display: flex; justify-content: space-between; gap: var(--s-3);
}
.psec-list li span {
  color: var(--bone-400);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .04em;
}

/* ============================================================
   ── BENTO STACK ──────────────────────────────────────────────
   ============================================================ */

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: auto;
  gap: var(--s-3);
  align-items: start;
}
.bento-tile {
  padding: 0;
  background: var(--ink-100);
  border: 1px solid var(--hairline);
  border-radius: var(--r-3);
  overflow: hidden;
  transition: border-color .3s, background .3s, transform .3s;
}
.bento-tile:hover { border-color: var(--hairline-2); background: var(--ink-200); }
.bento-tile[open] { border-color: var(--hairline-2); }
.bento-tile > summary {
  list-style: none;
  cursor: pointer;
  padding: var(--s-5);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s-3);
  align-items: start;
}
.bento-tile > summary::-webkit-details-marker { display: none; }
.bento-tile > summary > .bento-num { grid-column: 1 / -1; color: var(--bone-400); }
.bento-tile > summary > .bento-title { grid-column: 1; margin: 0; }
.bento-tile > summary > .exp-icon {
  grid-column: 2;
  grid-row: 2;
  width: 22px; height: 22px;
  position: relative;
  align-self: end;
  flex-shrink: 0;
}
.bento-tile > summary > .exp-icon::before,
.bento-tile > summary > .exp-icon::after {
  content: ''; position: absolute;
  top: 50%; left: 50%;
  background: var(--bone-300);
  transition: opacity .25s var(--ease-out), transform .25s var(--ease-out);
}
.bento-tile > summary > .exp-icon::before { width: 12px; height: 1.5px; transform: translate(-50%, -50%); }
.bento-tile > summary > .exp-icon::after  { width: 1.5px; height: 12px; transform: translate(-50%, -50%); }
.bento-tile[open] > summary > .exp-icon::after { opacity: 0; }

.bento-body {
  padding: 0 var(--s-5) var(--s-5);
  border-top: 1px solid var(--hairline);
  padding-top: var(--s-4);
  display: flex; flex-direction: column; gap: var(--s-3);
}

.bento-1 { grid-column: span 2; }
.bento-2 { grid-column: span 2; }
.bento-3 { grid-column: span 2; }
.bento-4 { grid-column: span 2; }
.bento-5 { grid-column: span 4; }
.bento-6 { grid-column: span 2; }

.bento-accent {
  background: linear-gradient(135deg, rgba(232,198,140,0.06), var(--ink-100));
  border-color: rgba(232,198,140,0.25);
}
.bento-accent .bento-num { color: var(--accent); }

.bento-num {
  color: var(--bone-400);
}
.bento-title {
  font-family: var(--f-display);
  font-size: 17px; line-height: 1.3;
  color: var(--bone-100);
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.bento-blurb {
  font-size: 13px; line-height: 1.55;
  color: var(--bone-300);
  margin: 0;
}
.bento-blurb code {
  font-family: var(--f-mono);
  font-size: 11px;
  padding: 1px 6px;
  background: var(--ink-300);
  border-radius: 4px;
  color: var(--accent);
}
.bento-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: auto;
}
.bento-tags span {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .06em;
  padding: 4px 9px;
  color: var(--bone-300);
  background: var(--ink-200);
  border: 1px solid var(--hairline);
  border-radius: var(--r-full);
}
.bento-accent .bento-tags span {
  border-color: rgba(232,198,140,0.2);
  color: var(--bone-200);
}

@media (max-width: 1080px) {
  .bento { grid-template-columns: repeat(4, 1fr); }
  .bento-1, .bento-2, .bento-3, .bento-4, .bento-6 { grid-column: span 2; }
  .bento-5 { grid-column: span 4; }
}
@media (max-width: 600px) {
  .bento { grid-template-columns: 1fr; gap: 10px; }
  .bento-1, .bento-2, .bento-3, .bento-4, .bento-5, .bento-6 { grid-column: span 1; }
  .bento-tile { padding: var(--s-4); }
}

.stack-foot {
  margin-top: var(--s-7);
  color: var(--bone-300);
  max-width: 720px;
  font-size: 14px;
}
.stack-foot strong { color: var(--accent); font-weight: 500; }

/* ============================================================
   ── MARQUEE STRIP (between Work and Pricing) ────────────────
   ============================================================ */

.marquee {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--ink-000);
  overflow: hidden;
  padding: 18px 0;
  position: relative;
}
.marquee::before, .marquee::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 80px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--ink-000), transparent); }
.marquee::after  { right: 0; background: linear-gradient(-90deg, var(--ink-000), transparent); }
.marquee-track {
  display: flex; align-items: center; gap: var(--s-5);
  white-space: nowrap;
  animation: marquee-scroll 42s linear infinite;
}
.marquee-item {
  font-family: var(--f-display);
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 500;
  color: var(--bone-200);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.marquee-dot { color: var(--accent); font-size: 8px; flex-shrink: 0; }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ============================================================
   ── EDITORIAL PULL-QUOTE (between Stack and Testimonials) ───
   ============================================================ */

.pullquote {
  padding: var(--s-10) 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background:
    radial-gradient(ellipse at center, rgba(232,198,140,0.04) 0%, transparent 70%),
    var(--ink-000);
  position: relative;
}
.pq {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.pq-mark {
  font-size: clamp(80px, 12vw, 160px);
  color: var(--accent);
  opacity: 0.18;
  line-height: 1;
  position: absolute;
  top: -40px; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}
.pq-text {
  font-family: var(--f-display);
  font-size: clamp(32px, 5.4vw, 72px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--bone-100);
  font-weight: 500;
  margin: 0 0 var(--s-5);
  position: relative;
  z-index: 1;
}
.pq-foot {
  color: var(--bone-400);
}
@media (max-width: 720px) {
  .pullquote { padding: var(--s-9) 0; }
}

/* ============================================================
   ── CLIENT LOGO STRIP (after testimonials) ──────────────────
   ============================================================ */

.logo-strip {
  margin-top: var(--s-8);
  padding-top: var(--s-6);
  border-top: 1px solid var(--hairline);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  align-items: center;
}
.logo-strip-label {
  color: var(--bone-500);
}
.logo-strip-row {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: var(--s-4) var(--s-7);
  width: 100%;
}
.logo-mark {
  font-family: var(--f-display);
  font-size: 18px; font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--bone-300);
  opacity: 0.7;
  transition: opacity .25s var(--ease-out), color .25s var(--ease-out);
  filter: grayscale(1);
}
.logo-mark:hover { opacity: 1; color: var(--bone-100); filter: grayscale(0); }
@media (max-width: 600px) {
  .logo-strip-row { gap: var(--s-3) var(--s-5); }
  .logo-mark { font-size: 15px; }
}

/* ============================================================
   ── MOBILE LAYOUT — horizontal swipe carousels ──────────────
   ============================================================ */

@media (max-width: 760px) {
  /* Tighter section breathing room on phones */
  .section { padding: var(--s-7) 0; }
  .section-head { margin-bottom: var(--s-5); }

  /* Work cards — horizontal swipe carousel */
  .work-grid {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: var(--s-4);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px var(--gutter) var(--s-4);
    margin: 0 calc(var(--gutter) * -1);
    scrollbar-width: none;
  }
  .work-grid::-webkit-scrollbar { display: none; }
  .work-card,
  .work-card-nopic {
    flex: 0 0 86%;
    min-width: 86%;
    scroll-snap-align: start;
    height: auto;
    align-self: flex-start;
  }
  /* Visual hint that there's more to swipe */
  #work .wrap::after,
  #engagements .wrap::after {
    content: '← swipe →';
    display: block;
    text-align: center;
    margin-top: var(--s-2);
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: .14em;
    color: var(--bone-500);
    text-transform: uppercase;
  }

  /* Pricing cards — horizontal swipe carousel */
  .pricing-grid {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: var(--s-3);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px var(--gutter) var(--s-4);
    margin: 0 calc(var(--gutter) * -1);
    scrollbar-width: none;
  }
  .pricing-grid::-webkit-scrollbar { display: none; }
  .pcard {
    flex: 0 0 84%;
    min-width: 84%;
    scroll-snap-align: start;
    height: auto;
    align-self: flex-start;
  }
  .pcard .pcard-list { flex-grow: 0; }
  .pcard-custom {
    flex: 0 0 90%;
    min-width: 90%;
    grid-column: auto;
    padding: var(--s-5);
  }
  .pcard-custom-inner { grid-template-columns: 1fr; gap: var(--s-4); }

  /* Hero text — was clipping at 80px floor on small screens */
  .t-mega { font-size: clamp(48px, 13vw, 96px); line-height: 0.92; }
  .hero h1 { line-height: 0.95; }

  /* Tighter hero KPIs */
  .hero-kpis { margin-top: var(--s-5); }

  /* Tighter "Under the hood" foot text */
  .stack-foot { margin-top: var(--s-5); }

  /* Tighter pull-quote */
  .pullquote { padding: var(--s-7) 0; }
}

@media (max-width: 480px) {
  .pcard-amt { font-size: 26px; }
  .pcard-title { min-height: 0; }
  .work-card,
  .work-card-nopic { flex-basis: 88%; min-width: 88%; }
  .pcard { flex-basis: 86%; min-width: 86%; }
}
