/* ============================================================
   LeDrew Agency v4 — "Editorial / Studio" theme
   Cream paper · near-black ink · neon-lime accent ·
   oversized Archivo display · type-driven layout.
   ============================================================ */

:root {
  /* ---- Brand (tweakable) ---- */
  --accent: #C6F806;          /* neon lime */
  --accent-rgb: 198,248,6;
  --accent-ink: #14160A;

  /* ---- Surfaces ---- */
  --paper: #F1F0EA;
  --paper-2: #E9E8E0;
  --paper-3: #E2E1D7;
  --dark: #16160F;
  --dark-2: #1E1E16;

  /* ---- Ink ---- */
  --ink: #121210;
  --ink-2: rgba(18,18,16,.64);
  --ink-3: rgba(18,18,16,.44);
  --ink-4: rgba(18,18,16,.28);
  --on-dark: #F2F1EA;
  --on-dark-2: rgba(242,241,234,.62);

  /* ---- Lines ---- */
  --line: rgba(18,18,16,.16);
  --line-2: rgba(18,18,16,.28);
  --line-dark: rgba(242,241,234,.16);

  /* ---- Radius ---- */
  --rad: 4px;
  --rad-lg: 8px;

  /* ---- Type ---- */
  --disp: "Archivo", system-ui, sans-serif;
  --body: "Archivo", system-ui, -apple-system, sans-serif;

  /* ---- Motion (tweakable) ---- */
  --mo: 1;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--body);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { max-width: 100%; display: block; }
::selection { background: var(--accent); color: var(--accent-ink); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ============ HELPERS ============ */
.wrap { width: min(1320px, 100% - 64px); margin-inline: auto; }
.pad { padding-block: clamp(64px, 9vw, 120px); }
section { position: relative; }

h1,h2,h3,h4 { margin: 0; font-family: var(--disp); font-weight: 800; letter-spacing: -0.02em; line-height: 1; text-transform: uppercase; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--disp); font-weight: 600; font-size: 12px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3);
}
.eyebrow b { color: var(--ink); font-weight: 700; }
.lede { color: var(--ink-2); font-size: clamp(15px, 1.3vw, 17px); line-height: 1.6; font-weight: 400; }
.accent { color: var(--accent); }
.muted { color: var(--ink-3); }

/* row of section label + index */
.sec-bar { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); padding-bottom: 16px; margin-bottom: 44px; }
.sec-bar .idx { font-family: var(--disp); font-weight: 600; font-size: 13px; color: var(--ink-3); letter-spacing: .1em; }

/* ============ PILL / SPARK ACCENTS ============ */
.pill {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: var(--accent-ink);
  border-radius: 999px; padding: .02em .42em .08em; transform: rotate(-2.5deg);
  box-shadow: 0 10px 26px -10px rgba(var(--accent-rgb),.95);
  animation: pill-glow 3s ease-in-out infinite;
}
@keyframes pill-glow {
  0%, 100% { box-shadow: 0 10px 26px -10px rgba(var(--accent-rgb),.95); }
  50% { box-shadow: 0 10px 40px -6px rgba(var(--accent-rgb),1), 0 0 60px -10px rgba(var(--accent-rgb),.5); }
}
.ring { display: inline-block; width: 1.05em; height: .62em; border: .12em solid var(--accent); border-radius: 999px; vertical-align: middle; }
.spark { color: var(--ink-3); font-weight: 400; }

/* ============ BUTTONS ============ */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--disp); font-weight: 600; font-size: 14px; letter-spacing: .02em; text-transform: uppercase;
  padding: 15px 24px; white-space: nowrap; border-radius: 999px;
  transition: transform .2s var(--ease), background .25s, color .25s, border-color .25s;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--accent); color: var(--accent-ink); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-2); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-l { padding: 17px 30px; font-size: 15px; }

