/* ──────────────────────────────────────────────────────────
   3SAT — Sky service center · white / deep-violet alternation
   Type:  Calibri (system on Windows) → Carlito (free clone) → Open Sans
   Mono:  JetBrains Mono (technical labels, numerals)
   Brand: Sky gradient — yellow → pink → magenta → violet → blue
          (palette sampled from the 3sat house logo)
   ────────────────────────────────────────────────────────── */

:root {
  /* surfaces — white + Sky deep-violet (replaces cream/ink) */
  --cream:        #ffffff;
  --cream-2:      #f6f3ff;
  --cream-line:   rgba(21, 16, 58, .12);
  --cream-line-2: rgba(21, 16, 58, .06);
  --ink:          #15103a;
  --ink-2:        #1c1648;
  --ink-3:        #2a1f60;
  --ink-line:     rgba(255, 255, 255, .16);
  --ink-line-2:   rgba(255, 255, 255, .07);

  /* type colors */
  --on-cream:        #15103a;
  --on-cream-soft:   #3a3262;
  --on-cream-mute:   #6f6989;
  --on-ink:          #ffffff;
  --on-ink-soft:     #d8d3ee;
  --on-ink-mute:     #918bb0;

  /* brand — sampled directly from assets/logo/house.jpg */
  --c-yellow:  #fcbd53;
  --c-orange:  #f47a5a;
  --c-red:     #ef4373;   /* hot pink */
  --c-red-deep:#d61b30;
  --c-magenta: #ea42a0;
  --c-violet:  #7c44a9;
  --c-blue:    #1d91de;
  --c-deep-blue:#1d2973;  /* marquee navy, sampled from the 3sat logotype */
  --accent:    var(--c-blue);

  --grad: linear-gradient(118deg,
            var(--c-yellow)  0%,
            var(--c-red)    28%,
            var(--c-magenta) 52%,
            var(--c-violet)  76%,
            var(--c-blue)   100%);

  /* type families — Calibri-style classic sans */
  --display: "Calibri", "Carlito", "Open Sans", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", sans-serif;
  --sans:    "Calibri", "Carlito", "Open Sans", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", sans-serif;
  --mono:    "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* layout */
  --maxw:   1280px;
  --pad:    clamp(20px, 4vw, 64px);
  --radius: 6px;
  --ease:   cubic-bezier(.2, .8, .2, 1);
  --topbar-h: 68px;
}

/* ───────── reset ───────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--topbar-h) + 12px);
}
body {
  font-family: var(--sans);
  font-feature-settings: "ss01","ss02","cv11";
  background: var(--cream);
  color: var(--on-cream);
  line-height: 1.5;
  letter-spacing: -.005em;
  overflow-x: clip;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video, picture { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
::selection { background: var(--c-red); color: var(--cream); }

/* serif italic flourish — uses Fraunces with soft + italic */
.serif, em.serif {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  letter-spacing: -.005em;
}

/* ─────────────────────────────────────────────────────────
   layout shell
   ───────────────────────────────────────────────────────── */
main { padding-top: var(--topbar-h); }

/* alternation surfaces */
.surface-ink {
  background: var(--ink);
  color: var(--on-ink);
}
.surface-cream {
  background: var(--cream);
  color: var(--on-cream);
}

/* container */
.shell {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* ─────────────────────────────────────────────────────────
   topbar
   ───────────────────────────────────────────────────────── */
.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--topbar-h);
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--cream-line-2);
  transition: transform .45s var(--ease), background .35s ease, border-color .3s ease, color .35s ease;
}
/* Sky gradient hairline at the top of the page */
.topbar::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--grad);
  z-index: 1;
}
.topbar.is-pinned {
  background: rgba(255, 255, 255, .98);
  border-bottom-color: var(--cream-line);
  box-shadow: 0 6px 24px rgba(21, 16, 58, .06);
}
.topbar.is-hidden { transform: translateY(-110%); }
.topbar.is-on-ink {
  background: rgba(21, 16, 58, .85);
  border-bottom-color: var(--ink-line-2);
  color: var(--on-ink);
}
.topbar.is-on-ink.is-pinned {
  background: rgba(21, 16, 58, .95);
  border-bottom-color: var(--ink-line);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .25);
}

.topbar__inner {
  height: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
}

.topbar__brand {
  display: inline-flex; align-items: center; gap: 12px;
  justify-self: start;
}
.topbar__wordmark {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -.045em;
  color: var(--c-deep-blue);
}
.topbar.is-on-ink .topbar__wordmark {
  color: #fff;
}

.topbar__nav {
  display: flex;
  gap: clamp(12px, 1.8vw, 26px);
  justify-self: center;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}
/* Tablet (1024-1200px): 8 items get tight — shrink type, drop gap further */
@media (min-width: 1025px) and (max-width: 1200px) {
  .topbar__nav { gap: 12px; font-size: 13px; }
  .topbar__nav a { padding: 6px 2px; }
}
.topbar__nav a {
  position: relative;
  padding: 6px 0;
  color: currentColor;
  opacity: .75;
  transition: opacity .25s ease;
}
.topbar__nav a:hover,
.topbar__nav a.is-active { opacity: 1; }
.topbar__nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--c-red);
  transition: right .35s var(--ease);
}
.topbar__nav a:hover::after { right: 30%; }
.topbar__nav a.is-active::after { right: 0; }
.topbar.is-on-ink .topbar__nav a.is-active::after,
.topbar.is-on-ink .topbar__nav a:hover::after { background: var(--c-red); }

.topbar__right {
  display: inline-flex; align-items: center; gap: 12px;
  justify-self: end;
}
.topbar__cta {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13.5px;
  letter-spacing: -.005em;
  color: var(--cream);
  background: var(--ink);
  padding: 11px 18px;
  border-radius: 999px;
  transition: background .3s ease, transform .3s ease, color .3s ease;
}
.topbar__cta:hover { background: var(--c-red); color: var(--cream); transform: translateY(-1px); }
.topbar.is-on-ink .topbar__cta { background: var(--cream); color: var(--ink); }
.topbar.is-on-ink .topbar__cta:hover { background: var(--c-red); color: var(--cream); }
.topbar__cta .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #34d27a;
  box-shadow: 0 0 0 0 rgba(52, 210, 122, .6);
  animation: ctaDot 2s infinite;
}
@keyframes ctaDot {
  0%,100% { box-shadow: 0 0 0 0 rgba(52, 210, 122, .6); }
  50%     { box-shadow: 0 0 0 7px rgba(52, 210, 122, 0); }
}

.topbar__burger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--cream-line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .6);
  position: relative;
  cursor: pointer;
  transition: background .25s, border-color .25s, transform .25s var(--ease);
}
.topbar__burger:hover { background: rgba(255, 255, 255, .9); border-color: var(--c-blue); }
.topbar__burger:active { transform: scale(.96); }
.topbar.is-on-ink .topbar__burger {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .25);
}
.topbar__burger span {
  position: absolute; left: 12px; right: 12px; height: 2px;
  background: currentColor; border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s ease, top .35s var(--ease);
}
.topbar__burger span:nth-child(1) { top: 15px; }
.topbar__burger span:nth-child(2) { top: 21px; }
.topbar__burger span:nth-child(3) { top: 27px; }
.topbar__burger.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.topbar__burger.is-open span:nth-child(2) { opacity: 0; }
.topbar__burger.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* Brand area: house logo + "3sat" wordmark at the same baseline.
   Tokens drive the size so the two marks always stay locked in proportion + on mobile. */
:root {
  --brand-h: 34px;       /* topbar mark height */
  --brand-h-lg: 58px;    /* footer mark height */
}

/* 3sat house mark — real artwork from assets/logo/house.png
   (.webp is auto-served by the .htaccess rewrite when supported).
   The artwork has a small optical lean; rotate(2.2deg) lifts the
   bottom-left and drops the bottom-right so it reads as plumb. */
.brand-mark {
  display: inline-block;
  height: var(--brand-h);
  width: calc(var(--brand-h) * 0.917);  /* match the artwork's 943/1028 ratio */
  background: url("assets/logo/house.png") center/contain no-repeat;
  flex-shrink: 0;
  transform: rotate(2.2deg);
  transform-origin: 50% 55%;
  transition: transform .25s var(--ease);
}
.brand-mark--lg {
  height: var(--brand-h-lg);
  width: calc(var(--brand-h-lg) * 0.917);
}
.topbar__brand:hover .brand-mark { transform: rotate(2.2deg) scale(1.05); }
.foot__logo-link:hover .brand-mark { transform: rotate(2.2deg) scale(1.05); }

