/* ============================================================
   PUBLICIDAD DELFOS & ASOCIADOS — Brand Experience
   Dark cinematic · modern grotesk · electric accent
   ============================================================ */

:root {
  --bg:        #08090b;
  --bg-2:      #0d0f13;
  --surface:   #14171d;
  --line:      rgba(255,255,255,0.10);
  --line-soft: rgba(255,255,255,0.06);
  --fg:        #f3f4f6;
  --fg-dim:    #9aa0ab;
  --fg-faint:  #5d636e;

  --accent:    #72d6ed;          /* brand light blue */
  --accent-2:  #4ec3dd;          /* deeper companion */
  --accent-ink:#062029;          /* dark ink for text on accent */

  --maxw: 1320px;
  --gut: clamp(20px, 5vw, 80px);

  --ff-display: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --ff-body:    "Manrope", "Helvetica Neue", Arial, sans-serif;

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

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* grain overlay */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); }
.section { position: relative; padding-block: clamp(80px, 12vh, 170px); }

.eyebrow {
  font-family: var(--ff-display);
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fg-dim);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 32px; height: 1px;
  background: var(--accent);
  display: inline-block;
}

h1, h2, h3 { font-family: var(--ff-display); font-weight: 600; line-height: 1.0; letter-spacing: -0.02em; }

/* ============================================================
   CURSOR
   ============================================================ */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9999;
  pointer-events: none; border-radius: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor-dot  { width: 7px; height: 7px; background: #fff; }
.cursor-ring {
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.6);
  transition: width .25s var(--ease), height .25s var(--ease), background .25s var(--ease), opacity .25s;
}
.cursor-ring.is-hover { width: 64px; height: 64px; background: rgba(255,255,255,0.12); border-color: transparent; }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--gut);
  transition: padding .4s var(--ease), background .4s var(--ease), backdrop-filter .4s;
}
.nav.scrolled {
  padding-block: 14px;
  background: rgba(8,9,11,0.72);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
}
.nav__logo svg { height: 30px; width: auto; transition: transform .4s var(--ease); }
.nav__logo svg path, .nav__logo svg text, .nav__logo svg tspan { fill: var(--fg); }
.nav__logo:hover svg { transform: scale(1.03); }

.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__link {
  font-family: var(--ff-display); font-size: 14px; font-weight: 500;
  letter-spacing: 0.02em; color: var(--fg-dim); position: relative;
  transition: color .3s;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: var(--accent); transition: width .35s var(--ease);
}
.nav__link:hover { color: var(--fg); }
.nav__link:hover::after { width: 100%; }

.nav__cta {
  font-family: var(--ff-display); font-size: 14px; font-weight: 600;
  padding: 11px 22px; border-radius: 100px; border: 1px solid var(--line);
  color: var(--fg); transition: background .35s var(--ease), color .35s, border-color .35s, transform .35s var(--ease);
}
.nav__cta:hover { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__burger span { width: 26px; height: 2px; background: var(--fg); transition: transform .35s var(--ease), opacity .3s; }
.nav.open .nav__burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.open .nav__burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero__video, .hero__video video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.hero__video::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,9,11,0.55) 0%, rgba(8,9,11,0.25) 40%, rgba(8,9,11,0.75) 80%, var(--bg) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(60px, 11vh, 130px); }

.hero__title {
  font-size: clamp(44px, 8.2vw, 132px);
  line-height: 0.96;
  max-width: 16ch;
  letter-spacing: -0.035em;
  margin-bottom: 30px;
}
.hero__title .accent { color: var(--accent); }
.hero__sub {
  font-size: clamp(17px, 1.7vw, 23px);
  color: var(--fg-dim);
  max-width: 52ch;
  line-height: 1.5;
}
.hero__sub b { color: var(--fg); font-weight: 600; }

/* word reveal — pure CSS, runs on load (no JS dependency) */
.reveal-word { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: 0.06em; }
.reveal-word > span { display: inline-block; transform: translateY(110%); animation: wordUp .95s var(--ease) both; }
.reveal-word:nth-child(1) > span { animation-delay: .15s; }
.reveal-word:nth-child(2) > span { animation-delay: .23s; }
.reveal-word:nth-child(3) > span { animation-delay: .31s; }
.reveal-word:nth-child(4) > span { animation-delay: .39s; }
.reveal-word:nth-child(5) > span { animation-delay: .47s; }
.reveal-word:nth-child(6) > span { animation-delay: .55s; }
.reveal-word:nth-child(7) > span { animation-delay: .63s; }
@keyframes wordUp { to { transform: translateY(0); } }

