/* ============================================================
   Dmart Studio 2026 — modern redesign
   Schibsted Grotesk · Hanken Grotesk · JetBrains Mono
   Electric-indigo accent · 8pt rhythm · AA contrast
   ============================================================ */

:root {
  /* ---- color tokens (semantic) ---- */
  --paper:    #FAFAF7;   /* page bg */
  --surface:  #FFFFFF;   /* cards on light */
  --bg-2:     #F1F0EA;   /* subtle alt band */
  --ink:      #111114;   /* primary text */
  --ink-2:    #494a52;   /* secondary text */
  --ink-3:    #8b8c95;   /* tertiary / meta */
  --line:     rgba(17,17,20,0.12);
  --line-2:   rgba(17,17,20,0.22);

  --night:    #0c0c0f;   /* dark band */
  --night-2:  #16161b;   /* card on dark */
  --night-3:  #20212a;   /* hairline-lift on dark */
  --night-fg: #f4f3ee;
  --night-mute:#9698a6;
  --night-line: rgba(244,243,238,0.12);

  --accent:    #7f2fff;  /* electric indigo */
  --accent-ink:#ffffff;  /* text on accent */
  --accent-soft:#9aa9ff; /* light tint for dark bg */
  --accent-wash:rgba(47,75,255,0.10);

  /* ---- type ---- */
  --display: "Schibsted Grotesk", system-ui, sans-serif;
  --sans: "Hanken Grotesk", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* ---- metrics ---- */
  --container: 1280px;
  --gutter: clamp(20px, 4.5vw, 64px);
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

html, body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body { overflow-x: hidden; }

a { color: inherit; text-decoration: none; }
img, svg, canvas { display: block; max-width: 100%; }
::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 2.5px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Type primitives ---------- */
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.98;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(48px, 8.2vw, 132px); letter-spacing: -0.045em; }
h2 { font-size: clamp(36px, 5.4vw, 80px); }
h3 { font-size: clamp(24px, 2.8vw, 38px); letter-spacing: -0.025em; }
h4 { font-size: clamp(20px, 1.7vw, 25px); letter-spacing: -0.02em; }

p { margin: 0 0 1em; text-wrap: pretty; }
.lede {
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 56ch;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 var(--accent-wash);
  animation: pulse 2.6s var(--ease) infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(47,75,255,0.45); }
  70% { box-shadow: 0 0 0 9px rgba(47,75,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(47,75,255,0); }
}
@media (prefers-reduced-motion: reduce) { .eyebrow .dot { animation: none; } }
.italic { font-style: italic; }
.accent-text { color: var(--accent); }

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section { padding: clamp(72px, 10vw, 150px) 0; position: relative; }
.section--tight { padding: clamp(48px, 6vw, 88px) 0; }
.section--alt { background: var(--bg-2); }
.section--night { background: var(--night); color: var(--night-fg); }
.section--night .lede { color: var(--night-mute); }
.section--night .eyebrow { color: var(--night-mute); }

