@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('../fonts/manrope-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('../fonts/manrope-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --ink: #16161C;
  --muted: #5C5C68;
  --meta: #9A9AAB;

  --brand: #2B2BA3;
  --brand-hover: #22228A;
  --navy: #11114A;
  --navy-ink: #14146B;
  --lilac: #A6A6F2;

  --surface: #F2F2F5;
  --placeholder: #E6E6EC;
  --border: #E7E7EC;
  --border-soft: #ECECF1;
  --hero-bg: #15151A;

  --gutter: 6vw;
  --maxw: 1240px;

  --r-card: 22px;
  --r-panel: 26px;
  --r-band: 32px;
  --r-pill: 999px;

  --mono: ui-monospace, Menlo, Consolas, monospace;

  --hatch: repeating-linear-gradient(45deg, transparent, transparent 11px, rgba(0, 0, 0, .022) 11px, rgba(0, 0, 0, .022) 22px);

  /* Ingrobimbo (kids) accent — the only place the palette leaves blue */
  --kids-bg: #FFF8EC;
  --kids-ink: #B5820F;
  --kids-badge: #ECB23C;
  --kids-badge-ink: #1A1208;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px; /* clears the sticky topbar + header on anchor jumps */
}

body {
  font-family: 'Manrope', system-ui, sans-serif;
  background: #fff;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: #fff;
  color: var(--brand);
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Placeholder slots (drop real photos in here) ---------- */

.ph-caption {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--meta);
}

/* A slot holding a real photo drops the hatch and lets the image fill it. */
.product__media, .post__media, .media-panel, .choice__media { position: relative; overflow: hidden; }

.product__media:has(img),
.post__media:has(img),
.media-panel:has(img),
.choice__media:has(img) {
  background-image: none;
}

.product__media > img,
.post__media > img,
.media-panel > img,
.choice__media > img,
.hero__media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* The hero scrim must stay above the photo, and its caption above the scrim. */
.hero__media > img { z-index: 0; }
.hero__media::after { z-index: 1; }
.hero__caption { z-index: 2; }

/* ---------- Buttons & link CTAs ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15.5px;
  padding: 14px 24px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  transition: background .2s, border-color .2s, transform .2s, box-shadow .2s;
}

.btn--sm { font-size: 13px; padding: 9px 15px; gap: 7px; }
.btn--md { font-size: 16px; padding: 16px 28px; }
.btn--lg { font-size: 17px; padding: 17px 30px; gap: 9px; }
.btn__arrow { font-size: 19px; }

.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-hover); }

.btn--light { background: #fff; color: var(--navy-ink); }
.btn--light:hover { transform: translateY(-2px); }
.btn--light.btn--lg:hover { box-shadow: 0 16px 36px -16px rgba(255, 255, 255, .5); }

.btn--ghost {
  border: 1.5px solid rgba(255, 255, 255, .4);
  color: #fff;
  padding: 16px 28px;
}
.btn--ghost:hover { border-color: #fff; background: rgba(255, 255, 255, .08); }

/* Outlined on white — the B2B hero's secondary action. */
.btn--outline { background: #fff; color: var(--navy-ink); border: 1.5px solid #DADAE3; }
.btn--outline:hover { border-color: var(--brand); }

/* Sits on the brand-blue CTA band, where --light would compete with the primary action. */
.btn--translucent {
  background: rgba(255, 255, 255, .14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .3);
}
.btn--translucent:hover { background: rgba(255, 255, 255, .24); }

.link-cta {
  font-size: 15px;
  font-weight: 700;
  color: var(--brand);
}
.link-cta--lg { display: inline-flex; align-items: center; gap: 8px; font-size: 16px; }

/* ---------- Top bar + header ---------- */

.topbar-wrap { position: sticky; top: 0; z-index: 50; }

.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, .75);
  font-size: 13px;
  font-weight: 600;
  padding: 9px var(--gutter);
}
.topbar__inner { display: flex; justify-content: flex-end; gap: 14px; }
.topbar a { color: rgba(255, 255, 255, .6); }
.topbar a:hover, .topbar .is-current { color: #fff; }
.topbar__sep { color: rgba(255, 255, 255, .3); }

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 14px;
  padding: 16px var(--gutter);
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
}

.header__logo { display: inline-flex; align-items: center; }
.header__logo img { height: 20px; width: auto; }

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: #3A3A44;
  white-space: nowrap;
}
.nav a:not(.nav__cta):hover { color: var(--brand); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 0 9px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle__bar {
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--hero-bg);
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 14px, rgba(255, 255, 255, .025) 14px, rgba(255, 255, 255, .025) 28px);
}
.hero__media:has(img) { background-image: none; }

/* Scrim sits above the photo so the headline keeps its contrast. */
.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(8, 8, 20, .86) 0%, rgba(8, 8, 20, .5) 48%, rgba(8, 8, 20, .05) 100%);
}

