/* ============================================================
   DRO Marketing — Editorial / neo-brutalist design system
   Google Ads & Performance Agency · Madrid
   ============================================================ */

:root {
  --paper: #f1ede2;        /* warm bone background */
  --paper-2: #e8e3d4;
  --card: #fbfaf5;
  --ink: #121212;          /* near-black */
  --ink-2: #3a3a36;
  --muted: #6f6c62;
  --line: #121212;

  --accent: #2f2bf0;       /* electric blue */
  --accent-ink: #ffffff;
  --lime: #d4fb50;         /* acid highlight */
  --pop: #ff5a2c;          /* warm pop, used sparingly */

  --font-display: "Syne", system-ui, sans-serif;
  --font-mono: "Space Mono", ui-monospace, monospace;
  --font-body: "Inter", system-ui, sans-serif;

  --bd: 2px solid var(--ink);
  --bd-3: 3px solid var(--ink);
  --hard: 6px 6px 0 var(--ink);
  --hard-sm: 4px 4px 0 var(--ink);
  --hard-accent: 6px 6px 0 var(--accent);

  --maxw: 1240px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--lime); color: var(--ink); }

/* Layout */
.container { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }
.section-pad { padding: clamp(56px, 8vw, 120px) 0; }
.rule { height: 0; border-top: var(--bd); }

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; line-height: 1.0; letter-spacing: -.02em; color: var(--ink); text-transform: uppercase; }
.display { font-size: clamp(44px, 9vw, 130px); line-height: .92; }
.kicker { font-family: var(--font-mono); font-size: 13px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--ink); display: inline-flex; align-items: center; gap: 8px; }
.kicker .idx { color: var(--accent); }
.lead { font-size: clamp(17px, 1.6vw, 20px); color: var(--ink-2); font-family: var(--font-body); line-height: 1.6; }
.hl { background: var(--lime); padding: 0 .12em; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.hl-blue { color: var(--accent); }
.outline-text { color: transparent; -webkit-text-stroke: 2px var(--ink); }

/* Section heads */
.sec-head { display: grid; gap: 18px; margin-bottom: clamp(32px, 5vw, 56px); }
.sec-head .top { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; border-top: var(--bd); padding-top: 14px; flex-wrap: wrap; }
.sec-head h2 { font-size: clamp(30px, 5vw, 64px); }
.sec-head p { color: var(--muted); max-width: 560px; font-size: 17px; }
.sec-head.center { text-align: center; justify-items: center; }
.sec-head.center .top { justify-content: center; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-mono); font-weight: 700; font-size: 14px; letter-spacing: .03em; text-transform: uppercase;
  padding: 15px 26px; border: var(--bd); border-radius: 4px; background: var(--card); color: var(--ink);
  box-shadow: var(--hard-sm); transition: transform .15s var(--ease), box-shadow .15s var(--ease), background .2s, color .2s;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translate(3px, 3px); box-shadow: 1px 1px 0 var(--ink); }
