/* =========================================================================
   Self Storage Solution - sections.css
   Stili di sezione + componenti pagina. Stile da Sito Web 8,
   con i blocchi delle pagine-argomento (struttura Sito Web 7).
   ========================================================================= */

/* ------------------------------- HERO ---------------------------------- */
.hero { position: relative; min-height: 100vh; min-height: 100svh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; background: var(--ink); }
.hero__media video, .hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__img-progressive { transition: opacity 0.6s var(--ease); }
.hero__img-progressive.is-swapping { opacity: 0; }
.page-header--video .hero__media video { object-position: center top; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,13,15,0.55) 0%, rgba(13,13,15,0.12) 38%, rgba(13,13,15,0.78) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(3rem, 9vh, 7rem); padding-top: calc(var(--nav-h) + 2rem); }
.hero__title { max-width: 16ch; margin: 1.4rem 0 1.6rem; text-shadow: 0 2px 10px rgba(0,0,0,0.45); font-size: clamp(2.6rem, 1.4rem + 5.8vw, 6.6rem); line-height: 1.1; }
.hero__title .word, .hero h1 .word, .page-header h1 .word { display: inline-block; overflow: hidden; vertical-align: top; padding: 0.1em 0.18em; margin: -0.1em -0.18em; }
.hero__title .word > span, .hero h1 .word > span, .page-header h1 .word > span { display: inline-block; transform: translateY(110%); transition: transform 0.9s var(--ease); will-change: transform; }
.hero.is-ready .hero__title .word > span, .hero.is-ready h1 .word > span, .page-header.is-ready h1 .word > span { transform: none; }
.hero__title .accent { color: var(--gold); }
.hero__sub { max-width: 52ch; color: rgba(255,255,255,0.86); font-size: clamp(1.05rem, 1rem + 0.5vw, 1.35rem); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.hero__scroll { position: absolute; left: 50%; bottom: 1.4rem; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.7); }
.hero__scroll .mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,0.6); border-radius: 14px; position: relative; }
.hero__scroll .mouse::after { content: ""; position: absolute; left: 50%; top: 7px; width: 3px; height: 7px; border-radius: 3px; background: #fff; transform: translateX(-50%); animation: scrollDot 1.8s var(--ease) infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translate(-50%, 0); } 30% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 12px); } }

/* ----------------------------- MANIFESTO ------------------------------- */
.manifesto { background: #fff; color: #000; position: relative; overflow: hidden; }
.manifesto::before { content: ''; position: absolute; bottom: 0; right: 0; width: 40rem; height: 40rem; background: radial-gradient(circle at bottom right, rgba(238, 30, 35, 0.05), transparent 70%); pointer-events: none; }
.manifesto .container { position: relative; z-index: 1; }
.manifesto .container { padding-block: clamp(5rem, 14vh, 11rem); }
.manifesto__statement { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.03em; line-height: 1.04; font-size: clamp(2.4rem, 1.2rem + 7vw, 6.5rem); max-width: 18ch; }
.manifesto__statement .line { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.manifesto__statement .line > span { display: block; transform: translateY(105%); transition: transform 1s var(--ease); will-change: transform; }
.manifesto__statement.is-in .line > span { transform: none; }
.manifesto__statement .line:nth-child(2) > span { transition-delay: 0.1s; }
.manifesto__statement .line:nth-child(3) > span { transition-delay: 0.2s; }
.manifesto__statement .line:nth-child(4) > span { transition-delay: 0.3s; }
.manifesto__statement .alt { color: var(--red); }
.manifesto__sub { margin-top: 2.4rem; max-width: 60ch; color: var(--muted); font-size: clamp(1.05rem, 1rem + 0.4vw, 1.3rem); }

/* ----------------------------- STORY / SPLIT --------------------------- */
.story__row { display: grid; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; margin-bottom: clamp(3rem, 7vw, 6rem); }
.story__row:last-child { margin-bottom: 0; }
.story__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 16/9; background: var(--paper-2); }
.story__media img { width: 100%; height: 100%; object-fit: cover; }
.story__media--tall { aspect-ratio: 4/3; }

/* Intestazione sezione affiancata da immagine quadrata alta quanto il testo */
.story-head-row { margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.story-head-row > .kicker { display: inline-flex; }
.story-head-row__grid { display: grid; grid-template-columns: 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); margin-top: 0.8rem; align-items: stretch; }
.story-head-row__text { display: flex; flex-direction: column; justify-content: center; max-width: 56ch; margin-bottom: 0; }
.story-head-row__media { position: relative; display: flex; flex-direction: row; gap: 2rem; }
.story-head-row__media img { width: 100%; height: auto; aspect-ratio: 1/1; object-fit: cover; display: block; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); background: var(--paper-2); }
@media (min-width: 900px) {
  .story-head-row__grid { grid-template-columns: 1fr auto; align-items: start; }
  .story-head-row__media { width: auto; }
  .story-head-row__media img { width: clamp(196px, 22.4vw, 280px); }
}
.story__media video { width: 100%; height: 100%; object-fit: cover; display: block; background: #000; }
.story__media .tag { position: absolute; left: 1rem; bottom: 1rem; background: var(--red); color: #fff; font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.4rem 0.7rem; border-radius: 4px; }
.story__media .video-badge { position: absolute; top: 0.85rem; left: 0.95rem; z-index: 2; display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.35rem 0.75rem; background: rgba(0,0,0,0.6); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); color: #fff; font-size: 0.68rem; font-weight: 700; border-radius: 100px; letter-spacing: 0.12em; text-transform: uppercase; }
.story__media .video-badge::before { content: ''; width: 6px; height: 6px; background: var(--red); border-radius: 50%; animation: pulseDot 2s infinite; }
@keyframes pulseDot { 0%, 100% { box-shadow: 0 0 0 0 rgba(238, 30, 35, 0.5); } 50% { box-shadow: 0 0 0 6px rgba(238, 30, 35, 0); } }
.story__text p + p { margin-top: 1.1rem; }
.story__text h2 { margin-bottom: 0.6rem; }
.section-head--centered { max-width: 70ch; margin-inline: auto; text-align: center; }
.section-head--centered .kicker { justify-content: center; }
.section-head--centered .lead { margin-inline: auto; }
@media (min-width: 900px) {
  .story__row { grid-template-columns: 1fr 1fr; }
  .story__row.is-reverse .story__media { order: 2; }
}
.management-intro { width: 100%; max-width: none; }
.management-intro .h2, .management-intro .lead { max-width: none; }
.management-areas {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.06);
}
.management-areas .story__row { margin-bottom: 0; padding: clamp(1.5rem, 3vw, 2.5rem); gap: clamp(1.5rem, 4vw, 3.5rem); }
.management-areas .story__row + .story__row { border-top: 1px solid var(--line); }
.management-areas .story__row:nth-child(even) { background: #fbfbfb; }
.management-areas .story__media { box-shadow: var(--shadow-sm); }
.management-heart .container { text-align: center; }
.management-heart .section-head { max-width: 62ch; margin-inline: auto; text-align: center; }
.management-heart .section-head .kicker { justify-content: center; }
.management-heart .section-head .lead { max-width: 62ch; margin-inline: auto; }
.management-heart__link { margin-top: 1.5rem; text-align: center; }
.management-heart__link .link-arrow { justify-content: center; }

.seo-list { list-style: none; counter-reset: seo-item; display: grid; gap: 0.75rem; padding-left: 0 !important; }
.seo-list li { position: relative; padding-left: 2.8rem; }
.seo-list li::before {
  counter-increment: seo-item;
  content: counter(seo-item);
  position: absolute;
  top: 0.2rem;
  left: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1;
}
.counters { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; margin-top: clamp(3rem, 7vw, 5rem); grid-template-columns: 1fr 1fr; }
.section--dark .counters { background: var(--line-dark); border-color: var(--line-dark); }
.counter { background: var(--paper); padding: clamp(1.4rem, 3vw, 2.4rem); }
.section--dark .counter { background: var(--ink-soft); }
.counter__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(2.6rem, 1.6rem + 4vw, 4.6rem); line-height: 1; letter-spacing: -0.03em; }
.counter__num .suffix { color: var(--red); }
.counter__label { margin-top: 0.5rem; font-size: 0.9rem; color: var(--muted); max-width: 22ch; }
.section--dark .counter__label { color: var(--muted-dark); }
@media (min-width: 860px) { .counters { grid-template-columns: repeat(4, 1fr); } }

/* ---------------------------- LOOP VIDEO -------------------------------- */
.loopvid { position: relative; height: 100vh; height: 100svh; overflow: hidden; display: flex; align-items: flex-end; justify-content: center; background: var(--ink); }
.loopvid__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.loopvid::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 90% at 50% 50%, transparent 30%, rgba(13,13,15,0.5) 100%); z-index: 1; }
.loopvid::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(0,0,0,0.15) 1px, transparent 0); background-size: 4px 4px; z-index: 1; }
.loopvid__caption { position: relative; z-index: 2; text-align: center; color: #fff; padding-inline: var(--gutter); padding-bottom: 200px; }
.loopvid__title { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.9rem, 1.2rem + 4vw, 4rem); line-height: 1.05; letter-spacing: -0.03em; margin: 0; text-shadow: 0 4px 24px rgba(0,0,0,0.8), 0 2px 8px rgba(0,0,0,0.7); }

