/* =========================================================
   Studio Cucinotta — Nutrizione, Sport e Benessere
   Mood: chiaro sportivo-salute (palette campionata dal logo: verde mela + rosso)
   Font: Nunito (display) + Inter (corpo)
   ========================================================= */

:root {
  /* --- Brand: valori campionati direttamente dal logo --- */
  --green: #ABC854;
  --green-soft: #F1F6E3;
  --green-mid: #C8DC91;
  --green-deep: #66861F;      /* verde scurito, leggibile su fondo chiaro */
  --green-ink: #36470E;
  --red: #C4352D;
  --red-soft: #FAEBEA;
  --red-deep: #9C2823;

  /* --- Neutri --- */
  --bg: #FCFCF8;
  --bg-alt: #F4F6EE;
  --panel: #FFFFFF;
  --ink: #1B2413;
  --ink-body: #3D4A33;
  --ink-muted: rgba(27, 36, 19, .58);
  --border: #E3E7D8;
  --border-strong: #CBD4B6;

  /* --- Forma --- */
  --radius-btn: 9999px;
  --radius-card: 22px;
  --radius-sm: 12px;
  --section-py: 112px;
  --shadow-sm: 0 2px 10px rgba(27, 36, 19, .05);
  --shadow-md: 0 12px 34px rgba(27, 36, 19, .09);
  --shadow-lg: 0 24px 60px rgba(27, 36, 19, .13);

  /* --- Tipografia ---
     Nunito: sans geometrico dai terminali morbidi, lo stesso registro
     "friendly e sportivo" delle grafiche social dello studio. */
  --font-display: 'Nunito', 'Trebuchet MS', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --nav-h: 76px;
}

/* ---------------- Reset ---------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink-body);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.15;
  margin: 0;
  letter-spacing: -.015em;
}

/* ---------------- Layout ---------------- */
.wrap { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding-block: var(--section-py); }
.section--alt { background: var(--bg-alt); }
.section--soft { background: var(--green-soft); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 3px;
  background: var(--red);
  border-radius: 2px;
}
.eyebrow--center { justify-content: center; }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(32px, 4.2vw, 50px); font-weight: 700; }
.section-head p { margin: 18px 0 0; font-size: 18px; color: var(--ink-muted); }

/* ---------------- Bottoni ---------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--red); color: #fff; box-shadow: 0 8px 22px rgba(196, 53, 45, .28); }
.btn--primary:hover { background: var(--red-deep); box-shadow: 0 12px 28px rgba(196, 53, 45, .34); }
.btn--green { background: var(--green); color: var(--green-ink); box-shadow: 0 8px 22px rgba(171, 200, 84, .38); }
.btn--green:hover { background: var(--green-mid); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--border-strong); }
.btn--ghost:hover { border-color: var(--green-deep); color: var(--green-deep); }
.btn--light { background: #fff; color: var(--ink); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--outline-light:hover { background: rgba(255,255,255,.12); }
.btn--sm { padding: 11px 22px; font-size: 14px; }
.btn--full { width: 100%; }

/* ---------------- Navbar ---------------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  background: rgba(252, 252, 248, .82);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.nav.is-stuck { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__brand img { height: 44px; width: auto; }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav__brand-text strong { font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--ink); letter-spacing: -.01em; }
.nav__brand-text span { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-muted); }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { font-size: 15px; font-weight: 500; color: var(--ink-body); position: relative; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--red); border-radius: 2px; transition: width .2s ease;
}
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__phone { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; color: var(--ink); }
.nav__phone svg { color: var(--green-deep); }
.nav__burger { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--ink); }

/* Menu mobile */
.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 99;
  background: var(--bg);
  padding: 32px 24px 48px;
  display: none;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a { font-family: var(--font-display); font-weight: 600; font-size: 22px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.mobile-menu .btn { margin-top: 24px; }

/* ---------------- Hero ---------------- */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 72px);
  padding-bottom: 96px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -180px; right: -160px;
  width: 620px; height: 620px;
  background: radial-gradient(circle at 35% 35%, rgba(171,200,84,.55), rgba(171,200,84,0) 68%);
  border-radius: 50%;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -220px; left: -180px;
  width: 520px; height: 520px;
  background: radial-gradient(circle at 60% 40%, rgba(196,53,45,.16), rgba(196,53,45,0) 68%);
  border-radius: 50%;
  z-index: 0;
}
.hero__grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 64px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(38px, 5.4vw, 66px);
  font-weight: 700;
  letter-spacing: -.03em;
}
.hero h1 em { font-style: normal; color: var(--green-deep); }
.hero__lead { font-size: 19px; margin: 24px 0 34px; max-width: 540px; color: var(--ink-body); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__note { display: flex; align-items: center; gap: 10px; margin-top: 26px; font-size: 14px; color: var(--ink-muted); }
.hero__note svg { color: var(--green-deep); flex-shrink: 0; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 48px;
  padding-top: 34px;
  border-top: 1px solid var(--border);
}
.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}
.hero__stat span { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-muted); }