/* circular arrow button */
.arrow-btn { width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; flex-shrink: 0; transition: background .25s, color .25s, border-color .25s, transform .25s; }
.arrow-btn svg { width: 18px; height: 18px; }
.arrow-btn:hover { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); transform: rotate(-45deg); }

/* ============ NAV ============ */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 100; transition: background .4s var(--ease), border-color .4s; border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(241,240,234,.86); backdrop-filter: blur(16px); border-bottom-color: var(--line); }
.nav-inner { position: relative; display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav-tag { display: flex; align-items: center; text-decoration: none; }
.nav-logo { height: 22px; width: auto; }
.nav-links { position: absolute; left: 50%; transform: translateX(-50%); display: flex; align-items: center; gap: 4px; }
.nav-link { font-family: var(--disp); padding: 8px 14px; font-size: 13px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-2); border-radius: 999px; transition: color .2s, background .2s; }
.nav-link:hover { color: var(--ink); background: var(--paper-3); }
.nav-link-talk { display: none; }
.nav-cta { display: inline-flex; align-items: center; gap: 10px; font-family: var(--disp); font-weight: 600; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; }
.nav-cta .arrow-btn { width: 38px; height: 38px; }
.nav-burger { display: none; width: 42px; height: 42px; border-radius: 50%; justify-items: center; align-content: center; gap: 2px; border: 1px solid var(--line-2); background: transparent; cursor: pointer; }
.nav-burger i { display: block; width: 16px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-burger.active i:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav-burger.active i:nth-child(2) { opacity: 0; }
.nav-burger.active i:nth-child(3) { transform: translateY(-4px) rotate(-45deg); }
.nav-burger.active i { background: #fff; }
.mob-overlay { display: none; position: fixed; inset: 0; z-index: 99; background: rgba(15,15,17,.97); backdrop-filter: blur(20px); flex-direction: column; padding: 100px 32px 40px; }
.mob-overlay.open { display: flex; }
.mob-overlay .mob-link { font-family: var(--disp); font-size: clamp(26px, 6vw, 38px); font-weight: 500; color: #fff; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.12); text-decoration: none; transition: color .2s; }
.mob-overlay .mob-link:first-child { border-top: 1px solid rgba(255,255,255,.12); }
.mob-overlay .mob-link:hover { color: var(--accent); }

/* ============ WORDMARK LOCKUP ============ */
.lockup { text-align: center; padding-top: 104px; }
.lockup-row { display: flex; align-items: center; justify-content: center; gap: clamp(14px, 3vw, 44px); }
.lockup .mark { font-family: var(--disp); font-weight: 800; font-size: clamp(44px, 12.5vw, 184px); letter-spacing: -0.01em; line-height: .82; white-space: nowrap; display: inline-flex; align-items: center; gap: .04em; }
.lockup .mark .o-pill { display: inline-block; width: .82em; height: .58em; border: .14em solid var(--ink); border-radius: 999px; position: relative; top: .02em; }
.lockup .mark .o-pill.lime { border-color: var(--accent); background: var(--accent); }
.lockup .flank { font-size: clamp(20px, 3vw, 40px); color: var(--ink); opacity: .8; }
.lockup .flank.r { color: var(--accent); opacity: 1; }
.lockup .flank .o-pill { display: inline-block; width: .82em; height: .58em; border: .14em solid var(--accent); border-radius: 999px; vertical-align: middle; }

/* sub navigation row under wordmark */
.subnav { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: clamp(24px, 4vw, 48px); padding-top: 18px; border-top: 1px solid var(--line); }
.subnav a { font-family: var(--disp); font-weight: 500; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-2); transition: color .2s; }
.subnav a:hover { color: var(--ink); }

/* ============ HERO BAND ============ */
.band { margin-top: clamp(28px, 4vw, 44px); border-radius: var(--rad-lg); overflow: hidden; position: relative; aspect-ratio: 21/8; background: var(--dark); }
.band image-slot { width: 100%; height: 100%; }
.band-fallback {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(60% 120% at 20% 30%, rgba(var(--accent-rgb),.5), transparent 55%),
    radial-gradient(50% 100% at 75% 60%, rgba(var(--accent-rgb),.32), transparent 60%),
    conic-gradient(from 200deg at 60% 50%, #0c1a06, #1b3a0a, #0a1405, #244d0e, #0c1a06);
  filter: saturate(1.2);
}
.band-fallback::after {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(115deg, transparent 0 24px, rgba(var(--accent-rgb),.06) 24px 25px);
}
.band-cap { position: absolute; left: 20px; bottom: 18px; z-index: 2; font-family: var(--disp); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--on-dark-2); }

/* ============ HERO C (centered statement) ============ */
.hero-c { padding-top: clamp(128px, 16vh, 188px); padding-bottom: clamp(40px, 6vw, 72px); }
.hero-c-inner { max-width: min(1000px, 96%); margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero-c-eye { display: inline-flex; align-items: center; gap: 14px; margin-bottom: clamp(24px, 4vw, 40px); }
.hero-c-eye .sticker { font-family: var(--disp); font-weight: 700; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-ink); background: var(--accent); padding: 5px 11px 6px; border-radius: 999px; transform: rotate(-4deg); box-shadow: 0 8px 20px -10px rgba(var(--accent-rgb),.9); }
.hero-c-title { font-family: var(--disp); font-weight: 800; font-size: clamp(40px, 7.6vw, 104px); line-height: .92; letter-spacing: -0.04em; text-transform: uppercase; text-wrap: balance; }
.word-wrap { display: inline-block; overflow: hidden; vertical-align: top; }
.word { display: inline-block; transform: translateY(110%); transition: transform .6s var(--ease), opacity .6s var(--ease); opacity: 0; }
.words-in .word { transform: translateY(0); opacity: 1; }
.hero-c-title .pill { margin: 0 .04em; }
.hero-c-title .ring { width: 1.1em; height: .62em; border-width: .13em; margin: 0 .12em; position: relative; top: -.05em; }
.hero-c-lede { max-width: 52ch; margin: clamp(26px, 4vw, 40px) auto 0; font-size: clamp(16px, 1.5vw, 19px); }
.hero-c-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: clamp(32px, 4vw, 44px); }

/* ============ ABOUT STATEMENT ============ */
.about { display: grid; place-items: center; }
.about-eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: clamp(26px, 4vw, 48px); position: relative; }
.about-eyebrow .sticker { font-family: var(--disp); font-weight: 700; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--accent-ink); background: var(--accent); padding: 5px 11px 6px; border-radius: 999px; transform: rotate(-4deg); box-shadow: 0 8px 20px -10px rgba(var(--accent-rgb),.9); }
.statement { max-width: min(880px, 94%); margin: 0 auto; text-align: center; }
.statement h2 { font-size: clamp(36px, 7vw, 88px); line-height: .96; letter-spacing: -0.035em; text-wrap: balance; }
.statement h2 .pill { margin: 0 .06em; }
.statement h2 .nobr { white-space: nowrap; }
.statement h2 .ring { width: 1.15em; height: .66em; border-width: .14em; margin: 0 .14em; position: relative; top: -.04em; }
.about-sub { max-width: 48ch; margin: clamp(30px,4vw,48px) auto 0; text-align: center; font-size: clamp(16px,1.5vw,19px); }

