/* =========================================================================
   MONSAR — Centro Estetico a Firenze, specializzato in Estetica Avanzata
   Foglio di stile principale.
   Palette: oro/tortora champagne · bianco · nero. Solo CSS vanilla, mobile-first.
   ========================================================================= */

/* ---------- Variabili (Design System) ---------- */
:root {
  --bg: #ffffff;
  --bg-alt: #faf8f5;          /* avorio caldissimo per le sezioni alternate */
  --bg-dark: #121110;         /* nero caldo per footer / sezioni scure */
  --text: #1a1815;           /* near-black caldo */
  --text-soft: #5c554d;      /* grigio caldo per i paragrafi */
  --muted: #8c8377;          /* tortora desaturato */
  --line: #ece7df;           /* bordi sottili */

  --gold: #c4b19c;           /* oro/tortora — colore brand */
  --gold-deep: #a8927a;      /* oro più scuro per hover/testi su chiaro */
  --gold-soft: #efe8df;      /* oro lavato per fondali tenui */

  --white: #ffffff;
  --black: #121110;

  --shadow: 0 10px 30px rgba(26, 24, 21, .07);
  --shadow-lg: 0 24px 60px rgba(26, 24, 21, .14);
  --radius: 14px;
  --radius-lg: 22px;
  --radius-sm: 10px;

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

  --font-title: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-text: 'Jost', 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;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-deep); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--text); }
h1, h2, h3, h4 {
  font-family: var(--font-title);
  line-height: 1.08;
  color: var(--text);
  font-weight: 600;
  letter-spacing: .005em;
}
h1 { font-size: clamp(2.6rem, 6.5vw, 5rem); margin: 0 0 .3em; }
h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); margin: 0 0 .4em; }
h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); margin: 0 0 .4em; }
p { margin: 0 0 1.1em; }
strong { font-weight: 500; color: var(--text); }

::selection { background: var(--gold); color: #fff; }

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

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(20px, 5vw, 40px); }
.container--narrow { max-width: 820px; }
.section { padding-block: clamp(60px, 9vw, 120px); }
.section--alt { background: var(--bg-alt); }
.section--dark { background: var(--bg-dark); color: #e9e4dc; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.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: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  font-size: .72rem;
  color: var(--gold-deep);
  margin-bottom: 1.1em;
  position: relative;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 26px; height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: .9em;
}
.text-center .eyebrow::after {
  content: "";
  display: inline-block;
  width: 26px; height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-left: .9em;
}
.lead { font-size: 1.16rem; color: var(--text-soft); max-width: 62ch; font-weight: 300; }
.text-center .lead { margin-inline: auto; }

.section-head { margin-bottom: clamp(36px, 5vw, 64px); }