.hero__visual { position: relative; }
.hero__card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow-lg);
}
.hero__card-top { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; }
.hero__card-top img { width: 56px; height: 56px; }
.hero__card-top div strong { display: block; font-family: var(--font-display); font-size: 16px; color: var(--ink); }
.hero__card-top div span { font-size: 13px; color: var(--ink-muted); }
.hero__disc { display: flex; flex-direction: column; gap: 10px; }
.hero__disc-item {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 16px;
  border-radius: 14px;
  background: var(--bg-alt);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.hero__disc-item { transition: background .18s ease, transform .18s ease; }
.hero__disc-item:hover { background: var(--green-soft); transform: translateX(3px); }
.hero__disc-item i {
  width: 34px; height: 34px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 10px;
  background: #fff;
  color: var(--green-deep);
  box-shadow: var(--shadow-sm);
}
.hero__disc-item span { margin-left: auto; font-size: 12px; color: var(--ink-muted); font-weight: 400; }

/* ---------------- Discipline / servizi ---------------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--green-mid); }
.card__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 15px;
  background: var(--green-soft);
  color: var(--green-deep);
  margin-bottom: 20px;
}
.card__tag {
  align-self: flex-start;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--red-deep);
  margin-bottom: 14px;
}
.card h3 { font-size: 21px; font-weight: 600; margin-bottom: 10px; }
.card p { margin: 0 0 20px; font-size: 15.5px; color: var(--ink-muted); }
.card__link {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  color: var(--green-deep);
}
.card__link svg { transition: transform .2s ease; }
.card__link:hover svg { transform: translateX(4px); }

/* ---------------- Aree di competenza ---------------- */
.areas { display: flex; flex-wrap: wrap; gap: 12px; }
.area {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--panel);
  border: 1px solid var(--border);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}
.area:hover { background: var(--green-soft); border-color: var(--green); transform: translateY(-2px); }
.area::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); flex-shrink: 0;
}

/* ---------------- Team ---------------- */
.team-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.chip {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: transparent;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  color: var(--ink-body);
  cursor: pointer;
  transition: all .18s ease;
}
.chip:hover { border-color: var(--green-deep); color: var(--green-deep); }
.chip.is-active { background: var(--green-deep); border-color: var(--green-deep); color: #fff; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.member {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
}
.member:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.member__photo {
  position: relative;
  aspect-ratio: 3 / 4;
  background: linear-gradient(165deg, var(--green) 0%, #94B13C 100%);
  overflow: hidden;
}
.member__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.member__initials {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  letter-spacing: .02em;
}
.member__photo::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 5px; background: var(--red);
}
.member__body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.member__role {
  font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--green-deep); margin-bottom: 8px;
}
.member__body h3 { font-size: 18px; font-weight: 600; margin-bottom: 6px; }
.member__body p { font-size: 14px; color: var(--ink-muted); margin: 0 0 18px; }
.member__book {
  margin-top: auto;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--border-strong);
  background: transparent;
  font-family: var(--font-display); font-weight: 600; font-size: 13.5px;
  color: var(--ink);
  cursor: pointer;
  transition: all .18s ease;
}
.member__book:hover { background: var(--green-deep); border-color: var(--green-deep); color: #fff; }

/* ---------------- Fondatore ---------------- */
.founder { display: grid; grid-template-columns: .85fr 1.15fr; gap: 64px; align-items: center; }
.founder__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(165deg, var(--green) 0%, #94B13C 100%);
  box-shadow: var(--shadow-lg);
}
.founder__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.founder__badge {
  position: absolute; left: 22px; bottom: 22px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  padding: 14px 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}
.founder__badge strong { display: block; font-family: var(--font-display); font-size: 16px; color: var(--ink); }
.founder__badge span { font-size: 12.5px; color: var(--ink-muted); }
.founder h2 { font-size: clamp(30px, 3.6vw, 44px); font-weight: 700; margin-bottom: 20px; }
.founder p { font-size: 17px; margin: 0 0 18px; }

.timeline { margin-top: 36px; display: flex; flex-direction: column; gap: 4px; }
.timeline__item {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
}
.timeline__year {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--red);
  letter-spacing: .02em;
}
.timeline__body strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--ink); margin-bottom: 3px; }
.timeline__body span { font-size: 14.5px; color: var(--ink-muted); }