.hero__caption {
  position: absolute;
  right: 24px;
  bottom: 18px;
  font-size: 11px;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .4);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.hero__content { max-width: 660px; color: #fff; }

.hero--tall { min-height: 600px; }

.hero__title {
  font-size: clamp(42px, 6.4vw, 78px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.035em;
  text-wrap: balance;
}
.hero__title--sm { font-size: clamp(40px, 6vw, 72px); line-height: 1.02; }

.hero__lead {
  margin-top: 26px;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: rgba(255, 255, 255, .82);
  max-width: 540px;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }

/* ---------- Section scaffolding ---------- */

.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 110px var(--gutter) 30px;
}
.section--narrow { max-width: 1080px; }
.section--center { text-align: center; }
.section--faq { max-width: 880px; padding: clamp(70px, 9vw, 110px) var(--gutter) 40px; }

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--meta);
  margin-bottom: 14px;
}
.eyebrow--accent { color: var(--lilac); }
.eyebrow--violet { color: #8C8CF0; }
.eyebrow--wide { margin-bottom: 22px; }
.eyebrow--plain { font-size: 14px; letter-spacing: normal; text-transform: none; margin-bottom: 10px; }

.h2 {
  font-size: clamp(30px, 4.2vw, 50px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -.03em;
  text-wrap: balance;
  max-width: 620px;
}
.h2--xl { font-size: clamp(32px, 4.6vw, 56px); max-width: none; }
.h2--lg { font-size: clamp(30px, 4.4vw, 52px); max-width: none; }
.h2--sm { font-size: clamp(28px, 4vw, 46px); line-height: 1.06; max-width: 600px; }
.h2--loose { line-height: 1.08; }

.section__title--spaced { margin-bottom: 46px; }

.section__lead {
  margin: 24px auto 0;
  max-width: 660px;
  font-size: 19px;
  line-height: 1.6;
  color: var(--muted);
}
.section__lead--tight { max-width: 540px; font-size: 18px; line-height: 1.55; margin-top: 20px; }
.section__lead--mid { max-width: 560px; font-size: 18px; margin-top: 20px; }

.section__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 48px;
}
.section__head--center {
  display: block;
  text-align: center;
  margin-bottom: 54px;
}
.section__head--roomy { margin-bottom: 60px; }

.section__aside {
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 340px;
}

/* ---------- Perché Ingrovision ---------- */

.reasons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 64px;
  text-align: left;
}
.reasons--flush { margin-top: 0; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.reason { background: var(--surface); border-radius: var(--r-card); padding: 32px; }
.reasons--flush .reason { padding: 34px; }
.reasons--flush .reason__title { font-size: 21px; margin-bottom: 12px; }
.reasons--flush .reason__desc { line-height: 1.6; }
.reason__title { font-size: 20px; font-weight: 800; letter-spacing: -.01em; margin-bottom: 10px; }
.reason__desc { font-size: 15.5px; line-height: 1.55; color: var(--muted); }

/* ---------- Products ---------- */

.products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.product {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: var(--r-card);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease;
}
.product:hover { transform: translateY(-5px); box-shadow: 0 24px 48px -26px rgba(20, 20, 80, .3); }

/* B2B catalogue cards: outlined rather than filled, and not links. */
.product--outline { background: none; border: 1px solid var(--border); }
.product--outline:hover { transform: translateY(-4px); box-shadow: 0 22px 44px -26px rgba(20, 20, 80, .25); }
.product--outline .product__media { height: 180px; }
.product--outline .product__body { padding: 24px; }
.product--outline .product__desc { margin-bottom: 0; }

.product__media {
  display: flex;
  align-items: flex-end;
  height: 190px;
  padding: 16px;
  background-color: var(--placeholder);
  background-image: var(--hatch);
}

.product__body { display: flex; flex-direction: column; flex: 1; padding: 24px 24px 26px; }
.product__name { font-size: 19px; font-weight: 800; letter-spacing: -.015em; margin-bottom: 8px; }
.product__desc { font-size: 14.5px; line-height: 1.5; color: var(--muted); margin-bottom: 18px; flex: 1; }
.product .link-cta { font-size: 14.5px; }

/* ---------- Split panels (Guardaroba / Fedeltà) ---------- */

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.panel { border-radius: var(--r-panel); padding: 46px; }
.panel--surface { background: var(--surface); }
.panel--navy { background: var(--navy); color: #fff; }

.panel__title { font-size: 25px; font-weight: 800; letter-spacing: -.02em; line-height: 1.15; margin-bottom: 18px; }
.panel__desc { font-size: 16.5px; line-height: 1.6; color: var(--muted); margin-bottom: 28px; }
.panel__desc strong { color: var(--ink); }
.panel--navy .panel__desc { color: rgba(255, 255, 255, .72); }

.loyalty {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  transition: border-color .2s, transform .2s;
}
.loyalty:hover { border-color: var(--brand); transform: translateY(-3px); }

.loyalty__tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
}
.loyalty__title { font-size: 23px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 12px; }
.loyalty__desc { font-size: 15.5px; line-height: 1.6; color: var(--muted); margin-bottom: 24px; flex: 1; }

/* ---------- Blog ---------- */

.posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.post { display: flex; flex-direction: column; }

.post__media {
  display: flex;
  align-items: flex-end;
  height: 200px;
  padding: 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  background-color: var(--placeholder);
  background-image: var(--hatch);
}

.post__tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--meta);
  margin-bottom: 10px;
}
.post__title { font-size: 19px; font-weight: 800; letter-spacing: -.015em; line-height: 1.25; }
.post:hover .post__title { color: var(--brand); }