/* House mark + "3sat" wordmark — share the same BOTTOM line,
   so the baseline of "3sat" lines up with the base of the house. */
.topbar__brand {
  display: inline-flex;
  align-items: flex-end;
  gap: 10px;
}
.topbar__wordmark {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(24px, 2vw, 28px);
  letter-spacing: -.045em;
  color: var(--c-deep-blue);
  /* line-height shrinks the text box to cap-height so the
     baseline sits at the box bottom — flex-end then visually
     aligns "3sat" with the bottom edge of the house. */
  line-height: .78;
}
.foot__logo-link {
  display: inline-flex;
  align-items: flex-end;
  gap: 14px;
  margin-bottom: 22px;
}
.foot__wordmark {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(36px, 3.4vw, 44px);
  letter-spacing: -.045em;
  color: var(--c-deep-blue);
  /* matches the topbar wordmark — line-height shrunk to cap-height
     so flex-end aligns the baseline with the bottom of the house. */
  line-height: .78;
}

@media (max-width: 900px) {
  :root { --brand-h-lg: 50px; }
}
@media (max-width: 640px) {
  :root { --brand-h: 30px; --brand-h-lg: 46px; }
  .topbar__brand { gap: 8px; }
  .foot__logo-link { gap: 12px; }
}
@media (max-width: 380px) {
  :root { --brand-h: 28px; --brand-h-lg: 42px; }
}

/* ─────────────────────────────────────────────────────────
   mobile drawer
   ───────────────────────────────────────────────────────── */
.drawer {
  position: fixed; inset: 0; z-index: 49;
  background: var(--cream);
  display: flex; flex-direction: column;
  padding: calc(var(--topbar-h) + 16px) var(--pad) max(20px, env(safe-area-inset-bottom));
  /* Allow content to scroll if the menu is taller than the viewport */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  opacity: 0; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .3s ease, transform .35s var(--ease);
}
/* subtle Sky-gradient hairline along the top of the drawer */
.drawer::before {
  content: "";
  position: sticky;
  top: 0;
  height: 2px;
  background: var(--grad);
  margin-bottom: 8px;
  flex-shrink: 0;
}
.drawer.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }

.drawer__nav {
  display: grid;
  gap: 0;
  /* push the foot section to the bottom when content is short */
  flex: 1 1 auto;
  align-content: start;
}
.drawer__nav a {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(22px, 5.4vw, 32px);
  letter-spacing: -.02em;
  color: var(--on-cream);
  padding: 14px 4px;
  border-bottom: 1px solid var(--cream-line-2);
  transition: color .25s, padding-left .25s var(--ease), background .2s;
}
.drawer__nav a::after {
  content: "→";
  font-family: var(--mono);
  font-weight: 400;
  font-size: 16px;
  color: var(--on-cream-mute);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .25s, transform .25s var(--ease), color .25s;
}
.drawer__nav a:hover,
.drawer__nav a:focus-visible {
  color: var(--c-blue);
  padding-left: 10px;
  outline: none;
}
.drawer__nav a:hover::after,
.drawer__nav a:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
  color: var(--c-blue);
}
.drawer__nav a:last-of-type { border-bottom: none; }
.drawer__num {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .14em;
  background: var(--grad);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  align-self: center;
}
.drawer__foot {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 20px;
  margin-top: 16px;
  border-top: 1px solid var(--cream-line-2);
  flex-shrink: 0;
}
.drawer__cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--grad);
  color: #fff;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: -.005em;
  box-shadow: 0 8px 22px -8px rgba(140, 47, 255, .55);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.drawer__cta:hover { transform: translateY(-1px); }
.drawer__cta .dot { background: #25d366; }
.drawer__loc {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--on-cream-mute);
}

/* short / small phones — make the drawer always fit */
@media (max-height: 700px) {
  .drawer__nav a {
    font-size: clamp(18px, 4.6vw, 24px);
    padding: 10px 4px;
  }
  .drawer__foot { padding-top: 14px; margin-top: 10px; }
}
@media (max-width: 480px) {
  .drawer__nav a { grid-template-columns: 32px 1fr auto; gap: 10px; }
  .drawer__foot { gap: 10px; }
  .drawer__cta { padding: 10px 18px; font-size: 12.5px; }
}

/* ─────────────────────────────────────────────────────────
   scroll progress
   ───────────────────────────────────────────────────────── */
.progress-bar {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; z-index: 60;
  background: transparent;
  pointer-events: none;
}
.progress-bar__fill {
  height: 100%; width: 0;
  background: var(--c-red);
  transition: width .08s linear;
}

/* ─────────────────────────────────────────────────────────
   HERO  — cream surface, editorial composition
   ───────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: var(--cream);
  padding: var(--topbar-h) 0 clamp(20px, 3vh, 36px);
  overflow: hidden;
}
.hero::before {
  /* Sky-gradient atmospheric wash — visibly Sky-aligned */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(48% 42% at 92% 4%,  rgba(255, 122, 0,  .22), transparent 65%),
    radial-gradient(40% 45% at 8% 96%,  rgba(45,  109, 255, .18), transparent 70%),
    radial-gradient(36% 36% at 50% 50%, rgba(140, 47,  255, .07), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero__inner { position: relative; z-index: 1; }
.hero__lead, .hero__figure { position: relative; z-index: 1; }
.hero__inner {
  position: relative;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: clamp(20px, 3vw, 56px);
  align-items: stretch;
  /* Fit the first viewport — svh accounts for the iOS URL bar.
     No max-height so the column can grow on tiny viewports without clipping. */
  min-height: calc(100svh - var(--topbar-h));
}

.hero__lead {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.6vw, 22px);
  align-self: stretch;
  padding-block: clamp(4px, .8vh, 14px);
}
.hero__meta { margin-top: auto; }

/* hero eyebrow — single clean line */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--on-cream);
  font-feature-settings: "tnum";
}
.hero__eyebrow .pip {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--c-red);
  flex: none;
}
.hero__eyebrow-sep {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: var(--cream-line);
}


.hero__title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(34px, 5vw, 64px);
  line-height: .98;
  letter-spacing: -.035em;
  color: var(--on-cream);
}
/* "Sky" line: now the actual Sky logo image at title scale */
.hero__title .line--xl {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  line-height: .88;
  margin-bottom: clamp(2px, .4vw, 6px);
}
.hero__sky-logo {
  height: clamp(56px, 9.5vw, 128px);
  width: auto;
  display: inline-block;
  vertical-align: baseline;
}
.hero__title .line {
  display: block;
  overflow: hidden;
  padding-bottom: .04em;
}
.hero__title .line span {
  display: inline-block;
  will-change: transform;
  white-space: nowrap;
}
.hero__title .punto--red { color: var(--c-red); }
.hero__title em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 1em;
  letter-spacing: -.02em;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--c-red);
  font-feature-settings: "ss01";
}
.hero__title .punto { color: var(--c-red); }

.hero__lede {
  position: relative;
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.45;
  letter-spacing: -.005em;
  color: var(--on-cream);
  max-width: 44ch;
  padding-left: clamp(14px, 1.4vw, 18px);
  border-left: 2px solid;
  border-image: var(--grad) 1;
}
.hero__lede em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.04em;
  letter-spacing: -.01em;
  color: var(--c-red);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.hero__lede em + em { color: var(--c-red); }

.hero__meta {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--cream-line);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--on-cream-mute);
}
.hero__scroll {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--on-cream-mute);
  transition: color .25s;
}
.hero__scroll:hover { color: var(--on-cream); }
.hero__scroll-track {
  position: relative;
  width: 56px; height: 1px;
  overflow: hidden;
  background: var(--cream-line);
}
.hero__scroll-track::after {
  content: "";
  position: absolute;
  top: 0; left: -22px;
  width: 22px; height: 100%;
  background: linear-gradient(to right, transparent, var(--c-red));
  animation: scrollSlide 2.4s ease-in-out infinite;
}
@keyframes scrollSlide {
  from { left: -22px; }
  to   { left: 100%; }
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -.005em;
  color: #fff;
  background: var(--grad);
  background-size: 200% 100%;
  background-position: 0% 50%;
  padding: 12px 20px;
  border-radius: 999px;
  box-shadow: 0 8px 22px -8px rgba(140, 47, 255, .55);
  transition: background-position .5s var(--ease), transform .25s var(--ease), box-shadow .25s;
}
.hero__cta:hover {
  background-position: 100% 50%;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -10px rgba(255, 122, 0, .6);
}
.hero__cta svg {
  width: 16px;
  height: 16px;
  transition: transform .3s ease;
}
.hero__cta:hover svg {
  transform: translateX(3px);
}
.hero__cta--ghost {
  background: transparent;
  color: var(--on-cream);
  border: 1.5px solid var(--cream-line);
  padding: 12.5px 20px;
}
.hero__cta--ghost:hover {
  background: var(--on-cream);
  color: var(--cream);
  border-color: var(--on-cream);
}