/* ---------------- Percorso / step ---------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding-top: 28px; border-top: 3px solid var(--border-strong); }
.step:first-child { border-color: var(--red); }
.step__num {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700; letter-spacing: .1em;
  color: var(--red); margin-bottom: 12px;
}
.step h3 { font-size: 19px; font-weight: 600; margin-bottom: 10px; }
.step p { margin: 0; font-size: 15px; color: var(--ink-muted); }

/* ---------------- Prenotazione (stepper) ---------------- */
.booking { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.booking__intro h2 { font-size: clamp(30px, 3.6vw, 44px); font-weight: 700; margin-bottom: 18px; }
.booking__intro p { font-size: 17px; margin: 0 0 26px; }
.booking__points { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.booking__point { display: flex; gap: 14px; align-items: flex-start; font-size: 15px; }
.booking__point svg { color: var(--green-deep); flex-shrink: 0; margin-top: 3px; }

.booking__panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow-lg);
}
.booking__progress { display: flex; align-items: center; gap: 8px; margin-bottom: 28px; }
.booking__dot {
  flex: 1; height: 5px; border-radius: 3px; background: var(--border);
  transition: background .25s ease;
}
.booking__dot.is-done { background: var(--green); }
.booking__dot.is-active { background: var(--red); }
.booking__stepnum {
  font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-muted); margin-bottom: 8px;
}
.booking__step { display: none; }
.booking__step.is-active { display: block; animation: fadeIn .28s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.booking__step h3 { font-size: 23px; font-weight: 600; margin-bottom: 6px; }
.booking__hint { font-size: 14.5px; color: var(--ink-muted); margin: 0 0 22px; }

.opt-list { display: flex; flex-direction: column; gap: 10px; max-height: 340px; overflow-y: auto; padding-right: 4px; }
.opt {
  display: flex; align-items: center; gap: 14px;
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1.5px solid var(--border);
  background: var(--panel);
  text-align: left;
  cursor: pointer;
  transition: all .18s ease;
}
.opt:hover { border-color: var(--green); background: var(--green-soft); }
.opt.is-selected { border-color: var(--green-deep); background: var(--green-soft); }
.opt__av {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--green); color: #fff;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  overflow: hidden;
}
.opt__av img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.opt__txt strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: 15.5px; color: var(--ink); }
.opt__txt span { font-size: 13px; color: var(--ink-muted); }
.opt__check { margin-left: auto; color: var(--green-deep); opacity: 0; transition: opacity .18s ease; }
.opt.is-selected .opt__check { opacity: 1; }

