/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg: #07080a;
  --bg-2: #0c0e11;
  --bg-3: #12151a;
  --ink: #eceae6;
  --ink-2: #b9bcc2;
  --muted: #7d828b;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --accent: #7cc8ff;
  --accent-2: #d8efff;
  --paper: #f4f3f0;
  --cream: #eceae6;

  --sans: "Inter Tight", "Helvetica Neue", Arial, sans-serif;
  --tech: "Michroma", "Inter Tight", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, Menlo, monospace;

  --gutter: clamp(1rem, 4vw, 3rem);
  --maxw: 1320px;
  --radius: 18px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; padding: 0; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3 { text-wrap: balance; font-weight: 400; line-height: 1.04; letter-spacing: -0.03em; }
em { font-style: normal; }
::selection { background: var(--accent); color: var(--bg); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

/* =============================================================
   3. Utilities
   ============================================================= */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link {
  position: fixed; top: -100px; left: 1rem; z-index: 9999;
  padding: .6rem 1rem; background: var(--cream); color: var(--bg); border-radius: 8px; font-weight: 500;
}
.skip-link:focus { top: 1rem; }
.muted { color: var(--muted); }

/* =============================================================
   4. Typography
   ============================================================= */
.label, .eyebrow {
  font-family: var(--tech);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.section-head { max-width: 780px; margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.section-head .label { margin-bottom: 1.4rem; }
.section-title { font-size: clamp(2.2rem, 5.4vw, 4.4rem); font-weight: 300; }
.section-title em, .manifesto-title em, .contact-title em {
  background: linear-gradient(100deg, var(--ink) 0%, var(--accent) 55%, var(--accent-2) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-style: italic; font-weight: 300;
  padding-right: .06em;
}
.section-lead { margin-top: 1.4rem; color: var(--ink-2); font-size: clamp(1.02rem, 1.3vw, 1.15rem); max-width: 60ch; }
.section-lead strong { color: var(--ink); font-weight: 500; }

/* =============================================================
   5. Components
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .95rem 1.5rem;
  border-radius: 999px;
  font-size: .95rem; font-weight: 500; letter-spacing: .01em;
  transition: transform .5s var(--ease-out), background-color .4s var(--ease-out), color .4s var(--ease-out), border-color .4s var(--ease-out), box-shadow .5s var(--ease-out);
  white-space: nowrap;
}
.btn span[aria-hidden] { transition: transform .5s var(--ease-out); }
.btn:hover span[aria-hidden] { transform: translateX(4px); }
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: #fff; box-shadow: 0 10px 40px -8px rgba(124, 200, 255, .55); transform: translateY(-2px); }
.btn-ghost { border: 1px solid var(--line-2); color: var(--ink); background: rgba(255,255,255,.02); }
.btn-ghost:hover { border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.06); }
.btn-xl { padding: 1.2rem 2rem; font-size: clamp(1rem, 1.6vw, 1.2rem); }
.btn svg { width: 18px; height: 18px; fill: currentColor; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background-color .5s var(--ease-out), border-color .5s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled { background: rgba(7, 8, 10, 0.92); border-bottom-color: var(--line); }
@supports (backdrop-filter: blur(10px)) {
  .nav.is-scrolled { background: rgba(7, 8, 10, 0.62); backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%); }
}
.nav-inner { display: flex; align-items: center; gap: 2rem; height: 76px; }
.brand { display: inline-flex; align-items: center; }
.brand img { width: 40px; height: 40px; transition: transform .8s var(--ease-out); }
.brand:hover img { transform: rotate(-12deg); }
.nav-links { display: none; gap: 2rem; margin-left: auto; font-size: .92rem; color: var(--ink-2); }
.nav-links a { position: relative; transition: color .3s; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px;
  background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease-out);
}
.nav-links a:hover, .nav-links a[aria-current] { color: var(--ink); }
.nav-links a:hover::after, .nav-links a[aria-current]::after { transform: scaleX(1); }
.nav-cta { display: none; padding: .6rem 1.1rem; font-size: .88rem; }
.nav-toggle { margin-left: auto; width: 44px; height: 44px; display: grid; place-content: center; gap: 6px; }
.nav-toggle i { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: transform .4s var(--ease-out); }
.nav-toggle[aria-expanded="true"] i:first-of-type { transform: translateY(3.75px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] i:last-of-type { transform: translateY(-3.75px) rotate(-45deg); }
.nav-mobile {
  display: grid; gap: .25rem; padding: 1rem var(--gutter) 2rem;
  background: rgba(7, 8, 10, .97); border-bottom: 1px solid var(--line);
}
.nav-mobile[hidden] { display: none; }
.nav-mobile a { padding: .9rem 0; font-size: 1.4rem; font-weight: 300; border-bottom: 1px solid var(--line); }

/* =============================================================
   6. Sections
   ============================================================= */

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-top: 120px; overflow: hidden; isolation: isolate;
}
.hero-media { position: absolute; inset: -4% 0 0 0; z-index: -2; will-change: transform; }
.hero-media img { width: 100%; height: 108%; object-fit: cover; object-position: 50% 30%; animation: heroZoom 18s var(--ease-soft) both; }
@keyframes heroZoom { from { transform: scale(1.12); filter: brightness(.6); } to { transform: scale(1); filter: brightness(1); } }
.hero-shade {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(7,8,10,.55) 0%, rgba(7,8,10,0) 26%, rgba(7,8,10,.25) 55%, rgba(7,8,10,.96) 100%),
    radial-gradient(ellipse at 20% 80%, rgba(7,8,10,.7), transparent 60%);
}
.hero-content { padding-bottom: clamp(2rem, 5vw, 3.5rem); }
.eyebrow { display: inline-flex; align-items: center; gap: .7rem; margin-bottom: 1.8rem; color: var(--ink); }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 12px var(--accent); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse { 50% { opacity: .35; } }
.hero-logo img { width: clamp(220px, 30vw, 420px); filter: drop-shadow(0 0 30px rgba(0,0,0,.55)); }
.hero-sub { margin-top: 1.8rem; max-width: 52ch; color: var(--ink-2); font-size: clamp(1.02rem, 1.4vw, 1.2rem); }
.hero-actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: .8rem; }
.hero-stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-2);
  padding-block: 1.6rem 2.4rem;
  gap: 1.4rem 1rem;
}
.stat { display: grid; gap: .3rem; }
.stat strong { font-weight: 300; font-size: clamp(1.6rem, 3vw, 2.4rem); letter-spacing: -0.03em; line-height: 1; }
.stat > span { font-size: .85rem; color: var(--muted); }
.scroll-cue { display: none; }