/* compact contact strip beneath the hero CTAs */
.hero__contact {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 16px;
  padding-top: 12px;
  border-top: 1px solid var(--cream-line);
  font-family: var(--sans);
  font-size: 13.5px;
  color: var(--on-cream-soft);
}
.hero__contact li { display: flex; }
.hero__contact a,
.hero__contact-locale {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  transition: color .25s ease;
}
.hero__contact a:hover { color: var(--c-blue); }
.hero__contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--c-blue);
}
.hero__contact li:nth-child(2) svg { color: #25d366; }
.hero__contact li:nth-child(3) svg { color: var(--c-magenta); }
.hero__contact-locale {
  color: var(--on-cream-mute);
  font-size: 12.5px;
  letter-spacing: .005em;
}

.hero__year {
  font-feature-settings: "tnum";
}
.hero__locale {
  display: none;
}
@media (min-width: 720px) {
  .hero__locale {
    display: inline;
    color: var(--on-cream-soft);
  }
}

/* hero figure — photo, dominant on the right */
.hero__figure {
  position: relative;
  align-self: start;
  width: 100%;
  /* Lift slightly above the lead column for an editorial offset */
  margin-top: clamp(-32px, -2.4vh, -8px);
  height: calc(100svh - var(--topbar-h) + clamp(8px, 2.4vh, 32px));
  max-height: 760px;
  min-height: 0;
  border-radius: var(--radius);
  background: var(--ink);
  overflow: hidden;
  box-shadow:
    0 1px 0 0 rgba(21, 16, 58, .04),
    0 32px 60px -28px rgba(21, 16, 58, .35),
    0 12px 24px -14px rgba(21, 16, 58, .22);
}
.hero__figure img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 28%;
  filter: contrast(1.04) saturate(1.06);
}
.hero__figure::before {
  /* subtle duotone color overlay — warms the corners with brand colors */
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(219, 35, 58, .22) 0%, transparent 38%, transparent 62%, rgba(45, 109, 255, .18) 100%);
  mix-blend-mode: overlay;
}
.hero__figure::after {
  /* legibility gradient for the bottom caption */
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 55%, rgba(21, 16, 58, .55) 100%);
  pointer-events: none;
}

/* subtle editorial index mark on the photo */
.hero__figure::before,
.hero__figure::after {
  content: "";
  position: absolute;
  width: 22px; height: 22px;
  z-index: 2;
  pointer-events: none;
}
.hero__figure::before {
  top: 14px; left: 14px;
  border-top: 1px solid rgba(255, 255, 255, .55);
  border-left: 1px solid rgba(255, 255, 255, .55);
}
.hero__figure::after {
  bottom: 14px; right: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .55);
  border-right: 1px solid rgba(255, 255, 255, .55);
}

.hero__index {
  position: absolute;
  left: 22px; bottom: 22px;
  z-index: 3;
  display: inline-flex; align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cream);
}
.hero__index-num {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  color: var(--c-red);
  text-transform: none;
}
.hero__index-rule {
  display: inline-block;
  width: 28px; height: 1px;
  background: rgba(255, 255, 255, .55);
}
.hero__index-text { color: rgba(255, 255, 255, .9); }

/* ─────────────────────────────────────────────────────────
   MARQUEE — deep royal-blue surface (sampled from the 3sat
   wordmark photo). Provider logos sit inline with the names.
   ───────────────────────────────────────────────────────── */
.marquee {
  background: var(--c-deep-blue);
  color: #fff;
  border-block: 1px solid rgba(255, 255, 255, .12);
  overflow: hidden;
  position: relative;
}
.marquee::before,
.marquee::after {
  content: "";
  position: absolute; top: 0; bottom: 0;
  width: clamp(48px, 8vw, 120px);
  pointer-events: none;
  z-index: 2;
}
.marquee::before { left: 0;  background: linear-gradient(to right, var(--c-deep-blue), rgba(29,41,115,0)); }
.marquee::after  { right: 0; background: linear-gradient(to left,  var(--c-deep-blue), rgba(29,41,115,0)); }
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: clamp(36px, 4.4vw, 64px);
  white-space: nowrap;
  padding: clamp(14px, 1.8vh, 22px) 0;
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(16px, 2.1vw, 26px);
  letter-spacing: -.012em;
  animation: scroll-x 42s linear infinite;
}
.marquee__track > span {
  display: inline-flex; align-items: center; gap: clamp(36px, 4.4vw, 64px);
}
.marquee__track i {
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .55);
  flex: none;
}
.marquee__track em {
  font-style: italic;
  font-weight: 400;
  color: rgba(255, 255, 255, .82);
  font-family: var(--display);
}
.marquee__track .item,
.marquee__track .item-strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.marquee__track .item { font-weight: 500; color: rgba(255, 255, 255, .92); }
.marquee__track .item-strong { font-weight: 700; letter-spacing: -.018em; }

/* Partner-logo cards — each brand mark sits on a clean white pill
   so its native colours stay legible against the navy surface.
   Files live in assets/logo/partners/{name}.svg.
   When a file is missing the onerror handler replaces the chip
   with the brand name in styled text. */
.marquee .item-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 6px 12px;
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(255,255,255,.18) inset,
              0 6px 18px -8px rgba(0,0,0,.45);
  color: var(--c-deep-blue);
  font-weight: 700;
  letter-spacing: -.015em;
  line-height: 1;
  min-width: 56px;
  height: clamp(30px, 3.4vw, 42px);
}
.marquee .m-logo {
  display: block;
  height: 100%;
  width: auto;
  max-width: clamp(80px, 9vw, 130px);
  object-fit: contain;
}
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────────────────
   SECTION SCAFFOLDING  — shared
   ───────────────────────────────────────────────────────── */
.section {
  position: relative;
  padding: clamp(80px, 12vh, 144px) 0;
}
.section__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.section__head {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "num     kicker"
    "num     title";
  column-gap: clamp(24px, 4vw, 56px);
  row-gap: 8px;
  align-items: end;
  margin-bottom: clamp(40px, 6vh, 80px);
  padding-bottom: clamp(28px, 4vh, 40px);
  border-bottom: 1px solid currentColor;
  border-bottom-color: var(--cream-line);
}
.surface-ink .section__head {
  border-bottom-color: var(--ink-line);
}
.section__head--center {
  grid-template-columns: 1fr;
  grid-template-areas: "num" "kicker" "title";
  text-align: center;
  justify-items: center;
}
.section__head--with-extra {
  grid-template-areas:
    "num     kicker"
    "num     title"
    "extra   extra";
  row-gap: 14px;
}

.num-large {
  grid-area: num;
  font-family: var(--mono);
  font-weight: 700;
  font-size: clamp(64px, 9vw, 132px);
  line-height: .9;
  letter-spacing: -.06em;
  background: var(--grad);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.section__kicker {
  grid-area: kicker;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.section__title {
  grid-area: title;
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1.05;
  letter-spacing: -.035em;
  max-width: 22ch;
  font-variation-settings: "wdth" 92, "opsz" 64;
}
.section__title em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  letter-spacing: -.02em;
}
.surface-cream .section__title em { color: var(--c-red); }
.surface-ink .section__title em { color: var(--c-red); }
.section__title--center { max-width: 18ch; }

/* ─────────────────────────────────────────────────────────
   01  IDENTITÀ  (cream)
   ───────────────────────────────────────────────────────── */
.identita__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}
.identita__copy p {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.6;
  color: var(--on-cream-soft);
  max-width: 56ch;
  margin-bottom: 18px;
}
.identita__copy strong { color: var(--on-cream); font-weight: 600; }
.identita__copy em {
  font-family: var(--display); font-style: italic; font-weight: 500;
  font-variation-settings: "opsz" 24;
  color: var(--on-cream);
}