.sec-head {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  margin-bottom: clamp(44px, 6vw, 80px);
}
.sec-head__title { max-width: 16ch; margin-top: 18px; }
.sec-head__tag { color: var(--ink-2); font-size: clamp(16px, 1.3vw, 18px); max-width: 40ch; padding-bottom: 6px; }
.section--night .sec-head__tag { color: var(--night-mute); }
@media (max-width: 860px) {
  .sec-head { grid-template-columns: 1fr; gap: 18px; align-items: start; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid transparent;
  cursor: pointer;
  background: var(--ink);
  color: var(--paper);
  transition: background .22s var(--ease), color .22s var(--ease),
              transform .22s var(--ease), border-color .22s var(--ease);
}
.btn:hover { background: var(--accent); transform: translateY(-2px); }
.btn .arrow { transition: transform .22s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--accent { background: var(--accent); color: var(--accent-ink); }
.btn--accent:hover { background: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: translateY(-2px); }
.btn--light { background: var(--paper); color: var(--ink); }
.btn--light:hover { background: var(--accent); color: #fff; }
.btn--lg { padding: 18px 32px; font-size: 16px; }

/* ---------- Tag / pill ---------- */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono);
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
  padding: 6px 12px; border-radius: 999px;
  background: var(--accent-wash); color: var(--accent); font-weight: 500;
}
.tag--outline { background: transparent; border: 1px solid var(--line-2); color: var(--ink-2); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250,250,247,0.72);
  backdrop-filter: saturate(150%) blur(16px);
  -webkit-backdrop-filter: saturate(150%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav__brand { display: flex; align-items: center; gap: 11px; font-family: var(--display); font-weight: 700; font-size: 22px; letter-spacing: -0.04em; }
.nav__mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: var(--ink); color: var(--paper);
  display: grid; place-items: center;
  transition: background .22s var(--ease), transform .22s var(--ease);
}
.nav__mark svg { width: 17px; height: 17px; }
.nav__brand:hover .nav__mark { background: var(--accent); transform: rotate(-6deg); }
.nav__links { display: flex; gap: 4px; align-items: center; }
.nav__links a {
  font-size: 14.5px; font-weight: 500; padding: 9px 15px; border-radius: 999px;
  color: var(--ink-2); transition: background .2s var(--ease), color .2s var(--ease);
}
.nav__links a:hover { background: rgba(17,17,20,0.06); color: var(--ink); }
.nav__links a.is-active { color: var(--ink); }
.nav__cta { background: var(--ink); color: var(--paper) !important; padding: 10px 18px !important; font-weight: 600 !important; }
.nav__cta:hover { background: var(--accent) !important; }
.nav__cta .arrow { transition: transform .2s var(--ease); display: inline-block; }
.nav__cta:hover .arrow { transform: translateX(3px); }
@media (max-width: 780px) { .nav__links a:not(.nav__cta) { display: none; } }

/* ============================================================
   HERO
   ============================================================ */
.hero { padding: clamp(44px, 6vw, 84px) 0 clamp(28px, 4vw, 48px); }
.hero__top {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; margin-bottom: clamp(36px, 5vw, 60px);
}
.hero__top .meta { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }
.hero__title { max-width: 15ch; }
.hero__title .accent-text { color: var(--accent); }
.hero__grid {
  display: grid; grid-template-columns: 1.15fr 1fr;
  gap: clamp(36px, 6vw, 80px); margin-top: clamp(36px, 5vw, 60px);
  align-items: end;
}
@media (max-width: 860px) { .hero__grid { grid-template-columns: 1fr; gap: 28px; } }
.hero__cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.hero__meta { display: grid; gap: 18px; }
.hero__meta-item { display: flex; align-items: baseline; gap: 14px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.hero__meta-item:last-child { border-bottom: none; padding-bottom: 0; }
.hero__meta-num { font-family: var(--display); font-weight: 700; font-size: clamp(34px, 3.4vw, 46px); letter-spacing: -0.03em; line-height: 1; min-width: 2.6ch; }
.hero__meta-num .unit { color: var(--accent); }
.hero__meta-label { font-size: 14px; color: var(--ink-2); line-height: 1.35; }

/* hero showcase (browser frame) */
.frame {
  margin-top: clamp(40px, 5vw, 64px);
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 40px 90px -50px rgba(17,17,20,0.45);
  overflow: hidden;
}
.frame__bar { display: flex; align-items: center; gap: 8px; padding: 13px 18px; border-bottom: 1px solid var(--line); background: var(--bg-2); }
.frame__dot { width: 11px; height: 11px; border-radius: 50%; background: var(--line-2); }
.frame__url { margin-left: 14px; font-family: var(--mono); font-size: 12px; color: var(--ink-3); letter-spacing: 0.02em; }
.frame__body { display: block; }
.frame__body image-slot { width: 100%; height: clamp(320px, 42vw, 600px); }

/* ============================================================
   MARQUEE (trust)
   ============================================================ */
.marquee { width: 100%; overflow: hidden; padding: clamp(18px,2.4vw,30px) 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track { display: flex; flex-shrink: 0; align-items: center; gap: clamp(40px,5vw,80px); padding-right: clamp(40px,5vw,80px);
  animation: scroll-x 48s linear infinite; will-change: transform; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes scroll-x { from { transform: translate3d(0,0,0); } to { transform: translate3d(-100%,0,0); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }
.brand { white-space: nowrap; color: var(--ink); opacity: .55; font-weight: 600; font-size: clamp(20px,2.4vw,30px); letter-spacing: -0.02em; transition: opacity .25s, color .25s; }
.brand:hover { opacity: 1; color: var(--accent); }
.brand--mono { font-family: var(--mono); font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; font-size: clamp(16px,1.9vw,24px); }

/* ============================================================
   STATS (dark band)
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--night-line);
  border: 1px solid var(--night-line); border-radius: var(--r); overflow: hidden; }
.stat { background: var(--night); padding: clamp(28px,3vw,42px) clamp(22px,2.4vw,34px); }
.stat__num { font-family: var(--display); font-weight: 700; font-size: clamp(44px,5vw,72px); line-height: .9; letter-spacing: -0.04em; }
.stat__num .unit { color: var(--accent-soft); }
.stat__label { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--night-mute); margin-top: 14px; }
@media (max-width: 720px) { .stats { grid-template-columns: 1fr 1fr; } }

/* ============================================================
   BENTO services
   ============================================================ */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: minmax(180px, auto); gap: 14px; }
.tile {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r);
  padding: clamp(24px,2.6vw,36px); display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.tile:hover { transform: translateY(-4px); box-shadow: 0 30px 60px -38px rgba(17,17,20,0.4); border-color: var(--line-2); }
.tile__icon { width: 40px; height: 40px; color: var(--accent); margin-bottom: auto; }
.tile__n { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; color: var(--ink-3); }
.tile h3 { margin: 20px 0 8px; }
.tile p { font-size: 15px; color: var(--ink-2); margin: 0; line-height: 1.55; }
.tile--wide { grid-column: span 2; }
.tile--tall { grid-row: span 2; }
.tile--dark { background: var(--night); color: var(--night-fg); border-color: transparent; }
.tile--dark p { color: var(--night-mute); }
.tile--dark .tile__icon { color: var(--accent-soft); }
.tile--dark .tile__n { color: var(--night-mute); }
.tile--accent { background: var(--accent); color: #fff; border-color: transparent; }
.tile--accent .tile__icon, .tile--accent .tile__n { color: rgba(255,255,255,0.85); }
.tile--accent p { color: rgba(255,255,255,0.88); }
.tile__big { font-family: var(--display); font-weight: 700; font-size: clamp(40px,4.4vw,64px); letter-spacing: -0.04em; line-height: .92; margin-top: auto; }
@media (max-width: 980px) { .bento { grid-template-columns: repeat(2, 1fr); } .tile--wide { grid-column: span 2; } .tile--tall { grid-row: span 1; } }
@media (max-width: 560px) { .bento { grid-template-columns: 1fr; } .tile--wide { grid-column: span 1; } }

/* ============================================================
   WORK cards
   ============================================================ */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px,2.4vw,32px); }
@media (max-width: 980px) { .work-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .work-grid { grid-template-columns: 1fr; } }
.work { display: block; }
.work__frame { border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); background: var(--surface);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.work:hover .work__frame { transform: translateY(-5px); box-shadow: 0 36px 70px -40px rgba(17,17,20,0.42); }
.work__bar { display: flex; align-items: center; gap: 6px; padding: 9px 13px; border-bottom: 1px solid var(--line); background: var(--bg-2); }
.work__bar .frame__dot { width: 8px; height: 8px; }
.work__bar .url { margin-left: 8px; font-family: var(--mono); font-size: 10px; color: var(--ink-3); }
.work__shot { width: 100%; height: clamp(200px, 22vw, 270px); }
.work__meta { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; margin-top: 16px; }
.work__title { font-family: var(--display); font-weight: 600; font-size: 21px; letter-spacing: -0.02em; }
.work__cat { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-3); white-space: nowrap; }
.work__blurb { font-size: 14.5px; color: var(--ink-2); margin-top: 8px; line-height: 1.5; }

/* ============================================================
   PROCESS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--night-line);
  border: 1px solid var(--night-line); border-radius: var(--r); overflow: hidden; }
.step { background: var(--night); padding: clamp(28px,3vw,40px) clamp(22px,2.4vw,32px); position: relative; }
.step__n { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-soft); }
.step__title { font-family: var(--display); font-weight: 600; font-size: clamp(22px,2.2vw,28px); letter-spacing: -0.02em; margin: 16px 0 10px; }
.step__body { font-size: 14.5px; color: var(--night-mute); line-height: 1.55; margin: 0; }
@media (max-width: 880px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }

/* ============================================================
   PRICING
   ============================================================ */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.price {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(28px,3vw,40px); display: flex; flex-direction: column; gap: 18px;
  transition: transform .26s var(--ease), box-shadow .26s var(--ease);
}
.price:hover { transform: translateY(-5px); box-shadow: 0 36px 70px -42px rgba(17,17,20,0.4); }
.price--feat { background: var(--night); color: var(--night-fg); border-color: transparent; position: relative; }
.price--feat .price__cap, .price--feat .price__sub { color: var(--night-mute); }
.price--feat .price__hr { background: var(--night-line); }
.price--feat .price__feat li { color: var(--night-fg); }
.price--feat .price__feat li svg { color: var(--accent-soft); }
.price__top { display: flex; justify-content: space-between; align-items: baseline; }
.price__name { font-family: var(--display); font-weight: 600; font-size: 26px; letter-spacing: -0.02em; }
.price__sub { font-size: 14px; color: var(--ink-3); margin-top: 4px; }
.price__amount { font-family: var(--display); font-weight: 700; font-size: clamp(48px,5vw,62px); line-height: .9; letter-spacing: -0.04em; }
.price__amount .cur { font-size: .42em; vertical-align: top; margin-right: 3px; opacity: .65; }
.price__cap { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-3); }
.price__hr { height: 1px; background: var(--line); }
.price__feat { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.price__feat li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; line-height: 1.4; }
.price__feat li svg { width: 17px; height: 17px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.price .btn { margin-top: auto; justify-content: center; }
.ribbon { position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-family: var(--mono); font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.14em; padding: 6px 14px; border-radius: 999px; white-space: nowrap; }
@media (max-width: 900px) { .pricing { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quotes { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 760px) { .quotes { grid-template-columns: 1fr; } }
.quote { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(28px,3.4vw,48px); }
.quote__mark { font-family: var(--display); font-weight: 700; font-size: 56px; color: var(--accent); line-height: .6; height: 30px; }
.quote__text { font-family: var(--display); font-weight: 500; font-size: clamp(20px,2vw,28px); line-height: 1.3; letter-spacing: -0.02em; margin: 18px 0 26px; }
.quote__by { display: flex; align-items: center; gap: 13px; }
.quote__av { width: 46px; height: 46px; border-radius: 50%; background: var(--accent-wash); color: var(--accent);
  display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 17px; }
.quote__who strong { display: block; font-weight: 600; font-size: 15px; }
.quote__who span { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-3); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { display: grid; }
.faq details { border-bottom: 1px solid var(--line); padding: 8px 0; }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  gap: 24px; padding: 20px 0; font-family: var(--display); font-weight: 600; font-size: clamp(20px,2.2vw,28px);
  letter-spacing: -0.02em; line-height: 1.25; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .ico { flex-shrink: 0; width: 26px; height: 26px; position: relative; transition: transform .25s var(--ease); }
.faq summary .ico::before, .faq summary .ico::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; }
.faq summary .ico::before { top: 12px; left: 4px; right: 4px; height: 2px; }
.faq summary .ico::after { left: 12px; top: 4px; bottom: 4px; width: 2px; transition: transform .25s var(--ease); }
.faq details[open] summary .ico::after { transform: scaleY(0); }
.faq__body { color: var(--ink-2); font-size: 16px; line-height: 1.6; max-width: 68ch; padding: 0 0 22px; margin: 0; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { background: var(--accent); color: #fff; border-radius: var(--r-lg); padding: clamp(40px,6vw,84px); overflow: hidden; position: relative; }
.cta-band h2 { color: #fff; max-width: 16ch; }
.cta-band .lede { color: rgba(255,255,255,0.88); max-width: 46ch; }
.cta-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(28px,4vw,64px); align-items: center; }
@media (max-width: 820px) { .cta-grid { grid-template-columns: 1fr; } }
.cta-info { display: grid; gap: 14px; }
.cta-info a { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 600; font-size: clamp(22px,2.2vw,30px); letter-spacing: -0.02em; transition: opacity .2s; }
.cta-info a:hover { opacity: .8; }
.cta-info .label { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: rgba(255,255,255,0.7); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--night); color: var(--night-fg); padding: clamp(64px,8vw,110px) 0 36px; }
.footer__word { font-family: var(--display); font-weight: 700; font-size: clamp(56px,12vw,180px); letter-spacing: -0.05em; line-height: .85; }
.footer__word .accent-text { color: var(--accent-soft); }
.footer__cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-top: clamp(48px,6vw,80px);
  padding-top: 40px; border-top: 1px solid var(--night-line); }
.footer__col h5 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--night-mute); font-weight: 500; margin: 0 0 16px; }
.footer__col p { font-size: 15px; color: var(--night-mute); max-width: 34ch; }
.footer__col a { display: block; padding: 6px 0; color: var(--night-fg); font-size: 15px; transition: color .2s; }
.footer__col a:hover { color: var(--accent-soft); }
.footer__legal { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--night-mute); margin-top: 64px; }
@media (max-width: 820px) { .footer__cols { grid-template-columns: 1fr 1fr; } }

/* ---------- reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* locality chips */
.locality { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.locality span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 7px 13px; border: 1px solid var(--line-2); border-radius: 999px; color: var(--ink-2); }
.cta-band .locality span { border-color: rgba(255,255,255,0.32); color: rgba(255,255,255,0.9); }