/* ----------------------------- SERVIZI --------------------------------- */
.services-grid { display: grid; gap: var(--gutter); grid-template-columns: 1fr; }
@media (min-width: 760px) { .services-grid { grid-template-columns: 1fr 1fr; } }
.scard {
  position: relative; display: flex; flex-direction: column;
  background: linear-gradient(180deg, var(--paper) 0%, #fffafa 100%);
  border: 1px solid rgba(238, 30, 35, 0.14);
  border-radius: var(--radius-card);
  overflow: hidden; transition: var(--transition-card);
  box-shadow: 0 18px 60px rgba(17, 17, 17, 0.08);
  contain: layout paint;
  isolation: isolate;
}
.scard::after {
  content: ''; position: absolute; right: calc(1.5rem + 22px); bottom: 0; width: calc((100% - 3rem) * 0.225); height: 4px;
  background: linear-gradient(90deg, var(--red), rgba(238, 30, 35, 0.8));
  border-radius: 4px 4px 0 0; transform: scaleX(1); transform-origin: right;
  transition: width var(--dur-base) var(--ease); z-index: 3;
}
@media (hover: hover) and (pointer: fine) {
  .scard:hover { transform: translateY(-6px); box-shadow: 0 26px 75px rgba(17, 17, 17, 0.13); border-color: var(--red-border); }
  .scard:hover::after { width: calc(100% - 3rem); }
}
.scard--no-cta::after { left: 50%; right: auto; transform: translateX(-50%); transform-origin: center; }
.scard--no-cta:hover::after { width: calc(100% - 3rem); }
.section--dark .scard h3, .section--dark .scard .h3 { color: var(--ink); }
.section--dark .scard p { color: var(--muted); }
.team-card { align-items: center; padding: 2rem; text-align: center; }
.team-card__portrait { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 3px solid var(--red); }
.team-card__content { max-width: 34ch; }
.team-card__content .h3 { margin-bottom: 0.3rem; }
.team-card__role { margin-bottom: 0.8rem; font-size: 0.85rem; }
.team-card__bio { margin: 0; color: var(--muted); font-size: 0.95rem; }
.team-photo { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-card); box-shadow: var(--shadow-md); }
.team-photo img { display: block; width: 100%; height: auto; max-height: 620px; object-fit: cover; }
.team-caption { padding: 1.5rem; background: var(--paper); text-align: center; }
.team-caption strong { color: var(--ink); font-size: 1.1rem; }
.components-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.components-grid .scard { padding: 2rem; background: var(--paper); border-radius: var(--radius-md); border: 1px solid var(--line); }
.components-grid .scard h3 { margin-bottom: 0.8rem; }
.bureaucratic-card, .nla-impact-card { padding: 2.5rem; background: var(--paper-2); border-radius: var(--radius-card); border: 1px solid var(--line); }
.bureaucratic-card h3, .nla-impact-card h3 { color: var(--red); margin-bottom: 1rem; }
/* Elenco a step: pallino rosso numerato per rendere leggibile la sequenza */
.bureaucratic-card ul, .nla-impact-card ul {
  list-style: none; padding-left: 0; margin-top: 1.2rem;
  counter-reset: step-dot;
  display: grid; gap: 1rem;
  line-height: 1.6;
}
.bureaucratic-card li, .nla-impact-card li {
  counter-increment: step-dot;
  position: relative;
  padding-left: 2.9rem;
  min-height: 1.9rem;
}
.bureaucratic-card li::before, .nla-impact-card li::before {
  content: counter(step-dot);
  position: absolute; left: 0; top: 0.05em;
  width: 1.9rem; height: 1.9rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--red); color: #fff;
  font-family: var(--font-mono); font-weight: 600; font-size: 0.78rem; line-height: 1;
}
.bureaucratic-card li strong, .nla-impact-card li strong { color: var(--ink); }
.section--red.text-center, .box-business-cta { text-align: center; }
.box-business-cta { contain: none; margin-bottom: -1px; }
.box-business-cta .container { display: flex; flex-direction: column; align-items: center; }
.box-business-cta h2 { margin-bottom: 1rem; }
.box-business-cta .lead { max-width: 48ch; margin-inline: auto; margin-bottom: 2rem; }
.split-intro { max-width: none; }
.split-intro p { max-width: none; }
.split-card-layout { display: grid; grid-template-columns: 1fr; gap: var(--gutter); align-items: stretch; }
.split-card-layout > * { min-width: 0; }
.image-placeholder {
  min-height: 360px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0.8rem;
  padding: 2rem;
  border: 1px dashed rgba(238, 30, 35, 0.42);
  border-radius: var(--radius-card);
  color: var(--red);
  background:
    linear-gradient(135deg, rgba(238, 30, 35, 0.08), transparent 60%),
    repeating-linear-gradient(-45deg, rgba(238, 30, 35, 0.035) 0 10px, transparent 10px 20px),
    var(--paper-2);
  text-align: center;
}
.image-placeholder svg { width: 74px; height: 74px; }
.image-placeholder span { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; }
.image-placeholder small { color: var(--muted); font-size: 0.9rem; }
.split-image {
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--paper-2);
  box-shadow: var(--shadow-md);
}
.split-image img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
@media (min-width: 760px) {
  .split-card-layout { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}
.scard__media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--paper-2); width: 100%; }
.scard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease-out); }
@media (hover: hover) and (pointer: fine) { .scard:hover .scard__media img { transform: scale(1.05); } }
.scard__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.18) 35%, rgba(0,0,0,0.72) 100%), linear-gradient(135deg, rgba(238,30,35,0.32), transparent 55%); pointer-events: none; }
.scard__title { position: absolute; bottom: 50%; left: 2rem; right: 2rem; transform: translateY(50%); font-family: var(--font-display); font-size: clamp(1.55rem, 2.8vw, 2.35rem); font-weight: 800; color: #fff; margin: 0; text-align: center; text-shadow: 0 2px 8px rgba(0,0,0,0.5); z-index: 1; }
.scard__body { padding: clamp(1.4rem, 3vw, 2rem); display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.scard__audience { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); font-weight: 600; }
.scard p { color: var(--muted); }
.scard .link-arrow { margin-top: auto; padding-top: 0.5rem; align-self: flex-end; }
.scard { text-decoration: none; color: inherit; }
@media (hover: hover) and (pointer: fine) {
  .scard:hover .link-arrow svg { transform: translateX(4px); }
}

/* Blog feature card: linea rossa base +20% e card interamente cliccabile */
.blog-feature-card::after { width: calc((100% - 3rem) * 0.34); }
.blog-feature-card .link-arrow::after { content: ''; position: absolute; inset: 0; z-index: 4; }

/* Realizzazioni feature card: linea base lunga, kicker centrato, card cliccabile */
.real-card::after { width: calc((100% - 3rem) * 0.41); left: 50%; right: auto; transform: translateX(-50%); transform-origin: center; }
.real-card--right::after { background: linear-gradient(90deg, var(--ink), rgba(26, 26, 26, 0.8)); }
.real-card__kicker { align-self: center; margin-top: 1.5rem; }
.real-card__cta { margin-top: 1.5rem; }
.real-card__cta::after { content: ''; position: absolute; inset: 0; z-index: 4; }

/* Altri servizi (mini card) */
.othersrv { display: grid; gap: var(--gutter); grid-template-columns: 1fr; margin-top: 2rem; }
@media (min-width: 720px) { .othersrv { grid-template-columns: repeat(3, 1fr); } }
.osrv { display: block; border: 1px solid rgba(238, 30, 35, 0.14); border-radius: var(--radius-xl); padding: 1.5rem; background: var(--paper); transition: var(--transition-card); box-shadow: 0 8px 30px rgba(17, 17, 17, 0.04); contain: layout paint; }
@media (hover: hover) and (pointer: fine) { .osrv:hover { transform: translateY(-4px); border-color: var(--red-border); box-shadow: 0 16px 45px rgba(17, 17, 17, 0.08); } }
.osrv__ico { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 10px; background: rgba(238,30,35,0.08); color: var(--red); }
.osrv__ico svg { width: 22px; height: 22px; }
.osrv h3 { font-size: 1.15rem; margin: 1rem 0 0.3rem; }
.osrv p { color: var(--muted); font-size: 0.92rem; }
.othersrv-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }

/* Bullets "cosa significa in concreto" */
.bullets { display: grid; gap: 1.3rem; margin-top: 1.8rem; }
.bullets li { display: flex; gap: 1rem; }
.bullets .ck { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--red); color: #fff; display: grid; place-items: center; margin-top: 2px; }
.bullets .ck svg { width: 14px; height: 14px; }
.bullets h3 { font-size: 1.15rem; }
.bullets p { color: var(--muted); margin-top: 0.2rem; }

/* Processo in 3 passi */
.service-steps { border-top: 1px solid var(--line); }
.process { display: grid; gap: 0; grid-template-columns: 1fr; margin-top: 2.5rem; counter-reset: step; }
.process__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 210px;
  padding: 2rem 3.8rem 2rem 22%;
  transition: var(--transition-card);
}
/* Forma a chevron su pseudo-elemento: ritagliata e dietro al contenuto */
.process__step::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--paper);
  clip-path: polygon(0 0, 78% 0, 100% 50%, 78% 100%, 0 100%, 16% 50%);
  filter: drop-shadow(0 10px 16px rgba(17, 17, 17, 0.09));
  transition: var(--transition-card);
}
.process__step + .process__step { margin-top: -1.25rem; }
.process__step:nth-child(2) { z-index: 2; }
.process__step:nth-child(3) { z-index: 3; }
.process__step:nth-child(4) { z-index: 4; }
.section--paper2 .process__step::before { background: var(--paper); }
/* Numero fuori dal flusso: grande e sfumato davanti alla chevron, dietro al testo */
.process__n {
  position: absolute; left: 12%; top: 50%; transform: translateY(-50%);
  z-index: 1; pointer-events: none; user-select: none;
  font-family: var(--font-display); font-weight: 800; line-height: 1;
  font-size: clamp(5rem, 3.5rem + 5vw, 8rem); letter-spacing: -0.04em;
  background-image: linear-gradient(180deg, rgba(238, 30, 35, 0.30), rgba(238, 30, 35, 0.02));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.process__step h3, .process__step p { position: relative; z-index: 2; }
.process__step h3 { margin-top: 0; font-size: clamp(1.05rem, 0.96rem + 0.35vw, 1.3rem); line-height: 1.1; }
.process__step p { margin-top: 0.9rem; font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; line-height: 1.25; color: var(--ink); }
.process--four { margin-top: 3.5rem; }
.process--four .process__step {
  min-height: 300px;
  padding: 2.25rem 2.75rem 2.25rem 19%;
}
.process--four .process__step::before { background: linear-gradient(145deg, #fff 0%, #fafafa 100%); }
.process--four .process__n { left: 4%; font-size: clamp(4.5rem, 3rem + 5vw, 7.5rem); }
.process--four .process__step h3 { max-width: 17ch; }
.process--four .process__step p { margin-top: 0.65rem; font-family: var(--font-sans); font-weight: 400; font-size: 0.98rem; line-height: 1.45; color: var(--muted); }
@media (min-width: 760px) {
  .process { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
  .process__step { min-height: 250px; padding: 2rem 3.8rem 2rem 22%; }
  .process__step + .process__step { margin-top: 0; margin-left: -3rem; }
}
@media (min-width: 900px) {
  .process--four { grid-template-columns: repeat(4, 1fr); }
  .process--four .process__step { min-height: 320px; padding-right: 2.4rem; }
  .process--four .process__step + .process__step { margin-left: -1.75rem; }
  .process--four.process--five { grid-template-columns: repeat(5, 1fr); }
  .process--four.process--five .process__step { min-height: 320px; padding-right: 1.8rem; padding-left: 17%; }
  .process--four.process--five .process__step + .process__step { margin-left: -1.25rem; }
  .process--four.process--five .process__n { font-size: clamp(3.5rem, 2.5rem + 4vw, 6rem); }
  .process--four.process--five .process__step h3 { max-width: 15ch; }
}
@media (min-width: 760px) and (max-width: 899px) {
  .process--four { grid-template-columns: 1fr; }
  .process--four .process__step + .process__step { margin-left: 0; margin-top: -1.25rem; }
}
@media (hover: hover) and (pointer: fine) {
  .process__step:hover { z-index: 5; transform: translateY(-4px); }
  .process__step:hover::before { filter: drop-shadow(0 16px 18px rgba(17, 17, 17, 0.14)); }
}

/* Tabella metrature */
.sizes-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.sizes-table th, .sizes-table td { text-align: left; padding: 0.75rem 0.5rem; border-bottom: 1px solid var(--line); }
.sizes-table th { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.sizes-table td:first-child { font-weight: 700; }
.sizes-table td:last-child { color: var(--muted); }

/* --------------------------- DISCLAIMER NOTE --------------------------- */
.growth__note { margin-top: 2.5rem; font-size: 0.82rem; color: var(--muted-dark); max-width: 70ch; }

/* ----------------------------- PERCHE SSS ------------------------------ */
.reasons { display: grid; gap: 0; grid-template-columns: 1fr; }
.reason { position: relative; padding: clamp(1.6rem, 3vw, 2.2rem) 0; }
/* Filetti disegnati come pseudo-elementi: restano sopra il numero di sfondo */
.reason::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px; background: var(--line); z-index: 2; }
.reason:last-child::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--line); z-index: 2; }
/* Numero: grande, sfumato dal rosso al trasparente, dietro testo e filetto */
.reason__n {
  position: absolute; top: -0.28em; right: 0; z-index: 0;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(6rem, 4rem + 9vw, 11rem); line-height: 1; letter-spacing: -0.04em;
  background-image: linear-gradient(180deg, rgba(238, 30, 35, 0.30), rgba(238, 30, 35, 0.02));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  pointer-events: none; user-select: none;
}
.reason h3, .reason p { position: relative; z-index: 1; }
.reason h3 { font-size: clamp(1.4rem, 1.1rem + 1.4vw, 2.1rem); margin: 0.5rem 0 0.6rem; }
.reason p { color: var(--muted); max-width: 60ch; }
@media (min-width: 900px) {
  .reasons { grid-template-columns: repeat(5, 1fr); gap: var(--gutter); }
  .reason { padding-top: 1.4rem; }
  .reason::before { height: 2px; background: var(--ink); }
  .reason:last-child::after { display: none; }
  .reason h3 { font-size: 1.25rem; }
  .reason__n { font-size: clamp(5rem, 3rem + 5vw, 7.5rem); top: -0.22em; }
}

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(8,8,10,0.94); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease); padding: 4vw; }
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 84vh; border-radius: 8px; }
.lightbox__cap { position: absolute; bottom: 4vw; left: 0; right: 0; text-align: center; color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.lightbox__btn { position: absolute; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.2); color: #fff; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; transition: background 0.2s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.2s cubic-bezier(0.22, 1, 0.36, 1); }
.lightbox__btn:hover { background: var(--red); border-color: var(--red); }
.lightbox__btn svg { width: 22px; height: 22px; }
.lightbox__close { top: 4vw; right: 4vw; }
.lightbox__prev { left: 2vw; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 2vw; top: 50%; transform: translateY(-50%); }

/* --------------------------- FULL GALLERY ------------------------------- */
.fullgallery-section { contain: none !important; overflow: visible; padding-top: 0; padding-bottom: 0; background: var(--ink); color: #fff; }
.fullgallery-section .section-head { text-align: center; max-width: none; margin-inline: auto; padding-top: calc(clamp(3rem, 7vw, 5rem) + 40px); margin-bottom: 40px; }

/* Team hero: singola immagine quasi a schermo intero (sostituisce il collage scroll). */
.team-hero { margin: 0; width: 100%; height: 90vh; height: 90svh; background: var(--ink); overflow: hidden; }
.team-hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 699px) { .team-hero { height: 70vh; height: 70svh; } }
.fullgallery { position: relative; height: calc(4 * 100vh); height: calc(4 * 100svh); }
.fullgallery__sticky { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; background: var(--ink); }
.fullgallery__item { position: absolute; inset: 0; margin: 0; display: flex; align-items: center; justify-content: center; transform: translateY(100%); will-change: transform; background: var(--ink); }
.fullgallery__item:first-child { transform: translateY(0); }
.fullgallery__item:not(:first-child) { box-shadow: 0 -28px 60px -18px rgba(0,0,0,0.55); }
.fullgallery__item img { width: 100%; height: 100%; object-fit: cover; }
.fullgallery--contain .fullgallery__item img { object-fit: contain; }

/* Fallback statico (mobile / reduced-motion): immagini in colonna */
.fullgallery.is-static { height: auto; }
.fullgallery.is-static .fullgallery__sticky { position: relative; height: auto; display: block; overflow: visible; }
.fullgallery.is-static .fullgallery__item { position: relative; inset: auto; transform: none !important; box-shadow: none; height: 70vh; height: 70svh; }
.fullgallery.is-static .fullgallery__item + .fullgallery__item { margin-top: 4px; }
@media (max-width: 699px) {
  .fullgallery { height: auto; }
  .fullgallery__sticky { position: relative; height: auto; display: flex; flex-direction: column; gap: 4px; padding: 0; overflow: visible; }
  .fullgallery__item { position: relative; inset: auto; height: 70vh; height: 70svh; transform: none; box-shadow: none; }
}

/* ----------------------------- LEAD FORM -------------------------------- */
.partner-form { background: var(--paper); color: var(--ink); border: 1px solid rgba(238, 30, 35, 0.12); border-radius: var(--radius-xl); padding: clamp(1.5rem, 3vw, 2.4rem); box-shadow: 0 20px 60px rgba(17, 17, 17, 0.06); }

/* ----------------------------- CONTATTI -------------------------------- */
/* Hero con padding-bottom generoso; la sezione resta trasparente e sono le card
   a salire con margin-top negativo, sovrapponendosi all'immagine dell'hero. */
.contact-page .page-header { padding-bottom: clamp(7rem, 12vw, 12rem); }
.section--contact { padding-top: 0; padding-bottom: 3rem; background: radial-gradient(circle at top left, rgba(238, 30, 35, 0.12), transparent 40rem), radial-gradient(circle at bottom right, rgba(238, 30, 35, 0.10), transparent 40rem), var(--paper); position: relative; z-index: 2; }
.contact-page .contact-split { margin-top: clamp(-9rem, -7.5vw, -4.5rem); }
.contact-page .contact-split > div { position: relative; z-index: 1; }
.contact-page .partner-form,
.contact-page .contact-card { box-shadow: 0 26px 70px rgba(17, 17, 17, 0.14); }
.contact-card { background: var(--paper); color: var(--ink); border: 1px solid rgba(238, 30, 35, 0.12); border-radius: var(--radius-xl); padding: clamp(1.5rem, 3vw, 2.4rem); box-shadow: 0 20px 60px rgba(17, 17, 17, 0.06); }
.contact-split { display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: 1fr; }
@media (min-width: 940px) { .contact-split { grid-template-columns: 1fr 1fr; } }
.contact-info li { display: flex; gap: 0.9rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.contact-info li:first-child { padding-top: 0; }
.contact-info li svg { flex: none; width: 22px; height: 22px; color: var(--red); margin-top: 2px; }
.contact-info a:hover { color: var(--red); text-decoration: underline; }
.contact-info .label { font-family: var(--font-display); font-size: clamp(0.9rem, 0.82rem + 0.2vw, 1.05rem); letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); font-weight: 800; display: block; margin-bottom: 0.2rem; }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); margin-top: 2rem; filter: grayscale(0.3) contrast(1.05); }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ----------------------- Coverage map (immagine statica) ------------------- */
.coverage-map-wrap { width: 100%; }
.coverage-map {
  border-radius: var(--radius-card);
  border: 2px solid rgba(238, 30, 35, 0.4);
  box-shadow: 0 30px 70px -28px rgba(13, 13, 15, 0.55);
  overflow: hidden;
}
.coverage-map img { display: block; }