.identita__stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 36px);
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--cream-line);
}
.identita__stats li { display: grid; gap: 6px; }
.identita__stats .stat {
  font-family: var(--display);
  font-weight: 500;
  font-style: italic;
  font-size: clamp(48px, 6vw, 84px);
  line-height: .85;
  letter-spacing: -.04em;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  color: var(--c-red);
}
.identita__stats .label {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--on-cream-mute);
}

.identita__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
}
.identita__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(.95);
  transition: transform 1.4s var(--ease);
}
.identita__photo:hover img { transform: scale(1.04); }
.identita__photo figcaption {
  position: absolute;
  left: 18px; bottom: 16px;
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--cream);
  background: rgba(21, 16, 58, .58);
  padding: 6px 10px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

/* ─────────────────────────────────────────────────────────
   02  SERVIZI  (ink)
   ───────────────────────────────────────────────────────── */
.servizi {
  background: var(--ink);
  color: var(--on-ink);
}
.servizi .section__title { color: var(--on-ink); }
.servizi .num-large { color: var(--c-red); }

.servizi__intro {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
  color: var(--on-ink-soft);
  max-width: 56ch;
  margin-bottom: clamp(40px, 6vh, 64px);
}
.servizi__intro em {
  font-family: var(--display); font-style: italic; font-weight: 500;
  color: var(--cream);
}

.tier-stack {
  display: grid;
  gap: clamp(16px, 2vw, 24px);
}
.tier {
  display: grid;
  grid-template-columns: minmax(0, 11fr) minmax(0, 9fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(32px, 4vw, 56px);
  border: 1px solid var(--ink-line-2);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .015), rgba(255, 255, 255, 0));
  transition: border-color .4s ease, background .4s ease;
}
.tier:hover { border-color: var(--ink-line); }
.tier--core {
  border-color: transparent;
  background:
    linear-gradient(180deg, var(--ink-2), var(--ink)) padding-box,
    var(--grad) border-box;
  border: 1.5px solid transparent;
  position: relative;
  overflow: hidden;
}
.tier--core::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 80% at 0% 0%, rgba(219, 35, 58, .08), transparent 60%);
  pointer-events: none;
}

.tier__rank {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 22px;
}
.tier__rank::before {
  content: "";
  display: inline-block;
  width: 22px; height: 1px;
  background: var(--c-red);
}
.tier__head {
  display: grid;
  gap: 18px;
  position: relative;
  z-index: 1;
}
.tier__title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(48px, 6.4vw, 92px);
  line-height: .9;
  letter-spacing: -.05em;
  font-variation-settings: "wdth" 90, "opsz" 96;
  color: var(--on-ink);
}
.tier--core .tier__title {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 60px rgba(219, 35, 58, .15);
}
.tier__title .amp {
  font-family: var(--display);
  font-style: italic;
  font-weight: 300;
  font-size: .55em;
  letter-spacing: 0;
  color: var(--on-ink-mute);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
  -webkit-text-fill-color: var(--on-ink-mute);
}
.tier__lede {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(15.5px, 1.2vw, 17.5px);
  line-height: 1.6;
  color: var(--on-ink-soft);
  max-width: 50ch;
}
.tier__lede em {
  font-family: var(--display); font-style: italic; font-weight: 500;
  color: var(--cream);
}

.tier__list {
  list-style: none;
  display: grid;
  gap: 0;
  position: relative;
  z-index: 1;
  align-self: start;
  border-top: 1px solid var(--ink-line-2);
}
.tier__list li {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--ink-line-2);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 15.5px;
  color: var(--on-ink);
  transition: color .3s ease, padding .3s var(--ease);
}
.tier__list li:hover {
  padding-left: 8px;
  color: var(--cream);
}
.tier__list .ic {
  display: grid; place-items: center;
  width: 24px; height: 24px;
  color: var(--c-red);
}
.tier__list .ic svg { width: 18px; height: 18px; }
.tier__list .meta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--on-ink-mute);
}

.tier-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 24px);
}
.tier-pair .tier {
  grid-template-columns: 1fr;
  gap: clamp(20px, 3vw, 36px);
}
.tier-pair .tier__title {
  font-size: clamp(36px, 4.4vw, 56px);
}

/* ─────────────────────────────────────────────────────────
   03  METODO  (cream)
   ───────────────────────────────────────────────────────── */
.metodo__flow {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.6vw, 40px);
  position: relative;
  counter-reset: step;
}
.metodo__flow::before {
  content: "";
  position: absolute;
  left: 4%; right: 4%; top: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-red) 18%, var(--c-violet) 50%, var(--c-blue) 82%, transparent);
  opacity: .55;
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  padding-top: 80px;
}
.step__node {
  position: absolute;
  top: 0; left: 0;
  width: 60px; height: 60px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid var(--cream-line);
  color: var(--on-cream);
  transition: transform .4s var(--ease), border-color .4s ease, background .4s ease;
}
.step__node svg { width: 26px; height: 26px; }
.step:hover .step__node {
  transform: scale(1.05);
  border-color: var(--c-red);
  color: var(--c-red);
}
.step__rank {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-red);
}
.step__title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(20px, 1.5vw, 24px);
  letter-spacing: -.025em;
  color: var(--on-cream);
}
.step__body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--on-cream-soft);
  max-width: 36ch;
}
.step__detail {
  margin-top: 4px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--on-cream-mute);
}

/* ─────────────────────────────────────────────────────────
   04  STORES  (ink)
   ───────────────────────────────────────────────────────── */
.stores {
  background: var(--ink);
  color: var(--on-ink);
}
.stores .section__title { color: var(--on-ink); }
.stores .section__head { border-bottom-color: var(--ink-line); }

.stores__index {
  grid-area: extra;
  list-style: none;
  display: flex;
  gap: clamp(16px, 2vw, 32px);
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--on-ink-soft);
}
.stores__index a { transition: color .25s; }
.stores__index a:hover { color: var(--c-red); }
.stores__index span { color: var(--on-ink-mute); margin-right: 6px; }

/* When the stores index sits on the cream page-hero (punti-vendita
   page header), force the locality titles to read black. */
.page-hero .stores__index,
.page-hero .stores__index a,
.page-hero .stores__index span { color: #000; }
.page-hero .stores__index a:hover { color: var(--c-deep-blue); }

.store {
  position: relative;
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  margin-top: clamp(48px, 7vh, 88px);
  padding-top: clamp(32px, 5vh, 56px);
  border-top: 1px solid var(--ink-line);
}
.store:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.store__caption {
  display: flex; flex-wrap: wrap; align-items: baseline;
  gap: clamp(14px, 2vw, 28px);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--on-ink-mute);
}
.store__roman {
  font-family: var(--display); font-style: italic;
  font-size: 22px;
  font-weight: 300;
  color: var(--c-red);
  letter-spacing: 0;
  text-transform: none;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.store__city {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--cream);
  text-transform: none;
  font-variation-settings: "wdth" 90, "opsz" 64;
}
.store__city small {
  font-size: .5em; color: var(--on-ink-mute); margin-left: 6px;
  letter-spacing: -.02em;
}
.store__type { letter-spacing: .14em; }

.store__hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 16 / 9;
  background: var(--ink-2);
}
.store__hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(.95);
  transition: transform 1.4s var(--ease);
}
.store__hero:hover img { transform: scale(1.03); }
.store__hero figcaption {
  position: absolute;
  left: 18px; bottom: 16px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--cream);
  background: rgba(21, 16, 58, .65);
  padding: 6px 10px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.store--flag {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 4fr);
  grid-template-areas:
    "cap   cap"
    "hero  copy";
  gap: clamp(24px, 3.5vw, 48px);
}
.store--flag .store__caption { grid-area: cap; }
.store--flag .store__hero    { grid-area: hero; aspect-ratio: 4 / 3; }
.store--flag .store__copy    { grid-area: copy; align-self: stretch; display: flex; flex-direction: column; gap: 24px; }
.store--flag .store__gallery { grid-area: gal; }

.store__copy p {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
  color: var(--on-ink-soft);
  max-width: 50ch;
}
.store__copy em {
  font-family: var(--display); font-style: italic; font-weight: 500;
  color: var(--cream);
}

