/* L'Oasi della Bellezza — palette: sabbia, salvia, oro tenue */
/* Tipografia: Montserrat (Google Fonts, vedi includes/fonts-head.php). */

:root {
  --color-bg: #f7f4ef;
  --color-bg-deep: #ebe6dc;
  --color-ink: #2c2825;
  --color-ink-soft: #5c5650;
  --color-accent: #7d8b6f;
  --color-accent-dark: #5a6650;
  --color-gold: #b8a07a;
  --color-gold-light: #d4c4a8;
  --color-white: #fffcf8;
  --font-display: "Montserrat", system-ui, sans-serif;
  --font-body: "Montserrat", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 4.25rem;
  /* Larghezze contenuto: testo fluido ma più arioso su desktop */
  --layout-max-text: min(56rem, calc(100vw - 2.5rem));
  --layout-max-wide: min(92rem, calc(100vw - 2.5rem));
  --layout-pad-x: clamp(1.25rem, 5vw, 4.25rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  font-family: var(--font-body);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--color-ink);
  background: var(--color-bg);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent-dark);
  text-decoration: none;
  transition: color 0.2s var(--ease-out);
}

a:hover {
  color: var(--color-gold);
}

/* ——— Header ——— */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--layout-pad-x);
  background: rgba(247, 244, 239, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 160, 122, 0.2);
  transition: box-shadow 0.35s var(--ease-out), background 0.35s;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 32px rgba(44, 40, 37, 0.08);
}

.brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-ink);
}

.brand span {
  display: block;
  font-size: 0.72rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-top: 0.15rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-ink);
  transition: transform 0.25s;
}

.nav-list {
  display: flex;
  gap: clamp(0.75rem, 2.5vw, 1.75rem);
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-list a {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
}

.nav-list a:hover {
  color: var(--color-accent-dark);
}

.nav-list a.is-active {
  color: var(--color-accent-dark);
  font-weight: 600;
  box-shadow: inset 0 -2px 0 var(--color-gold);
}

.nav-list a.nav-cta.is-active {
  color: var(--color-white) !important;
  box-shadow: 0 4px 20px rgba(90, 102, 80, 0.35), inset 0 0 0 2px rgba(255, 252, 248, 0.55);
}

.nav-cta {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: var(--color-white) !important;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(90, 102, 80, 0.25);
}

.nav-cta:hover {
  filter: brightness(1.05);
  color: var(--color-white) !important;
}

@media (max-width: 900px) {
  :root {
    /* Barra un po’ più bassa del breakpoint precedente, resta spazio per 2 righe di brand */
    --header-h: 4.7rem;
  }

  .site-header {
    gap: 0.5rem;
  }

  .brand {
    flex: 1;
    min-width: 0;
    margin-right: 0.25rem;
    font-size: 1.20rem;
    line-height: 1.20;
  }

  .brand span {
    font-size: clamp(0.48rem, 2.2vw, 0.64rem);
    letter-spacing: 0.065em;
    line-height: 1.35;
    margin-top: 0.20rem;
    text-wrap: balance;
  }

  .nav-toggle {
    display: flex;
    flex-shrink: 0;
  }

  .nav-list {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 1.5rem;
    background: var(--color-bg);
    border-bottom: 1px solid rgba(184, 160, 122, 0.25);
    gap: 1rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease-out), opacity 0.3s;
  }

  .nav-list.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 360px) {
  .brand {
    font-size: 1rem;
  }

  .brand span {
    font-size: 0.47rem;
    letter-spacing: 0.04em;
  }
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 3rem) var(--layout-pad-x) 4rem;
  overflow: hidden;
  background: linear-gradient(145deg, #c4b8a8 0%, #8a9a7e 45%, #6b7562 100%);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  will-change: transform;
  z-index: 0;
}

.hero__bg--fallback {
  background: linear-gradient(145deg, #c4b8a8 0%, #8a9a7e 45%, #6b7562 100%);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(44, 40, 37, 0.35) 0%,
    rgba(44, 40, 37, 0.55) 50%,
    rgba(44, 40, 37, 0.75) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: min(60rem, calc(100vw - 2.5rem));
  text-align: center;
  color: var(--color-white);
}

.hero__eyebrow {
  font-size: 1rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.hero__eyebrow--large {
  font-family: var(--font-display);
  font-size: clamp(2.65rem, 5.1vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: clamp(0.85rem, 2vw, 1.15rem);
  font-weight: 600;
  opacity: 1;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.32);
}

.hero h1,
.hero .hero__title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.8vw, 1.8rem);
  font-weight: 500;
  line-height: 1.18;
  margin: 0 0 1.1rem;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.35);
}