.hero__scroll {
  position: absolute; left: var(--gut); bottom: 34px; z-index: 3;
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--ff-display); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--fg-dim);
}
.hero__scroll .line { width: 46px; height: 1px; background: var(--fg-dim); position: relative; overflow: hidden; }
.hero__scroll .line::after { content:""; position:absolute; inset:0; background: var(--accent); transform: translateX(-100%); animation: scrollline 2.2s var(--ease-in-out) infinite; }
@keyframes scrollline { 0%{transform:translateX(-100%)} 50%{transform:translateX(0)} 100%{transform:translateX(100%)} }

/* floating isotype — solid (no transparency) */
.hero__mark { position: absolute; right: -6%; top: 8%; width: clamp(280px, 42vw, 720px); z-index: 1; opacity: 1; }
.hero__mark svg path { fill: #14171d; }

/* ============================================================
   MARQUEE TICKER
   ============================================================ */
.ticker { border-block: 1px solid var(--line); background: var(--bg-2); overflow: hidden; padding-block: 22px; }
.ticker__track { display: flex; gap: 0; white-space: nowrap; width: max-content; animation: marquee 40s linear infinite; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item {
  font-family: var(--ff-display); font-weight: 600;
  font-size: clamp(22px, 3.2vw, 46px); letter-spacing: -0.01em;
  padding-inline: 28px; display: inline-flex; align-items: center; gap: 28px; color: var(--fg);
}
.ticker__item::after { content: "✦"; color: var(--accent); font-size: 0.5em; }
.ticker__item.dim { color: var(--accent); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   MANIFESTO
   ============================================================ */
.manifesto { background: var(--bg); }
.manifesto__quote {
  font-family: var(--ff-display); font-weight: 500;
  font-size: clamp(28px, 4.6vw, 70px); line-height: 1.08; letter-spacing: -0.02em;
  max-width: 22ch;
}
.manifesto__quote .hl { color: var(--accent); }
.manifesto__meta { margin-top: 44px; display: flex; flex-wrap: wrap; gap: 14px 56px; color: var(--fg-dim); }
.manifesto__meta span { font-family: var(--ff-display); font-size: 14px; letter-spacing: 0.04em; }
.manifesto__meta b { color: var(--fg); }

/* reveal lines */
.line-reveal { background: linear-gradient(var(--fg), var(--fg)) left / 0% 100% no-repeat; -webkit-background-clip: text; background-clip: text; color: transparent; transition: none; }

/* ============================================================
   SERVICES
   ============================================================ */
.svc__head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 68px; }
.svc__title { font-size: clamp(34px, 6vw, 92px); letter-spacing: -0.03em; line-height: 1.0; padding-bottom: 0.08em; }
.svc__title em { font-style: normal; color: var(--accent); }
.svc__lead { max-width: 40ch; color: var(--fg-dim); font-size: 17px; }

.svc__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.svc-card {
  position: relative; background: var(--bg); padding: 34px 30px 30px; min-height: 270px;
  display: flex; flex-direction: column; overflow: hidden; cursor: pointer;
  transition: background .5s var(--ease);
}
.svc-card__bg { position: absolute; inset: 0; background: var(--accent); transform: translateY(101%); transition: transform .6s var(--ease); z-index: 0; }
.svc-card:hover { background: var(--accent); }
.svc-card:hover .svc-card__bg { transform: translateY(0); }
.svc-card > * { position: relative; z-index: 1; }
.svc-card__num { font-family: var(--ff-display); font-size: 13px; color: var(--fg-faint); letter-spacing: 0.1em; transition: color .4s; }
.svc-card__name { font-family: var(--ff-display); font-size: clamp(22px, 2vw, 28px); font-weight: 600; margin-top: 18px; letter-spacing: -0.01em; transition: color .4s; }
.svc-card__desc { margin-top: 12px; color: var(--fg-dim); font-size: 15.5px; line-height: 1.55; transition: color .4s; flex: 1; }
.svc-card__arrow { margin-top: 20px; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; transition: border-color .4s, background .4s, transform .5s var(--ease); }
.svc-card__arrow svg { width: 15px; height: 15px; stroke: var(--fg); transition: stroke .4s; }
.svc-card:hover .svc-card__num,
.svc-card:hover .svc-card__name,
.svc-card:hover .svc-card__desc { color: var(--accent-ink); }
.svc-card:hover .svc-card__desc { color: rgba(6,32,41,0.82); }
.svc-card:hover .svc-card__arrow { background: var(--accent-ink); border-color: var(--accent-ink); transform: rotate(45deg); }
.svc-card:hover .svc-card__arrow svg { stroke: var(--accent); }

/* ============================================================
   KIT DIGITAL
   ============================================================ */
.kit { background: var(--bg-2); border-block: 1px solid var(--line); }
.kit__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.kit__tag { color: var(--accent); }
.kit__title { font-size: clamp(34px, 5vw, 76px); margin: 18px 0 22px; letter-spacing: -0.03em; line-height: 0.95; }
.kit__text { color: var(--fg-dim); max-width: 46ch; font-size: 17px; }
.kit__cta { margin-top: 34px; }
.kit__banner { border: 1px solid var(--line); border-radius: 14px; overflow: hidden; background: #fff; padding: 26px; }
.kit__banner img { width: 100%; height: auto; }

.btn {
  display: inline-flex; align-items: center; gap: 12px; white-space: nowrap;
  font-family: var(--ff-display); font-weight: 600; font-size: 16px;
  padding: 15px 26px; border-radius: 100px;
  background: var(--accent); color: var(--accent-ink); border: 1px solid var(--accent);
  transition: transform .4s var(--ease), box-shadow .4s, background .4s;
  position: relative; overflow: hidden;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -12px var(--accent); }
.btn svg { width: 16px; height: 16px; transition: transform .4s var(--ease); }
.btn:hover svg { transform: translate(4px, -4px); }
.btn--ghost { background: transparent; color: var(--fg); border-color: var(--line); }
.btn--ghost:hover { background: var(--fg); color: var(--bg); box-shadow: none; border-color: var(--fg); }

/* ============================================================
   CLIENTS
   ============================================================ */
.clients__head { text-align: center; margin-bottom: 54px; }
.clients__title { font-size: clamp(28px, 4vw, 58px); letter-spacing: -0.02em; }
.cmar { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.cmar + .cmar { margin-top: 22px; }
.cmar__track { display: flex; gap: 22px; width: max-content; }
.cmar__track.l { animation: marquee 48s linear infinite; }
.cmar__track.r { animation: marqueeR 54s linear infinite; }
@keyframes marqueeR { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.cmar:hover .cmar__track { animation-play-state: paused; }
.chip {
  flex: 0 0 auto; height: 92px; padding: 0 42px; background: transparent;
  border: 1px solid var(--line); border-radius: 100px;
  display: grid; place-items: center;
  transition: border-color .4s, background .4s, transform .4s var(--ease);
}
.chip span {
  font-family: var(--ff-display); font-weight: 500; font-size: clamp(17px, 1.5vw, 22px);
  letter-spacing: -0.01em; color: var(--fg-dim); white-space: nowrap; transition: color .4s;
}
.chip:hover { border-color: var(--fg); transform: translateY(-4px); }
.chip:hover span { color: var(--fg); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--bg); }
.contact__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(44px, 6vw, 96px); }
.contact__title { font-size: clamp(40px, 6.5vw, 104px); letter-spacing: -0.035em; line-height: 0.92; margin-bottom: 16px; }
.contact__title em { font-style: normal; color: var(--accent); }
.contact__intro { color: var(--fg-dim); max-width: 40ch; margin-bottom: 40px; }

.form { display: grid; gap: 22px; }
.field { position: relative; }
.field label {
  position: absolute; left: 0; top: 16px; font-family: var(--ff-display); font-size: 16px; color: var(--fg-dim);
  pointer-events: none; transition: transform .3s var(--ease), color .3s, font-size .3s;
}
.field input, .field textarea {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid var(--line);
  padding: 16px 0 12px; color: var(--fg); font-family: var(--ff-body); font-size: 17px; resize: vertical;
  transition: border-color .3s;
}
.field textarea { min-height: 90px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); }
.field input:focus + label,
.field textarea:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:not(:placeholder-shown) + label {
  transform: translateY(-22px); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent);
}
.field input::placeholder, .field textarea::placeholder { color: transparent; }

.check { display: flex; gap: 13px; align-items: flex-start; font-size: 14.5px; color: var(--fg-dim); }
.check input { appearance: none; -webkit-appearance: none; flex: 0 0 auto; width: 20px; height: 20px; border: 1px solid var(--line); border-radius: 5px; margin-top: 2px; cursor: pointer; position: relative; transition: background .25s, border-color .25s; }
.check input:checked { background: var(--accent); border-color: var(--accent); }
.check input:checked::after { content: "✓"; position: absolute; inset: 0; display: grid; place-items: center; color: var(--accent-ink); font-size: 13px; }
.check a { color: var(--fg); text-decoration: underline; text-underline-offset: 3px; }

.form__submit { justify-self: start; margin-top: 6px; cursor: pointer; }
.form__note { font-size: 11.5px; line-height: 1.6; color: var(--fg-faint); margin-top: 8px; }
.form__ok { display: none; padding: 18px 22px; border: 1px solid var(--accent); border-radius: 12px; color: var(--fg); background: rgba(114,214,237,0.10); font-family: var(--ff-display); }
.form.sent .form__ok { display: block; }
.form.sent > :not(.form__ok) { display: none; }

.info { display: grid; gap: 36px; align-content: start; }
.info__block h4 { font-family: var(--ff-display); font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg-faint); margin-bottom: 12px; font-weight: 500; }
.info__block p, .info__block a { font-size: 18px; line-height: 1.6; color: var(--fg); }
.info__block a:hover { color: var(--accent); }
.info__hours span { display: flex; justify-content: space-between; align-items: baseline; gap: 20px; padding: 9px 0; border-bottom: 1px solid var(--line-soft); font-size: 15.5px; white-space: nowrap; }
.info__hours span b { color: var(--fg); font-weight: 600; font-family: var(--ff-display); }
.info__hours span > span { color: var(--fg-dim); }
.info__hours span.closed { color: var(--fg-faint); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); padding-block: 56px 40px; background: var(--bg-2); }
.footer__top { display: flex; flex-wrap: wrap; gap: 30px; justify-content: space-between; align-items: flex-end; }
.footer__logo svg { height: 38px; }
.footer__logo svg path, .footer__logo svg text, .footer__logo svg tspan { fill: var(--fg); }
.footer__claim { font-family: var(--ff-display); color: var(--fg-dim); max-width: 30ch; font-size: 15px; }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 14px 30px; justify-content: space-between; margin-top: 50px; padding-top: 24px; border-top: 1px solid var(--line-soft); color: var(--fg-faint); font-size: 13px; }
.footer__bottom a:hover { color: var(--fg); }