/* ---------- Bottoni ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  font-family: var(--font-text);
  font-weight: 400;
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 1.05em 2.2em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .3s var(--ease);
  line-height: 1;
}
.btn--primary { background: var(--gold); color: #fff; }
.btn--primary:hover { background: var(--gold-deep); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn--dark { background: var(--black); color: #fff; }
.btn--dark:hover { background: #2c2925; color: #fff; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-deep); }
.btn--light { background: #fff; color: var(--text); }
.btn--light:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }
.btn--outline-gold { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn--outline-gold:hover { background: var(--gold); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.text-center .btn-row { justify-content: center; }

/* ---------- Header / Navigazione ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(26,24,21,.06); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 96px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: auto; border-radius: 6px; }
/* Header: il logo include già il nome → nascondi la scritta e ingrandisci il logo */
.site-header .brand-name { display: none; }
.site-header .brand img {
  height: 84px;
  width: auto;
  border-radius: 0;
}
@media (max-width: 940px) {
  .nav { min-height: 80px; }
  .site-header .brand img { height: 62px; }
}
.brand-name {
  font-family: var(--font-title);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--text);
  line-height: 1;
}
.brand-name small {
  display: block;
  font-family: var(--font-text);
  font-size: .56rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 4px;
  font-weight: 400;
}
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 400;
  position: relative;
  padding-block: 6px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold-deep); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--text); transition: all .3s var(--ease); display: block; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 940px) {
  .nav-links {
    position: fixed;
    inset: 78px 0 auto 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #fff;
    padding: 12px clamp(20px,5vw,40px) 28px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    transition: transform .35s var(--ease);
    max-height: calc(100vh - 78px);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; border-bottom: 1px solid var(--line); }
  .nav-links a { display: block; padding: 16px 0; font-size: 1rem; }
  .nav-links a::after { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta .btn { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(560px, 90vh, 860px);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.22) 0%, rgba(0,0,0,.16) 50%, rgba(0,0,0,.30) 100%),
    var(--gold-soft);
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero__inner { position: relative; z-index: 1; max-width: 760px; padding-block: 80px; }
.hero h1 { color: #fff; }
.hero .eyebrow { color: #e9dcca; }
.hero .eyebrow::before, .hero .eyebrow::after { background: var(--gold); }
.hero__lead { font-size: 1.22rem; color: #f1ece4; max-width: 52ch; margin-bottom: 2em; font-weight: 300; }

/* Hero home: velo bianco su tutta la hero + logo trasparente davanti */
.hero--logo { text-align: center; }
.hero--logo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;            /* sopra l'immagine, sotto il contenuto */
  background: rgba(255, 255, 255, .5);   /* velo bianco semi-trasparente su tutta la hero */
  pointer-events: none;
}
.hero--logo .container { position: relative; z-index: 2; }
.hero__inner--center {
  max-width: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-inline: auto;
}
.hero__logo {
  width: min(660px, 88vw);
  height: auto;
  margin-bottom: 2.4rem;
  filter: drop-shadow(0 6px 26px rgba(0,0,0,.18));
}
.hero--logo .btn-row { justify-content: center; }
.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  z-index: 3; color: #fff; font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: .85;
}
.hero__scroll span { width: 1px; height: 40px; background: rgba(255,255,255,.6); animation: scrollLine 2.2s var(--ease) infinite; }
/* Sulla hero-logo (velo bianco chiaro) la freccia scuro si legge meglio */
.hero--logo .hero__scroll { color: var(--text); }
.hero--logo .hero__scroll span { background: rgba(26,24,21,.4); }
@keyframes scrollLine { 0%,100%{transform:scaleY(.3);opacity:.4;transform-origin:top} 50%{transform:scaleY(1);opacity:1;transform-origin:top} }

/* Hero piccolo per le pagine interne */
.page-hero {
  position: relative;
  padding-block: clamp(80px, 14vw, 160px);
  background: var(--bg-dark);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute; inset: 0; z-index: 0;
  /* velo molto leggero in tinta + alone scuro centrale dietro al testo per leggibilità */
  background:
    radial-gradient(ellipse 60% 80% at center, rgba(0,0,0,.42) 0%, rgba(0,0,0,.10) 70%),
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.26)),
    var(--gold-soft);
  background-size: cover; background-position: center;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; text-shadow: 0 2px 18px rgba(0,0,0,.45); }