.store__hours {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: 24px;
  row-gap: 8px;
  font-family: var(--mono);
  font-size: 13px;
  border-top: 1px solid var(--ink-line);
  padding-top: 18px;
  margin-top: auto;
}
.store__hours dt {
  color: var(--on-ink-mute);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: 11px;
  align-self: center;
}
.store__hours dd { color: var(--cream); }

.store__gallery {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: clamp(20px, 3vh, 32px);
}
.store__gallery--four { grid-template-columns: repeat(4, 1fr); }
.store__gallery figure {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink-2);
  cursor: zoom-in;
}
.store__gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(1.04);
  transition: transform 1.2s var(--ease), filter .6s ease;
}
.store__gallery figure:hover img {
  transform: scale(1.06);
  filter: saturate(1.05) contrast(1.06);
}
.store__gallery figcaption {
  position: absolute;
  left: 12px; bottom: 10px;
  font-family: var(--mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--cream);
  opacity: 0;
  transform: translateY(6px);
  transition: .35s;
  background: rgba(21, 16, 58, .7);
  padding: 4px 8px;
  border-radius: 999px;
}
.store__gallery figure:hover figcaption {
  opacity: 1; transform: translateY(0);
}

/* Per-store thumbnail galleries hidden — only the main hero photo
   shows for each location. Placed after all .store__gallery rules
   so this declaration wins the cascade. */
.store__gallery { display: none; }

.store--secondary {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  grid-template-areas:
    "cap   cap"
    "hero  copy";
  gap: clamp(24px, 3.5vw, 48px);
}
.store--secondary .store__caption { grid-area: cap; }
.store--secondary .store__hero    { grid-area: hero; aspect-ratio: 4 / 3; }
.store--secondary .store__copy    { grid-area: copy; display: flex; flex-direction: column; gap: 24px; }
.store--secondary .store__gallery {
  grid-column: 1 / -1;
  margin-top: 12px;
}

/* ── Store without a photo · presented as an info card ── */
.store--info {
  display: grid;
  grid-template-areas:
    "cap"
    "card";
  gap: clamp(20px, 3vw, 32px);
}
.store--info .store__caption { grid-area: cap; }

.info-card {
  grid-area: card;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
  padding: clamp(24px, 3.5vw, 40px);
  border: 1px solid var(--ink-line);
  border-radius: var(--radius);
  background:
    radial-gradient(130% 150% at 0% 0%, rgba(29, 41, 115, .55), transparent 58%),
    var(--ink-2);
  position: relative;
  overflow: hidden;
}
.info-card::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--grad);
}

.info-card__main {
  display: flex; flex-direction: column;
  gap: clamp(18px, 2.4vw, 26px);
  align-items: flex-start;
}
.info-card__lede {
  font-family: var(--sans);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.6;
  color: var(--on-ink-soft);
  max-width: 44ch;
}
.info-card__lede em {
  font-family: var(--display); font-style: italic; font-weight: 500;
  color: var(--cream);
}

.info-card__addr {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 12px 18px 12px 12px;
  border: 1px solid var(--ink-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .03);
  transition: border-color .25s ease, background .25s ease, transform .25s var(--ease);
}
.info-card__addr:hover {
  border-color: var(--c-blue);
  background: rgba(255, 255, 255, .06);
  transform: translateY(-1px);
}
.info-card__pin {
  width: 42px; height: 42px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--c-deep-blue);
  color: #fff;
}
.info-card__pin svg { width: 20px; height: 20px; }
.info-card__addr-text { display: grid; gap: 3px; }
.info-card__addr-text strong {
  font-family: var(--sans); font-weight: 700; font-size: 15px;
  letter-spacing: -.01em; color: var(--cream);
}
.info-card__addr-text small {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--on-ink-mute);
}

.info-card__hours {
  display: flex; flex-direction: column; gap: 16px;
  padding: clamp(18px, 2vw, 24px);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--ink-line);
}
.info-card__badge {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: .1em; text-transform: uppercase;
  color: #34d27a;
  line-height: 1.4;
}
.info-card__dot {
  width: 8px; height: 8px; flex: none;
  border-radius: 50%;
  background: #34d27a;
  box-shadow: 0 0 0 0 rgba(52, 210, 122, .6);
  animation: ctaDot 2s infinite;
}
.info-card__hours .store__hours {
  border-top: 0; padding-top: 0; margin-top: 0;
}

@media (max-width: 720px) {
  .info-card { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────────────────
   05  PROMOZIONI  (cream)  · horizontal-scroll carousel
   ───────────────────────────────────────────────────────── */
.promozioni { padding-bottom: clamp(60px, 8vh, 96px); }

.promo__rail {
  position: relative;
  margin-top: clamp(28px, 4vh, 44px);
}
.promo__viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(11, 14, 36, .25) transparent;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--pad);
}
.promo__viewport::-webkit-scrollbar { height: 6px; }
.promo__viewport::-webkit-scrollbar-track { background: transparent; }
.promo__viewport::-webkit-scrollbar-thumb {
  background: rgba(11, 14, 36, .22);
  border-radius: 3px;
}

.promo__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(260px, 28vw, 340px);
  gap: clamp(16px, 2vw, 24px);
  padding: 8px var(--pad) 28px;
  /* center cards when total width < viewport */
  justify-content: center;
  min-width: max-content;
}
/* When the track is wider than the viewport, justify-content has no effect
   (track is already as wide as content); justify-content: center stays visually
   inert until the cards collectively fit under viewport width. */

.promo__edge {
  position: absolute;
  top: 8px; bottom: 28px;
  width: clamp(28px, 5vw, 64px);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity .35s ease;
}
.promo__edge--left  { left: 0;  background: linear-gradient(90deg,  var(--cream) 25%, transparent); }
.promo__edge--right { right: 0; background: linear-gradient(270deg, var(--cream) 25%, transparent); }
.promo__rail.has-prev .promo__edge--left  { opacity: 1; }
.promo__rail.has-next .promo__edge--right { opacity: 1; }

/* Side arrows */
.promo__arrow {
  position: absolute;
  top: calc(50% - 16px); /* slight offset to compensate scrollbar gutter */
  transform: translateY(-50%);
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 999px;
  border: 1px solid var(--cream-line);
  background: var(--cream);
  color: var(--on-cream);
  z-index: 3;
  cursor: pointer;
  box-shadow: 0 8px 24px -10px rgba(11, 14, 36, .2);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.promo__arrow svg { width: 20px; height: 20px; }
.promo__arrow:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: transparent;
}
.promo__arrow:active { transform: translateY(-50%) scale(.95); }
.promo__arrow--prev { left: clamp(8px, 1.5vw, 20px); }
.promo__arrow--next { right: clamp(8px, 1.5vw, 20px); }
.promo__rail.has-prev .promo__arrow--prev,
.promo__rail.has-next .promo__arrow--next {
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 640px) {
  .promo__arrow { display: none; }
}