.hero__lead {
  font-size: clamp(0.98rem, 2.1vw, 1.15rem);
  max-width: min(44rem, 100%);
  margin: 0 auto 2rem;
  opacity: 0.92;
  line-height: 1.65;
  font-weight: 400;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.hero__actions--stack {
  flex-direction: column;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 22rem;
  margin-left: auto;
  margin-right: auto;
  gap: 0.75rem;
}

.hero__actions--stack .btn {
  width: 100%;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--color-white);
  color: var(--color-ink);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.btn--primary:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}

.btn--ghost {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 252, 248, 0.65);
}

.btn--ghost:hover {
  background: rgba(255, 252, 248, 0.12);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255, 252, 248, 0.5);
  border-radius: 20px;
}

.hero__scroll::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: var(--color-white);
  border-radius: 2px;
  animation: scroll-hint 2s ease-in-out infinite;
}

@keyframes scroll-hint {
  0%,
  100% {
    opacity: 1;
    transform: translateY(0);
  }
  50% {
    opacity: 0.4;
    transform: translateY(10px);
  }
}

/* ——— Sections ——— */
.section {
  position: relative;
  padding: clamp(4rem, 10vw, 7rem) var(--layout-pad-x);
}

.section--alt {
  background-color: var(--color-bg-deep);
  background-image: radial-gradient(
      ellipse 90% 55% at 12% -5%,
      rgba(184, 160, 122, 0.14) 0%,
      transparent 58%
    ),
    radial-gradient(
      ellipse 75% 50% at 92% 25%,
      rgba(125, 139, 111, 0.1) 0%,
      transparent 52%
    );
}

.section--dark {
  background: var(--color-ink);
  color: var(--color-bg);
  box-shadow: inset 0 1px 0 rgba(255, 252, 248, 0.07);
}

.section--dark .section__title,
.section--dark h2,
.section--dark h3 {
  color: var(--color-white);
}

.section--dark p,
.section--dark li {
  color: rgba(247, 244, 239, 0.88);
}

.section__inner {
  max-width: var(--layout-max-text);
  margin: 0 auto;
}

.section__inner--wide {
  max-width: var(--layout-max-wide);
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 1.5rem;
  color: var(--color-ink);
}

.section-actions {
  margin-top: 1.25rem;
}

.section-actions__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin: 0;
}

.section-actions__row--wa {
  margin-top: 0.75rem;
}

.section__divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  border: none;
  margin: 0 0 1.75rem;
  border-radius: 2px;
  box-shadow: 0 0 22px rgba(184, 160, 122, 0.45);
}

.section--dark .section__divider {
  background: linear-gradient(90deg, var(--color-gold), var(--color-accent));
  box-shadow: 0 0 20px rgba(212, 196, 168, 0.25);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: var(--layout-max-wide);
  margin: 0 auto;
}

.split__visual {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  min-height: 320px;
  box-shadow: 0 24px 60px rgba(44, 40, 37, 0.12);
}

.split__visual-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.split__visual-img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* oppure cover */
}

.split__visual-bg--fallback {
  background: linear-gradient(160deg, #a8b5a0 0%, #7d8b6f 100%);
}

.split__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(44, 40, 37, 0.15));
  pointer-events: none;
}

.split__text ul,
.section__inner ul {
  padding-left: 1.1rem;
  margin: 1rem 0 0;
}

.split__text li,
.section__inner li {
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .split {
    grid-template-columns: 1fr;
  }

  .split__visual {
    order: -1;
    min-height: 240px;
  }
}

/* ——— Cards / Reset / Myo ——— */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: var(--color-white);
  padding: 1.75rem;
  border-radius: 4px;
  border: 1px solid rgba(184, 160, 122, 0.25);
  box-shadow: 0 12px 40px rgba(44, 40, 37, 0.06);
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
}

.section--dark .card {
  background: rgba(255, 252, 248, 0.06);
  border-color: rgba(184, 160, 122, 0.2);
}

.section--dark .benefit-stack__item h3 {
  color: var(--color-white);
}

.benefit-stack {
  margin-top: 2rem;
}

.benefit-stack__item + .benefit-stack__item {
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
}