.page-hero .eyebrow { color: #f0e6d6; text-shadow: 0 1px 10px rgba(0,0,0,.4); }
.breadcrumb { font-size: .82rem; color: #e4dccf; letter-spacing: .04em; text-shadow: 0 1px 8px rgba(0,0,0,.4); }
.breadcrumb a { color: #cfc6b8; }
.breadcrumb a:hover { color: #fff; }

/* ---------- Griglie generiche ---------- */
.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 940px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* split immagine + testo */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split--reverse .split__media { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split--reverse .split__media { order: 0; } }
.split__media { position: relative; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.split__media--tag::after {
  content: attr(data-tag);
  position: absolute; left: 24px; bottom: 24px;
  background: rgba(255,255,255,.92); color: var(--text);
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  padding: 10px 18px; border-radius: 999px; box-shadow: var(--shadow);
}

/* ---------- Card servizio ---------- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.card__media { aspect-ratio: 3/2; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: 26px 26px 30px; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { margin-bottom: .35em; }
.card__body p { color: var(--text-soft); font-size: .98rem; flex: 1; }
.card__link {
  margin-top: 16px;
  font-size: .76rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-deep); font-weight: 400;
  display: inline-flex; align-items: center; gap: .5em;
}
.card__link::after { content: "→"; transition: transform .3s var(--ease); }
.card:hover .card__link::after { transform: translateX(4px); }

/* card servizio compatta (icona) */
.feature {
  text-align: left;
  padding: 34px 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.feature:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.feature__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--gold-soft);
  color: var(--gold-deep);
  margin-bottom: 20px;
}
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.4rem; }
.feature p { color: var(--text-soft); font-size: .96rem; margin: 0; }

/* lista servizi (menu prezzi/voci) */
.svc-list { list-style: none; margin: 0; padding: 0; }
.svc-list li {
  display: flex; align-items: baseline; gap: 14px;
  padding: 18px 0;
  border-bottom: 1px dashed var(--line);
}
.svc-list li:last-child { border-bottom: none; }
.svc-list .svc-name { font-family: var(--font-title); font-size: 1.3rem; color: var(--text); white-space: nowrap; }
.svc-list .svc-dots { flex: 1; border-bottom: 1px dotted #d8d0c4; transform: translateY(-4px); }
.svc-list .svc-desc { display: block; color: var(--muted); font-size: .9rem; }

/* ---------- Numeri / stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: var(--gap); }
@media (max-width:720px){ .stats { grid-template-columns: repeat(2,1fr); } }
.stat { text-align: center; }
.stat__num { font-family: var(--font-title); font-size: clamp(2.6rem,5vw,3.6rem); color: var(--gold-deep); line-height: 1; }
.section--dark .stat__num { color: var(--gold); }
.stat__label { font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-top: 10px; }
.section--dark .stat__label { color: #b7ad9f; }

/* ---------- Team ---------- */
.team-card { text-align: center; }
.team-card__photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.team-card:hover .team-card__photo img { transform: scale(1.05); }
.team-card h3 { margin-bottom: .1em; }
.team-card .role { color: var(--gold-deep); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; }
.team-card .bio { color: var(--text-soft); font-size: .95rem; margin-top: 10px; }
.badge-owner {
  display: inline-block; margin-top: 10px;
  font-size: .68rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-deep); border: 1px solid var(--gold); border-radius: 999px;
  padding: 5px 14px;
}

/* ---------- Recensioni ---------- */
.reviews { display: grid; grid-template-columns: repeat(3,1fr); gap: var(--gap); }
@media (max-width:940px){ .reviews { grid-template-columns: 1fr; } }
.review {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  display: flex; flex-direction: column;
}
.section--alt .review { background: #fff; }
.review .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 14px; font-size: 1.05rem; }
.review p { color: var(--text-soft); font-style: italic; font-family: var(--font-title); font-size: 1.18rem; line-height: 1.5; flex: 1; }
.review .author { margin-top: 18px; display: flex; align-items: center; gap: 12px; }
.review .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold-soft); color: var(--gold-deep);
  display: grid; place-items: center; font-weight: 500; font-size: 1.05rem;
  font-family: var(--font-title);
}
.review .author strong { display: block; font-weight: 500; }
.review .author small { color: var(--muted); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-dark);
  color: #fff;
  text-align: center;
  padding: clamp(48px, 8vw, 90px) clamp(24px, 6vw, 80px);
}
.cta-band__bg {
  position: absolute; inset: 0; z-index: 0; opacity: .35;
  background-size: cover; background-position: center;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #e2dbd0; max-width: 56ch; margin-inline: auto; }

/* ---------- Info / contatti ---------- */
.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.info-list li { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line); }
.info-list li:last-child { border-bottom: none; }
.info-list .ic { color: var(--gold-deep); flex: 0 0 auto; margin-top: 3px; }
.info-list .ic svg { width: 22px; height: 22px; }
.info-list strong { display: block; font-weight: 500; margin-bottom: 2px; }
.info-list span { color: var(--text-soft); font-size: .98rem; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: .98rem; }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:last-child { text-align: right; color: var(--text-soft); }
.hours-table .closed { color: var(--muted); }
.hours-table .today { color: var(--gold-deep); font-weight: 500; }

/* ---------- Form ---------- */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 48px);
  box-shadow: var(--shadow);
}
.field { margin-bottom: 20px; }
.field label { display: block; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-text);
  font-size: 1rem;
  font-weight: 300;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg-alt);
  color: var(--text);
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: #fff;
}
.field textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px){ .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: .85rem; color: var(--muted); margin-top: 6px; }
.form-status { margin-top: 14px; font-size: .92rem; }

/* mappa */
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-dark); color: #cfc7ba; padding-block: clamp(56px, 8vw, 84px) 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: clamp(28px,4vw,48px); }
@media (max-width: 860px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-family: var(--font-text); font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 500; margin-bottom: 18px; }
.site-footer .brand-name { color: #fff; }
.site-footer p { color: #a79e90; font-size: .95rem; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-links a { color: #cfc7ba; font-size: .95rem; }
.footer-links a:hover { color: var(--gold); }
.social-row { display: flex; gap: 12px; margin-top: 18px; }
.social-row a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
  display: grid; place-items: center; color: #cfc7ba;
  transition: all .3s var(--ease);
}
.social-row a:hover { background: var(--gold); border-color: var(--gold); color: #fff; transform: translateY(-3px); }
.social-row svg { width: 18px; height: 18px; }
.footer-bottom {
  margin-top: clamp(40px,6vw,64px);
  border-top: 1px solid rgba(255,255,255,.1);
  padding-block: 26px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-size: .85rem; color: #8c8377;
}
.footer-bottom a { color: #8c8377; }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Animazioni al scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { 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) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero__scroll span { animation: none; }
}

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.divider-dot { color: var(--gold); }