.promo__card {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  color: var(--cream);
  cursor: zoom-in;
  border: 1px solid var(--cream-line-2);
  text-align: left;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  appearance: none;
  font: inherit;
  padding: 0;
}
.promo__card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 0 rgba(11, 14, 36, .04),
    0 24px 48px -24px rgba(11, 14, 36, .35);
}
.promo__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--ink-2);
}
.promo__media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: contrast(1.02);
  transition: transform 1.2s var(--ease);
}
.promo__card:hover .promo__media img { transform: scale(1.04); }
.promo__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(21, 16, 58, .55));
  pointer-events: none;
}
.promo__kind {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(21, 16, 58, .55);
  padding: 5px 9px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.promo__zoom {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 2;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: rgba(21, 16, 58, .55);
  backdrop-filter: blur(6px);
  color: var(--cream);
  transition: background .25s ease;
}
.promo__card:hover .promo__zoom { background: var(--c-red); }
.promo__zoom svg { width: 16px; height: 16px; }
.promo__body {
  display: grid;
  gap: 4px;
  padding: 16px 18px 18px;
}
.promo__title {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -.02em;
  color: var(--cream);
  font-variation-settings: "wdth" 96;
}
.promo__desc {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.45;
  color: var(--on-ink-soft);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.promo__empty {
  grid-column: 1 / -1;
  font-family: var(--mono);
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--on-cream-mute);
  padding: clamp(40px, 8vh, 80px) var(--pad);
  border: 1px dashed var(--cream-line);
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  text-align: center;
  scroll-snap-align: start;
  width: 100%;
}

/* ─────────────────────────────────────────────────────────
   LIGHTBOX
   ───────────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-rows: 1fr;
  place-items: center;
  background: rgba(21, 16, 58, .9);
  backdrop-filter: blur(14px);
  padding: clamp(20px, 4vw, 56px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox__figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 20px;
  max-width: min(720px, 100%);
  max-height: 100%;
  width: 100%;
  align-items: center;
}
.lightbox__img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--ink-2);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .6);
  transform: scale(.96);
  opacity: .6;
  transition: transform .35s var(--ease), opacity .25s ease;
}
.lightbox.is-open .lightbox__img {
  transform: scale(1);
  opacity: 1;
}
.lightbox__cap {
  display: grid;
  gap: 8px;
  text-align: center;
  color: var(--cream);
  padding: 0 8px;
}
.lightbox__title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -.02em;
  font-variation-settings: "wdth" 96;
}
.lightbox__desc {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--on-ink-soft);
  max-width: 56ch;
  margin-inline: auto;
}
.lightbox__pdf {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  margin-top: 4px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease;
}
.lightbox__pdf:hover { background: var(--c-red); color: var(--cream); }
.lightbox__pdf svg { width: 14px; height: 14px; }
.lightbox__pdf[hidden] { display: none; }

.lightbox__close,
.lightbox__nav {
  position: absolute;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 999px;
  background: rgba(21, 16, 58, .85);
  border: 1px solid rgba(255, 255, 255, .28);
  color: #fff;
  cursor: pointer;
  z-index: 110;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .35);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.lightbox__close { top: 20px; right: 20px; }
.lightbox__nav   { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }
.lightbox__close:hover, .lightbox__nav:hover {
  background: var(--c-red);
  border-color: var(--c-red);
}
.lightbox__close svg, .lightbox__nav svg { width: 20px; height: 20px; }
/* Cap the image so the X is never overlapped — on portrait phones it's pinned to fit
   under the 60px close-button gutter. */
.lightbox__figure { margin-top: 0; }

@media (max-width: 640px) {
  .lightbox { padding: 64px 14px 14px; }
  .lightbox__nav { display: none; }
  .lightbox__close {
    top: 12px; right: 12px;
    width: 44px; height: 44px;
  }
  .lightbox__img { max-height: 68vh; }
  .lightbox__title { font-size: 17px; }
  .lightbox__desc  { font-size: 13px; }
}
@media (max-width: 480px) {
  .lightbox { padding: 60px 12px 12px; }
  .lightbox__close { top: 10px; right: 10px; width: 42px; height: 42px; }
  .lightbox__close svg { width: 18px; height: 18px; }
}

/* ─────────────────────────────────────────────────────────
   06  CONTATTI  (cream)
   ───────────────────────────────────────────────────────── */
.contatti__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.contatti__card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid var(--cream-line);
  border-radius: var(--radius);
  background: var(--cream);
  overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s ease, background .4s ease, color .4s ease;
}
.contatti__card:hover {
  transform: translateY(-4px);
  background: var(--ink);
  color: var(--on-ink);
  border-color: transparent;
}
.contatti__card::after {
  content: "→";
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--display);
  font-size: 22px;
  color: var(--on-cream-mute);
  transition: color .4s ease, transform .4s var(--ease);
}
.contatti__card:hover::after {
  color: var(--c-red);
  transform: translate(2px, -2px);
}
.contatti__role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-red);
}
.contatti__big {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.15;
  letter-spacing: -.025em;
  color: inherit;
  font-variation-settings: "wdth" 95;
}
.contatti__hint {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--on-cream-mute);
  transition: color .4s ease;
}
.contatti__card:hover .contatti__hint { color: var(--on-ink-mute); }
.contatti__card:hover .contatti__role { color: var(--c-red); }

/* ─────────────────────────────────────────────────────────
   FOOTER  (ink)
   ───────────────────────────────────────────────────────── */
.foot {
  background: var(--cream);
  color: var(--on-cream);
  border-top: 1px solid var(--cream-line);
  padding: clamp(48px, 7vh, 80px) 0 32px;
  position: relative;
}
/* Sky-gradient hairline above the footer — visual punctuation back to brand */
.foot::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--grad);
}
.foot__inner {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.foot__top {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.6fr);
  gap: clamp(28px, 5vw, 80px);
  padding-bottom: 40px;
  border-bottom: 1px solid var(--cream-line);
}
/* .foot__logo-link + .brand-mark--lg defined in the brand-tokens block above */
.foot__wordmark {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 38px;
  letter-spacing: -.045em;
  color: var(--c-deep-blue);
}
.foot__tag {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--on-cream-soft);
  max-width: 50ch;
}
.foot__tag em {
  font-style: italic; font-weight: 600;
  color: var(--on-cream);
}
.foot__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.foot__cols > div { display: grid; gap: 8px; align-content: start; }
.foot__h {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  margin-bottom: 4px;
}
.foot__cols a {
  font-family: var(--sans);
  font-size: 14.5px;
  color: var(--on-cream-soft);
  transition: color .25s;
  width: fit-content;
}
.foot__cols a:hover { color: var(--c-blue); }
.foot__muted {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--on-cream-mute);
}

.foot__bot {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
  padding-top: 22px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .08em;
  color: var(--on-cream-mute);
}
.foot__signal { display: inline-flex; align-items: end; gap: 3px; }
.foot__signal i {
  width: 4px;
  background: var(--c-red);
  border-radius: 1px;
  animation: bounce 1.4s ease-in-out infinite;
}
.foot__signal i:nth-child(1) { height: 6px;  animation-delay: 0s;    }
.foot__signal i:nth-child(2) { height: 10px; animation-delay: .15s;  }
.foot__signal i:nth-child(3) { height: 14px; animation-delay: .3s;   }
.foot__signal i:nth-child(4) { height: 18px; animation-delay: .45s;  }
@keyframes bounce {
  0%,100% { transform: scaleY(1);  opacity: .85; }
  50%     { transform: scaleY(.4); opacity: .35; }
}

/* ─────────────────────────────────────────────────────────
   reveal animation
   ───────────────────────────────────────────────────────── */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s ease, transform .9s var(--ease);
}
[data-reveal].is-in {
  opacity: 1;
  transform: translateY(0);
}
.js [data-stagger] .line span {
  transform: translateY(110%);
  display: inline-block;
  transition: transform 1.05s var(--ease);
}
[data-stagger].is-in .line:nth-child(1) span { transform: translateY(0); transition-delay: .12s; }
[data-stagger].is-in .line:nth-child(2) span { transform: translateY(0); transition-delay: .24s; }
[data-stagger].is-in .line:nth-child(3) span { transform: translateY(0); transition-delay: .36s; }

