/* =========================================================================
   CrioCenter — Foglio di stile principale
   Parrucchiere + estetica a Treviso (capelli ricci/afro, extension, nail, make-up)
   Solo CSS vanilla, mobile-first, nessun framework.
   ========================================================================= */

/* ---------- Variabili (Design System) ---------- */
:root {
  --bg: #FAF6F0;
  --text: #2B2118;
  --accent: #C26B4A;      /* terracotta */
  --accent-2: #D9A441;    /* oro */
  --deep: #4A2C3A;        /* prugna scuro */
  --muted: #8A7A6D;

  --white: #ffffff;
  --card: #ffffff;
  --shadow: 0 8px 24px rgba(43, 33, 24, .08);
  --shadow-lg: 0 16px 40px rgba(43, 33, 24, .14);
  --radius: 16px;
  --radius-lg: 20px;
  --radius-sm: 14px;

  --maxw: 1180px;
  --gap: clamp(16px, 3vw, 28px);

  --font-title: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-text: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset di base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-text);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-title); line-height: 1.15; color: var(--text); font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); margin: 0 0 .4em; }
h2 { font-size: clamp(1.6rem, 3.6vw, 2.5rem); margin: 0 0 .5em; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.5rem); margin: 0 0 .4em; }
p { margin: 0 0 1em; }

/* Accessibilità: focus sempre visibile */
:focus-visible {
  outline: 3px solid var(--accent-2);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(16px, 4vw, 32px); }
.section { padding-block: clamp(48px, 8vw, 96px); }
.section--alt { background: #F3ECE2; }
.text-center { text-align: center; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.muted { color: var(--muted); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-text);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .78rem;
  color: var(--accent);
  margin-bottom: .6em;
}
.lead { font-size: 1.12rem; color: var(--muted); max-width: 60ch; }
.section .lead { margin-inline: auto; }

/* ---------- Bottoni ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-family: var(--font-text);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  padding: .85em 1.5em;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--accent); color: var(--white); box-shadow: 0 8px 20px rgba(194, 107, 74, .35); }
.btn--primary:hover { background: #ab5a3c; box-shadow: 0 12px 26px rgba(194, 107, 74, .45); }
.btn--gold { background: var(--accent-2); color: var(--deep); box-shadow: 0 8px 20px rgba(217, 164, 65, .35); }
.btn--gold:hover { background: #c9942f; }
.btn--ghost { background: transparent; color: var(--text); border-color: rgba(43, 33, 24, .25); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--light { background: var(--white); color: var(--text); }
.btn--light:hover { background: #f3ece2; }
.btn--block { width: 100%; }
.btn--lg { padding: 1em 1.8em; font-size: 1.05rem; }

/* Icona WhatsApp inline */
.ico { width: 1.15em; height: 1.15em; flex: none; }

/* ========================================================================= */
/*  HEADER                                                                    */
/* ========================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, .88);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(43, 33, 24, .08);
  transition: box-shadow .25s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 70px;
}
.brand {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text);
  letter-spacing: .01em;
  white-space: nowrap;
}
.brand:hover { text-decoration: none; color: var(--accent); }
.brand span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(.6rem, 2vw, 1.6rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: .98rem;
  padding: .4em 0;
  position: relative;
}
.nav-links a:hover { text-decoration: none; color: var(--accent); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .25s var(--ease);
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { width: 100%; }
.nav-links a[aria-current="page"] { color: var(--accent); }

.nav-cta { display: flex; align-items: center; gap: .6rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  background: transparent;
  border: 1px solid rgba(43, 33, 24, .2);
  border-radius: 12px;
  cursor: pointer;
  padding: 0 11px;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%;
  background: var(--text); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========================================================================= */
/*  HERO                                                                      */
/* ========================================================================= */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: center;
  color: var(--white);
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(74, 44, 58, .82) 0%, rgba(43, 33, 24, .55) 50%, rgba(194, 107, 74, .35) 100%);
  z-index: -1;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero-inner { padding-block: clamp(60px, 12vw, 120px); max-width: 760px; }