/* ---------- Manifesto ---------- */
.manifesto { position: relative; padding-block: clamp(6rem, 14vw, 11rem) clamp(5rem, 10vw, 8rem); }
.manifesto-grid { display: grid; gap: 2rem; }
.manifesto-title { font-size: clamp(1.9rem, 4.4vw, 3.8rem); font-weight: 300; line-height: 1.1; letter-spacing: -0.035em; }
.manifesto-body { margin-top: 2rem; max-width: 62ch; color: var(--ink-2); font-size: clamp(1.02rem, 1.3vw, 1.15rem); }

.slotline {
  margin-top: clamp(4rem, 9vw, 7rem);
  height: 120px;
  display: flex; align-items: center; justify-content: center; gap: clamp(4px, .8vw, 10px);
  padding-inline: var(--gutter);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
}
.slotline i {
  flex: 0 0 auto; width: clamp(3px, .5vw, 6px); border-radius: 99px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  opacity: .8; height: 8%;
  transition: height 1.2s var(--ease-out);
}

/* ---------- Link to products (home) ---------- */
.to-products {
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  padding: clamp(3rem, 7vw, 5rem) var(--gutter);
  background: var(--bg-2); border-block: 1px solid var(--line);
  transition: background-color .6s var(--ease-out);
}
.to-products-txt { display: grid; gap: 1rem; max-width: var(--maxw); }
.to-products strong { font-weight: 300; font-size: clamp(2rem, 6vw, 4.6rem); letter-spacing: -0.035em; line-height: 1; }
.to-products-arrow { font-size: clamp(2rem, 5vw, 4rem); font-weight: 200; color: var(--accent); transition: transform .7s var(--ease-out); }
.to-products:hover { background: var(--bg-3); }
.to-products:hover .to-products-arrow { transform: translateX(12px); }