/* ============================================================
   REVEAL ANIMATION (scroll)
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal][data-d="1"] { transition-delay: .08s; }
[data-reveal][data-d="2"] { transition-delay: .16s; }
[data-reveal][data-d="3"] { transition-delay: .24s; }
[data-reveal][data-d="4"] { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ============================================================
   LEGAL PAGE
   ============================================================ */
.legal-hero { padding-top: clamp(130px, 18vh, 200px); padding-bottom: clamp(40px, 6vh, 70px); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.legal-hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: linear-gradient(90deg, var(--accent), transparent 60%); }
.legal-hero__title { font-size: clamp(40px, 7vw, 96px); letter-spacing: -0.035em; line-height: 0.95; margin-top: 22px; }
.legal-hero__title em { font-style: normal; color: var(--accent); }
.legal-hero__sub { color: var(--fg-dim); max-width: 56ch; margin-top: 22px; font-size: clamp(16px, 1.5vw, 19px); }

.legal { padding-block: clamp(50px, 8vh, 90px); }
.legal__grid { display: grid; grid-template-columns: 240px 1fr; gap: clamp(34px, 6vw, 80px); align-items: start; }

.legal__toc { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 4px; }
.legal__toc h5 { font-family: var(--ff-display); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fg-faint); margin-bottom: 14px; font-weight: 500; }
.legal__toc a { font-family: var(--ff-display); font-size: 14px; color: var(--fg-dim); padding: 7px 0; border-left: 1px solid var(--line); padding-left: 16px; margin-left: 1px; transition: color .3s, border-color .3s, padding-left .3s; }
.legal__toc a:hover { color: var(--fg); border-color: var(--accent); padding-left: 20px; }