/* ============ STATS ============ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); }
.stat { padding: 30px 24px 28px; border-bottom: 1px solid var(--line); }
.stat + .stat { border-left: 1px solid var(--line); }
.stat .num { font-family: var(--disp); font-weight: 800; font-size: clamp(36px, 4.6vw, 62px); line-height: 1; letter-spacing: -0.03em; }
.stat .num .suffix { color: var(--accent); -webkit-text-stroke: .8px var(--ink); }
.stat .lbl { color: var(--ink-3); font-size: 13.5px; margin-top: 12px; line-height: 1.45; }

/* ============ WORK GRID ============ */
.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2.2vw, 28px) clamp(24px, 3vw, 44px); }
.work { }
.work-img { position: relative; aspect-ratio: 5/4; border-radius: var(--rad-lg); overflow: hidden; background: var(--paper-3); }
.work-img image-slot { width: 100%; height: 100%; }
.work-illust { background: #1a1a14; display: grid; place-items: center; }
.work-illust svg { width: 100%; height: 100%; }
.work-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 4px 0; }
.work-foot h3 { font-size: clamp(16px, 1.5vw, 20px); letter-spacing: 0; }
.work-foot .cat { font-family: var(--disp); font-size: 11px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); margin-top: 6px; }

/* ============ SERVICES (oversized) ============ */
.svc-list { display: flex; flex-direction: column; }
.svc-row { position: relative; display: flex; align-items: center; gap: 24px; padding: clamp(10px, 1.4vw, 18px) 0; border-bottom: 1px solid var(--line); cursor: default; }
.svc-row .svc-t { font-family: var(--disp); font-weight: 800; font-size: clamp(30px, 6.2vw, 88px); line-height: .96; letter-spacing: -0.03em; text-transform: uppercase; color: transparent; -webkit-text-stroke: 1.4px var(--ink); transition: color .3s var(--ease), -webkit-text-stroke-color .3s; }
.svc-row .svc-i { margin-left: auto; font-family: var(--disp); font-weight: 600; font-size: 14px; color: var(--ink-3); letter-spacing: .08em; flex-shrink: 0; }
.svc-row .svc-thumbs { display: flex; gap: 8px; max-width: 0; overflow: hidden; opacity: 0; transition: max-width .45s var(--ease), opacity .35s; flex-shrink: 0; }
.svc-row .svc-thumbs span { width: 64px; height: 44px; border-radius: 4px; background: var(--paper-3); box-shadow: inset 0 0 0 1px var(--line); display: grid; place-items: center; color: var(--ink-3); }
.svc-row .svc-thumbs span svg { width: 20px; height: 20px; }
.svc-row:hover .svc-t, .svc-row.on .svc-t { color: var(--ink); -webkit-text-stroke-color: transparent; }
.svc-row:hover .svc-thumbs { max-width: 320px; opacity: 1; }
.svc-row:hover .svc-i { color: var(--ink); }
@media (hover: none) { .svc-row .svc-t { color: var(--ink); -webkit-text-stroke-color: transparent; } .svc-row .svc-thumbs { display: none; } }