/* ---------- Products ---------- */
.products { padding-block: clamp(5rem, 10vw, 8rem); background: var(--bg-2); border-bottom: 1px solid var(--line); }
.page-products { padding-top: clamp(8rem, 16vw, 11rem); }
.product-grid { display: grid; gap: 1.25rem; }
.product {
  display: flex; flex-direction: column;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .5s var(--ease-out), transform .6s var(--ease-out);
}
.product:hover { border-color: rgba(124, 200, 255, .35); transform: translateY(-4px); }
.product-media { position: relative; aspect-ratio: 4 / 3.4; overflow: hidden; background: #000; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease-out); }
.product:hover .product-media img { transform: scale(1.05); }
.product-media.paper { background: radial-gradient(ellipse at 50% 40%, #ffffff 0%, var(--paper) 70%); display: grid; place-items: center; padding: 1.5rem; }
.product-media.paper img { object-fit: contain; width: auto; max-height: 100%; mix-blend-mode: multiply; }
.product-media.art { background: radial-gradient(ellipse at 50% 35%, #1b1f25 0%, #111317 70%); display: grid; place-items: center; }

/* illustrations for products without a photo */
.foam-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; width: 52%; aspect-ratio: 1; transform: rotate(-8deg) skewX(-4deg); transition: transform 1s var(--ease-out); }
.product:hover .foam-grid { transform: rotate(-4deg) skewX(-2deg) scale(1.04); }
.foam-grid i {
  border-radius: 3px;
  background: repeating-linear-gradient(90deg, rgba(0,0,0,.35) 0 2px, transparent 2px 14px), linear-gradient(145deg, #3a3e45, #1f2226);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 10px 20px -8px rgba(0,0,0,.6);
}
.foam-grid i:nth-child(even) { background: repeating-linear-gradient(0deg, rgba(0,0,0,.35) 0 2px, transparent 2px 14px), linear-gradient(145deg, #3a3e45, #1f2226); }

.diffuser-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px;
  width: 46%; aspect-ratio: 53 / 49;
  transform: perspective(700px) rotateY(-24deg) rotateX(8deg);
  transition: transform 1.2s var(--ease-out);
}
.product:hover .diffuser-grid { transform: perspective(700px) rotateY(-10deg) rotateX(4deg); }
.diffuser-grid i {
  aspect-ratio: 1; border-radius: 1px;
  background: linear-gradient(145deg, #d8b98a, #a8844f);
  box-shadow: calc(var(--d, 2) * 1px) calc(var(--d, 2) * 1px) 0 #6e5433, 0 6px 10px -4px rgba(0,0,0,.6);
  transform: translateZ(calc(var(--d, 2) * 3px));
}

.cloud-panel {
  position: relative; width: 70%; aspect-ratio: 2.2 / 1; border-radius: 6px;
  background: #0a0c10;
  transform: perspective(600px) rotateX(52deg);
  box-shadow: 0 0 0 1px rgba(255,255,255,.06), 0 18px 60px -6px rgba(124,200,255,.55), 0 0 90px -10px rgba(200,232,255,.45);
  transition: box-shadow 1s var(--ease-out), transform 1s var(--ease-out);
}
.product:hover .cloud-panel { transform: perspective(600px) rotateX(46deg); box-shadow: 0 0 0 1px rgba(255,255,255,.1), 0 22px 80px -4px rgba(124,200,255,.8), 0 0 120px -10px rgba(200,232,255,.6); }
.cloud-stars {
  position: absolute; inset: 8%;
  background-image:
    radial-gradient(1.2px 1.2px at 12% 20%, #fff, transparent), radial-gradient(1px 1px at 30% 70%, #fff, transparent),
    radial-gradient(1.4px 1.4px at 48% 35%, #fff, transparent), radial-gradient(1px 1px at 62% 80%, #fff, transparent),
    radial-gradient(1.2px 1.2px at 75% 25%, #fff, transparent), radial-gradient(1px 1px at 88% 60%, #fff, transparent),
    radial-gradient(1px 1px at 22% 48%, #fff, transparent), radial-gradient(1.3px 1.3px at 40% 12%, #fff, transparent),
    radial-gradient(1px 1px at 55% 58%, #fff, transparent), radial-gradient(1.2px 1.2px at 82% 88%, #fff, transparent),
    radial-gradient(1px 1px at 6% 82%, #fff, transparent), radial-gradient(1.2px 1.2px at 94% 14%, #fff, transparent);
  animation: twinkle 3.6s ease-in-out infinite alternate;
}
@keyframes twinkle { from { opacity: .55; } to { opacity: 1; } }

.product-body { padding: 1.6rem 1.6rem 1.8rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.product-kicker { font-family: var(--mono); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--accent); }
.product h2, .product h3 { font-size: 1.55rem; font-weight: 400; letter-spacing: -0.025em; }
.product-body > p:not(.product-kicker) { color: var(--ink-2); font-size: .98rem; }
.spec {
  margin-top: auto; padding-top: 1.1rem; border-top: 1px dashed var(--line-2);
  display: grid; grid-template-columns: auto 1fr; gap: .35rem 1.2rem;
  font-family: var(--mono); font-size: .8rem;
}
.spec dt { color: var(--muted); }
.spec dd { color: var(--ink); text-align: right; }

/* ---------- Marquee ---------- */
.marquee { overflow: hidden; border-bottom: 1px solid var(--line); padding-block: 1.6rem; }
.marquee-track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee-track span {
  font-size: clamp(1.6rem, 3.6vw, 3rem); font-weight: 300; letter-spacing: -0.03em;
  padding-inline: 1.6rem; color: var(--ink-2); white-space: nowrap;
  display: inline-flex; align-items: center; gap: 3.2rem;
}
.marquee-track span::after { content: ""; width: 10px; height: 10px; border-radius: 50%; border: 1px solid var(--accent); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Projects (bento) ---------- */
.projects { padding-block: clamp(5rem, 10vw, 8rem); }
.bento { display: grid; grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; grid-auto-flow: dense; gap: .75rem; }
.tile { position: relative; overflow: hidden; border-radius: 14px; background: var(--bg-3); text-align: left; cursor: zoom-in; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease-out), filter .8s; filter: saturate(.92); }
.tile:hover img { transform: scale(1.06); filter: saturate(1.1); }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.72)); pointer-events: none; }
.tile-cap {
  position: absolute; left: 1rem; right: 1rem; bottom: .9rem; z-index: 1;
  font-family: var(--mono); font-size: .72rem; letter-spacing: .04em; color: var(--ink);
  transform: translateY(6px); opacity: .85; transition: transform .6s var(--ease-out), opacity .6s;
}
.tile:hover .tile-cap { transform: none; opacity: 1; }
.t-wide { grid-column: span 2; grid-row: span 2; }
.t-tall { grid-row: span 2; }

/* ---------- Custom / RT60 ---------- */
.custom { padding-block: clamp(5rem, 10vw, 8rem); background: var(--bg-2); border-block: 1px solid var(--line); }
.custom-grid { display: grid; gap: 3.5rem; align-items: start; }
.custom-copy .label { margin-bottom: 1.4rem; }
.steps { list-style: none; padding: 0; margin-top: 2.6rem; display: grid; gap: 0; border-top: 1px solid var(--line); }
.steps li { display: grid; grid-template-columns: 3.2rem 1fr; gap: 1rem; padding-block: 1.3rem; border-bottom: 1px solid var(--line); }
.step-n { font-family: var(--mono); font-size: .8rem; color: var(--accent); padding-top: .35rem; }
.steps h3 { font-size: 1.25rem; letter-spacing: -0.02em; }
.steps p { color: var(--ink-2); font-size: .97rem; margin-top: .25rem; }

.rt60 {
  position: sticky; top: 110px;
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(124,200,255,.04), rgba(200,232,255,.02)), var(--bg);
}
.rt60 figcaption { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .8rem; margin-bottom: 1.2rem; }
.rt60-legend { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--mono); font-size: .75rem; color: var(--ink-2); }
.rt60-legend i { display: inline-block; width: 18px; height: 2px; border-radius: 2px; margin-left: .6rem; }
.lg-before { background: #ff8a6b; }
.lg-after { background: var(--accent); }
.rt60 svg { width: 100%; height: auto; overflow: visible; }
.rt60-grid line { stroke: var(--line); stroke-width: 1; }
.rt60-axis text { fill: var(--muted); font-family: var(--mono); font-size: 15px; }
.rt60-before, .rt60-after { fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 1; stroke-dashoffset: 0; }
.rt60-before { stroke: #ff8a6b; opacity: .85; }
.rt60-after { stroke: var(--accent); filter: drop-shadow(0 0 6px rgba(124,200,255,.6)); }
.js .rt60 .rt60-before, .js .rt60 .rt60-after { stroke-dashoffset: 1; transition: stroke-dashoffset 2.4s var(--ease-out); }
.js .rt60 .rt60-after { transition-delay: .7s; transition-duration: 1.6s; }
.js .rt60.is-in .rt60-before, .js .rt60.is-in .rt60-after { stroke-dashoffset: 0; }
.rt60-note { margin-top: 1rem; font-family: var(--mono); font-size: .72rem; color: var(--muted); }

/* ---------- Churches ---------- */
.churches { padding-block: clamp(5rem, 10vw, 8rem); }
.churches-grid { display: grid; gap: 3rem; align-items: center; }
.churches-media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; }
.churches-media img { width: 100%; height: 100%; object-fit: cover; }
.churches-copy .label { margin-bottom: 1.4rem; }
.checks { list-style: none; padding: 0; margin: 2rem 0 2.4rem; display: grid; gap: .8rem; }
.checks li { display: flex; gap: .9rem; align-items: baseline; color: var(--ink); }
.checks li::before { content: ""; flex: 0 0 auto; width: 16px; height: 1px; background: var(--accent); transform: translateY(-4px); }

/* ---------- Coverage ---------- */
.coverage { padding-block: clamp(4rem, 8vw, 6rem) clamp(5rem, 10vw, 8rem); }
.coverage-grid { display: grid; gap: 1.25rem; }
.cov {
  position: relative; padding: clamp(1.6rem, 3vw, 2.4rem);
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--bg-2);
  overflow: hidden;
}
.cov::before {
  content: ""; position: absolute; inset: auto -30% -60% auto; width: 70%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(124,200,255,.14), transparent 65%); pointer-events: none;
}
.cov-icon { display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 12px; border: 1px solid var(--line-2); margin-bottom: 1.4rem; }
.cov-icon svg { width: 22px; height: 22px; fill: none; stroke: var(--accent); stroke-width: 1.5; stroke-linejoin: round; }
.cov h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); letter-spacing: -0.025em; }
.cov p { margin-top: .7rem; color: var(--ink-2); max-width: 46ch; }

/* ---------- FAQ ---------- */
.faq { padding-block: clamp(5rem, 10vw, 8rem); background: var(--bg-2); border-top: 1px solid var(--line); }
.faq-grid { display: grid; gap: 1rem; }
.faq-list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.5rem 3rem 1.5rem 0; position: relative;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem); letter-spacing: -0.015em; transition: color .3s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: .2rem; top: 50%; transform: translateY(-50%);
  font-family: var(--mono); font-size: 1.3rem; color: var(--accent); transition: transform .4s var(--ease-out);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq summary:hover { color: var(--accent); }
.faq details p { padding: 0 0 1.6rem; color: var(--ink-2); max-width: 64ch; }

/* ---------- Contact ---------- */
.contact { position: relative; padding-block: clamp(6rem, 13vw, 10rem); overflow: hidden; text-align: center; isolation: isolate; }
.contact-glow {
  position: absolute; left: 50%; top: 55%; width: min(1100px, 140vw); aspect-ratio: 2 / 1; z-index: -1;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, rgba(124,200,255,.16), rgba(200,232,255,.08) 40%, transparent 70%);
}
.contact-inner { display: grid; justify-items: center; }
.contact-logo { width: clamp(200px, 24vw, 300px); margin-bottom: 3rem; }
.contact-title { font-size: clamp(2.2rem, 6vw, 5rem); font-weight: 300; max-width: 16ch; }
.contact .section-lead { margin-inline: auto; margin-bottom: 2.4rem; }
.contact-meta {
  margin-top: 4rem; width: 100%; max-width: 980px;
  display: grid; grid-template-columns: 1fr; gap: 0; text-align: left;
  border-top: 1px solid var(--line);
}
.contact-meta div { padding: 1.2rem 0; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; gap: 1rem; }
.contact-meta dt { font-family: var(--tech); font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); padding-top: .25rem; }
.contact-meta dd { color: var(--ink); text-align: right; }
.contact-meta a { border-bottom: 1px solid var(--line-2); transition: border-color .3s, color .3s; }
.contact-meta a:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding-block: 2rem; color: var(--muted); font-size: .85rem; }
.footer-inner { display: flex; flex-wrap: wrap; gap: 1rem 2rem; align-items: center; justify-content: space-between; }
.footer .brand img { width: 28px; height: 28px; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 40;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--ink); color: var(--bg);
  box-shadow: 0 12px 30px -8px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.1);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.wa-float svg { width: 26px; height: 26px; fill: currentColor; }