.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-muted); margin-bottom: 7px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: var(--bg);
  font-size: 15px;
  transition: border-color .18s ease, background .18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green-deep); background: #fff;
}
.field textarea { resize: vertical; min-height: 84px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.booking__summary {
  background: var(--bg-alt);
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 22px;
  font-size: 14.5px;
}
.booking__summary div { display: flex; justify-content: space-between; gap: 16px; padding: 5px 0; }
.booking__summary span { color: var(--ink-muted); }
.booking__summary strong { color: var(--ink); font-weight: 600; text-align: right; }

.booking__nav { display: flex; gap: 12px; margin-top: 22px; }
.booking__back {
  background: none; border: 0; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  color: var(--ink-muted);
  display: inline-flex; align-items: center; gap: 7px;
  padding: 12px 4px;
}
.booking__back:hover { color: var(--ink); }
.booking__privacy { font-size: 12.5px; color: var(--ink-muted); margin: 16px 0 0; line-height: 1.5; }
.booking__privacy a { color: var(--green-deep); text-decoration: underline; }

.booking__done { text-align: center; padding: 20px 0; }
.booking__done-icon {
  width: 68px; height: 68px; margin: 0 auto 20px;
  display: grid; place-items: center;
  border-radius: 50%; background: var(--green-soft); color: var(--green-deep);
}

/* ---------------- CTA banner ---------------- */
.cta-band {
  background: linear-gradient(120deg, #94B13C 0%, var(--green) 55%, #B7D96C 100%);
  border-radius: 32px;
  padding: 60px 56px;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 40px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute; right: -80px; top: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: rgba(196, 53, 45, .18);
}
.cta-band h2 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 700; color: #fff; position: relative; z-index: 1; }
.cta-band p { color: rgba(255,255,255,.92); font-size: 17px; margin: 14px 0 0; position: relative; z-index: 1; }
.cta-band__actions { display: flex; flex-direction: column; gap: 12px; position: relative; z-index: 1; }

/* ---------------- Contatti ---------------- */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact__list { display: flex; flex-direction: column; gap: 4px; }
.contact__item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.contact__item i {
  width: 44px; height: 44px; flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 13px;
  background: var(--green-soft);
  color: var(--green-deep);
}
.contact__item strong {
  display: block;
  font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-muted); margin-bottom: 4px;
}
.contact__item a, .contact__item p { font-family: var(--font-display); font-size: 17px; font-weight: 500; color: var(--ink); margin: 0; }
.contact__item a:hover { color: var(--green-deep); }
.contact__item small { display: block; font-family: var(--font-body); font-size: 13.5px; font-weight: 400; color: var(--ink-muted); margin-top: 4px; }

.hours { background: var(--panel); border: 1px solid var(--border); border-radius: var(--radius-card); padding: 28px 30px; margin-top: 28px; }
.hours h3 { font-size: 17px; font-weight: 600; margin-bottom: 16px; }
.hours__row { display: flex; justify-content: space-between; padding: 9px 0; font-size: 15px; border-bottom: 1px dashed var(--border); }
.hours__row:last-child { border-bottom: 0; }
.hours__row span:last-child { font-weight: 600; color: var(--ink); }
.hours__row--off span:last-child { color: var(--ink-muted); font-weight: 500; }

.map-embed {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 420px;
  height: 100%;
  background: var(--bg-alt);
}
.map-embed iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }

/* ---------------- Footer ---------------- */
.footer { background: #16200E; color: rgba(255,255,255,.72); padding: 72px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 44px; }
.footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer__brand img { height: 48px; background: #fff; border-radius: 12px; padding: 4px; }
.footer__brand strong { font-family: var(--font-display); font-size: 17px; color: #fff; }
.footer p { font-size: 14.5px; margin: 0 0 12px; }
.footer h4 {
  font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green); margin-bottom: 18px;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 14.5px; }
.footer ul a:hover { color: var(--green); }
.footer__social { display: flex; gap: 10px; margin-top: 18px; }
.footer__social a {
  width: 40px; height: 40px; display: grid; place-items: center;
  border-radius: 50%; background: rgba(255,255,255,.08); color: #fff;
  transition: background .18s ease;
}
.footer__social a:hover { background: var(--green); color: var(--green-ink); }
.footer__bottom {
  margin-top: 52px; padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between;
  font-size: 13px;
}
.footer__bottom a { text-decoration: underline; }
.footer__disclaimer { margin-top: 14px; font-size: 12.5px; color: rgba(255,255,255,.45); max-width: 780px; line-height: 1.6; }

/* ---------------- WhatsApp FAB ---------------- */
.fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center;
  background: #25D366; color: #fff;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .42);
  transition: transform .2s ease;
}
.fab:hover { transform: scale(1.07); }

/* ---------------- Reveal on scroll ---------------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------------- Pagine interne ---------------- */
.nav__links a.is-current { color: var(--green-deep); font-weight: 600; }
.nav__links a.is-current::after { width: 100%; background: var(--green); }

.page-hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 68px);
  padding-bottom: 60px;
  background: var(--green-soft);
  overflow: hidden;
}
.page-hero::after {
  content: "";
  position: absolute; right: -120px; top: -140px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(171,200,84,.55), rgba(171,200,84,0) 70%);
}
.page-hero__inner { position: relative; z-index: 1; max-width: 780px; }
.page-hero h1 { font-size: clamp(34px, 4.8vw, 56px); }
.page-hero p { font-size: 19px; margin: 20px 0 0; color: var(--ink-body); }