.hero h1 { color: var(--white); text-shadow: 0 2px 20px rgba(0,0,0,.25); }
.hero .lead { color: rgba(255,255,255,.92); font-size: 1.2rem; max-width: 52ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.8rem; }

/* ========================================================================= */
/*  GRIGLIE & CARD                                                            */
/* ========================================================================= */
.grid { display: grid; gap: var(--gap); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

/* Striscia "perché sceglierci" */
.feature {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-ico {
  width: 56px; height: 56px;
  margin: 0 auto 1rem;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--white);
  border-radius: 16px;
}
.feature-ico svg { width: 28px; height: 28px; }
.feature h3 { margin-bottom: .3em; }
.feature p { margin: 0; color: var(--muted); font-size: .96rem; }

/* Card servizio (con foto) */
.service-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-card a { text-decoration: none; color: inherit; display: flex; flex-direction: column; height: 100%; }
.service-card .thumb { aspect-ratio: 4 / 3; overflow: hidden; }
.service-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.service-card:hover .thumb img { transform: scale(1.06); }
.service-card .body { padding: 1.3rem 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { margin-bottom: .35em; }
.service-card p { color: var(--muted); font-size: .96rem; margin-bottom: 1em; }
.service-card .more { margin-top: auto; font-weight: 600; color: var(--accent); font-size: .95rem; }
.service-card .more::after { content: " →"; transition: margin .2s var(--ease); }
.service-card:hover .more::after { margin-left: .25em; }

/* ========================================================================= */
/*  SEZIONE "IL SALONE" (split)                                               */
/* ========================================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 64px); align-items: center; }
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; }
.split--reverse .split-media { order: 2; }

/* ========================================================================= */
/*  TESTIMONIANZE                                                             */
/* ========================================================================= */
.testimonial {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent-2);
}
.testimonial .stars { color: var(--accent-2); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: .6rem; }
.testimonial blockquote { margin: 0 0 1rem; font-size: 1.02rem; font-style: italic; }
.testimonial .who { font-weight: 600; color: var(--deep); font-size: .95rem; }

/* ========================================================================= */
/*  BANDA CTA FINALE                                                          */
/* ========================================================================= */
.cta-band {
  position: relative;
  color: var(--white);
  text-align: center;
  isolation: isolate;
  border-radius: 0;
  overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(rgba(74, 44, 58, .85), rgba(43, 33, 24, .8));
  z-index: -1;
}
.cta-band-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,.9); }
.cta-band .hero-actions { justify-content: center; }

/* ========================================================================= */
/*  PAGINA SERVIZI                                                            */
/* ========================================================================= */
.svc-block { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 56px); align-items: center; margin-bottom: clamp(40px, 7vw, 80px); }
.svc-block:last-child { margin-bottom: 0; }
.svc-block:nth-child(even) .svc-media { order: 2; }
.svc-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.svc-list { list-style: none; padding: 0; margin: 1rem 0 1.4rem; }
.svc-list li { padding: .35em 0 .35em 1.7em; position: relative; color: var(--text); }
.svc-list li::before {
  content: "";
  position: absolute; left: 0; top: .85em;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--accent);
}
.price-note { display: inline-block; background: #F3ECE2; color: var(--deep); font-weight: 600; padding: .5em 1em; border-radius: 999px; font-size: .92rem; margin-bottom: 1.2rem; }

/* ========================================================================= */
/*  PAGINA CHI SIAMO                                                          */
/* ========================================================================= */
.values { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.values li { display: flex; gap: .9rem; align-items: flex-start; }
.values .v-ico {
  flex: none; width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff;
}
.values .v-ico svg { width: 22px; height: 22px; }
.values strong { display: block; }
.info-box {
  background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1.8rem;
}
.info-box dl { margin: 0; display: grid; gap: .9rem; }
.info-box .row { display: flex; gap: .8rem; align-items: flex-start; }
.info-box dt { font-weight: 600; color: var(--deep); min-width: 110px; }
.info-box dd { margin: 0; color: var(--muted); }

/* ========================================================================= */
/*  PAGINA CONTATTI                                                           */
/* ========================================================================= */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(28px, 5vw, 56px); align-items: start; }

.contact-info { display: grid; gap: 1rem; }
.contact-actions { display: grid; gap: .7rem; }
.contact-actions .btn { justify-content: flex-start; padding-inline: 1.3em; }
.contact-detail { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.4rem 1.5rem; }
.contact-detail h3 { font-size: 1.1rem; }
.contact-detail p { margin: .2em 0; color: var(--muted); }
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); line-height: 0; }
.map-embed iframe { width: 100%; height: 260px; border: 0; }