.wa-float:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 16px 40px -8px rgba(124,200,255,.5); }

/* ---------- Lightbox ---------- */
.lightbox { border: 0; padding: 0; background: transparent; max-width: 94vw; max-height: 92vh; margin: auto; overflow: visible; }
.lightbox::backdrop { background: rgba(4,5,6,.9); }
.lightbox img { max-width: 94vw; max-height: 88vh; width: auto; border-radius: 12px; object-fit: contain; }
.lightbox-close {
  position: absolute; top: -48px; right: 0; width: 40px; height: 40px; border-radius: 50%;
  font-size: 1.6rem; line-height: 1; color: var(--ink); border: 1px solid var(--line-2); background: rgba(0,0,0,.5);
}

/* =============================================================
   7. Effects — reveals (only hidden when JS confirmed running)
   ============================================================= */
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out); }
.js .reveal.is-in { opacity: 1; transform: none; }

/* =============================================================
   8. Responsive
   ============================================================= */
@media (min-width: 720px) {
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; }
  .coverage-grid { grid-template-columns: 1fr 1fr; }
  .contact-meta { grid-template-columns: 1fr 1fr; column-gap: 3rem; }
}
@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; margin-left: 0; }
  .nav-toggle, .nav-mobile { display: none !important; }
  .manifesto-grid { grid-template-columns: 1fr 3fr; gap: 3rem; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .bento { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; }
  .custom-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .churches-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .faq-grid { grid-template-columns: 1fr 1.6fr; gap: 4rem; align-items: start; }
  .scroll-cue {
    display: block; position: absolute; right: var(--gutter); bottom: 2.6rem;
    width: 26px; height: 42px; border: 1px solid var(--line-2); border-radius: 20px;
  }
  .scroll-cue span { position: absolute; left: 50%; top: 8px; width: 3px; height: 8px; margin-left: -1.5px; border-radius: 2px; background: var(--ink); animation: cue 2s var(--ease-out) infinite; }
  @keyframes cue { 0% { opacity: 0; transform: translateY(0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translateY(14px); } }
  .hero-stats { padding-right: 5rem; }
}
@media (min-width: 1280px) {
  .bento { grid-auto-rows: 270px; }
}

/* =============================================================
   9. Reduced motion — only intrusive effects
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation-duration: 90s; }
  .hero-media img { animation: none; }
  .scroll-cue span, .dot, .cloud-stars { animation: none; }
}

/* Products page: 4 items → balanced 2 × 2 grid on desktop */
@media (min-width: 960px) {
  .page-products .product-grid { grid-template-columns: repeat(2, 1fr); max-width: 1080px; }
}

/* Two-photo product (diffuser): crossfade with dots */
.swap { position: relative; }
.product-media.swap img { grid-area: 1 / 1; transition: opacity .8s var(--ease-out), transform 1.2s var(--ease-out); }
.js .swap img:not(.is-active) { opacity: 0; }
.swap:not([data-ready]) img + img { display: none; }
.swap-dots { position: absolute; left: 50%; bottom: 1rem; transform: translateX(-50%); display: flex; gap: .5rem; z-index: 2; }
.swap-dots button { width: 22px; height: 4px; border-radius: 4px; background: rgba(0,0,0,.18); transition: background-color .4s, width .5s var(--ease-out); }
.swap-dots button.is-active { background: rgba(0,0,0,.65); width: 34px; }
.swap:not([data-ready]) .swap-dots { display: none; }

/* Product photos: always show the whole image inside the card */
.product-media.paper {
  display: grid; grid-template: minmax(0, 1fr) / minmax(0, 1fr);
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2rem) clamp(2rem, 4vw, 2.6rem);
}
.product-media.paper img {
  grid-area: 1 / 1;
  width: 100%; height: 100%; max-width: 100%; max-height: 100%;
  object-fit: contain; object-position: center;
}
.product:hover .product-media.paper img { transform: scale(1.03); }