/* ============ DARK BAND STATEMENT ============ */
.dark-band { background: var(--dark); color: var(--on-dark); border-radius: var(--rad-lg); }
.dark-band .wrap { padding-block: clamp(64px, 9vw, 128px); }
.dark-band h2 { font-size: clamp(26px, 4.4vw, 60px); line-height: 1.05; letter-spacing: -0.02em; max-width: 20ch; }
.dark-band .ink-img { display: inline-grid; place-items: center; width: 1.5em; height: .82em; border-radius: 6px; background: var(--dark-2); box-shadow: inset 0 0 0 1px var(--line-dark); vertical-align: middle; margin: 0 .12em; color: var(--accent); transform: translateY(-.04em); }
.dark-band .ink-img svg { width: .6em; height: .6em; }
.dark-band .db-foot { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-top: clamp(36px, 5vw, 60px); padding-top: 28px; border-top: 1px solid var(--line-dark); }
.dark-band .db-foot p { color: var(--on-dark-2); max-width: 42ch; font-size: 15px; line-height: 1.6; }

/* ============ PACKAGES ============ */
.pkg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }
.pkg { display: flex; flex-direction: column; background: var(--paper); border: 1px solid var(--line); border-radius: var(--rad-lg); padding: 26px 24px; transition: transform .35s var(--ease), border-color .35s, background .35s; }
.pkg:hover { transform: translateY(-6px); border-color: var(--line-2); }
.pkg.featured { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.pkg.featured .pkg-tag, .pkg.featured .pkg-feat { color: var(--on-dark-2); }
.pkg.featured .pkg-div { background: var(--line-dark); }
.pkg-top { display: flex; align-items: center; justify-content: space-between; }
.pkg-no { font-family: var(--disp); font-weight: 600; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.pkg.featured .pkg-no { color: var(--accent); }
.pkg-flag { font-family: var(--disp); font-weight: 700; font-size: 10px; letter-spacing: .04em; text-transform: uppercase; background: var(--accent); color: var(--accent-ink); padding: 4px 10px; border-radius: 999px; }
.pkg-name { font-size: 22px; margin: 16px 0 10px; letter-spacing: -0.02em; }
.pkg-tag { color: var(--ink-3); font-size: 13.5px; line-height: 1.5; min-height: 40px; text-transform: none; font-weight: 400; }
.pkg-div { height: 1px; background: var(--line); margin: 20px 0; }
.pkg-feats { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.pkg-feat { display: flex; gap: 11px; font-size: 13.5px; color: var(--ink-2); line-height: 1.45; text-transform: none; font-weight: 400; }
.pkg-feat .ck { flex-shrink: 0; width: 16px; height: 16px; margin-top: 1px; color: var(--accent); }
.pkg .btn { margin-top: 24px; width: 100%; }
.pkg.featured .btn-ghost { border-color: var(--line-dark); color: var(--paper); }
.pkg.featured .btn-ghost:hover { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
.pkg-note { text-align: center; color: var(--ink-3); font-size: 13.5px; margin-top: 28px; }
.pkg-note b { color: var(--ink); font-weight: 600; }

/* ============ ADVANTAGE ============ */
.adv { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.adv-figure { aspect-ratio: 1/1; border: 1px solid var(--line); border-radius: var(--rad-lg); display: grid; place-items: center; background: var(--paper-2); }
.adv-figure svg { width: 56%; height: 56%; overflow: visible; }
.adv h2 { font-size: clamp(34px, 4.6vw, 64px); line-height: .98; }
.adv-slide { min-height: 90px; }
.adv-slide p { color: var(--ink-2); font-size: clamp(15px,1.4vw,17px); line-height: 1.6; max-width: 40ch; }
.adv-ctrl { display: flex; align-items: center; gap: 12px; margin-top: 30px; }
.adv-dots { display: flex; gap: 7px; margin-left: 10px; }
.adv-dots i { width: 7px; height: 7px; border-radius: 50%; background: var(--line-2); transition: background .3s, transform .3s; }
.adv-dots i.on { background: var(--accent); transform: scale(1.3); }

/* ============ PROCESS ============ */
.proc { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.proc-line { position: absolute; top: 22px; left: 6%; right: 6%; height: 2px; background: var(--line); z-index: 0; }
.proc-line .fill { height: 100%; width: 0; background: var(--accent); transition: width 1.5s var(--ease); }
.proc-step { position: relative; z-index: 1; }
.proc-num { width: 44px; height: 44px; border-radius: 50%; background: var(--paper); border: 1px solid var(--line-2); display: grid; place-items: center; font-family: var(--disp); font-weight: 700; font-size: 16px; margin-bottom: 22px; transition: background .35s, color .35s, border-color .35s; }
.proc-step:hover .proc-num { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.proc-step h3 { font-size: 20px; margin-bottom: 10px; letter-spacing: -0.01em; }
.proc-step p { color: var(--ink-3); font-size: 14px; line-height: 1.55; text-transform: none; font-weight: 400; }

/* ============ PER-PROJECT ============ */
.oneoff-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 4vw, 64px); align-items: center; }
.chip-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
.svc-chip { display: inline-flex; align-items: center; gap: 9px; padding: 11px 17px; font-family: var(--disp); font-weight: 500; font-size: 13.5px; letter-spacing: .01em; text-transform: uppercase; background: var(--paper); border: 1px solid var(--line); border-radius: 999px; color: var(--ink-2); transition: transform .25s, border-color .25s, color .25s, background .25s; }
.svc-chip:hover { transform: translateY(-3px); color: var(--ink); border-color: var(--ink); background: var(--accent); }
.svc-chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.svc-chip:hover .dot { background: var(--accent-ink); }

/* ============ CONTACT ============ */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.contact-head h2 { font-size: clamp(34px, 5vw, 68px); line-height: .98; }
.form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-family: var(--disp); font-weight: 600; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.field input, .field textarea, .field select {
  font-family: var(--body); font-size: 15px; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line-2); border-radius: var(--rad); padding: 13px 14px;
  outline: none; transition: border-color .2s, box-shadow .2s; width: 100%;
}
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23121210' d='M0 0h12L6 8z'/></svg>");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.field textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-4); }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(var(--accent-rgb),.35); }
.form-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 4px; }
.form-note { font-family: var(--disp); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-4); }
.form-note.ok { color: var(--ink); }

/* ============ MINIMAL SERVICES ============ */
.minimal-services { text-align: center; }

/* ============ BENTO GRID ============ */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 1.6vw, 20px); }
.bento-card {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--rad-lg);
  padding: clamp(24px, 3vw, 36px); display: flex; flex-direction: column; gap: 12px;
  transition: transform .3s var(--ease), border-color .3s;
}
.bento-card:hover { transform: translateY(-4px); border-color: var(--line-2); }
.bento-wide { grid-column: span 2; }
.bento-dark { background: var(--dark); color: var(--on-dark); border-color: var(--dark); }
.bento-dark:hover { border-color: var(--accent); }
.bento-dark p { color: var(--on-dark-2); }
.bento-icon { width: 28px; height: 28px; color: var(--ink); flex-shrink: 0; }
.bento-dark .bento-icon { color: var(--accent); }
.bento-card h3 { font-size: clamp(18px, 1.8vw, 24px); letter-spacing: -0.01em; }