.legal__body { max-width: 760px; }
.legal__body section { padding-block: clamp(30px, 4vh, 44px); border-bottom: 1px solid var(--line-soft); scroll-margin-top: 100px; }
.legal__body section:first-child { padding-top: 0; }
.legal__body section:last-child { border-bottom: 0; }
.legal__body h2 { font-size: clamp(24px, 3vw, 38px); letter-spacing: -0.02em; margin-bottom: 18px; }
.legal__body h2 .idx { color: var(--accent); font-size: 0.55em; vertical-align: middle; margin-right: 14px; font-weight: 500; }
.legal__body h3 { font-family: var(--ff-display); font-size: clamp(17px, 1.6vw, 21px); font-weight: 600; margin: 28px 0 12px; color: var(--fg); letter-spacing: -0.01em; }
.legal__body h4 { font-family: var(--ff-display); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin: 24px 0 8px; font-weight: 600; }
.legal__body p { color: var(--fg-dim); margin-bottom: 14px; line-height: 1.7; font-size: 16.5px; }
.legal__body p strong, .legal__body li strong { color: var(--fg); font-weight: 600; }
.legal__body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.legal__body a:hover { color: var(--fg); }
.legal__body ul { list-style: none; margin: 4px 0 18px; display: grid; gap: 10px; }
.legal__body ul li { color: var(--fg-dim); line-height: 1.6; padding-left: 22px; position: relative; font-size: 16.5px; }
.legal__body ul li::before { content: ""; position: absolute; left: 0; top: 11px; width: 7px; height: 7px; background: var(--accent); border-radius: 50%; }