/* ─────────────────────────────────────────────────────────
   responsive
   ───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .topbar__inner { grid-template-columns: 1fr auto; gap: 12px; }
  .topbar__nav { display: none; }
  .topbar__cta { display: none; }
  .topbar__burger { display: inline-grid; place-items: center; }

  .hero {
    padding: var(--topbar-h) 0 clamp(28px, 4vh, 48px);
  }
  .hero__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: clamp(20px, 4vw, 36px);
    align-items: stretch;
    min-height: auto;
  }
  /* Image first on mobile/tablet, copy below */
  .hero__figure { grid-row: 1; }
  .hero__lead   { grid-row: 2; }
  .hero__lead { gap: clamp(14px, 2.4vw, 22px); }
  .hero__figure {
    aspect-ratio: 16 / 10;
    height: auto;
    max-height: 60vh;
    margin-top: 0;
  }
  .hero__badge { top: -28px; right: -28px; width: 110px; }
  /* Mobile/tablet title stays controlled — no inflation */
  .hero__title { font-size: clamp(30px, 5.5vw, 52px); }
  .hero__title .line--xl { font-size: clamp(48px, 11vw, 96px); }

  .metodo__flow { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .metodo__flow::before { display: none; }

  .identita__grid { grid-template-columns: 1fr; }
  .identita__photo { aspect-ratio: 16 / 10; max-height: 520px; }

  .tier {
    grid-template-columns: 1fr;
    gap: clamp(28px, 4vw, 36px);
  }
  .tier-pair { grid-template-columns: 1fr; }
  .tier-pair .tier__title { font-size: clamp(38px, 6vw, 48px); }

  .store--flag {
    grid-template-columns: 1fr;
    grid-template-areas: "cap" "hero" "copy" "gal";
  }
  .store--secondary {
    grid-template-columns: 1fr;
    grid-template-areas: "cap" "hero" "copy";
  }
  .store__gallery { grid-template-columns: repeat(2, 1fr); }
  .store__gallery--four { grid-template-columns: repeat(2, 1fr); }

  .contatti__grid { grid-template-columns: 1fr; }
  .foot__top { grid-template-columns: 1fr; }
  .foot__cols { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  :root { --topbar-h: 60px; }

  .section__head {
    grid-template-columns: 1fr;
    grid-template-areas: "num" "kicker" "title";
    text-align: left;
    align-items: start;
  }
  .section__head--with-extra {
    grid-template-areas: "num" "kicker" "title" "extra";
  }
  .num-large { font-size: clamp(64px, 16vw, 88px); }

  .hero__title { font-size: clamp(28px, 7vw, 44px); }
  .hero__title .line--xl { font-size: clamp(48px, 14vw, 80px); }
  .hero__title .line span { white-space: normal; }
  .hero__meta { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero__contact { gap: 6px 14px; font-size: 13px; }
  .hero__actions { gap: 10px; }
  .hero__cta { padding: 11px 18px; font-size: 13.5px; }
  .hero__figure { aspect-ratio: 4 / 3; max-height: 50vh; }

  .identita__stats { grid-template-columns: 1fr 1fr; gap: 18px; }
  .identita__stats .stat { font-size: clamp(48px, 12vw, 64px); }

  .metodo__flow { grid-template-columns: 1fr; gap: 28px; }

  .tier { padding: 26px; }
  .tier__title { font-size: clamp(40px, 10vw, 60px); }
  .tier-pair .tier__title { font-size: clamp(34px, 8vw, 44px); }

  .store__city { font-size: clamp(34px, 9vw, 48px); }
  .store__hero { aspect-ratio: 4 / 3; }
  .store__gallery { grid-template-columns: 1fr; }
  .store__gallery--four { grid-template-columns: 1fr 1fr; }

  .foot__cols { grid-template-columns: 1fr; }
  .foot__bot { flex-direction: column; align-items: flex-start; }

  .marquee__track { font-size: clamp(20px, 7vw, 32px); }
  .topbar__inner { padding: 10px var(--pad); }
  .topbar__wordmark { font-size: 20px; }

  .page-hero { padding-top: calc(var(--topbar-h) + 36px); padding-bottom: 36px; }
  .page-hero__title { font-size: clamp(28px, 8vw, 42px); }
  .page-hero__lede { font-size: 14.5px; margin-top: 16px; }
}

/* small phones */
@media (max-width: 480px) {
  .hero__eyebrow { font-size: 11px; gap: 10px; }
  .hero__title { font-size: clamp(26px, 8vw, 38px); }
  .hero__title .line--xl { font-size: clamp(44px, 16vw, 68px); }
  .hero__lede { font-size: 14.5px; padding-left: 12px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .hero__cta { justify-content: center; }
  .hero__contact { font-size: 12.5px; gap: 6px 12px; }
  .hero__contact-locale { width: 100%; margin-top: 4px; }
  .hero__figure { aspect-ratio: 3 / 2; max-height: 44vh; }
  .wa-fab { bottom: 14px; right: 14px; width: 50px; height: 50px; }
  .netflix__step { padding: 24px 20px; }
}

/* ─────────────────────────────────────────────────────────
   Legal pages (privacy, cookie-policy) — typographic long-form
   ───────────────────────────────────────────────────────── */
.legal { padding-block: clamp(40px, 6vh, 72px); }
.legal__inner { max-width: 760px; }
.legal__doc {
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--on-cream-soft);
}
.legal__updated {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--on-cream-mute);
  padding-bottom: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--cream-line);
}
.legal__updated strong {
  background: var(--grad);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.legal__doc h2 {
  font-family: var(--sans);
  font-weight: 800;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -.015em;
  line-height: 1.2;
  color: var(--on-cream);
  margin-top: 36px;
  margin-bottom: 12px;
}
.legal__doc p { margin: 0 0 14px; }
.legal__doc ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}
.legal__doc li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
}
.legal__doc li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--grad);
}
.legal__doc a {
  color: var(--c-blue);
  border-bottom: 1px dotted currentColor;
  transition: color .2s;
}
.legal__doc a:hover { color: var(--c-violet); }
.legal__doc strong { color: var(--on-cream); font-weight: 700; }
.legal__doc code {
  font-family: var(--mono);
  font-size: .9em;
  padding: 2px 6px;
  border-radius: 6px;
  background: var(--cream-2);
  color: var(--c-violet);
  border: 1px solid var(--cream-line-2);
}
.legal__table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 22px;
  font-size: 14px;
}
.legal__table th,
.legal__table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--cream-line);
  vertical-align: top;
}
.legal__table th {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--on-cream-mute);
  font-weight: 700;
  background: var(--cream-2);
  border-bottom: 1px solid var(--cream-line);
}
.legal__table tr:last-child td { border-bottom: none; }
.legal__sign {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--cream-line);
}
.legal__back {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  color: var(--c-blue);
  transition: color .2s, transform .2s var(--ease);
  display: inline-block;
}
.legal__back:hover { color: var(--c-violet); transform: translateX(-3px); }
@media (max-width: 640px) {
  .legal__table { font-size: 13px; }
  .legal__table th, .legal__table td { padding: 10px; }
}

/* ─────────────────────────────────────────────────────────
   page-hero (smaller hero on Punti vendita / Contatti pages)
   ───────────────────────────────────────────────────────── */
.page-hero {
  padding: calc(var(--topbar-h) + 56px) var(--pad) 56px;
  border-bottom: 1px solid var(--cream-line);
}
.surface-ink.page-hero { border-bottom-color: var(--ink-line); }
.page-hero__inner {
  max-width: var(--maxw);
  margin: 0 auto;
}
.page-hero__head {
  max-width: 64ch;
}
.page-hero__crumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--on-cream-mute);
  margin-bottom: 18px;
}
.page-hero__crumb a {
  color: var(--on-cream-soft);
  transition: color .25s;
}
.page-hero__crumb a:hover { color: var(--c-blue); }
.page-hero__title {
  font-family: var(--display);
  font-size: clamp(34px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--on-cream);
}
.page-hero__title em {
  font-style: italic;
  background: var(--grad);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font-weight: 700;
}
.page-hero__lede {
  font-size: clamp(15px, 1.4vw, 17.5px);
  line-height: 1.55;
  color: var(--on-cream-soft);
  margin-top: 22px;
  max-width: 56ch;
}
.page-hero .stores__index { margin-top: 28px; }

/* aria-current parity with .is-active (existing rules already handle .is-active) */
.topbar__nav a[aria-current="page"] { opacity: 1; }
.topbar__nav a[aria-current="page"]::after { right: 0; }
.drawer__nav a.is-active,
.drawer__nav a[aria-current="page"] { color: var(--c-blue); }

/* contact card icon (used in contatti.html) */
.contatti__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--grad);
  color: #fff;
  margin-bottom: 14px;
}
.contatti__icon svg { width: 20px; height: 20px; }