/* card staggered reveal */
.reveal-card { opacity: 0; transform: translateY(32px) scale(.96); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal-card.in { opacity: 1; transform: translateY(0) scale(1); }
.bento-card p { color: var(--ink-2); font-size: 14px; line-height: 1.5; margin: 0; text-transform: none; font-weight: 400; }

/* ============ CONTACT FORM ============ */
.contact-form-section { max-width: 720px; margin: 0 auto; }
.contact-form-head { text-align: center; margin-bottom: clamp(36px, 5vw, 56px); display: flex; flex-direction: column; align-items: center; }
.contact-form-head .eyebrow { margin-bottom: clamp(20px, 3vw, 32px); }
.contact-form-head h2 { font-size: clamp(34px, 5vw, 68px); line-height: .98; }
.contact-form-section .form { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--rad-lg); padding: clamp(28px, 4vw, 44px); }

/* ============ FOOTER ============ */
.footer { background: var(--dark); color: var(--on-dark); margin-top: clamp(40px, 6vw, 80px); }
.footer .wrap { padding-block: clamp(48px, 6vw, 80px) 36px; }
.footer-top { display: flex; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.footer-top p { color: var(--on-dark-2); max-width: 34ch; font-size: 14px; line-height: 1.6; }
.footer-nav { display: flex; gap: clamp(28px, 5vw, 64px); flex-wrap: wrap; }
.footer-nav a { font-family: var(--disp); font-weight: 500; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--on-dark-2); transition: color .2s; }
.footer-nav a:hover { color: var(--accent); }
.foot-mark { display: flex; align-items: center; justify-content: center; margin: clamp(36px,5vw,64px) 0; }
.footer-logo { height: clamp(40px, 12vw, 140px); max-width: 100%; object-fit: contain; filter: invert(1); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid var(--line-dark); }
.footer-bottom .col h5 { font-family: var(--disp); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--on-dark-2); margin: 0 0 8px; font-weight: 600; }
.footer-bottom .col a, .footer-bottom .col span { display: block; color: var(--on-dark); font-size: 14px; margin-bottom: 5px; }
.footer-bottom .meta { color: var(--on-dark-2); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; align-self: flex-end; }

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]{transition-delay:.07s} .reveal[data-d="2"]{transition-delay:.14s}
.reveal[data-d="3"]{transition-delay:.21s} .reveal[data-d="4"]{transition-delay:.28s}
.reveal[data-d="5"]{transition-delay:.35s}
.motion-off *, .motion-off *::before, .motion-off *::after { animation: none !important; }
.motion-off .reveal { transition: none !important; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .proc { grid-template-columns: repeat(2, 1fr); }
  .proc-line { display: none; }
}
@media (max-width: 860px) {
  .adv { grid-template-columns: 1fr; }
  .adv-figure { max-width: 360px; }
  .oneoff-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(odd) { border-left: none; }
  .stat:nth-child(even) { border-left: 1px solid var(--line); }
}
@media (max-width: 680px) {
  .bento { grid-template-columns: 1fr; }
  .bento-wide { grid-column: span 1; }
  .nav-links, .subnav, .nav-cta { display: none; }
  .nav-burger { display: grid; }
  .nav-link-talk { display: block; }
  .nav-inner { height: 60px; }
  .pad { padding-block: clamp(48px, 7vw, 80px); }
  .sec-bar { margin-bottom: 28px; padding-bottom: 12px; }
  .hero-c { padding-top: 100px; padding-bottom: 32px; }
  .hero-c-eye { margin-bottom: 20px; }
  .hero-c-lede { margin-top: 20px; }
  .hero-c-ctas { flex-direction: column; width: 100%; margin-top: 28px; gap: 10px; }
  .hero-c-ctas .btn { width: 100%; text-align: center; }
  .work-grid { grid-template-columns: 1fr; gap: 32px; }
  .work-foot { padding-top: 12px; }
  .work-foot .arrow-btn { width: 40px; height: 40px; }
  .svc-row .svc-i { display: none; }
  .svc-row { padding: 8px 0; }
  .dark-band .wrap { padding-block: 48px; }
  .dark-band .db-foot { margin-top: 28px; padding-top: 20px; }
  .pkg { padding: 22px 20px; }
  .pkg-grid { gap: 12px; }
  .adv-ctrl { margin-top: 24px; }
  .proc-step h3 { font-size: 17px; }
  .proc-num { width: 38px; height: 38px; font-size: 14px; margin-bottom: 16px; }
  .oneoff-grid { gap: 24px; }
  .contact-head h2 { margin-bottom: 8px; }
  .contact-grid { gap: 32px; }
  .form-actions { margin-top: 0; }
  .footer .wrap { padding-block: 40px 28px; }
  .footer-top { gap: 20px; }
  .foot-mark { margin: 28px 0; }
  .footer-bottom { gap: 20px; padding-top: 20px; }
  .about-sub { margin-top: 20px; }
  .stats { margin-top: 0; }
  .stat { padding: 22px 16px 20px; }
}
@media (max-width: 520px) {
  .wrap { width: calc(100% - 36px); }
  .pkg-grid, .proc, .stats, .form-row { grid-template-columns: 1fr; }
  .stat { border-left: none !important; }
  .hero-c { padding-top: 88px; }
  .hero-c-title { font-size: clamp(38px, 11vw, 54px); }
  .hero-c-lede { font-size: 15px; }
  .btn-l { padding: 15px 24px; font-size: 14px; }
  .statement h2 { font-size: clamp(28px, 8vw, 42px); }
  .svc-row .svc-t { font-size: clamp(24px, 7vw, 36px); }
  .dark-band h2 { font-size: clamp(22px, 5.5vw, 32px); }
  .contact-head h2 { font-size: clamp(28px, 7vw, 40px); }
  .eyebrow { font-size: 11px; }
  .mob-overlay { padding: 88px 24px 32px; }
  .mob-overlay .mob-link { font-size: clamp(22px, 6vw, 32px); padding: 18px 0; }
}