@media (min-width: 1024px) {
  .benefit-stack {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.75rem, 3vw, 2.75rem);
    align-items: start;
  }

  .benefit-stack__item + .benefit-stack__item {
    margin-top: 0;
  }
}

.benefit-stack__item h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
}

/* ——— Chi sono ——— */
.chi-sono__block {
  max-width: min(48rem, 100%);
  margin: 0 auto 2.5rem;
  padding-left: 1rem;
  border-left: 3px solid var(--color-gold);
}

.chi-sono__block:last-child {
  margin-bottom: 0;
}

.section--chi .split__visual {
  min-height: 420px;
}

/* ——— Forms ——— */
.forms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  max-width: var(--layout-max-wide);
  margin: 0 auto;
  align-items: stretch;
}

.forms-grid > .form-panel {
  height: 100%;
  min-height: 0;
}

.form-panel {
  background: transparent;
  padding: clamp(1.5rem, 4vw, 2.25rem) 0;
  border-radius: 0;
  border: none;
  box-shadow: none;
}

.forms-grid > .form-panel + .form-panel {
  border-top: 1px solid rgba(184, 160, 122, 0.28);
  padding-top: clamp(2rem, 5vw, 2.75rem);
}

.contatti__intro {
  text-align: center;
  margin-bottom: 2rem;
}

.contatti__tel {
  margin: 0 0 1.25rem;
  font-size: 1.15rem;
}

.contatti__tel a {
  color: var(--color-accent-dark);
  font-weight: 600;
  text-decoration: none;
}

.contatti__tel a:hover {
  color: var(--color-gold);
  text-decoration: underline;
}

/* ——— WhatsApp e social ——— */
.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;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem 1rem;
}

.social-links--contatti {
  margin-top: 0.25rem;
}

.btn--whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  background: #25d366;
  color: #fff;
  border: none;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
  text-transform: none;
  letter-spacing: 0.02em;
  font-weight: 600;
}

.btn--whatsapp:hover {
  background: #1ebe57;
  color: #fff;
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.45);
}

.social-links__icons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.social-links__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid rgba(44, 40, 37, 0.12);
  background: var(--color-white);
  color: var(--color-ink);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, border-color 0.25s, color 0.25s;
}

.social-links__icon:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(44, 40, 37, 0.12);
}

.social-links__icon--ig:hover {
  color: #c13584;
  border-color: rgba(193, 53, 132, 0.35);
}

.social-links__icon--fb:hover {
  color: #1877f2;
  border-color: rgba(24, 119, 242, 0.35);
}

.social-links__icon--wa {
  background: rgba(37, 211, 102, 0.12);
  color: #1a9e4a;
  border-color: rgba(37, 211, 102, 0.35);
}

.social-links__icon--wa:hover {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}

.social-links__svg {
  display: block;
  flex-shrink: 0;
}

.social-links--footer {
  margin: 0.5rem 0 1.25rem;
}

.social-links--footer .social-links__icon {
  background: rgba(255, 252, 248, 0.08);
  border-color: rgba(247, 244, 239, 0.22);
  color: var(--color-gold-light);
}

.social-links--footer .social-links__icon:hover {
  background: rgba(255, 252, 248, 0.14);
  color: var(--color-white);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.social-links--footer .social-links__icon--wa:hover {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}

.social-links--recapito {
  margin-top: 1rem;
  justify-content: center;
}

.form-panel h2 {
  font-family: var(--font-display);
  font-size: 1.65rem;
  margin: 0 0 0.5rem;
}

.form-panel > p {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--color-ink-soft);
}

.form-panel--contact-footer {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.form-panel--contact-footer > .form-panel__balance {
  flex: 1 1 0;
  min-height: 0.5rem;
}

.form-panel__recapito {
  flex: 0 0 auto;
  margin: 0;
  padding: 0.25rem 0 0;
  text-align: center;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--color-ink-soft);
  border: none;
}

.form-panel__recapito-title {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
}

.form-panel__recapito-indirizzo {
  max-width: 16rem;
  margin: 0 auto 0.6rem;
  color: var(--color-ink);
}

.form-panel__recapito-tel {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--color-ink);
}

.form-panel__recapito-tel a {
  color: var(--color-accent-dark);
  text-decoration: none;
}

.form-panel__recapito-tel a:hover {
  text-decoration: underline;
}

.form-row {
  margin-bottom: 1rem;
}

