/* LUX design system v2 — minimal, foto reali, parallax leggero */
:root {
  --bg: #ffffff;
  --text: #1d1d1f;
  --muted: #4f4841;
  --line: #e7e1d9;
  --surface: #f7f5f2;
  --tortora: #e3dacf;
  --tortora-deep: #b9ab9a;
  --accent: #8f6f3e;
  --accent-hover: #7a5d34;
  --accent-soft: #f4ede3;
  --accent-bright: #d2ae74;
  --dark: #161412;
  --dark-2: #23201c;
  --on-dark: #f5f2ee;
  --on-dark-muted: #bdb5aa;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 1px 2px rgba(22, 20, 18, .05), 0 12px 32px rgba(22, 20, 18, .07);
  --shadow-hover: 0 2px 4px rgba(22, 20, 18, .06), 0 22px 48px rgba(22, 20, 18, .12);
  --max: 1180px;
  --gutter: clamp(20px, 5vw, 40px);
  --header-h: 64px;
  --font-head: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
strong, b { color: inherit; font-weight: 600; }
p { margin: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); color: inherit; margin: 0; font-weight: 600; letter-spacing: -.025em; line-height: 1.08; }
h1 { font-size: clamp(2.35rem, 5.4vw, 4.4rem); letter-spacing: -.035em; }
h2 { font-size: clamp(1.85rem, 3.6vw, 3rem); }
h3 { font-size: 1.25rem; letter-spacing: -.015em; line-height: 1.25; }
h1 em, h2 em { font-style: normal; color: var(--accent); }
.section-dark h1 em, .section-dark h2 em, .plx h1 em, .plx h2 em { color: var(--accent-bright); }