/* Blocco servizio esteso */
.service-row {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  gap: 28px;
  align-items: start;
  padding: 38px 0;
  border-top: 1px solid var(--border);
}
.service-row:last-child { border-bottom: 1px solid var(--border); }
.service-row__icon {
  width: 72px; height: 72px;
  display: grid; place-items: center;
  border-radius: 20px;
  background: var(--green-soft);
  color: var(--green-deep);
}
.service-row h2 { font-size: 26px; margin-bottom: 10px; }
.service-row p { margin: 0 0 16px; font-size: 16px; color: var(--ink-muted); max-width: 640px; }
.service-row__list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.service-row__list li {
  font-size: 13.5px; padding: 6px 14px; border-radius: 999px;
  background: var(--bg-alt); color: var(--ink-body);
}
.service-row__who { font-size: 13.5px; color: var(--ink-muted); margin-top: 14px; }
.service-row__who strong { color: var(--ink); font-weight: 600; }

/* Testo lungo (privacy, cookie) */
.prose { max-width: 760px; }
.prose h2 { font-size: 24px; margin: 40px 0 12px; }
.prose h3 { font-size: 18px; margin: 26px 0 8px; }
.prose p, .prose li { font-size: 16px; color: var(--ink-body); }
.prose ul { padding-left: 20px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--green-deep); text-decoration: underline; }
.prose .note {
  background: var(--green-soft); border-radius: var(--radius-sm);
  padding: 16px 20px; font-size: 14.5px; margin: 24px 0;
}

/* Riga CTA inline */
.cta-inline {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 24px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px 36px;
  margin-top: 56px;
}
.cta-inline h3 { font-size: 22px; margin-bottom: 6px; }
.cta-inline p { margin: 0; font-size: 15.5px; color: var(--ink-muted); }
.cta-inline__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Griglia team in pagina dedicata: 3 colonne più grandi */
.team-grid--wide { grid-template-columns: repeat(3, 1fr); }
.team-grid--wide .member__body { padding: 24px 24px 28px; }
.team-grid--wide .member__body h3 { font-size: 20px; }

/* ---------------- Responsive ---------------- */
@media (max-width: 1060px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 900px) {
  :root { --section-py: 76px; }
  .nav__links, .nav__phone { display: none; }
  .nav__burger { display: block; }
  .hero__grid, .founder, .booking, .contact { grid-template-columns: 1fr; gap: 44px; }
  .founder__photo { max-width: 420px; }
  .cta-band { grid-template-columns: 1fr; padding: 44px 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
}
@media (max-width: 680px) {
  body { font-size: 16px; }
  .wrap { width: calc(100% - 36px); }
  .team-grid, .cards { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .steps { grid-template-columns: 1fr; }
  .hero__stats { grid-template-columns: 1fr 1fr; gap: 20px 8px; }
  .booking__panel { padding: 24px 20px; }
  .field-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .member__body { padding: 16px 16px 20px; }
  .member__body h3 { font-size: 16px; }
  .card { padding: 26px 22px; }
}
@media (max-width: 420px) {
  .team-grid, .cards { grid-template-columns: 1fr; }
}