/* ---- Form multi-step ---- */
.form-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(1.4rem, 4vw, 2.4rem);
}
/* Progress bar */
.progress { margin-bottom: 1.8rem; }
.progress-track { height: 8px; background: #ece2d6; border-radius: 999px; overflow: hidden; }
.progress-fill {
  height: 100%; width: 33.33%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 999px;
  transition: width .45s var(--ease);
}
.progress-steps { display: flex; justify-content: space-between; margin-top: .6rem; }
.progress-steps span { font-size: .82rem; color: var(--muted); font-weight: 600; transition: color .3s var(--ease); }
.progress-steps span.is-active { color: var(--accent); }
.progress-steps span.is-done { color: var(--deep); }

/* Step panels (fieldset senza stile di default) */
.step { display: none; animation: stepIn .4s var(--ease); border: 0; margin: 0; padding: 0; min-width: 0; }
.step.is-active { display: block; }
@keyframes stepIn { from { opacity: 0; transform: translateX(18px); } to { opacity: 1; transform: translateX(0); } }
.step h3 { margin-bottom: 1rem; }

/* Griglia card selezionabili (servizi) */
.choice-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: .7rem; margin-bottom: .5rem; }
.choice {
  position: relative;
  border: 2px solid #e6dccf;
  border-radius: var(--radius-sm);
  padding: 1rem .8rem;
  text-align: center;
  cursor: pointer;
  background: #fff;
  transition: border-color .2s var(--ease), background .2s var(--ease), transform .15s var(--ease);
  user-select: none;
  font-weight: 500;
  font-size: .95rem;
}
.choice:hover { border-color: var(--accent); transform: translateY(-2px); }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice .c-ico { font-size: 1.5rem; display: block; margin-bottom: .35rem; }
.choice.is-selected { border-color: var(--accent); background: #fbeee7; color: var(--deep); }
.choice.is-selected::after {
  content: "✓";
  position: absolute; top: 6px; right: 9px;
  width: 20px; height: 20px;
  background: var(--accent); color: #fff;
  border-radius: 50%; font-size: .75rem;
  display: grid; place-items: center;
}

/* Floating labels */
.field { position: relative; margin-bottom: 1.3rem; }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  padding: 1.25rem .9rem .55rem;
  border: 2px solid #e6dccf;
  border-radius: var(--radius-sm);
  background: #fff;
  transition: border-color .2s var(--ease);
  appearance: none;
}
.field textarea { min-height: 96px; resize: vertical; }
.field select { padding-top: 1.25rem; cursor: pointer; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); outline: none; }
.field label {
  position: absolute; left: .95rem; top: 1rem;
  color: var(--muted); font-size: 1rem;
  pointer-events: none;
  transition: transform .18s var(--ease), color .18s var(--ease), font-size .18s var(--ease);
  background: transparent;
}
/* Etichetta sollevata quando il campo è valorizzato o in focus */
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label,
.field select:focus + label,
.field select.has-value + label {
  transform: translateY(-.65rem);
  font-size: .74rem;
  color: var(--accent);
}
.field--date label, .field--select label { /* questi campi non hanno placeholder, etichetta sempre alzata */
  transform: translateY(-.65rem);
  font-size: .74rem;
}
.field .err { color: #c0392b; font-size: .8rem; margin-top: .3rem; display: none; }
.field.is-invalid input, .field.is-invalid select, .field.is-invalid textarea { border-color: #c0392b; }
.field.is-invalid .err { display: block; }

/* Checkbox consenso */
.consent { display: flex; gap: .7rem; align-items: flex-start; font-size: .92rem; color: var(--muted); margin-bottom: 1.2rem; }
.consent input { margin-top: .25em; width: 20px; height: 20px; accent-color: var(--accent); flex: none; }

/* Navigazione step */
.form-nav { display: flex; justify-content: space-between; gap: 1rem; margin-top: .5rem; }
.form-nav .btn--ghost[hidden] { display: none; }

/* Stato di successo */
.form-success { display: none; text-align: center; padding: 1rem 0; animation: stepIn .4s var(--ease); }
.form-success.is-active { display: block; }
.success-check {
  width: 84px; height: 84px; margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: grid; place-items: center;
  animation: pop .5s var(--ease);
}
.success-check svg { width: 44px; height: 44px; color: #fff; }
@keyframes pop { 0% { transform: scale(.4); opacity: 0; } 70% { transform: scale(1.08); } 100% { transform: scale(1); opacity: 1; } }

/* ========================================================================= */
/*  FOOTER                                                                    */
/* ========================================================================= */
.site-footer {
  background: var(--deep);
  color: rgba(255,255,255,.82);
  padding-block: clamp(40px, 6vw, 64px);
  margin-top: 0;
}
.site-footer a { color: rgba(255,255,255,.82); }
.site-footer a:hover { color: var(--accent-2); text-decoration: none; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(24px, 4vw, 48px); }
.footer-brand { font-family: var(--font-title); font-size: 1.5rem; color: #fff; margin-bottom: .4rem; }
.footer-brand span { color: var(--accent-2); }
.site-footer h4 { color: #fff; font-family: var(--font-text); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 1rem; }
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; font-size: .95rem; }
.footer-map-link { display: inline-block; margin-top: .6rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  margin-top: 2rem; padding-top: 1.4rem;
  display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; justify-content: space-between;
  font-size: .85rem; color: rgba(255,255,255,.6);
}
.footer-bottom a { font-size: .85rem; }

/* ========================================================================= */
/*  CTA STICKY MOBILE                                                         */
/* ========================================================================= */
.mobile-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0;
  z-index: 90;
  gap: .5rem;
  padding: .6rem .7rem calc(.6rem + env(safe-area-inset-bottom));
  background: rgba(250, 246, 240, .96);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(43, 33, 24, .1);
  box-shadow: 0 -4px 16px rgba(43, 33, 24, .1);
}
.mobile-cta .btn { flex: 1; padding: .9em 1em; }

/* ========================================================================= */
/*  ANIMAZIONI ALLO SCROLL (IntersectionObserver)                            */
/* ========================================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ========================================================================= */
/*  RESPONSIVE                                                                */
/* ========================================================================= */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  /* Nav mobile */
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid rgba(43,33,24,.1);
    box-shadow: var(--shadow);
    padding: .5rem 1.2rem 1.2rem;
    transform: translateY(-120%);
    transition: transform .35s var(--ease);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
  .nav-links.is-open { transform: translateY(0); }
  .nav-links li { border-bottom: 1px solid rgba(43,33,24,.06); }
  .nav-links a { display: block; padding: .9em 0; font-size: 1.05rem; }
  .nav-links a::after { display: none; }
  .nav-cta .btn--header { display: none; } /* il bottone header si nasconde su mobile (c'è la CTA sticky) */

  .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr 1fr; }
  .split, .svc-block, .contact-grid { grid-template-columns: 1fr; }
  .split--reverse .split-media, .svc-block:nth-child(even) .svc-media { order: 0; }
  .footer-grid { grid-template-columns: 1fr; }

  /* CTA sticky mobile visibile */
  .mobile-cta { display: flex; }
  body { padding-bottom: 76px; } /* spazio per la barra sticky */
}

@media (max-width: 480px) {
  .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }
  .hero { min-height: 78vh; }
  .hero-actions .btn, .cta-band .hero-actions .btn { width: 100%; }
  .choice-grid { grid-template-columns: 1fr 1fr; }
}