.form-row label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-ink-soft);
  margin-bottom: 0.35rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid rgba(44, 40, 37, 0.15);
  border-radius: 4px;
  background: var(--color-bg);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(125, 139, 111, 0.2);
}

.form-row textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row--error input,
.form-row--error select,
.form-row--error textarea {
  border-color: #a65d5d;
}

.form-row--turnstile {
  margin-top: 0.25rem;
}

.form-row__hint {
  margin: 0.5rem 0 0;
  font-size: 0.88rem;
  color: var(--color-ink-soft);
}

.form-row__hint--error {
  color: #a65d5d;
  font-weight: 500;
}

.alert {
  padding: 0.85rem 1rem;
  border-radius: 4px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.alert--ok {
  background: rgba(125, 139, 111, 0.2);
  color: var(--color-accent-dark);
  border: 1px solid rgba(125, 139, 111, 0.4);
}

.alert--warn {
  background: rgba(184, 160, 122, 0.25);
  color: var(--color-ink);
  border: 1px solid var(--color-gold);
}

/* ——— Dove siamo ——— */
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 3.5vw, 2rem);
  max-width: var(--layout-max-wide);
  margin: 0 auto;
  align-items: stretch;
}

@media (min-width: 960px) {
  .location-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.35fr);
    align-items: stretch;
  }
}

.location-card {
  background: var(--color-white);
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(184, 160, 122, 0.3);
  border-radius: 4px;
  box-shadow: 0 12px 32px rgba(44, 40, 37, 0.08);
  text-align: center;
  max-width: none;
  width: 100%;
  margin: 0 auto;
}

.location-card .btn {
  margin-top: 0.5rem;
}

.location-map {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(184, 160, 122, 0.3);
  box-shadow: 0 18px 44px rgba(44, 40, 37, 0.1);
  min-height: 560px;
  width: 100%;
  margin: 0 auto;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
  display: block;
}

.location-map__fallback {
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--color-white);
  color: var(--color-ink-soft);
  padding: 1rem;
}

@media (max-width: 900px) {
  .location-map,
  .location-map iframe,
  .location-map__fallback {
    min-height: 380px;
  }
}

/* ——— Recensioni Google ——— */
.reviews-section {
  display: block;
  max-width: var(--layout-max-text);
  margin: 0 auto;
}

.reviews-section__intro {
  max-width: none;
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
}

.reviews-section__intro .section__title {
  margin-top: 0;
}

.reviews-section__embed {
  border-radius: 0;
  overflow: visible;
  border: none;
  box-shadow: none;
  min-height: auto;
  background: transparent;
}

.reviews-section__embed--fallback {
  min-height: auto;
}

.reviews-section__featurable {
  padding: 0;
  position: relative;
}

.reviews-section__featurable--blocked {
  min-height: 0;
}

.reviews-featurable-gate {
  margin: 0;
  padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.25rem, 3vw, 1.5rem);
  font-size: 0.92rem;
  color: var(--color-ink-soft);
  line-height: 1.55;
  text-align: center;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.reviews-featurable-gate__btn {
  display: inline;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  cursor: pointer;
}

.reviews-featurable-gate__btn:hover,
.reviews-featurable-gate__btn:focus-visible {
  color: var(--color-ink);
}


.reviews-fallback {
  text-align: center;
  padding: clamp(1.5rem, 4vw, 2.25rem);
}

.reviews-fallback__stars {
  margin: 0 0 0.75rem;
  font-size: 1.35rem;
  letter-spacing: 0.15em;
  color: var(--color-gold);
}

.reviews-fallback__text {
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
  color: var(--color-ink-soft);
  line-height: 1.55;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.reviews-fallback__text code {
  font-size: 0.85em;
}

/* ——— Footer ——— */
.site-footer {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--color-ink);
  color: rgba(247, 244, 239, 0.85);
  font-size: 0.95rem;
}

.site-footer strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-white);
  margin-bottom: 0.25rem;
}

.site-footer__tagline {
  display: block;
  color: rgba(247, 244, 239, 0.88);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  line-height: 1.45;
}

.site-footer__tel {
  margin: 0.25rem 0 1.1rem;
  font-size: 1.08rem;
  font-weight: 500;
}

.site-footer__tel a {
  color: var(--color-gold-light);
  text-decoration: none;
}

.site-footer__tel a:hover {
  text-decoration: underline;
}

.site-footer__credits a {
  color: var(--color-gold-light);
  text-decoration: none;
}

.site-footer__credits a:hover {
  text-decoration: underline;
}