.posts--wide { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 26px; }
.post__media--tall { height: 210px; }
.post__title--lg { font-size: 20px; margin-bottom: 10px; }
.post__excerpt { display: block; font-size: 14.5px; line-height: 1.5; color: var(--muted); }

/* ---------- Blog: head + featured article ---------- */

.blog-head { padding: 90px var(--gutter) 0; }
.eyebrow--tightish { margin-bottom: 18px; }

.blog-head__title {
  font-size: clamp(38px, 5.4vw, 66px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -.035em;
  max-width: 760px;
  text-wrap: balance;
}

.section--featured { padding: 50px var(--gutter) 0; }
.section--grid { padding: 80px var(--gutter) 0; }
.section--articles { padding: 56px var(--gutter) 0; }

.blog-head__lead {
  margin-top: 22px;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 560px;
}

/* B2B article cards: outlined product card with a tag instead of a CTA. */
.products--articles { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 26px; }
.product--article:hover { box-shadow: 0 22px 44px -26px rgba(20, 20, 80, .22); }
.product__media--article { height: 190px; padding: 14px; }
.product__body--article { padding: 26px; }

.article__tag {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}
.article__title { display: block; font-size: 19px; font-weight: 800; letter-spacing: -.015em; line-height: 1.25; margin-bottom: 10px; }

.blog-head__title--wide { max-width: 720px; }

/* ---------- Service rows (B2B servizi) ---------- */

.section--rows { padding: 64px var(--gutter) 0; }
.service-rows { display: flex; flex-direction: column; gap: 16px; }

.service-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: start;
  background: var(--surface);
  border-radius: 24px;
  padding: clamp(28px, 3.5vw, 44px);
  scroll-margin-top: 120px;
}

.service-row__num {
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--brand);
}

.service-row__title { font-size: clamp(22px, 2.6vw, 30px); font-weight: 800; letter-spacing: -.02em; margin-bottom: 12px; }
.service-row__desc { font-size: 16.5px; line-height: 1.6; color: var(--muted); max-width: 620px; }

.cta-band--dark { background: #0B0B0D; }

/* ---------- Prodotti B2B: jump pills + alternating blocks ---------- */

.blog-head__title--xwide { max-width: 960px; }

.jumps { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }

.jump {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--brand);
  background: var(--surface);
  padding: 11px 18px;
  border-radius: var(--r-pill);
  transition: background .2s, color .2s;
}
.jump:hover { background: var(--brand); color: #fff; }

.product-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
  align-items: center;
  padding: 90px var(--gutter) 0;
  scroll-margin-top: 120px;
}

/* Alternate which side the image sits on, but only once there are two columns —
   stacked, the text must always come first. */
@media (min-width: 761px) {
  .product-block:nth-of-type(even) .product-block__text { order: 2; }
}

.eyebrow--brand { color: var(--brand); letter-spacing: .14em; margin-bottom: 14px; }

.product-block__title {
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: 18px;
  text-wrap: balance;
}

.product-block__desc { font-size: 16.5px; line-height: 1.6; color: var(--muted); margin-bottom: 24px; max-width: 460px; }
.product-block .benefits { gap: 12px; }

.media-panel--product { height: 400px; border-radius: var(--r-panel); padding: 20px; }

.featured {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 36px;
  align-items: center;
}

.media-panel--featured { height: 360px; border-radius: var(--r-panel); padding: 20px; }

.featured__tag {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}

.featured__title {
  display: block;
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.featured:hover .featured__title { color: var(--brand); }

.featured__excerpt { display: block; font-size: 17px; line-height: 1.6; color: var(--muted); max-width: 460px; }
.featured__cta { margin-top: 22px; }

.section-spacer--sm { height: 80px; }

/* ---------- FAQ ---------- */

.faq__item { border-bottom: 1px solid var(--border); }

.faq__heading { font: inherit; font-weight: inherit; }

.faq__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 4px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.faq__q { font-size: 19px; font-weight: 700; letter-spacing: -.01em; color: var(--ink); }

.faq__icon {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 600;
}
.faq__icon::before { content: '+'; }
.faq__trigger[aria-expanded="true"] .faq__icon::before { content: '\2212'; }

.faq__a {
  padding: 0 4px 28px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 700px;
  white-space: pre-line; /* answers may carry authored line breaks */
}

/* ---------- CTA band ---------- */

.cta-band-wrap { padding: 0 var(--gutter); }
.cta-band-wrap--tall { padding-top: 100px; }
.cta-band-wrap--mid { padding-top: 80px; }
.cta-band--short { padding: clamp(48px, 7vw, 80px); }

.cta-band {
  max-width: var(--maxw);
  margin: 0 auto;
  background: var(--brand);
  border-radius: var(--r-band);
  padding: clamp(48px, 7vw, 88px);
  text-align: center;
  color: #fff;
}

.cta-band__title {
  font-size: clamp(30px, 4.6vw, 56px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -.03em;
  text-wrap: balance;
}

.cta-band__title--sm { font-size: clamp(30px, 4.6vw, 54px); }
.cta-band__title--xs { font-size: clamp(28px, 4.4vw, 50px); }
.btn--cta-tight { margin-top: 28px; }

.cta-band__lead {
  margin: 22px auto 0;
  max-width: 520px;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .8);
}
.cta-band__lead--tight { max-width: 500px; margin-top: 20px; }

.btn--cta { font-size: 16.5px; padding: 16px 30px; gap: 9px; margin-top: 32px; }

.cta-band .btn { margin-top: 36px; }

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 36px;
}
.cta-band__actions .btn { margin-top: 0; }