/* ------------------------- CTA STRIP / PAGE HEADER --------------------- */
.cta-strip { background: url('/assets/img/SSS_Banner_CTA.webp') center / cover no-repeat, var(--ink); color: #fff; position: relative; }
.cta-strip .container { padding-block: clamp(4rem, 9vw, 7rem); display: flex; flex-direction: column; align-items: flex-start; gap: 1.8rem; text-align: left; }
.cta-strip h2 { font-size: clamp(1.8rem, 1.2rem + 3vw, 3.2rem); max-width: 22ch; color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,0.7); }
/* Il bottone della fascia CTA e' sempre rosso pieno con testo bianco, come in home */
.cta-strip .btn, .cta-strip__btn { --bg: var(--red); --fg: #fff; background: var(--red); border-color: var(--red); color: #fff; box-shadow: 0 2px 12px rgba(0,0,0,0.5); }
@media (hover: hover) and (pointer: fine) {
  .cta-strip .btn:hover, .cta-strip__btn:hover { background: var(--red-600); border-color: var(--red-600); color: #fff; box-shadow: 0 12px 26px -12px rgba(0,0,0,0.7); }
}

.page-header { padding-top: calc(var(--nav-h) + clamp(3rem, 8vw, 6rem)); padding-bottom: clamp(2.5rem, 6vw, 4rem); background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.page-header::after { content: "SSS"; position: absolute; right: -0.1em; top: -0.15em; font-family: var(--font-display); font-weight: 800; font-size: clamp(8rem, 22vw, 18rem); line-height: 1; color: rgba(255,255,255,0.03); pointer-events: none; }
.page-header .container { position: relative; z-index: 1; }
.page-header .crumbs { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-dark); margin-bottom: 1.4rem; }
.page-header .crumbs a:hover { color: #fff; }
.page-header .crumbs span { color: var(--gold); }
.page-header .kicker.on-dark { margin-bottom: 1.1rem; }
.page-header h1 { font-size: clamp(2.4rem, 1.6rem + 4vw, 4.6rem); max-width: 18ch; text-shadow: 0 2px 10px rgba(0,0,0,0.45); }
.page-header .lead { margin-top: 1.2rem; max-width: 60ch; color: var(--muted-dark); }

/* Variante con immagine di sfondo */
.page-header--bg { background-image: linear-gradient(rgba(13,13,15,0.45), rgba(13,13,15,0.65)), var(--hero-bg); background-size: cover; background-position: center; }
.page-header--bg::after { color: rgba(255,255,255,0.06); }
.page-header--bright::before { content: ""; position: absolute; inset: 0; background-image: var(--hero-bg); background-size: cover; background-position: center; filter: brightness(1.25); z-index: 0; }
.page-header--bright { background-image: linear-gradient(rgba(13,13,15,0.45), rgba(13,13,15,0.65)); }
.page-header--bright > .container { position: relative; z-index: 2; }
.page-header--bright::after { z-index: 1; }

/* Variante con video di sfondo (es. indice servizi) */
.page-header--video { min-height: auto; display: block; align-items: stretch; }
.page-header--video::after { display: none; }
.page-header--video .hero__inner { position: relative; z-index: 2; padding-top: calc(var(--nav-h) + clamp(3rem, 8vw, 6rem)); padding-bottom: clamp(2.5rem, 6vw, 4rem); }
.page-header--video .crumbs { color: rgba(255,255,255,0.7); }

/* Prose (legali / contenuti) */
.prose { max-width: 72ch; }
.prose h2 { font-size: clamp(1.4rem, 1.1rem + 1.4vw, 2rem); margin: 2.4rem 0 0.9rem; }
.prose h3 { font-size: 1.2rem; margin: 1.6rem 0 0.6rem; }
.prose p, .prose li { color: var(--ink); }
.prose p + p { margin-top: 1rem; }
.prose ul { list-style: disc; padding-left: 1.3rem; margin: 0.8rem 0; }
.prose li { margin-bottom: 0.4rem; }
.prose a { color: var(--red); text-decoration: underline; }
.story__text.prose h2:first-child { margin-top: 0; }

/* Feature list (subpagine) */
.feature-list { display: grid; gap: var(--gutter); grid-template-columns: 1fr; margin-top: 2rem; }
@media (min-width: 720px) { .feature-list { grid-template-columns: 1fr 1fr; } }
.feature { padding: 1.5rem; border: 1px solid rgba(238, 30, 35, 0.14); border-radius: var(--radius-xl); background: var(--paper); transition: var(--transition-card); box-shadow: 0 8px 30px rgba(17, 17, 17, 0.04); contain: layout paint; }
@media (hover: hover) and (pointer: fine) { .feature:hover { border-color: var(--red-border); box-shadow: 0 16px 45px rgba(17, 17, 17, 0.08); transform: translateY(-4px); } }
.feature__ico { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 10px; background: rgba(238,30,35,0.08); color: var(--red); margin-bottom: 0.9rem; }
.feature__ico svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.feature p { color: var(--muted); font-size: 0.96rem; }

/* Timeline (percorso investitori) */
.timeline-section .section-head { max-width: 48ch; margin-inline: auto; text-align: center; }
.timeline-section .section-head .kicker { justify-content: center; }
.timeline {
  position: relative;
  list-style: none;
  max-width: 1440px;
  margin: 4rem auto 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 1.35rem;
  bottom: 1.35rem;
  left: 1.35rem;
  width: 2px;
  background: linear-gradient(180deg, var(--red), rgba(238, 30, 35, 0.15));
}
.timeline__item {
  position: relative;
  min-width: 0;
  padding: 0 0 2.2rem 5rem;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__n {
  position: absolute;
  left: 0;
  top: 0;
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  border: 2px solid var(--red);
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.72rem;
  box-shadow: 0 0 0 6px var(--ink), 0 7px 18px rgba(0, 0, 0, 0.25);
  z-index: 1;
}
.timeline__item h3 { font-size: clamp(1.1rem, 1rem + 0.5vw, 1.35rem); margin-bottom: 0.35rem; }
.timeline__item p { color: var(--muted); max-width: 60ch; }
.section--dark .timeline__item h3 { color: #fff; }
.section--dark .timeline__item p { color: var(--muted-dark); }
.timeline__body {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  min-height: 7.5rem;
  padding: 1.25rem;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025));
}
.timeline__img-wrapper { flex: 0 0 100px; width: 100px; height: 100px; border-radius: 8px; overflow: hidden; background: var(--ink-soft); border: 1px solid var(--line-dark); }
.timeline__img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.timeline__content { flex: 1; }

@media (min-width: 1120px) {
  .timeline { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .timeline::before {
    top: 1.35rem;
    bottom: auto;
    left: 3%;
    right: 3%;
    width: auto;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--red) 5%, var(--red) 95%, transparent);
  }
  /* Solo questa fascia: padding laterale ridotto, cosi' le 6 card respirano di piu' */
  .timeline-section .container { max-width: none; padding-inline: clamp(16px, 2vw, 40px); }
  .timeline { max-width: none; }
  .timeline__item { display: flex; flex-direction: column; align-items: center; padding: 0 0.45rem; text-align: center; }
  .timeline__item:hover .timeline__body { border-color: rgba(238, 30, 35, 0.5); }
  .timeline__n { position: relative; left: auto; top: auto; flex: none; }
  .timeline__body { width: 100%; min-height: 0; margin-top: 1.35rem; flex-direction: column; gap: 1rem; align-items: center; }
  /* L'immagine occupa tutta la larghezza utile: stesso padding del testo */
  .timeline__img-wrapper { flex: none; width: 100%; height: auto; aspect-ratio: 1 / 1; border-radius: 10px; }
  .timeline__content { width: 100%; }
  /* Titoli lunghi ("Studio dell'investimento") non devono uscire dalla card */
  .timeline__item h3 { font-size: clamp(0.98rem, 0.6rem + 0.7vw, 1.25rem); hyphens: auto; overflow-wrap: break-word; }
  .timeline__item p { max-width: none; margin-inline: auto; }
}

@media (max-width: 576px) {
  .timeline { margin-top: 2.5rem; }
  .timeline::before { top: 1.35rem; bottom: 1.35rem; left: 1.35rem; right: auto; width: 2px; height: auto; background: linear-gradient(180deg, var(--red), rgba(238, 30, 35, 0.15)); }
  .timeline__item { min-height: 115px; padding-left: 5.2rem; }
  .timeline__n { width: 2.7rem; height: 2.7rem; }
  .timeline__body { gap: 1rem; min-height: 5.4rem; }
  .timeline__img-wrapper { flex: 0 0 70px; width: 70px; height: 70px; border-radius: 6px; }
}

/* Chips (elenco consigli) */
.chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chips li { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.04em; padding: 0.4rem 0.8rem; border: 1px solid var(--line); border-radius: 100px; color: var(--ink); background: var(--paper); }
.section--dark .chips li { border-color: var(--line-dark); color: #fff; background: rgba(255,255,255,0.04); }

/* FAQ */
.section--faq .section-head { margin-inline: auto; text-align: center; }
.section--faq .section-head .kicker { justify-content: center; }
.section--faq .section-head .h2 { margin-inline: auto; }
.faq { max-width: 820px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; text-align: left; padding: 1.3rem 0; font-family: var(--font-display); font-weight: 800; font-size: clamp(1.05rem, 1rem + 0.5vw, 1.35rem); }
.faq__q .pm { flex: none; width: 26px; height: 26px; position: relative; }
.faq__q .pm::before, .faq__q .pm::after { content: ""; position: absolute; background: var(--red); inset: 0; margin: auto; }
.faq__q .pm::before { width: 16px; height: 2px; }
.faq__q .pm::after { width: 2px; height: 16px; transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1); }
.faq__item.is-open .pm::after { transform: rotate(90deg); opacity: 0; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1); }
.faq__a p { padding-bottom: 1.3rem; color: var(--muted); max-width: 70ch; }
.section--dark .faq__item { border-color: var(--line-dark); }
.section--dark .faq__a p { color: var(--muted-dark); }

/* Pill badge */
.badge-soft { display: inline-flex; align-items: center; gap: 0.5em; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.35rem 0.7rem; border-radius: 100px; background: rgba(245,179,1,0.15); color: var(--gold-600); }
.badge-soft svg { width: 14px; height: 14px; }
.section--dark .badge-soft { color: var(--gold); }

/* Teaser home (compatto, immagine + testo + link) */
.teaser__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16/10; box-shadow: var(--shadow-md); background: var(--paper-2); }
.teaser__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
@media (hover: hover) and (pointer: fine) { .teaser__media:hover img { transform: scale(1.04); } }
.beforeafter { display: grid; gap: var(--gutter); grid-template-columns: 1fr 1fr; }
.beforeafter figure { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; background: var(--ink-soft); }
.beforeafter img { width: 100%; height: 100%; object-fit: cover; }
.beforeafter figcaption { position: absolute; left: 0.6rem; bottom: 0.6rem; font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; background: rgba(13,13,15,0.7); color: #fff; padding: 0.3rem 0.55rem; border-radius: 4px; }

/* --------------------------- BOX ROWS ----------------------------------- */
.box-rows { margin-top: 3rem; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.box-row { display: grid; grid-template-columns: minmax(260px, 34%) 1fr; gap: 2.5rem; padding: 2rem; align-items: center; transition: background var(--dur-fast) var(--ease); }
.box-row + .box-row { border-top: 1px solid var(--line); }
.box-row:nth-child(odd) { background: var(--paper-2); }
.box-row-image { position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.box-row-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
@media (hover: hover) and (pointer: fine) { .box-row:hover .box-row-image img { transform: scale(1.04); } }
.box-row-content { display: flex; flex-direction: column; gap: 0.6rem; }
.box-row-title { font-family: var(--font-display); font-size: clamp(1.5rem, 2.5vw, 1.9rem); font-weight: 800; letter-spacing: -0.02em; margin: 0; }
.box-row-tagline { font-size: 1rem; color: var(--muted); margin: 0; line-height: 1.55; }
.box-row-tagline strong { color: var(--ink); font-weight: 700; }
.box-row-desc { font-size: 0.95rem; color: var(--muted); line-height: 1.65; margin: 0; }
.box-row-cta { margin-top: 0.75rem; align-self: flex-start; }
@media (max-width: 768px) {
  .box-row { grid-template-columns: 1fr; gap: 1.25rem; padding: 1.5rem; }
  .box-row-image { aspect-ratio: 16 / 10; }
  .box-row-cta { width: 100%; }
}