/* =============================================================
   Nav v2 — sections always visible, logo centered
   ============================================================= */
.nav-inner {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem); height: 80px;
}
.nav-side { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.2rem); font-size: .9rem; color: var(--ink-2); }
.nav-left { justify-content: flex-end; }
.nav-right { justify-content: flex-start; }
.nav-side a { position: relative; white-space: nowrap; transition: color .3s; }
.nav-side a:not(.nav-wa)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px;
  background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease-out);
}
.nav-side a:hover, .nav-side a[aria-current] { color: var(--ink); }
.nav-side a:hover::after, .nav-side a[aria-current]::after { transform: scaleX(1); }
.nav .brand { justify-self: center; }
.nav .brand img { width: 44px; height: 44px; }
.nav-wa { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line-2); margin-left: auto; }
.nav-wa svg { width: 16px; height: 16px; fill: currentColor; }
.nav-wa:hover { border-color: var(--ink); }

/* phones & small tablets: logo on top, sections in one row below */
@media (max-width: 859px) {
  .nav-inner {
    grid-template-columns: 1fr 1fr; grid-template-areas: "brand brand" "left right";
    height: auto; padding-block: .7rem .6rem; row-gap: .55rem; column-gap: 1rem;
  }
  .nav .brand { grid-area: brand; }
  .nav .brand img { width: 38px; height: 38px; }
  .nav-left { grid-area: left; }
  .nav-right { grid-area: right; }
  .nav-side { font-size: .8rem; gap: .9rem; }
  .nav-wa { display: none; }
  html { scroll-padding-top: 110px; }
}
@media (max-width: 539px) {
  .nav-inner { grid-template-columns: 1fr; grid-template-areas: "brand" "links"; }
  .nav-left, .nav-right { grid-area: auto; }
  .nav-inner { display: flex; flex-wrap: wrap; justify-content: center; }
  .nav .brand { flex: 0 0 100%; display: flex; justify-content: center; }
  .nav-side { gap: .8rem; font-size: .78rem; }
  .nav-left, .nav-right { justify-content: center; }
}
@media (max-width: 539px) {
  .nav .brand { order: -1; margin-bottom: .1rem; }
  .nav-inner { row-gap: .35rem; column-gap: .8rem; }
  .hero { padding-top: 150px; }
}