/* ---------- Footer ---------- */

.footer {
  margin-top: 90px;
  background: var(--navy);
  color: #fff;
  padding: 80px var(--gutter) 44px;
}

.footer__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
}

.footer__logo { display: inline-block; margin-bottom: 18px; }
.footer__logo img { height: 28px; width: auto; }

.footer__blurb {
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .6);
  max-width: 230px;
}

.footer__col { display: flex; flex-direction: column; gap: 12px; font-size: 15px; }
.footer__col a { color: rgba(255, 255, 255, .78); }
.footer__col a:hover { color: #fff; }

.footer__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 6px;
}

.footer__bottom {
  max-width: var(--maxw);
  margin: 56px auto 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
}

.footer__legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__legal a:hover { color: #fff; }

/* ---------- Split hero / media panels (B2B) ---------- */

.hero-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 56px;
  align-items: center;
  padding-top: 90px;
}
.hero-split--reverse { gap: 48px; }
.hero-split--reverse > div:first-child { order: -1; }

.hero-split__title {
  font-size: clamp(40px, 5.6vw, 68px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.hero-split__lead {
  margin-top: 26px;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 500px;
}

.hero-split__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.hero-split__heading { margin-bottom: 22px; }
.hero-split__body { font-size: 17px; line-height: 1.6; color: var(--muted); margin-bottom: 30px; max-width: 480px; }

.media-panel {
  display: flex;
  align-items: flex-end;
  background-color: var(--placeholder);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 13px, rgba(0, 0, 0, .022) 13px, rgba(0, 0, 0, .022) 26px);
}
.media-panel .ph-caption { font-size: 11px; letter-spacing: .09em; }
.media-panel--hero { height: 440px; border-radius: 28px; padding: 22px; }
.media-panel--split { height: 340px; border-radius: var(--r-panel); padding: 20px; }

/* ---------- Stats strip ---------- */

.stats-section { padding-top: 30px; padding-bottom: 30px; }
.stats-section--head { padding-top: 64px; padding-bottom: 0; }

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 28px;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 38px 0;
}

.stat__value { display: block; font-size: 34px; font-weight: 800; letter-spacing: -.03em; color: var(--ink); }
.stat__label { display: block; font-size: 14px; color: var(--muted); margin-top: 4px; }

/* ---------- Dark section (B2B servizi) ---------- */

.section-dark { background: #0B0B0D; color: #fff; margin-top: 100px; }
.section-dark__inner { max-width: var(--maxw); margin: 0 auto; padding: 100px var(--gutter); }

.section-dark__center {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) var(--gutter);
  text-align: center;
}

.section-dark__lead {
  margin: 24px auto 0;
  max-width: 600px;
  font-size: 17.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .72);
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 24px;
  overflow: hidden;
}

.service { background: #0B0B0D; padding: 38px 34px; }
.service__num { display: block; font-size: 13px; font-weight: 700; color: #8C8CF0; margin-bottom: 16px; }
.service__title { display: block; font-size: 21px; font-weight: 800; letter-spacing: -.015em; margin-bottom: 12px; }
.service__title--sm { font-size: 20px; }
.service__desc { display: block; font-size: 15px; line-height: 1.6; color: rgba(255, 255, 255, .62); }

/* ---------- Centred page head ---------- */

.page-head { max-width: 960px; text-align: center; padding: 100px var(--gutter) 0; }

.page-head__title {
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.page-head__lead {
  margin: 26px auto 0;
  max-width: 600px;
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.55;
  color: var(--muted);
}
.page-head__lead strong { color: var(--ink); }
.page-head__title--sm { font-size: clamp(40px, 6vw, 72px); line-height: 1.02; }
.page-head__lead--sm { max-width: 560px; font-size: clamp(18px, 2.1vw, 21px); }
.page-head__lead--wide { max-width: 620px; }

.section--flush { padding: 70px var(--gutter) 0; }
.section--flush-top { padding: 100px var(--gutter) 0; }

.needs { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.reason--sm .reason__desc { font-size: 15px; }
.reason__title--sm { font-size: 19px; letter-spacing: -.015em; }

/* ---------- Loyalty plans ---------- */

.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }

.plan {
  border: 1px solid var(--border);
  border-radius: var(--r-panel);
  padding: clamp(32px, 4vw, 48px);
}
.plan--kids { background: var(--kids-bg); }

.plan__tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
}
.plan--kids .plan__tag { color: var(--kids-ink); }

.plan__title { font-size: 26px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 14px; }
.plan__desc { font-size: 16px; line-height: 1.6; color: var(--muted); margin-bottom: 26px; }

.benefits { display: flex; flex-direction: column; gap: 14px; }

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15.5px;
  line-height: 1.45;
  color: var(--ink);
}

.benefit__check {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 13px;
  margin-top: 1px;
}
.plan--kids .benefit__check { background: var(--kids-badge); color: var(--kids-badge-ink); }

.notice-section { max-width: 900px; padding: 70px var(--gutter) 0; text-align: center; }

.notice {
  background: var(--surface);
  border-radius: var(--r-card);
  padding: 28px 32px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
}

/* ---------- Numbered ladder (inside a panel) ---------- */

.ladder { display: flex; flex-direction: column; gap: 20px; margin-top: 6px; list-style: none; }
.rung { display: flex; gap: 16px; align-items: flex-start; }

.rung__num {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .14);
  font-weight: 800;
  font-size: 15px;
}