.container { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.ico { width: 24px; height: 24px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.eyebrow { display: inline-flex; align-items: flex-start; gap: 10px; font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.eyebrow::before { content: ""; flex: none; width: 22px; height: 1px; margin-top: .8em; background: currentColor; }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: var(--muted); line-height: 1.55; }
.muted { color: var(--muted); }

/* Sezioni */
.section { padding-block: clamp(72px, 10vw, 128px); }
.section-tight { padding-block: clamp(56px, 7vw, 88px); }
/* Cambio sezione morbido: un velo che sfuma dal trasparente al colore della sezione,
   sovrapposto al bordo superiore invece di un taglio netto. Solo il bordo superiore:
   il bordo inferiore di section-tortora confina spesso con una sezione fotografica (.plx)
   e sfumarci sopra coprirebbe il testo in cima a quella sezione. */
.section-tortora, .section-surface, .section-dark { position: relative; }
.section-tortora::before, .section-surface::before, .section-dark::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; transform: translateY(-100%);
  height: clamp(40px, 7vw, 96px); pointer-events: none; z-index: 1;
}
/* 4 tappe invece di 2: un fade trasparente->colore in soli 2 stop passa per un
   grigio "sporco" a metà (l'alfa si mescola col bianco sotto), visibile soprattutto
   su fasce alte (tablet). Con più tappe la curva è percettivamente morbida. */
.section-tortora::before { background: linear-gradient(to bottom, transparent 0%, color-mix(in srgb, var(--tortora) 22%, transparent) 35%, color-mix(in srgb, var(--tortora) 65%, transparent) 70%, var(--tortora) 100%); }
.section-surface::before { background: linear-gradient(to bottom, transparent 0%, color-mix(in srgb, var(--surface) 22%, transparent) 35%, color-mix(in srgb, var(--surface) 65%, transparent) 70%, var(--surface) 100%); }
.section-dark::before { background: linear-gradient(to bottom, transparent 0%, color-mix(in srgb, var(--dark) 22%, transparent) 35%, color-mix(in srgb, var(--dark) 65%, transparent) 70%, var(--dark) 100%); }
.section-tortora { background: var(--tortora); }
.section-surface { background: var(--surface); }
.section-dark { background: var(--dark); color: var(--on-dark); }
.section-dark .muted, .section-dark .lead, .section-dark .section-head p { color: var(--on-dark-muted); }
.section-dark .eyebrow { color: var(--accent-bright); }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head h2 { margin-top: 14px; }
.section-head p { margin-top: 16px; color: var(--muted); font-size: 1.1rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head-row { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: clamp(32px, 4vw, 48px); }
.section-head-row .section-head { margin-bottom: 0; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .86);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}
.site-header > .container { display: flex; align-items: center; gap: 20px; height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 10px; margin-right: auto; min-height: 44px; }
.brand img { width: 32px; height: 32px; border-radius: 8px; }
.brand-name { font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; letter-spacing: -.01em; line-height: 1.05; }
.brand-name small { display: block; margin-top: 3px; font-family: var(--font-body); font-size: .6rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--accent); }
.nav { display: none; gap: 2px; }
.nav a { display: inline-flex; align-items: center; min-height: 44px; padding: 0 12px; border-radius: 999px; font-size: .92rem; color: #424245; transition: color .2s, background .2s; }
.nav a:hover { color: var(--text); background: rgba(0, 0, 0, .04); }
.nav a.active { color: var(--text); font-weight: 600; }
.site-header .header-cta { display: none; }
.nav-toggle { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border: 0; border-radius: 12px; background: transparent; color: var(--text); cursor: pointer; }
.nav-mobile { display: none; padding: 4px var(--gutter) 20px; background: #fff; border-top: 1px solid rgba(0, 0, 0, .06); }
.nav-mobile.open { display: block; }
.nav-mobile a { display: flex; align-items: center; min-height: 54px; font-size: 1.08rem; font-weight: 500; border-bottom: 1px solid var(--line); }
.nav-mobile a.active { color: var(--accent); }
.nav-mobile .btn { margin-top: 18px; width: 100%; border-bottom: 0; }

/* Selettore lingua */
.lang-switch { position: relative; display: none; margin-left: 4px; }
.lang-current { display: inline-flex; align-items: center; gap: 6px; min-height: 44px; padding: 0 12px; border: 0; background: transparent; border-radius: 999px; font-size: .92rem; font-family: inherit; color: #424245; cursor: pointer; transition: color .2s, background .2s; }
.lang-current:hover { color: var(--text); background: rgba(0, 0, 0, .04); }
.lang-flag { font-size: 1.05rem; line-height: 1; }
.lang-dropdown { position: absolute; top: 100%; right: 0; min-width: 168px; margin: 6px 0 0; padding: 6px; list-style: none; background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow-hover); opacity: 0; visibility: hidden; transform: translateY(4px); transition: opacity .18s, transform .18s, visibility .18s; z-index: 20; }
.lang-switch:hover .lang-dropdown, .lang-switch:focus-within .lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-dropdown .lang-link { display: flex; align-items: center; gap: 8px; min-height: 44px; padding: 0 12px; border-radius: 10px; font-size: .92rem; color: var(--text); text-decoration: none; }
.lang-dropdown .lang-link:hover { background: var(--surface); }
.lang-dropdown .lang-link.active { font-weight: 600; color: var(--accent); }
.nav-mobile-lang { display: flex; gap: 8px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }
.nav-mobile-lang .lang-link { flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px; min-height: 44px; padding: 0 10px; border-radius: 999px; background: var(--surface); font-size: .9rem; color: var(--text); text-decoration: none; }
.nav-mobile-lang .lang-link.active { background: var(--dark); color: var(--on-dark); font-weight: 600; }

@media (min-width: 1024px) {
  .nav { display: flex; }
  .site-header .header-cta { display: inline-flex; }
  .nav-toggle, .nav-mobile, .nav-mobile.open { display: none; }
  .lang-switch { display: inline-flex; }
}

/* Bottoni */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 22px; border-radius: 999px; border: 1px solid transparent;
  font-family: var(--font-body); font-size: .98rem; font-weight: 600; letter-spacing: -.005em;
  cursor: pointer; white-space: nowrap; transition: transform .2s, background .2s, color .2s, border-color .2s;
}
.btn .ico { width: 18px; height: 18px; }
.btn:active { transform: scale(.98); }
.btn-dark { background: var(--text); color: #fff; }
.btn-dark:hover { background: #000; }
.btn-gold { background: var(--accent); color: #fff; }
.btn-gold:hover { background: var(--accent-hover); }
.btn-outline { border-color: rgba(29, 29, 31, .22); color: var(--text); }
.btn-outline:hover { border-color: var(--text); }
.btn-light { background: #fff; color: var(--text); }
.btn-ghost-light { border-color: rgba(255, 255, 255, .38); color: #fff; }
.btn-ghost-light:hover { border-color: #fff; }
.btn-sm { min-height: 44px; padding: 0 16px; font-size: .9rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.link-arrow { display: inline-flex; align-items: center; gap: 6px; min-height: 44px; font-weight: 600; color: var(--accent); }
.link-arrow .ico { width: 18px; height: 18px; transition: transform .2s; }
.link-arrow:hover .ico { transform: translateX(3px); }
.section-dark .link-arrow { color: var(--accent-bright); }

.icon-badge { display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; flex: none; border-radius: 13px; background: var(--accent-soft); color: var(--accent); }
.icon-badge .ico { width: 22px; height: 22px; }
.icon-badge-lg { width: 60px; height: 60px; border-radius: 16px; }
.icon-badge-lg .ico { width: 28px; height: 28px; }
.section-dark .icon-badge { background: rgba(255, 255, 255, .08); color: var(--accent-bright); }

/* Parallax: <img> dentro contenitore, niente background-position */
[data-plx] { position: relative; overflow: hidden; }
[data-plx] > img { position: absolute; left: 0; top: -6%; width: 100%; height: 112%; object-fit: cover; }
.plx { position: relative; overflow: hidden; isolation: isolate; display: flex; align-items: flex-end; min-height: clamp(440px, 72vh, 700px); background: var(--dark); color: #fff; }
.plx-media { position: absolute; inset: 0; z-index: -2; }
.plx-media img { position: absolute; left: 0; top: -32%; width: 100%; height: 165%; object-fit: cover; }
.plx::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(0, 0, 0, .42) 0%, rgba(0, 0, 0, .52) 40%, rgba(0, 0, 0, .8) 100%); }
.plx > .container { padding-block: clamp(48px, 8vw, 96px); }
.plx h2 { max-width: 860px; font-size: clamp(2rem, 4.4vw, 3.6rem); }
.plx p { max-width: 640px; margin-top: 18px; color: rgba(255, 255, 255, .88); font-size: 1.12rem; }
.plx .eyebrow { color: var(--accent-bright); }
.plx .btn-row { margin-top: 28px; }
@keyframes lux-plx { from { transform: translate3d(0, -15%, 0); } to { transform: translate3d(0, 15%, 0); } }
@keyframes lux-plx-soft { from { transform: translate3d(0, -4%, 0); } to { transform: translate3d(0, 4%, 0); } }
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .plx-media img { animation: lux-plx linear both; animation-timeline: view(); }
    [data-plx] > img { animation: lux-plx-soft linear both; animation-timeline: view(); }
  }
}

/* Hero home */
.hero { padding-block: clamp(36px, 6vw, 88px) clamp(56px, 7vw, 96px); }
/* grid-template-columns: minmax(0, 1fr) invece di lasciare l'implicito -
   senza il minmax(0,...), un'immagine con dimensioni intrinseche grandi
   dentro un grid item spinge l'intera colonna (e quindi tutto il testo
   nella stessa colonna) oltre il viewport su mobile ("grid blowout"). */
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 40px; align-items: center; }
.hero h1 { margin-top: 18px; }
.hero .lead { margin-top: 22px; max-width: 560px; }
.hero .btn-row { margin-top: 32px; }
.hero-media { border-radius: 28px; aspect-ratio: 4 / 5; background: var(--tortora); }
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 64px; }
}
.trust { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 20px; margin-top: clamp(40px, 6vw, 64px); padding-top: 28px; border-top: 1px solid var(--line); }
.trust-item { display: flex; gap: 12px; align-items: flex-start; }
.trust-item .ico { width: 26px; height: 26px; margin-top: 1px; color: var(--accent); }
.trust-item strong { display: block; font-size: .98rem; line-height: 1.3; }
.trust-item span { display: block; margin-top: 2px; font-size: .86rem; color: var(--muted); line-height: 1.4; }
@media (min-width: 1080px) { .trust { grid-template-columns: repeat(4, 1fr); } }

/* Hero pagine interne */
.page-hero { padding-block: clamp(44px, 7vw, 96px) clamp(28px, 4vw, 48px); }
.page-hero h1 { margin-top: 16px; max-width: 920px; }
.page-hero .lead { margin-top: 20px; max-width: 700px; }
.page-hero .btn-row { margin-top: 28px; }
.page-hero-media { margin-top: clamp(32px, 5vw, 56px); border-radius: var(--radius); aspect-ratio: 16 / 8; background: var(--tortora); }
@media (max-width: 640px) { .page-hero-media { aspect-ratio: 4 / 5; } }
.crumb { display: inline-flex; gap: 8px; align-items: center; margin-bottom: 18px; font-size: .88rem; color: var(--muted); }
.crumb a:hover { color: var(--text); }
.crumb .ico { width: 13px; height: 13px; }

/* Card (fondo bianco su sezione tortora) */
.cards { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 640px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cards { grid-template-columns: repeat(3, 1fr); gap: 22px; } .cards-2 { grid-template-columns: repeat(2, 1fr); } .cards-4 { grid-template-columns: repeat(4, 1fr); } }
.card { position: relative; display: flex; flex-direction: column; overflow: hidden; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.card-media { position: relative; overflow: hidden; aspect-ratio: 4 / 3; background: var(--tortora); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.card:hover .card-media img { transform: scale(1.04); }
.card-body { display: flex; flex-direction: column; gap: 10px; flex: 1; padding: 22px 22px 24px; }
.card-title { display: flex; align-items: center; gap: 12px; }
.card-title .icon-badge { width: 40px; height: 40px; border-radius: 11px; }
.card-title .icon-badge .ico { width: 20px; height: 20px; }
.card h3 { font-size: 1.18rem; }
.card p { color: var(--muted); font-size: .97rem; line-height: 1.55; }
.card .link-arrow { margin-top: auto; }
.card-link-cover::after { content: ""; position: absolute; inset: 0; }
.card-noimg .card-body { padding-top: 26px; justify-content: flex-start; }
.card-noimg .icon-badge { margin-bottom: 8px; }
.tag { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }

/* Split immagine + testo */
.split { display: grid; grid-template-columns: minmax(0, 1fr); gap: 40px; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 72px; } .split.reverse > :first-child { order: 2; } }
.split-media { border-radius: var(--radius); aspect-ratio: 4 / 5; background: var(--tortora); }
.split-media-land { aspect-ratio: 4 / 3; }
.split h2 { margin-top: 14px; }
.split .lead, .split > div > p { margin-top: 18px; }
.feature-list { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 20px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list strong { display: block; font-size: 1.03rem; line-height: 1.35; }
.feature-list span:not(.icon-badge) { display: block; margin-top: 3px; color: var(--muted); font-size: .95rem; line-height: 1.5; }
.section-dark .feature-list span:not(.icon-badge) { color: var(--on-dark-muted); }

/* Timeline (processo) */
.timeline { list-style: none; margin: 0; padding: 0; display: grid; gap: 34px; }
.timeline li { position: relative; padding-left: 66px; }
.timeline li::before { content: ""; position: absolute; left: 22px; top: 54px; bottom: -30px; width: 1px; background: var(--line); }
.timeline li:last-child::before { display: none; }
.timeline .icon-badge { position: absolute; left: 0; top: 0; }
.step-num { display: block; font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.timeline h3 { margin-top: 6px; font-size: 1.15rem; }
.timeline p { margin-top: 8px; color: var(--muted); font-size: .96rem; }
@media (min-width: 1024px) {
  .timeline { grid-template-columns: repeat(4, 1fr); gap: 28px; }
  .timeline li { padding-left: 0; padding-top: 72px; }
  .timeline li::before { left: 60px; right: -20px; top: 23px; bottom: auto; width: auto; height: 1px; }
  .timeline li:last-child::before { display: none; }
}
.section-dark .timeline li::before { background: rgba(255, 255, 255, .14); }
.section-dark .timeline p, .section-dark .step-num { color: var(--on-dark-muted); }

/* Striscia galleria */
.strip { display: grid; grid-auto-flow: column; grid-auto-columns: 78%; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 4px; }
.strip::-webkit-scrollbar { display: none; }
.strip figure { position: relative; margin: 0; overflow: hidden; aspect-ratio: 3 / 4; border-radius: var(--radius-sm); background: var(--tortora); scroll-snap-align: start; }
.strip img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.strip figure:hover img { transform: scale(1.04); }
.strip figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 48px 16px 14px; color: #fff; font-size: .92rem; font-weight: 600; background: linear-gradient(transparent, rgba(0, 0, 0, .62)); }
@media (min-width: 640px) { .strip { grid-auto-columns: 44%; } }
@media (min-width: 1024px) { .strip { grid-auto-flow: row; grid-template-columns: repeat(3, 1fr); overflow: visible; } }

/* Prima / dopo */
.ba { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ba figure { position: relative; margin: 0; overflow: hidden; aspect-ratio: 3 / 4; border-radius: var(--radius-sm); background: var(--tortora); }
.ba img { width: 100%; height: 100%; object-fit: cover; }
.pill { position: absolute; top: 12px; left: 12px; padding: 6px 11px; border-radius: 999px; background: rgba(255, 255, 255, .94); color: var(--text); font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }

/* Galleria lavori */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
@media (min-width: 900px) { .gallery { grid-template-columns: repeat(3, 1fr); gap: 14px; } }
/* Gruppi con esattamente 4 foto: 3 colonne lasciano l'ultima isolata con un vuoto enorme accanto.
   2 colonne su tutte le larghezze -> griglia 2x2 piena, foto piu grandi, nessun orfano. */
@media (min-width: 900px) { .gallery-2 { grid-template-columns: repeat(2, 1fr); } }
.gallery figure { position: relative; margin: 0; overflow: hidden; aspect-ratio: 4 / 5; border-radius: var(--radius-sm); background: var(--tortora); }
.gallery figure.wide { grid-column: span 2; aspect-ratio: 16 / 10; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.gallery figure:hover img { transform: scale(1.03); }
.gallery figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 14px 12px; color: #fff; font-size: .88rem; font-weight: 600; line-height: 1.3; background: linear-gradient(transparent, rgba(0, 0, 0, .6)); }
.gallery figcaption small { display: block; font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-bright); }

/* Elenco semplice con icone (servizi senza foto, zone, lingue) */
.icon-row { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 640px) { .icon-row { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .icon-row { grid-template-columns: repeat(4, 1fr); } }
.icon-row > div { display: flex; gap: 14px; align-items: flex-start; padding: 20px; border-radius: var(--radius-sm); background: #fff; color: var(--text); }
.section-dark .icon-row > div { background: var(--dark-2); color: var(--on-dark); }
.icon-row strong { display: block; line-height: 1.3; }
.icon-row span:not(.icon-badge) { display: block; margin-top: 3px; font-size: .92rem; color: var(--muted); }

/* Chip */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { display: inline-flex; align-items: center; gap: 8px; min-height: 36px; padding: 0 14px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-size: .9rem; }
.chip .ico { width: 16px; height: 16px; color: var(--accent); }

/* Contatti / CTA */
.cta-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 40px; align-items: center; }
@media (min-width: 900px) { .cta-grid { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 72px; } }
.cta-grid h2 { margin-top: 14px; }
.cta-grid .lead { margin-top: 18px; }
.cta-grid .btn-row { margin-top: 30px; }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.contact-list a, .contact-list .row { display: flex; gap: 14px; align-items: center; min-height: 64px; padding: 8px 0; border-bottom: 1px solid var(--line); }
.section-dark .contact-list a, .section-dark .contact-list .row { border-color: rgba(255, 255, 255, .1); }
.contact-list strong { display: block; font-size: 1.04rem; line-height: 1.3; word-break: break-word; }
.contact-list span:not(.icon-badge) { display: block; font-size: .9rem; color: var(--muted); }
.section-dark .contact-list span:not(.icon-badge) { color: var(--on-dark-muted); }

.contact-layout { display: grid; grid-template-columns: minmax(0, 1fr); gap: 32px; align-items: start; }
@media (min-width: 960px) { .contact-layout { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 56px; } }
.form-shell { overflow: hidden; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
.form-shell iframe { display: block; width: 100%; border: 0; }
.map-shell { overflow: hidden; border-radius: var(--radius); line-height: 0; background: var(--tortora); }
.map-shell iframe { width: 100%; height: 420px; border: 0; }

/* FAQ */
.faq { max-width: 860px; }
.faq-group-label { display: block; margin-bottom: 2px; padding-top: 30px; border-top: 1px solid var(--line); font-family: var(--font-head); font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.faq-group:first-child .faq-group-label { padding-top: 0; border-top: 0; }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 64px; padding: 18px 0; cursor: pointer; list-style: none; font-family: var(--font-head); font-size: 1.12rem; font-weight: 600; letter-spacing: -.01em; transition: color .2s; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--accent); }
.faq summary .ico { color: var(--muted); transition: transform .25s var(--ease), color .2s; }
.faq summary:hover .ico { color: var(--accent); }
.faq details[open] summary .ico { transform: rotate(45deg); }
.faq details p { padding: 0 44px 22px 0; color: var(--muted); }
@media (prefers-reduced-motion: no-preference) {
  .faq details { interpolate-size: allow-keywords; }
  .faq details::details-content { transition: height .35s var(--ease), content-visibility .35s var(--ease) allow-discrete; }
}

/* Testi legali */
.prose { max-width: 760px; }
.prose h2 { margin: 44px 0 14px; font-size: 1.45rem; }
.prose h3 { margin: 28px 0 10px; font-size: 1.12rem; }
.prose p, .prose li { margin: 0 0 14px; color: #3a3a3c; }
.prose ul { padding-left: 20px; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* Footer */
.site-footer { background: var(--dark); color: var(--on-dark-muted); padding-block: 64px 32px; font-size: .95rem; }
.footer-grid { display: grid; gap: 36px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.site-footer .brand-name { color: #fff; }
.footer-brand p { margin-top: 16px; max-width: 340px; }
.site-footer h5 { margin: 0 0 12px; font-family: var(--font-body); font-size: .74rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--on-dark); }
.footer-col a, .footer-col p { display: flex; align-items: center; gap: 8px; min-height: 40px; color: var(--on-dark-muted); }
.footer-col a:hover { color: #fff; }
.footer-col .ico { width: 16px; height: 16px; color: var(--accent-bright); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: .85rem; }
.footer-bottom a:hover { color: #fff; }

/* Scheda flottante Bagno Rapido: su desktop (>=1024px) linguetta verticale sul bordo destro,
   con un "respiro" dorato periodico per farsi notare. Su mobile la verticale è fastidiosa
   (copre contenuto lateralmente) -> sostituita da .float-bar, barra fissa in basso.
   Dimensioni fisse (190x52) + offset calcolati a mano: right = -(w-h)/2, margin-top = -h/2,
   rotate attorno al proprio centro -> resta incollata al bordo ed esattamente centrata in verticale. */
@media (max-width: 1023.98px) { .float-cta { display: none; } }
@media (min-width: 1024px) {
  .float-cta {
    position: fixed; top: 50%; right: -69px; margin-top: -26px; z-index: 45;
    width: 190px; height: 52px;
    transform: rotate(-90deg); transform-origin: center center;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    border-radius: 14px 14px 0 0;
    background: linear-gradient(180deg, var(--accent-bright), var(--accent));
    color: var(--dark); font-size: .95rem; font-weight: 700; letter-spacing: .01em;
    white-space: nowrap; box-shadow: 0 -6px 24px rgba(22, 20, 18, .28);
    transition: box-shadow .2s, filter .2s;
    animation: float-glow-tab 2.4s ease-in-out infinite;
  }
}
.float-cta:hover { filter: brightness(1.06); box-shadow: 0 -8px 30px rgba(22, 20, 18, .34); }
.float-cta .ico { width: 18px; height: 18px; transform: rotate(90deg); }
@keyframes float-glow-tab {
  0%, 100% { box-shadow: 0 -6px 24px rgba(22, 20, 18, .28), 0 0 0 0 rgba(210, 174, 116, .55); }
  50% { box-shadow: 0 -6px 24px rgba(22, 20, 18, .28), 0 0 0 14px rgba(210, 174, 116, 0); }
}

/* Barra flottante mobile (<1024px): fissa in basso, espandibile al tocco, stesso "respiro" dorato quando chiusa */
@media (max-width: 1023.98px) { body { padding-bottom: 60px; } }
.float-bar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
  background: var(--dark); border-top: 1px solid rgba(210, 174, 116, .3);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, .25);
}
@media (max-width: 1023.98px) { .float-bar { display: block; } }
.float-bar:not(.open) { animation: float-glow-bar 2.4s ease-in-out infinite; }
@keyframes float-glow-bar {
  0%, 100% { box-shadow: 0 -8px 24px rgba(0, 0, 0, .25), 0 -1px 0 0 rgba(210, 174, 116, .35); }
  50% { box-shadow: 0 -8px 24px rgba(0, 0, 0, .25), 0 -3px 18px 2px rgba(210, 174, 116, .75); }
}
.float-bar-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 56px; padding: 12px 20px; cursor: pointer; }
.float-bar-head strong { color: var(--accent-bright); font-size: .98rem; font-family: var(--font-head); font-weight: 700; }
.float-bar-head .ico { color: var(--accent-bright); transition: transform .25s var(--ease); flex-shrink: 0; }
.float-bar.open .float-bar-head .ico { transform: rotate(45deg); }
.float-bar-body { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); padding: 0 20px; }
.float-bar.open .float-bar-body { max-height: 260px; padding: 0 20px 18px; }
.float-bar-body ul { list-style: none; margin: 0 0 14px; padding: 0; display: grid; gap: 8px; }
.float-bar-body li { color: var(--on-dark-muted); font-size: .95rem; padding-left: 20px; position: relative; }
.float-bar-body li::before { content: ""; position: absolute; left: 0; top: .6em; width: 6px; height: 6px; border-radius: 50%; background: var(--accent-bright); }
.float-bar-body .btn { width: 100%; }
@media (prefers-reduced-motion: reduce) {
  .float-cta, .float-bar:not(.open) { animation: none; }
}

/* Comparsa allo scroll (solo con JS attivo) */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .card, .card-media img, .strip img, .gallery img { transition: none; }
}

/* Spaziature di servizio */
.mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; }
.text-center { text-align: center; }

@media (min-width: 1024px) { .icon-row-2 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) { .site-footer { padding-bottom: 96px; } }