/* ——— Reveal on scroll ——— */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay-1 {
  transition-delay: 0.1s;
}

.reveal--delay-2 {
  transition-delay: 0.2s;
}

.reveal--delay-3 {
  transition-delay: 0.3s;
}

/* ——— Band with bg image ——— */
.band-image {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem var(--layout-pad-x);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.band-image--fallback {
  background: linear-gradient(120deg, #9aa892 0%, #6d7a62 100%);
}

.band-image__overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 40, 37, 0.5);
}

.band-image__quote {
  position: relative;
  z-index: 1;
  max-width: min(48rem, calc(100vw - 2.5rem));
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--color-white);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
  margin: 0;
}

@media (max-width: 768px) {
  .band-image {
    background-attachment: scroll;
  }
}

/* ——— Footer link legali ——— */
.footer-legal {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.65rem;
  font-size: 0.88rem;
}

.site-footer .footer-legal a {
  color: rgba(247, 244, 239, 0.95);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer .footer-legal a:hover {
  color: var(--color-gold-light);
}

.footer-legal__sep {
  opacity: 0.5;
}

.footer-legal__btn {
  background: none;
  border: none;
  color: rgba(247, 244, 239, 0.95);
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
}

.footer-legal__btn:hover {
  color: var(--color-gold-light);
}

/* ——— Cookie banner (LPD / consenso) ——— */
.cookie-banner {
  position: fixed;
  z-index: 300;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem clamp(1rem, 3vw, 1.5rem);
  background: rgba(247, 244, 239, 0.97);
  border-top: 1px solid rgba(184, 160, 122, 0.45);
  box-shadow: 0 -12px 48px rgba(44, 40, 37, 0.12);
}

.cookie-banner__inner {
  max-width: 52rem;
  margin: 0 auto;
}

.cookie-banner__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 0.65rem;
  color: var(--color-ink);
}

.cookie-banner__text {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--color-ink-soft);
  line-height: 1.55;
}

.cookie-banner__text a {
  font-weight: 500;
}

.cookie-banner__custom {
  margin-bottom: 1rem;
  padding: 1rem;
  background: var(--color-white);
  border: 1px solid rgba(184, 160, 122, 0.35);
  border-radius: 4px;
}

.cookie-banner__fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

.cookie-banner__legend {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-ink-soft);
  margin-bottom: 0.65rem;
}

.cookie-banner__check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
}

.cookie-banner__check:last-child {
  margin-bottom: 0;
}

.cookie-banner__check input {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--color-accent-dark);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.cookie-banner .btn--ghost {
  border: 2px solid rgba(44, 40, 37, 0.25);
  color: var(--color-ink);
}

.cookie-banner .btn--ghost:hover {
  background: rgba(44, 40, 37, 0.06);
}

.cookie-banner .btn--primary {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
  color: var(--color-white);
}

/* ——— Pagine legali ——— */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 400;
  padding: 0.5rem 1rem;
  background: var(--color-ink);
  color: var(--color-white);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.legal-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.legal-body .legal-page {
  flex: 1;
}

.legal-page {
  max-width: 44rem;
  margin: 0 auto;
  padding: calc(var(--header-h) + 2.5rem) clamp(1.25rem, 4vw, 2rem) 4rem;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  font-weight: 600;
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.legal-page .legal-meta {
  font-size: 0.88rem;
  color: var(--color-ink-soft);
  margin: 0 0 2rem;
}

.legal-prose h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 2rem 0 0.75rem;
}

.legal-prose h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
}

.legal-prose p,
.legal-prose li {
  margin: 0 0 0.85rem;
  color: var(--color-ink-soft);
}

.legal-prose ul {
  padding-left: 1.25rem;
  margin: 0 0 1rem;
}

.legal-prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin: 1rem 0 1.5rem;
}

.legal-prose th,
.legal-prose td {
  border: 1px solid rgba(44, 40, 37, 0.15);
  padding: 0.6rem 0.75rem;
  text-align: left;
  vertical-align: top;
}

.legal-prose th {
  background: var(--color-bg-deep);
  font-weight: 600;
  color: var(--color-ink);
}

.legal-note {
  font-size: 0.88rem;
  font-style: italic;
  color: var(--color-ink-soft);
  padding: 1rem;
  background: var(--color-bg-deep);
  border-radius: 4px;
  border-left: 3px solid var(--color-gold);
  margin-top: 2rem;
}