/* Full logo in the top bar */
.nav .brand img { width: auto; height: 64px; transition: height .5s var(--ease-out), transform .8s var(--ease-out); }
.nav.is-scrolled .brand img { height: 52px; }
.nav .brand:hover img { transform: none; }
.nav-inner { height: 96px; }
.hero { padding-top: 150px; }
.hero-sub { margin-top: 0; }
@media (max-width: 859px) {
  .nav-inner { height: auto; }
  .nav .brand img, .nav.is-scrolled .brand img { height: 50px; }
}
@media (max-width: 539px) {
  .hero { padding-top: 170px; }
}
@media (min-width: 540px) and (max-width: 859px) {
  .nav .brand img, .nav.is-scrolled .brand img { height: 60px; }
}

/* Hero: content centered in the free space under the menu (no big gap) */
.hero { justify-content: flex-start; padding-top: 170px; }
.hero-content {
  flex: 1; display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding-block: clamp(1.5rem, 4vh, 3rem);
}
.hero-sub { font-size: clamp(1.1rem, 1.7vw, 1.45rem); max-width: 50ch; color: var(--ink); opacity: .88; }
@media (max-width: 859px) { .hero { padding-top: 150px; } }
@media (max-width: 539px) { .hero { padding-top: 165px; } .hero-content { justify-content: flex-start; padding-top: 2rem; } }
.hero { padding-top: 185px; }
.hero-content { justify-content: flex-start; padding-top: clamp(1rem, 3vh, 2rem); }
@media (max-width: 859px) { .hero { padding-top: 160px; } }
@media (max-width: 539px) { .hero { padding-top: 150px; } }

/* Gallery captions: hidden until hover (desktop); shown in the enlarged view */
.tile::after { opacity: 0; transition: opacity .6s var(--ease-out); }
.tile-cap { opacity: 0; transform: translateY(10px); }
.tile:hover::after, .tile:focus-visible::after { opacity: 1; }
.tile:hover .tile-cap, .tile:focus-visible .tile-cap { opacity: 1; transform: none; }
.lightbox-cap { margin-top: .9rem; text-align: center; font-family: var(--mono); font-size: .8rem; color: var(--ink-2); }
.lightbox-cap:empty { display: none; }

/* Nav on phones/tablets: same layout as desktop — sections left & right, logo in the middle */
@media (max-width: 859px) {
  .nav-inner {
    display: grid !important; grid-template-columns: 1fr auto 1fr !important; grid-template-areas: none !important;
    align-items: center; height: auto; padding-block: .6rem; column-gap: clamp(.6rem, 3vw, 1.6rem); row-gap: 0;
  }
  .nav .brand, .nav-left, .nav-right { grid-area: auto !important; order: 0 !important; flex: none; margin: 0; }
  .nav .brand img, .nav.is-scrolled .brand img { height: 58px; }
  .nav-side { flex-direction: column; gap: .3rem; font-size: .76rem; line-height: 1.25; }
  .nav-left { align-items: flex-end; text-align: right; }
  .nav-right { align-items: flex-start; text-align: left; }
  .nav-side a:not(.nav-wa)::after { bottom: -2px; }
  .nav-wa { display: none; }
  .hero { padding-top: 130px; }
  html { scroll-padding-top: 90px; }
}
@media (max-width: 539px) {
  .nav .brand img, .nav.is-scrolled .brand img { height: 52px; }
  .nav-side { font-size: .72rem; }
  .hero { padding-top: 120px; }
}

/* Phones/tablets: links side by side (one row per side), logo in the middle */
.lbl-short { display: none; }
@media (max-width: 859px) {
  .nav-side { flex-direction: row; flex-wrap: nowrap; gap: clamp(.45rem, 2.2vw, 1.1rem); font-size: clamp(.64rem, 2.6vw, .82rem); }
  .nav-left { justify-content: flex-end; }
  .nav-right { justify-content: flex-start; }
  .nav-inner { padding-inline: clamp(.5rem, 3vw, 1.5rem); column-gap: clamp(.45rem, 2.4vw, 1.4rem); }
  .nav .brand img, .nav.is-scrolled .brand img { height: clamp(38px, 11vw, 56px); }
}
@media (max-width: 639px) {
  .lbl-long { display: none; }
  .lbl-short { display: inline; }
}
.nav .brand { flex-shrink: 0; }
.nav .brand img { max-width: none; aspect-ratio: 1000 / 605; }
@media (max-width: 359px) {
  .nav-inner { padding-inline: .4rem; column-gap: .35rem; }
  .nav-side { gap: .4rem; font-size: .6rem; letter-spacing: -0.01em; }
  .nav .brand img, .nav.is-scrolled .brand img { height: 34px; }
}
@media (max-width: 859px) {
  .nav-inner { grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important; }
}
@media (max-width: 419px) {
  .nav-inner { padding-inline: .5rem; column-gap: .5rem; }
  .nav-side { gap: .5rem; font-size: .66rem; letter-spacing: -0.005em; }
  .nav .brand img, .nav.is-scrolled .brand img { height: 38px; }
}
@media (max-width: 359px) {
  .nav-inner { padding-inline: .3rem; column-gap: .3rem; }
  .nav-side { gap: .32rem; font-size: .56rem; letter-spacing: -0.01em; }
  .nav .brand img, .nav.is-scrolled .brand img { height: 32px; }
}
@media (min-width: 360px) and (max-width: 389px) {
  .nav-side { font-size: .63rem; gap: .45rem; }
  .nav-inner { column-gap: .45rem; }
}