.legal__card { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 26px 28px; margin: 18px 0; }
.legal__card p:last-child { margin-bottom: 0; }
.legal__dl { display: grid; grid-template-columns: 180px 1fr; gap: 2px 24px; margin: 6px 0 4px; }
.legal__dl dt { font-family: var(--ff-display); font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fg-faint); padding: 12px 0; border-top: 1px solid var(--line-soft); }
.legal__dl dd { color: var(--fg); padding: 12px 0; border-top: 1px solid var(--line-soft); font-size: 16px; line-height: 1.6; }
.legal__dl dt:first-of-type, .legal__dl dd:first-of-type { border-top: 0; }

.legal__updated { color: var(--fg-faint); font-size: 13.5px; font-family: var(--ff-display); margin-top: 8px; }

@media (max-width: 860px) {
  .legal__grid { grid-template-columns: 1fr; }
  .legal__toc { position: static; flex-direction: row; flex-wrap: wrap; gap: 8px 18px; padding-bottom: 8px; border-bottom: 1px solid var(--line); margin-bottom: 10px; }
  .legal__toc h5 { width: 100%; margin-bottom: 4px; }
  .legal__toc a { border-left: 0; padding-left: 0; }
  .legal__toc a:hover { padding-left: 0; }
  .legal__dl { grid-template-columns: 1fr; gap: 0; }
  .legal__dl dt { padding-bottom: 0; }
  .legal__dl dd { padding-top: 4px; border-top: 0; }
  .legal__dl dt:not(:first-of-type) { border-top: 1px solid var(--line-soft); margin-top: 8px; padding-top: 12px; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .svc__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  body { font-size: 16px; }
  .nav__links { position: fixed; inset: 0; flex-direction: column; justify-content: center; gap: 30px; background: rgba(8,9,11,0.97); backdrop-filter: blur(16px); transform: translateX(100%); transition: transform .5s var(--ease); z-index: -1; }
  .nav.open .nav__links { transform: none; }
  .nav__link { font-size: 26px; color: var(--fg); }
  .nav__cta { font-size: 18px; padding: 14px 30px; }
  .nav__burger { display: flex; z-index: 2; }
  .kit__grid, .contact__grid { grid-template-columns: 1fr; }
  .kit__banner { order: -1; }
  .hero__mark { opacity: 1; }
}
@media (max-width: 600px) {
  .svc__grid { grid-template-columns: 1fr; }
  .svc-card { min-height: auto; }
  .chip { height: 72px; padding: 0 30px; }
  .chip span { font-size: 16px; }
  .hero__scroll { display: none; }
  .info__hours span { font-size: 14px; }
}