.btn-primary { background: var(--accent); color: #fff; }
.btn-dark { background: var(--ink); color: var(--paper); }
.btn-lime { background: var(--lime); color: var(--ink); }
.btn-lg { padding: 18px 32px; font-size: 15px; }
.btn-block { width: 100%; }
.link-arrow { font-family: var(--font-mono); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: .03em; display: inline-flex; align-items: center; gap: 6px; transition: gap .2s var(--ease); }
.link-arrow:hover { gap: 12px; color: var(--accent); }

/* Marquee */
.marquee { background: var(--ink); color: var(--paper); border-block: var(--bd); overflow: hidden; padding: 11px 0; }
.marquee.accent { background: var(--accent); color: #fff; border-color: var(--ink); }
.marquee.lime { background: var(--lime); color: var(--ink); }
.marquee-track { display: inline-flex; white-space: nowrap; will-change: transform; animation: marquee 28s linear infinite; }
.marquee.rev .marquee-track { animation-direction: reverse; }
.marquee-track span { font-family: var(--font-mono); font-weight: 700; font-size: 15px; letter-spacing: .05em; text-transform: uppercase; padding: 0 26px; display: inline-flex; align-items: center; gap: 26px; }
.marquee-track span::after { content: "✱"; color: var(--lime); }
.marquee.lime .marquee-track span::after, .marquee.accent .marquee-track span::after { color: var(--ink); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--paper); border-bottom: var(--bd); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 22px; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand .mark { width: 38px; height: 38px; flex: none; }
.brand img.mark { height: 54px; width: auto; max-width: 200px; object-fit: contain; background: #fff; border-radius: 8px; }
.site-footer .brand img.mark { height: 60px; box-shadow: var(--hard-sm); }
.brand .word { font-family: var(--font-display); font-weight: 800; font-size: 21px; text-transform: uppercase; letter-spacing: -.02em; }
.brand .word span { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { font-family: var(--font-mono); font-weight: 400; font-size: 13.5px; text-transform: uppercase; letter-spacing: .02em; padding: 8px 13px; border: 2px solid transparent; border-radius: 4px; transition: background .2s, color .2s, border-color .2s; }
.nav-links a:hover, .nav-links a.active { background: var(--lime); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; width: 46px; height: 46px; border: var(--bd); border-radius: 4px; background: var(--card); align-items: center; justify-content: center; box-shadow: var(--hard-sm); }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content: ""; display: block; width: 22px; height: 2.4px; background: var(--ink); position: relative; transition: .3s var(--ease); }
.nav-toggle span::before { position: absolute; top: -7px; } .nav-toggle span::after { position: absolute; top: 7px; }
.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
.nav-open .nav-toggle span::after { top: 0; transform: rotate(-45deg); }

/* Hero */
.hero { position: relative; padding: clamp(40px, 6vw, 80px) 0 clamp(40px, 6vw, 70px); overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(var(--ink) 1px, transparent 1px), linear-gradient(90deg, var(--ink) 1px, transparent 1px); background-size: 64px 64px; opacity: .045; pointer-events: none; }
.hero .container { position: relative; z-index: 1; }
.hero-kicker { margin-bottom: 24px; }
.hero h1 { font-size: clamp(46px, 10vw, 150px); line-height: .9; }
.hero h1 .blk { display: block; }
.hero-grid { display: grid; grid-template-columns: 1.35fr .65fr; gap: clamp(28px, 4vw, 56px); align-items: end; }
.hero-sub { margin: 26px 0 30px; max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-side { display: grid; gap: 16px; }
.hero-statcard { border: var(--bd); border-radius: 6px; background: var(--card); box-shadow: var(--hard); padding: 22px; }
.hero-statcard .v { font-family: var(--font-display); font-weight: 800; font-size: clamp(40px, 6vw, 64px); line-height: 1; }
.hero-statcard .v.blue { color: var(--accent); }
.hero-statcard .t { font-family: var(--font-mono); font-size: 12.5px; text-transform: uppercase; letter-spacing: .03em; color: var(--muted); margin-top: 6px; }

/* Rotating stamp */
.stamp { position: relative; width: clamp(120px, 16vw, 168px); aspect-ratio: 1; justify-self: end; }
.stamp svg { width: 100%; height: 100%; animation: spin 18s linear infinite; }
.stamp svg text { font-family: var(--font-mono); font-weight: 700; font-size: 13.5px; letter-spacing: .14em; fill: var(--ink); text-transform: uppercase; }
.stamp .center { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; }
.stamp .center b { font-family: var(--font-display); font-weight: 800; font-size: clamp(20px, 3vw, 30px); display: block; color: var(--accent); }
.stamp .center small { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Hero stat bar */
.statbar { display: grid; grid-template-columns: repeat(4, 1fr); border: var(--bd); border-radius: 6px; overflow: hidden; background: var(--card); box-shadow: var(--hard); margin-top: clamp(36px, 5vw, 56px); }
.statbar .cell { padding: 22px 24px; border-right: var(--bd); }
.statbar .cell:last-child { border-right: 0; }
.statbar .v { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px, 3.4vw, 44px); line-height: 1; }
.statbar .t { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .03em; color: var(--muted); margin-top: 6px; }

/* Services list (editorial) */
.svc-list { border-top: var(--bd); }
.svc-item { display: grid; grid-template-columns: 90px 1.1fr 1.4fr auto; gap: 24px; align-items: center; padding: 26px 16px; border-bottom: var(--bd); transition: background .25s var(--ease), color .25s, padding .25s var(--ease); position: relative; }
.svc-item .si-idx { font-family: var(--font-mono); font-weight: 700; font-size: 15px; }
.svc-item h3 { font-size: clamp(22px, 2.6vw, 34px); }
.svc-item p { color: var(--muted); font-size: 15.5px; }
.svc-item .si-go { width: 50px; height: 50px; border: var(--bd); border-radius: 50%; display: grid; place-items: center; transition: background .25s, transform .25s var(--ease); }
.svc-item .si-go svg { width: 20px; height: 20px; }
.svc-item:hover { background: var(--ink); color: var(--paper); padding-left: 28px; }
.svc-item:hover h3 { color: var(--paper); }
.svc-item:hover p { color: rgba(241,237,226,.7); }
.svc-item:hover .si-go { background: var(--lime); border-color: var(--lime); transform: rotate(-45deg); }
.svc-item:hover .si-go svg { color: var(--ink); }
.svc-item.is-feat { background: var(--accent); color: #fff; }
.svc-item.is-feat h3 { color: #fff; }
.svc-item.is-feat p { color: rgba(255,255,255,.8); }
.svc-item.is-feat .si-tag { display: inline-block; font-family: var(--font-mono); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; background: var(--lime); color: var(--ink); padding: 2px 9px; border-radius: 3px; margin-bottom: 8px; }
.svc-item.is-feat .si-go { border-color: #fff; }
.svc-item.is-feat .si-go svg { color: #fff; }
.svc-item.is-feat:hover { background: var(--accent); color: #fff; }

/* Split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 72px); align-items: center; }
.split.rev .split-media { order: 2; }
.facts { display: grid; gap: 0; margin-top: 30px; border-top: var(--bd); }
.facts li { display: grid; grid-template-columns: auto 1fr; gap: 16px; padding: 20px 4px; border-bottom: var(--bd); }
.facts .no { font-family: var(--font-mono); font-weight: 700; color: var(--accent); }
.facts b { font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: 17px; display: block; margin-bottom: 4px; }
.facts p { color: var(--muted); font-size: 15px; }
.bigbox { border: var(--bd); border-radius: 8px; background: var(--card); box-shadow: var(--hard); padding: clamp(26px, 4vw, 40px); }
.bigbox .huge { font-family: var(--font-display); font-weight: 800; font-size: clamp(64px, 11vw, 128px); line-height: .9; color: var(--accent); }
.bigbox .cap { font-family: var(--font-mono); text-transform: uppercase; font-size: 13px; letter-spacing: .03em; color: var(--ink-2); margin-top: 6px; }
.bigbox .two { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 28px; border-top: var(--bd); }
.bigbox .two div { padding: 18px 16px 0; }
.bigbox .two div + div { border-left: var(--bd); }
.bigbox .two .v { font-family: var(--font-display); font-weight: 800; font-size: 30px; }
.bigbox .two .l { font-family: var(--font-mono); font-size: 11.5px; text-transform: uppercase; color: var(--muted); margin-top: 2px; }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); border: var(--bd); border-radius: 6px; overflow: hidden; background: var(--card); box-shadow: var(--hard); }
.step { padding: 30px 26px; border-right: var(--bd); }
.step:last-child { border-right: 0; }
.step .n { font-family: var(--font-display); font-weight: 800; font-size: 46px; color: var(--accent); line-height: 1; }
.step h3 { font-size: 21px; margin: 14px 0 10px; }
.step p { color: var(--muted); font-size: 15px; }

/* Dark band big numbers */
.band-dark { background: var(--ink); color: var(--paper); }
.band-dark h2, .band-dark h3 { color: var(--paper); }
.band-dark .sec-head .top { border-color: rgba(241,237,226,.25); }
.bignums { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 2px solid var(--paper); border-radius: 6px; overflow: hidden; }
.bignums .bn { padding: 30px 26px; border-right: 2px solid var(--paper); }
.bignums .bn:last-child { border-right: 0; }
.bignums .v { font-family: var(--font-display); font-weight: 800; font-size: clamp(40px, 6vw, 72px); line-height: .9; color: var(--lime); }
.bignums .l { font-family: var(--font-mono); font-size: 12.5px; text-transform: uppercase; letter-spacing: .03em; color: rgba(241,237,226,.7); margin-top: 10px; }

/* Quotes */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote { border: var(--bd); border-radius: 8px; background: var(--card); box-shadow: var(--hard); padding: 28px; display: flex; flex-direction: column; gap: 16px; transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.quote:hover { transform: translate(3px,3px); box-shadow: 1px 1px 0 var(--ink); }
.quote .q-mark { font-family: var(--font-display); font-weight: 800; font-size: 56px; line-height: .6; color: var(--lime); -webkit-text-stroke: 1.5px var(--ink); }
.quote blockquote { font-size: 16px; color: var(--ink-2); flex: 1; }
.q-person { display: flex; align-items: center; gap: 13px; border-top: var(--bd); padding-top: 14px; }
.q-av { width: 44px; height: 44px; border: var(--bd); border-radius: 50%; background: var(--lime); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; }
.q-person b { font-family: var(--font-display); text-transform: uppercase; font-size: 14px; display: block; }
.q-person span { font-family: var(--font-mono); font-size: 12px; color: var(--muted); }
.q-stars { color: var(--accent); letter-spacing: 2px; }

/* CTA */
.cta-inner { border: var(--bd-3); border-radius: 10px; background: var(--accent); color: #fff; box-shadow: 10px 10px 0 var(--ink); padding: clamp(38px, 6vw, 76px); text-align: center; }
.cta-inner h2 { color: #fff; font-size: clamp(34px, 6vw, 86px); }
.cta-inner p { color: rgba(255,255,255,.85); max-width: 540px; margin: 18px auto 30px; font-size: 18px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-inner .btn-primary { background: var(--lime); color: var(--ink); }

/* Page hero (inner) */
.page-hero { border-bottom: var(--bd); padding: clamp(48px, 7vw, 92px) 0 clamp(36px, 5vw, 56px); position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(var(--ink) 1px, transparent 1px), linear-gradient(90deg, var(--ink) 1px, transparent 1px); background-size: 64px 64px; opacity: .045; }
.page-hero .container { position: relative; }
.crumbs { font-family: var(--font-mono); font-size: 12.5px; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); margin-bottom: 18px; }
.crumbs a:hover { color: var(--accent); }
.page-hero h1 { font-size: clamp(40px, 8vw, 100px); line-height: .92; }
.page-hero p { color: var(--ink-2); max-width: 620px; margin-top: 18px; font-size: 18px; }

/* Service rows (services page) */
.svc-rows { border-top: var(--bd); }
.svc-row { display: grid; grid-template-columns: 70px 1.5fr 1fr auto; gap: 24px; align-items: center; padding: 28px 8px; border-bottom: var(--bd); transition: background .2s, padding .2s var(--ease); }
.svc-row:hover { background: var(--paper-2); padding-left: 18px; }
.svc-row .r-idx { font-family: var(--font-mono); font-weight: 700; color: var(--accent); }
.svc-row h3 { font-size: clamp(20px, 2.2vw, 28px); }
.svc-row p { color: var(--muted); font-size: 15px; }
.svc-row .price { font-family: var(--font-mono); text-align: right; }
.svc-row .price b { font-size: 17px; display: block; }
.svc-row .price span { font-size: 12px; color: var(--muted); }

/* Pricing */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan { border: var(--bd); border-radius: 8px; background: var(--card); box-shadow: var(--hard); padding: 32px 28px; display: flex; flex-direction: column; }
.plan.featured { background: var(--ink); color: var(--paper); }
.plan.featured h3, .plan.featured .price { color: var(--paper); }
.plan .tag { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .05em; color: var(--accent); margin-bottom: 8px; }
.plan.featured .tag { color: var(--lime); }
.plan .price { font-family: var(--font-display); font-weight: 800; font-size: 42px; line-height: 1; }
.plan .price small { font-family: var(--font-mono); font-size: 14px; font-weight: 400; color: var(--muted); }
.plan.featured .price small { color: rgba(241,237,226,.6); }
.plan .pdesc { color: var(--muted); font-size: 15px; margin: 10px 0 0; }
.plan.featured .pdesc { color: rgba(241,237,226,.75); }
.plan ul { display: grid; gap: 12px; margin: 22px 0 26px; border-top: var(--bd); padding-top: 22px; }
.plan.featured ul { border-color: rgba(241,237,226,.25); }
.plan li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; }
.plan li svg { width: 18px; height: 18px; color: var(--accent); flex: none; margin-top: 3px; }
.plan.featured li { color: rgba(241,237,226,.9); }
.plan.featured li svg { color: var(--lime); }
.plan .btn { margin-top: auto; }
.badge-pop { display: inline-block; align-self: flex-start; font-family: var(--font-mono); font-size: 11px; font-weight: 700; text-transform: uppercase; background: var(--lime); color: var(--ink); border: var(--bd); padding: 3px 10px; border-radius: 3px; margin-bottom: 14px; }

/* Values / team */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.vcard { border: var(--bd); border-radius: 8px; background: var(--card); box-shadow: var(--hard); padding: 30px; }
.vcard .vi { width: 56px; height: 56px; border: var(--bd); border-radius: 50%; background: var(--lime); display: grid; place-items: center; margin-bottom: 18px; }
.vcard h3 { font-size: 22px; margin-bottom: 8px; }
.vcard p { color: var(--muted); font-size: 15px; }
.team { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.member { border: var(--bd); border-radius: 8px; overflow: hidden; background: var(--card); }
.member .ph { aspect-ratio: 1; background: var(--accent); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 40px; border-bottom: var(--bd); }
.member .info { padding: 16px 18px; }
.member b { font-family: var(--font-display); text-transform: uppercase; font-size: 16px; }
.member span { font-family: var(--font-mono); font-size: 12px; color: var(--accent); display: block; }

/* Logos / certifications row */
.logos-row { display: flex; flex-wrap: wrap; gap: 0; border: var(--bd); border-radius: 6px; overflow: hidden; }
.logos-row span { flex: 1 1 160px; text-align: center; padding: 22px 16px; border-right: var(--bd); font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: clamp(14px, 1.6vw, 18px); }
.logos-row span:last-child { border-right: 0; }

/* FAQ */
.faq { display: grid; gap: 0; border-top: var(--bd); max-width: 880px; margin-inline: auto; }
.faq-item { border-bottom: var(--bd); }
.faq-q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 24px 6px; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; font-size: clamp(16px, 1.8vw, 21px); }
.faq-q .pm { width: 30px; height: 30px; flex: none; border: var(--bd); border-radius: 50%; display: grid; place-items: center; font-size: 18px; transition: transform .3s, background .3s; }
.faq-item.open .faq-q .pm { transform: rotate(45deg); background: var(--lime); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding: 0 6px 24px; color: var(--muted); font-size: 16px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px, 5vw, 60px); align-items: start; }
.ci-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: var(--bd); }
.contact-info .ci-item:first-of-type { border-top: var(--bd); }
.ci-item .vi { width: 48px; height: 48px; border: var(--bd); border-radius: 50%; background: var(--lime); display: grid; place-items: center; flex: none; }
.ci-item b { font-family: var(--font-display); text-transform: uppercase; font-size: 15px; display: block; }
.ci-item p, .ci-item a { color: var(--muted); font-size: 15px; }
.ci-item a:hover { color: var(--accent); }
form.lead-form { border: var(--bd); border-radius: 10px; background: var(--card); box-shadow: var(--hard); padding: clamp(24px, 4vw, 38px); }
.field { margin-bottom: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .03em; display: block; margin-bottom: 7px; }
.field input, .field select, .field textarea { width: 100%; font-family: var(--font-body); font-size: 15.5px; color: var(--ink); padding: 13px 15px; border: var(--bd); border-radius: 5px; background: var(--paper); transition: box-shadow .15s, background .2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; background: #fff; box-shadow: var(--hard-sm); }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-family: var(--font-mono); font-size: 12px; color: var(--muted); margin-top: 12px; text-align: center; }
.form-success { display: none; text-align: center; padding: 16px; background: var(--lime); border: var(--bd); border-radius: 5px; font-weight: 600; margin-top: 14px; }
.form-success.show { display: block; }

/* Office / map */
.office-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 4vw, 48px); align-items: center; }
.map-embed { width: 100%; height: 400px; border: var(--bd); border-radius: 8px; box-shadow: var(--hard); filter: grayscale(1) contrast(1.1); }
.biz-list { display: grid; gap: 0; margin-top: 22px; border-top: var(--bd); }
.biz-list .bi { display: flex; gap: 14px; padding: 16px 2px; border-bottom: var(--bd); }
.biz-list .bi .vi { width: 42px; height: 42px; border: var(--bd); border-radius: 50%; background: var(--lime); display: grid; place-items: center; flex: none; }
.biz-list .bi b { font-family: var(--font-display); text-transform: uppercase; font-size: 14px; display: block; }
.biz-list .bi p { color: var(--muted); font-size: 14.5px; }

/* Legal */
.legal { max-width: 820px; margin-inline: auto; }
.legal .toc { font-family: var(--font-mono); font-size: 13px; border: var(--bd); border-radius: 8px; background: var(--card); box-shadow: var(--hard-sm); padding: 22px 24px; margin-bottom: 40px; }
.legal .toc b { display: block; text-transform: uppercase; margin-bottom: 10px; }
.legal .toc a { display: block; padding: 4px 0; color: var(--ink-2); }
.legal .toc a:hover { color: var(--accent); }
.legal h2 { font-size: clamp(22px, 3vw, 30px); margin: 44px 0 14px; padding-top: 18px; border-top: var(--bd); }
.legal h3 { font-family: var(--font-display); text-transform: uppercase; font-size: 18px; margin: 22px 0 8px; }
.legal p { color: var(--ink-2); margin-bottom: 12px; }
.legal ul.dl, .legal ul.bul { display: grid; gap: 8px; margin: 0 0 14px; }
.legal ul.bul { list-style: none; }
.legal ul.bul li { position: relative; padding-left: 22px; color: var(--ink-2); }
.legal ul.bul li::before { content: "→"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.legal ul.dl li b { font-family: var(--font-display); text-transform: uppercase; font-size: 14px; }
.legal a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.legal .upd { font-family: var(--font-mono); font-size: 12.5px; color: var(--muted); margin-top: 8px; }

/* Footer */
.site-footer { background: var(--ink); color: var(--paper); border-top: var(--bd); }
.foot-huge { display: block; font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(46px, 12vw, 150px); line-height: .85; letter-spacing: -.03em; padding: clamp(28px,5vw,56px) 0 14px; color: var(--paper); transition: color .2s; }
a.foot-huge:hover { color: var(--lime); }
.foot-huge span { color: var(--accent); -webkit-text-stroke: 2px var(--lime); }
.foot-cols { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 36px; padding: 40px 0; border-top: 2px solid rgba(241,237,226,.25); }
.foot-brand p { max-width: 320px; color: rgba(241,237,226,.7); font-size: 14.5px; }
.foot-addr { font-family: var(--font-mono); font-size: 13px; color: rgba(241,237,226,.7); margin-top: 16px; line-height: 1.6; }
.foot-col h4 { font-family: var(--font-mono); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--lime); margin-bottom: 16px; }
.foot-col a { display: block; padding: 5px 0; color: rgba(241,237,226,.75); font-size: 14.5px; }
.foot-col a:hover { color: #fff; }
.foot-soc { display: flex; gap: 10px; margin-bottom: 16px; }
.foot-soc a { width: 42px; height: 42px; border: 2px solid rgba(241,237,226,.4); border-radius: 50%; display: grid; place-items: center; color: var(--paper); transition: background .2s, color .2s, border-color .2s; }
.foot-soc a:hover { background: var(--lime); color: var(--ink); border-color: var(--lime); }
.foot-soc svg { width: 18px; height: 18px; }
.foot-contact a.pill { display: flex; align-items: center; gap: 9px; color: rgba(241,237,226,.8); font-size: 14px; padding: 5px 0; }
.foot-contact a.pill:hover { color: #fff; }
.foot-contact a.pill svg { width: 15px; height: 15px; color: var(--lime); }
.foot-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 20px 0; border-top: 2px solid rgba(241,237,226,.25); font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .02em; color: rgba(241,237,226,.6); }
.foot-bottom a:hover { color: #fff; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s 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; }

/* Responsive */
@media (max-width: 980px) {
  .hero-grid, .split, .contact-grid, .office-grid { grid-template-columns: 1fr; }
  .split.rev .split-media { order: 0; }
  .stamp { justify-self: start; }
  .statbar, .steps, .bignums { grid-template-columns: repeat(2, 1fr); }
  .statbar .cell:nth-child(2), .bignums .bn:nth-child(2) { border-right: 0; }
  .statbar .cell, .step { border-bottom: var(--bd); }
  .bignums .bn { border-bottom: 2px solid var(--paper); }
  .quotes, .cards-3 { grid-template-columns: 1fr 1fr; }
  .plans { grid-template-columns: 1fr; }
  .team { grid-template-columns: repeat(2, 1fr); }
  .svc-item { grid-template-columns: 50px 1fr auto; }
  .svc-item p { display: none; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .site-header.nav-open .nav-links { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--paper); border-bottom: var(--bd); }
  .site-header.nav-open .nav-links a { padding: 16px 20px; border-radius: 0; border-bottom: var(--bd); }
  .statbar, .steps, .bignums, .quotes, .cards-3, .team { grid-template-columns: 1fr; }
  .statbar .cell, .step { border-right: 0; }
  .bignums .bn { border-right: 0; }
  .field-row { grid-template-columns: 1fr; }
  .svc-row { grid-template-columns: 40px 1fr; }
  .svc-row .price, .svc-row p { grid-column: 2; text-align: left; }
  .foot-cols { grid-template-columns: 1fr 1fr; }
  .svc-item { grid-template-columns: 40px 1fr auto; }
}
@media (prefers-reduced-motion: reduce) {
  *, .marquee-track, .stamp svg { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