/* Hero eyebrow centered */
.hero-content .eyebrow { align-self: center; justify-content: center; text-align: center; }
@media (max-width: 639px) { .hero-content .eyebrow .dot { display: none; } }
.nw { white-space: nowrap; }
.eyebrow-sep { white-space: pre; }
@media (max-width: 639px) {
  .hero-content .eyebrow { flex-direction: column; gap: .35rem; }
  .eyebrow-sep { display: none; }
}

/* Hero photo centered (room corner in the middle of the screen) */
.hero-media { inset: 0; }
.hero-media img { height: 100%; object-position: 52% 50%; }
/* Guitar centered horizontally */
.hero-media img { object-position: 58% 50%; }
@media (max-aspect-ratio: 3/4) { .hero-media img { object-position: 55% 50%; } }
/* Room corner centered */
.hero-media img { object-position: 55% 50%; }
@media (max-aspect-ratio: 3/4) { .hero-media img { object-position: 53.3% 50%; } }

/* Colombian flag in the hero stats */
.stat-flag { display: flex; align-items: center; height: clamp(1.6rem, 3vw, 2.4rem); }
.stat-flag svg { height: 100%; width: auto; border-radius: 3px; box-shadow: 0 0 0 1px rgba(255,255,255,.18), 0 6px 18px -6px rgba(0,0,0,.6); }

/* Top-bar logo: lower it so the circle's center lines up with the menu words */
.nav .brand img { aspect-ratio: 1000 / 590; transform: translateY(18.2%); }
.nav .brand:hover img { transform: translateY(18.2%); }
@media (max-width: 859px) { .nav-inner { padding-bottom: 1rem; } }

/* =============================================================
   Before/after video (section 04)
   ============================================================= */
.demo { position: sticky; top: 120px; display: grid; justify-items: center; gap: 1rem; }
.demo-frame {
  position: relative; width: min(100%, calc(78vh * 9 / 16)); max-width: 440px; aspect-ratio: 9 / 16;
  border-radius: var(--radius); overflow: hidden; background: #000;
  border: 1px solid var(--line-2);
  box-shadow: 0 30px 80px -30px rgba(124,200,255,.35), 0 0 0 1px rgba(255,255,255,.04);
}
.demo-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.demo-sound {
  position: absolute; left: 50%; bottom: 1rem; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .65rem 1.1rem; border-radius: 999px; font-size: .88rem; font-weight: 500;
  color: var(--bg); background: rgba(236,234,230,.92);
  box-shadow: 0 10px 30px -10px rgba(0,0,0,.6);
  transition: background-color .4s, transform .5s var(--ease-out);
}
.demo-sound:hover { background: #fff; transform: translateX(-50%) translateY(-2px); }
.demo-sound svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.demo-sound svg path:first-child { fill: currentColor; stroke: none; }
.demo-sound .ic-on { display: none; }
.has-sound .demo-sound .ic-on { display: block; }
.has-sound .demo-sound .ic-off { display: none; }
.has-sound .demo-sound { background: rgba(10,12,16,.72); color: var(--ink); border: 1px solid var(--line-2); }
.demo-cap { font-family: var(--mono); font-size: .74rem; color: var(--muted); text-align: center; max-width: 40ch; }
@media (max-width: 959px) { .demo { position: static; } .demo-frame { width: min(100%, 360px); } }

/* "Activa el sonido" caption with a small equalizer animation */
.demo-cap { display: inline-flex; align-items: center; gap: .6rem; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-2); transition: opacity .5s var(--ease-out); }
.eq { display: inline-flex; align-items: flex-end; gap: 2px; height: 14px; }
.eq i { width: 3px; height: 100%; border-radius: 2px; background: var(--accent); transform-origin: bottom; animation: eq 1.1s ease-in-out infinite; }
.eq i:nth-child(2) { animation-delay: -.3s; animation-duration: .9s; }
.eq i:nth-child(3) { animation-delay: -.6s; animation-duration: 1.2s; }
.eq i:nth-child(4) { animation-delay: -.15s; animation-duration: .8s; }
@keyframes eq { 0%, 100% { transform: scaleY(.25); } 50% { transform: scaleY(1); } }
.has-sound .demo-cap { opacity: 0; }
@media (prefers-reduced-motion: reduce) { .eq i { animation-duration: 2.4s; } }

/* Menu words aligned with the center of the AP circle (offset set by main.js) */
.nav .brand img, .nav .brand:hover img { transform: none; }
.nav-side { transform: translateY(var(--nav-shift, 0px)); transition: transform .5s var(--ease-out), color .3s; }
@media (max-width: 859px) { .nav-inner { padding-bottom: .6rem; } }

/* =============================================================
   Header v3 — only the AP circle in the middle of the menu;
   full logo back on the homepage
   ============================================================= */