/* per-store quick directory on contatti page */
.loc-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--cream-line);
}
.loc-list__item {
  position: relative;
  padding: 24px;
  border: 1px solid var(--cream-line);
  border-radius: 14px;
  background: var(--cream-2);
  transition: border-color .25s, transform .25s var(--ease);
}
.loc-list__item:hover {
  transform: translateY(-2px);
  border-color: rgba(45, 109, 255, .35);
}
.loc-list__roman {
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--on-cream-mute);
}
.loc-list__city {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -.01em;
  color: var(--on-cream);
}
.loc-list__city small {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  color: var(--on-cream-mute);
  font-weight: 400;
  margin-left: 6px;
}
.loc-list__hours {
  margin-top: 10px;
  font-size: 13.5px;
  color: var(--on-cream-soft);
  line-height: 1.45;
}
.loc-list__link {
  display: inline-block;
  margin-top: 14px;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--c-blue);
  transition: color .25s;
}
.loc-list__link:hover { color: var(--c-violet); }
@media (max-width: 900px) {
  .loc-list { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────────────────
   centered intro paragraph (used by section heads with --center)
   ───────────────────────────────────────────────────────── */
.section__lede {
  font-family: var(--sans);
  font-size: clamp(15px, 1.4vw, 17.5px);
  line-height: 1.55;
  color: var(--on-cream-soft);
  max-width: 60ch;
  margin-top: 18px;
}
.surface-ink .section__lede { color: var(--on-ink-soft); }
.section__lede--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section__lede strong {
  background: var(--grad);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font-weight: 700;
}

/* ─────────────────────────────────────────────────────────
   Sky × Netflix section
   ───────────────────────────────────────────────────────── */
.netflix__steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.netflix__step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px 28px 28px;
  background: rgba(255, 255, 255, .045);
  border: 1px solid var(--ink-line);
  border-radius: 18px;
  transition: transform .35s var(--ease), border-color .35s, background .35s;
}
.netflix__step:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .07);
}
.netflix__num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--on-ink-mute);
}
.netflix__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--grad);
  color: #fff;
  box-shadow: 0 6px 22px rgba(140, 47, 255, .32);
}
.netflix__icon svg { width: 22px; height: 22px; }
.netflix__step h3 {
  font-family: var(--sans);
  font-size: 18.5px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--on-ink);
  line-height: 1.25;
}
.netflix__step p {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--on-ink-soft);
}
.netflix__cta {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}
/* Netflix CTA inherits the brand-gradient hero__cta so the button feels native to the site. */
@media (max-width: 1024px) {
  .netflix__steps { grid-template-columns: repeat(2, 1fr); }
  .netflix__step:last-child { grid-column: 1 / -1; max-width: 540px; margin: 0 auto; }
}
@media (max-width: 720px) {
  .netflix__steps { grid-template-columns: 1fr; gap: 14px; margin-top: 36px; }
  .netflix__step:last-child { max-width: none; }
}

/* ─────────────────────────────────────────────────────────
   Lavora con noi — minimal application form
   Card with gradient hairline, floating labels, custom check
   ───────────────────────────────────────────────────────── */
.lavora__form {
  margin-top: clamp(40px, 6vh, 56px);
}
.lavora__hp {
  /* Honeypot — hidden from humans, present in the DOM for bots */
  position: absolute;
  left: -9999px; top: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}
.lavora__card {
  position: relative;
  max-width: 480px;
  margin-inline: auto;
  padding: clamp(28px, 4vw, 40px);
  background: #fff;
  border-radius: 22px;
  border: 1px solid var(--cream-line);
  box-shadow:
    0 1px 0 0 rgba(21, 16, 58, .03),
    0 32px 60px -30px rgba(21, 16, 58, .25),
    0 12px 24px -16px rgba(21, 16, 58, .14);
  overflow: hidden;
}
/* Sky-gradient hairline on top of the card */
.lavora__card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: var(--grad);
}

/* field row: icon + floating-label input */
.lavora__field {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin-bottom: 14px;
}
.lavora__icon {
  width: 48px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--cream-2);
  color: var(--on-cream-mute);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.lavora__icon svg { width: 20px; height: 20px; }
.lavora__field:focus-within .lavora__icon {
  background: var(--grad);
  color: #fff;
}
.lavora__input-wrap {
  position: relative;
  flex: 1;
  min-width: 0;
}
.lavora__input {
  width: 100%;
  height: 56px;
  padding: 22px 16px 8px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  background: var(--cream-2);
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--on-cream);
  transition: background .25s, border-color .2s, box-shadow .2s;
}
.lavora__input:focus {
  outline: none;
  background: #fff;
  border-color: var(--c-blue);
  box-shadow: 0 0 0 3px rgba(45, 109, 255, .12);
}
.lavora__input::placeholder { color: transparent; }
.lavora__floating {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--on-cream-mute);
  pointer-events: none;
  background: transparent;
  transition: top .2s var(--ease), font-size .2s, font-weight .2s,
              letter-spacing .2s, color .2s, transform .2s;
}
/* Float to the top-left of the field when focused or filled */
.lavora__input:focus + .lavora__floating,
.lavora__input:not(:placeholder-shown) + .lavora__floating {
  top: 12px;
  transform: translateY(0);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-blue);
}
.lavora__input:not(:placeholder-shown):not(:focus) + .lavora__floating {
  color: var(--on-cream-mute);
}

/* custom checkbox row */
.lavora__consent {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0;
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--on-cream-soft);
  cursor: pointer;
  user-select: none;
}
.lavora__consent input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.lavora__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1.5px solid var(--cream-line);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  transition: background .2s var(--ease), border-color .2s, color .15s;
}
.lavora__check svg { width: 14px; height: 14px; }
.lavora__consent input:focus-visible ~ .lavora__check {
  outline: 2px solid var(--c-blue);
  outline-offset: 2px;
}
.lavora__consent input:checked ~ .lavora__check {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
}
.lavora__consent-text a {
  color: var(--c-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.lavora__consent-text a:hover { color: var(--c-violet); }

/* submit button — gradient pill with optical spinner */
.lavora__submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 56px;
  margin-top: 4px;
  border: 0;
  border-radius: 14px;
  background: var(--grad);
  background-size: 200% 100%;
  background-position: 0% 50%;
  color: #fff;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -.005em;
  cursor: pointer;
  box-shadow: 0 12px 26px -10px rgba(140, 47, 255, .55);
  transition: background-position .55s var(--ease),
              transform .25s var(--ease),
              box-shadow .25s,
              opacity .2s;
}
.lavora__submit:hover {
  background-position: 100% 50%;
  transform: translateY(-1px);
  box-shadow: 0 16px 32px -12px rgba(255, 122, 0, .55);
}
.lavora__submit:active { transform: translateY(0); }
.lavora__submit:focus-visible {
  outline: 3px solid rgba(45, 109, 255, .45);
  outline-offset: 3px;
}
.lavora__submit-icon { width: 18px; height: 18px; transition: transform .25s; }
.lavora__submit:hover .lavora__submit-icon { transform: translateX(3px); }
.lavora__submit-spin {
  width: 20px; height: 20px;
  display: none;
  animation: spin 1s linear infinite;
}
.lavora__submit.is-loading .lavora__submit-label,
.lavora__submit.is-loading .lavora__submit-icon { display: none; }
.lavora__submit.is-loading .lavora__submit-spin { display: inline-block; }
.lavora__submit[disabled] {
  opacity: .65;
  cursor: not-allowed;
}
@keyframes spin { to { transform: rotate(360deg); } }

.lavora__status {
  margin-top: 16px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--on-cream-mute);
  text-align: center;
  min-height: 1.4em;
}
.lavora__status.is-ok {
  background: var(--grad);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  font-weight: 700;
}
.lavora__status.is-error { color: var(--c-red); font-weight: 700; }

/* mobile polish */
@media (max-width: 640px) {
  .lavora__card { padding: 24px 20px; border-radius: 18px; }
  .lavora__field { gap: 10px; margin-bottom: 12px; }
  .lavora__icon { width: 44px; height: 52px; }
  .lavora__icon svg { width: 18px; height: 18px; }
  .lavora__input { height: 52px; padding: 20px 14px 6px; font-size: 16px; }
  .lavora__floating { left: 14px; font-size: 14px; }
  .lavora__input:focus + .lavora__floating,
  .lavora__input:not(:placeholder-shown) + .lavora__floating { top: 10px; }
  .lavora__submit { height: 52px; font-size: 14.5px; }
  .lavora__consent { font-size: 13px; }
}
@media (max-width: 380px) {
  .lavora__card { padding: 22px 16px; }
  .lavora__icon { width: 40px; }
}

/* ─────────────────────────────────────────────────────────
   WhatsApp floating button — visible on every page
   ───────────────────────────────────────────────────────── */
.wa-fab {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .42), 0 2px 8px rgba(0, 0, 0, .18);
  transition: transform .25s var(--ease), box-shadow .25s, background .25s;
}
.wa-fab:hover {
  background: #1ebe57;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 34px rgba(37, 211, 102, .55), 0 3px 10px rgba(0, 0, 0, .22);
}
.wa-fab svg { width: 28px; height: 28px; }
.wa-fab__label {
  /* Visually hidden but accessible to screen readers */
  position: absolute;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
@media (max-width: 720px) {
  .wa-fab {
    bottom: 16px; right: 16px;
    width: 52px; height: 52px;
  }
  .wa-fab svg { width: 26px; height: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}