.rung__title { display: block; font-size: 17px; font-weight: 700; margin-bottom: 4px; }
.rung__desc { display: block; font-size: 14.5px; line-height: 1.55; color: rgba(255, 255, 255, .68); }

.media-panel--tall { min-height: 380px; border-radius: var(--r-panel); padding: 22px; }

/* ---------- Steps (numbered path) ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  list-style: none;
  counter-reset: none;
}

.steps--chain { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.h2--chain { max-width: 640px; margin-bottom: 52px; }

.step { background: var(--surface); border-radius: var(--r-card); padding: 32px; }
.steps--chain .step { padding: 34px; }

.step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 20px;
}

.step__title { font-size: 20px; font-weight: 800; letter-spacing: -.01em; margin-bottom: 10px; }
.step__desc { font-size: 15.5px; line-height: 1.55; color: var(--muted); }

/* ---------- Booking form ---------- */

.form-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 56px;
  align-items: center;
  padding-bottom: 20px;
}

.form-section__lead {
  margin-top: 22px;
  font-size: 17.5px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 440px;
}

.perks { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }

.perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

.perk__check {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
}

.form {
  background: var(--surface);
  border-radius: var(--r-panel);
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form__title { font-size: 20px; font-weight: 800; letter-spacing: -.02em; }

/* ---------- Contatti ---------- */

.form-section--top { align-items: start; padding-top: 80px; }
.section-spacer { height: 90px; }

.contact__title {
  font-size: clamp(38px, 5.4vw, 66px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.contact__lead {
  margin-top: 22px;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
  color: var(--muted);
  max-width: 460px;
}

.contacts { display: flex; flex-direction: column; gap: 18px; margin-top: 38px; }
.contact { display: flex; gap: 14px; align-items: center; }

.contact__icon {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--surface);
  font-size: 19px;
}

.contact__label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--meta);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.contact__value { display: block; font-size: 16.5px; font-weight: 700; color: var(--ink); }
a.contact__value:hover { color: var(--brand); }

.media-panel--map { height: 220px; margin-top: 34px; border-radius: var(--r-card); padding: 18px; }

.form__trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form__field { display: flex; flex-direction: column; gap: 6px; }

.form__label { font-size: 13px; font-weight: 700; color: var(--muted); }

.form__input {
  padding: 15px 18px;
  border-radius: 12px;
  border: 1px solid #DADAE3;
  background: #fff;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  width: 100%;
}
.form__input:focus-visible { outline: 2px solid var(--brand); outline-offset: 1px; border-color: var(--brand); }
.form__select { color: var(--muted); }
.form__textarea { resize: vertical; }

.form__input[aria-invalid="true"] { border-color: #C0392B; }
.form__error { font-size: 13px; font-weight: 600; color: #C0392B; }
.form__error--summary { padding: 12px 14px; background: #FDECEA; border-radius: 10px; }

.form__submit {
  margin-top: 4px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 16px;
  border: none;
  border-radius: var(--r-pill);
  cursor: pointer;
  font-family: inherit;
  transition: background .2s;
}
.form__submit:hover { background: var(--brand-hover); }

.form__legal { font-size: 12.5px; color: var(--meta); line-height: 1.5; text-align: center; }

.form__done { text-align: center; padding: 40px 10px; }
.form__done-icon { font-size: 40px; margin-bottom: 14px; }
.form__done-title { font-size: 22px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 8px; }
.form__done-text { font-size: 16px; color: var(--muted); line-height: 1.55; }

/* ---------- Splash (home: choose B2B / B2C) ---------- */

.splash { min-height: 100vh; display: flex; flex-direction: column; }

.splash__header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--gutter);
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
}

.splash__logo { display: inline-flex; align-items: center; }
.splash__header .splash__logo img { height: 28px; width: auto; }

.splash__nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
}
.splash__sep { color: #D6D6DE; }
.splash__nav-active { color: #1A1A70; }

.splash__main {
  flex: 1;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(24px, 4vh, 48px) var(--gutter) clamp(18px, 2.5vh, 28px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.splash__intro { max-width: 920px; }
.splash__eyebrow { letter-spacing: .18em; margin-bottom: 16px; }

.splash__title {
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: -.035em;
  color: #15151C;
}

.splash__lead {
  margin-top: 18px;
  font-size: clamp(17px, 1.8vw, 20px);
  line-height: 1.5;
  color: var(--muted);
  max-width: 560px;
}

.choices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 24px;
  margin-top: clamp(24px, 4vh, 48px);
}

.choice {
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.choice--dark { background: #0B0B0D; color: #fff; }
.choice--light { background: var(--surface); color: #15151C; }
.choice--dark:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -28px rgba(0, 0, 0, .45); }
.choice--light:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -28px rgba(20, 20, 80, .28); }

.choice__media {
  display: flex;
  align-items: flex-end;
  height: clamp(110px, 16vh, 180px);
  padding: 20px;
}
.choice--dark .choice__media {
  background-color: var(--hero-bg);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(255, 255, 255, .03) 12px, rgba(255, 255, 255, .03) 24px);
}
.choice--dark .ph-caption { font-size: 11px; letter-spacing: .1em; color: rgba(255, 255, 255, .4); }
.choice--light .choice__media {
  background-color: #E4E4EA;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(0, 0, 0, .025) 12px, rgba(0, 0, 0, .025) 24px);
}
.choice--light .ph-caption { font-size: 11px; letter-spacing: .1em; }

.choice__body { padding: 24px 30px 28px; }

.choice__tag {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.choice--dark .choice__tag { color: #8C8CF0; }
.choice--light .choice__tag { color: var(--brand); }

.choice__name { display: block; font-size: 26px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 8px; }

.choice__desc { display: block; font-size: 14.5px; line-height: 1.5; margin-bottom: 18px; }
.choice--dark .choice__desc { color: rgba(255, 255, 255, .62); }
.choice--light .choice__desc { color: var(--muted); }

.choice__cta { display: inline-flex; align-items: center; gap: 9px; font-size: 16px; font-weight: 700; }
.choice--dark .choice__cta { color: #fff; }
.choice--light .choice__cta { color: var(--brand); }

.splash__footer {
  padding: 18px var(--gutter);
  border-top: 1px solid var(--border-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
  color: var(--meta);
  font-size: 14px;
}
.splash__footer .splash__logo img { height: 22px; width: auto; }

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
  .nav-toggle { display: flex; }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px var(--gutter) 20px;
    background: #fff;
    border-bottom: 1px solid var(--border-soft);
    box-shadow: 0 18px 30px -20px rgba(20, 20, 80, .35);
    font-size: 16px;
    white-space: normal;
  }
  .nav:not(.is-open) { display: none; }
  .nav a:not(.nav__cta) { padding: 14px 0; border-bottom: 1px solid var(--border-soft); }
  .nav__cta { justify-content: center; margin-top: 18px; font-size: 15px; padding: 14px 20px; }

  .header { position: relative; flex-wrap: nowrap; }
}

@media (min-width: 761px) {
  /* Sticky only once the form sits beside the copy; stacked, it would trap the page. */
  .form--sticky { position: sticky; top: 130px; }
}

@media (max-width: 760px) {
  .section { padding-top: 80px; }
  .form-section, .hero-split { gap: 34px; }
  .contact__lead, .form-section__lead { max-width: none; }
  .hero { min-height: 560px; padding: 90px 0; }
  .hero__caption { display: none; }
  .panel { padding: 34px; }
  .loyalty { padding: 32px; }
  .reason { padding: 26px; }
  .footer { padding-top: 60px; }
  .footer__grid { gap: 34px; }
  .section__head { margin-bottom: 36px; }
  .faq__q { font-size: 17px; }
}

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

/* ==========================================================================
   Occhiali personalizzati — the richest page: colour bands, hover slider,
   MPO tech section. Tokens below are local to this page's palette.
   ========================================================================== */

:root {
  --magenta-a: #6E1E78;
  --magenta-b: #A81F63;
  --magenta-c: #C21F5E;
  --magenta-ink: #7A1A52;
  --yellow: #ECB23C;
  --yellow-ink: #1A1208;
  --yellow-body: #3A2A10;
  --tech-bg: #06060A;
  --tech-panel: #0E0E16;
}

/* ---------- Full-width colour bands (text | media) ---------- */

.band { overflow: hidden; }
.band__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  align-items: stretch;
}

.band__text {
  padding: clamp(48px, 6vw, 92px) var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.band__media {
  position: relative;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  padding: 22px;
  overflow: hidden;
}
.band__media > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.band--magenta { background: linear-gradient(125deg, var(--magenta-a) 0%, var(--magenta-b) 55%, var(--magenta-c) 100%); color: #fff; }
.band__media--magenta {
  background-color: rgba(0, 0, 0, .12);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 14px, rgba(255, 255, 255, .05) 14px, rgba(255, 255, 255, .05) 28px);
}
.band__media--magenta:has(img) { background-image: none; }
.band__media--magenta .ph-caption { color: rgba(255, 255, 255, .6); font-size: 11px; letter-spacing: .09em; }

.band--yellow { background: var(--yellow); color: var(--yellow-ink); margin-top: clamp(70px, 9vw, 120px); }
.band__media--yellow {
  min-height: 420px;
  background-color: rgba(0, 0, 0, .08);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 14px, rgba(0, 0, 0, .05) 14px, rgba(0, 0, 0, .05) 28px);
}
.band__media--yellow:has(img) { background-image: none; }
.band__media--yellow .ph-caption { color: rgba(0, 0, 0, .5); font-size: 11px; letter-spacing: .09em; }

.band--black { background: #0B0B0D; color: #fff; margin-top: clamp(70px, 9vw, 120px); }
.band__media--black {
  min-height: 480px;
  background-color: #141417;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 14px, rgba(255, 255, 255, .03) 14px, rgba(255, 255, 255, .03) 28px);
}
.band__media--black:has(img) { background-image: none; }
.band__media--black .ph-caption { color: rgba(255, 255, 255, .4); font-size: 11px; letter-spacing: .09em; }

.band__kicker { font-size: 14px; font-weight: 700; letter-spacing: .04em; color: rgba(255, 255, 255, .85); margin-bottom: 18px; }
.band__title { font-size: clamp(38px, 5.2vw, 64px); line-height: 1.02; font-weight: 800; letter-spacing: -.035em; text-wrap: balance; }
.band__title--sm { font-size: clamp(32px, 4.6vw, 56px); line-height: 1.05; letter-spacing: -.03em; }
.band__claim { margin-top: 22px; font-size: clamp(19px, 2.2vw, 24px); font-weight: 600; }
.band__body { margin-top: 16px; font-size: 16.5px; line-height: 1.6; color: rgba(255, 255, 255, .82); max-width: 460px; }
.band__body--yellow { margin-top: 24px; font-size: 17px; color: var(--yellow-body); max-width: 420px; }
.band__body--dark { margin-top: 22px; font-size: 17px; color: rgba(255, 255, 255, .72); max-width: 440px; }
.band__emphasis { margin-top: 16px; font-size: 17.5px; line-height: 1.5; font-weight: 700; max-width: 430px; }
.band__cta { align-self: flex-start; margin-top: 32px; }

.band .btn--cta { align-self: flex-start; margin-top: 34px; }
.btn--on-magenta { background: #fff; color: var(--magenta-ink); }
.btn--on-magenta:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -16px rgba(0, 0, 0, .4); }

/* Media first on wide screens; stacked, text still leads. */
@media (min-width: 761px) { .band__media--first { order: -1; } }

/* ---------- Centred prose sections ---------- */

.prose-section { max-width: 900px; text-align: center; padding: clamp(70px, 9vw, 120px) var(--gutter) 0; }
.prose-section--narrow { max-width: 820px; padding-top: clamp(70px, 9vw, 110px); }
.prose-section--brand { max-width: 860px; padding-top: clamp(60px, 8vw, 100px); }

.prose__title { font-size: clamp(30px, 4.4vw, 52px); line-height: 1.08; font-weight: 800; letter-spacing: -.03em; text-wrap: balance; }
.prose__title--sm { font-size: clamp(28px, 4vw, 48px); }
.prose__lead { margin: 28px auto 0; max-width: 640px; font-size: 18px; line-height: 1.65; color: var(--muted); }
.prose__lead--sm { margin-top: 26px; max-width: 620px; font-size: 17.5px; }
.prose__lead--tight { margin-top: 18px; }
.prose__lead strong { color: var(--ink); }
.prose__emphasis { margin: 20px auto 0; max-width: 600px; font-size: 18px; line-height: 1.55; font-weight: 700; color: var(--ink); }
.prose-section .btn--cta { margin-top: 34px; }

.brand-mark { font-size: clamp(44px, 7vw, 86px); font-weight: 800; letter-spacing: -.04em; line-height: 1; }

.media-panel--wide { height: clamp(280px, 38vw, 440px); margin-top: 54px; border-radius: 24px; padding: 20px; }
.media-panel--light { background-color: var(--surface); }

.assurances {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 40px;
  margin-top: 42px;
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
}
.assurances__dot { color: #D6D6DE; }

/* ---------- Hover slider (still life -> worn) ----------
   The design drove this with JS hover state; CSS :hover does the same with no
   script. Touch devices simply keep the still-life face, as in the design. */

.slider-section { padding: clamp(60px, 8vw, 96px) 0 0; }

.slider__head {
  max-width: 1280px;
  margin: 0 auto 34px;
  padding: 0 var(--gutter);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}
.eyebrow--slider { margin-bottom: 12px; }
.slider__title { font-size: clamp(26px, 3.6vw, 42px); line-height: 1.06; font-weight: 800; letter-spacing: -.03em; }
.slider__hint { font-size: 14.5px; color: var(--muted); font-weight: 600; }

.slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 6px var(--gutter) 24px;
  scroll-snap-type: x mandatory;
}
.slider::-webkit-scrollbar { height: 8px; }
.slider::-webkit-scrollbar-thumb { background: #D6D6DE; border-radius: var(--r-pill); }

.slide { flex: none; width: 320px; scroll-snap-align: start; }

.slide__frames { position: relative; height: 380px; border-radius: var(--r-card); overflow: hidden; }

.slide__face {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 16px;
  transition: opacity .4s ease;
}
.slide__face > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.slide__face--still {
  opacity: 1;
  background-color: var(--surface);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(0, 0, 0, .022) 12px, rgba(0, 0, 0, .022) 24px);
}
.slide__face--worn {
  opacity: 0;
  background-color: var(--hero-bg);
  background-image: repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(255, 255, 255, .03) 12px, rgba(255, 255, 255, .03) 24px);
}
.slide__face--worn .ph-caption { color: rgba(255, 255, 255, .55); font-size: 11px; }
.slide__face:has(img) { background-image: none; }

.slide__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
  padding: 7px 13px;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .12);
  transition: opacity .3s;
  z-index: 2;
}

.slide__frames:hover .slide__face--still,
.slide__frames:focus-within .slide__face--still { opacity: 0; }
.slide__frames:hover .slide__face--worn,
.slide__frames:focus-within .slide__face--worn { opacity: 1; }
.slide__frames:hover .slide__badge,
.slide__frames:focus-within .slide__badge { opacity: 0; }

.slide__name { margin-top: 16px; font-size: 18px; font-weight: 800; letter-spacing: -.015em; }
.slide__sub { font-size: 14.5px; color: var(--muted); margin-top: 2px; }

/* ---------- Statement hero (La differenza) ---------- */

.hero--statement { margin-top: clamp(70px, 9vw, 120px); min-height: 560px; }
.hero__media--soft::after { background: linear-gradient(95deg, rgba(8, 8, 16, .85) 0%, rgba(8, 8, 16, .45) 55%, rgba(8, 8, 16, 0) 100%); }
.hero__content--narrow { max-width: 520px; }
.hero__title--md { font-size: clamp(34px, 5vw, 60px); line-height: 1.02; letter-spacing: -.03em; }
.hero__intro { margin-top: 24px; font-size: 17px; color: rgba(255, 255, 255, .78); }
.hero__list { margin: 16px 0 0; padding-left: 22px; font-size: 17px; line-height: 1.9; list-style: disc; }
.hero__closing { margin-top: 24px; font-size: 18px; font-weight: 700; line-height: 1.45; }

/* ---------- Pull quote ---------- */

.quote-section { max-width: 900px; text-align: center; padding: clamp(70px, 9vw, 110px) var(--gutter) 0; }
.quote {
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.5;
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  text-wrap: balance;
}
.quote--sm { margin-top: 24px; font-size: clamp(18px, 2.2vw, 24px); line-height: 1.55; color: var(--muted); }
.quote strong { font-weight: 800; color: var(--ink); }

.section__lead--short { max-width: 480px; margin-top: 18px; font-size: 18px; }
.panel__title--sm { font-size: 24px; }

/* ---------- MPO tech section ---------- */

.mpo { margin-top: clamp(70px, 9vw, 120px); background: var(--tech-bg); color: #fff; }
.mpo__head { max-width: 1040px; margin: 0 auto; padding: clamp(60px, 8vw, 100px) var(--gutter) 0; text-align: center; }
.mpo__title { font-size: clamp(30px, 4.4vw, 52px); line-height: 1.08; font-weight: 800; letter-spacing: -.03em; text-wrap: balance; }

.media-panel--mpo {
  height: clamp(240px, 32vw, 380px);
  margin-top: 48px;
  border-radius: 24px;
  justify-content: center;
  padding: 20px;
  background-color: var(--tech-panel);
  background-image:
    radial-gradient(ellipse at 50% 50%, rgba(70, 110, 255, .22), transparent 62%),
    repeating-linear-gradient(45deg, transparent, transparent 14px, rgba(255, 255, 255, .025) 14px, rgba(255, 255, 255, .025) 28px);
}
.media-panel--mpo .ph-caption { color: rgba(255, 255, 255, .5); font-size: 11px; letter-spacing: .09em; }

.mpo__lead { margin: 48px auto 0; max-width: 580px; font-size: 17px; line-height: 1.65; color: rgba(255, 255, 255, .72); }
.mpo__emphasis { margin: 18px auto 0; max-width: 560px; font-size: 16.5px; font-weight: 700; }
.mpo__claim { margin: 30px auto 0; font-size: clamp(22px, 3vw, 34px); font-weight: 800; letter-spacing: -.02em; }

.mpo__features {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px var(--gutter) 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.mpo-card { background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--r-card); padding: 34px; }
.mpo-card__title { font-size: 20px; font-weight: 800; letter-spacing: -.01em; margin-bottom: 14px; }
.mpo-card__desc { font-size: 15px; line-height: 1.6; color: rgba(255, 255, 255, .66); }

.mpo__split {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 90px) var(--gutter) clamp(60px, 8vw, 100px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
  align-items: center;
}
.mpo__subtitle { font-size: clamp(28px, 3.6vw, 44px); line-height: 1.05; font-weight: 800; letter-spacing: -.03em; }
.mpo__body { margin-top: 22px; font-size: 16.5px; line-height: 1.6; color: rgba(255, 255, 255, .7); max-width: 420px; }
.mpo__cta { margin-top: 30px; }
.mpo__cta:hover { background: #3a3ac4; transform: translateY(-2px); }

.mpo__lenses { display: flex; flex-direction: column; gap: 14px; }
.mpo-pill {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--r-pill);
  padding: 16px 26px;
  font-size: 15.5px;
  line-height: 1.4;
  color: rgba(255, 255, 255, .82);
}
.mpo-pill strong { color: #fff; font-weight: 800; }

@media (max-width: 760px) {
  .mpo-pill { border-radius: 18px; }
  .slide { width: 260px; }
  .slide__frames { height: 320px; }
}

/* Sartoriali Vista: flat hero (no extra top padding), tighter eyebrow. */
.hero-split--flat { padding-top: 80px; padding-bottom: 30px; }
.eyebrow--tight { margin-bottom: 20px; }
.contact__lead--wide { max-width: 480px; }
.section--features { max-width: 1080px; padding: 90px var(--gutter) 10px; }
.cta-band-wrap--slim { padding-top: 70px; }