.nav-side { transform: none; }
.nav-inner { height: 76px; }
.nav .brand img, .nav.is-scrolled .brand img { height: 46px; width: 46px; aspect-ratio: 1; transform: none; }
.nav.is-scrolled .brand img { height: 40px; width: 40px; }
@media (max-width: 859px) {
  .nav-inner { height: auto; padding-block: .75rem; }
  .nav .brand img, .nav.is-scrolled .brand img { height: 36px; width: 36px; }
}
@media (max-width: 359px) { .nav .brand img, .nav.is-scrolled .brand img { height: 30px; width: 30px; } }

.hero { padding-top: 130px; }
.hero-content .hero-logo { align-self: center; margin-bottom: clamp(1.4rem, 3vh, 2.2rem); }
.hero-logo img { width: clamp(190px, 24vw, 340px); height: auto; }
@media (max-width: 859px) { .hero { padding-top: 100px; } }
@media (max-width: 539px) { .hero { padding-top: 90px; } .hero-content { padding-top: 1.2rem; } }

/* Hero v4: logo at the top, text + buttons centered and lowered (just above the stats) */
.hero-content { align-items: center; text-align: center; justify-content: flex-start; padding-bottom: clamp(1.8rem, 4vh, 2.8rem); }
.hero-content .hero-sub { margin-top: auto; margin-inline: auto; max-width: 56ch; text-align: center; }
.hero-content .hero-actions { justify-content: center; margin-top: 1.8rem; }
@media (max-width: 539px) { .hero-content .hero-actions { flex-direction: column; align-items: center; } }

/* Hero v5: logo centered; text + buttons left-aligned, still low (just above the stats) */
.hero-content { align-items: stretch; text-align: left; }
.hero-content .hero-logo { align-self: center; }
.hero-content .hero-sub { margin-inline: 0; text-align: left; align-self: flex-start; }
.hero-content .hero-actions { justify-content: flex-start; align-self: flex-start; }
@media (max-width: 539px) { .hero-content .hero-actions { align-items: flex-start; } }

/* =============================================================
   Docking logo (homepage): hero circle → menu slot on scroll
   ============================================================= */
.hero-logo { display: grid; justify-items: center; width: clamp(190px, 24vw, 340px); }
.hero-logo .hero-mark { width: 37.4%; height: auto; }
.hero-logo .hero-wordmark { width: 100%; height: auto; margin-top: 6.8%; }
.hero-content .hero-logo img { filter: none; }
.nav .brand img, .nav.is-scrolled .brand img { height: 46px; width: 46px; }
@media (max-width: 859px) { .nav .brand img, .nav.is-scrolled .brand img { height: 36px; width: 36px; } }
@media (max-width: 359px) { .nav .brand img, .nav.is-scrolled .brand img { height: 30px; width: 30px; } }

.dock-logo { position: fixed; left: 0; top: 0; z-index: 60; transform-origin: 0 0; will-change: transform; display: block; }
.dock-logo img { display: block; height: auto; max-width: none; filter: drop-shadow(0 0 24px rgba(0,0,0,.45)); }
.dock-logo.is-docked img { filter: none; }
.has-dock .hero-logo .hero-mark { visibility: hidden; }
.has-dock .nav .brand { visibility: hidden; }

/* Menu words spread across the full width (each half evenly distributed around the logo) */
.nav-inner.container { max-width: none; padding-inline: clamp(1rem, 4vw, 4rem); column-gap: clamp(1.5rem, 4vw, 4rem); }
.nav-side, .nav-left, .nav-right { justify-content: space-evenly; gap: .5rem; }
@media (max-width: 859px) {
  .nav-inner.container { padding-inline: clamp(.4rem, 2.5vw, 1.2rem); column-gap: clamp(.5rem, 3vw, 1.2rem); }
  .nav-side, .nav-left, .nav-right { justify-content: space-between; gap: .35rem; }
}
.nav-wa { display: none !important; }

/* Menu in uppercase */
.nav-side a { text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 500; }
@media (max-width: 859px) { .nav-side a { letter-spacing: .06em; font-size: .6rem; } }
@media (max-width: 389px) { .nav-side a { letter-spacing: .03em; font-size: .54rem; } }
@media (max-width: 359px) { .nav-side a { letter-spacing: 0; font-size: .48rem; } }
@media (max-width: 859px) { .nav-side a:last-child { margin-right: -.06em; } }
@media (max-width: 389px) { .nav-side a { letter-spacing: .02em; font-size: .5rem; } .nav-side, .nav-left, .nav-right { gap: .25rem; } }
@media (max-width: 359px) { .nav-side a { letter-spacing: 0; font-size: .44rem; } }
@media (min-width: 390px) and (max-width: 519px) { .nav-side a { letter-spacing: .03em; font-size: .54rem; } .nav-side, .nav-left, .nav-right { gap: .3rem; } }
@media (min-width: 520px) and (max-width: 639px) { .nav-side a { letter-spacing: .04em; font-size: .58rem; } }

/* Long stat label stays on one line */
.stat-long { white-space: nowrap; }
@media (max-width: 719px) { .stat-long { font-size: min(1.6rem, 4.6vw) !important; letter-spacing: -0.035em; } }

/* Accent palette: white → ice blue (no violet) */
.section-title em, .manifesto-title em, .contact-title em, .title em {
  background: linear-gradient(100deg, #ffffff 0%, #d8efff 40%, #7cc8ff 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.slotline i { background: linear-gradient(180deg, #ffffff, #7cc8ff); }
