/*
Theme Name: GeneratePress Child — Casati14
Theme URI: https://casati14.it
Description: Child theme di GeneratePress per il sito Casati14. Contiene i design token del brand (palette, tipografia, spaziature) + componenti BEM derivati dal prototipo HTML approvato in Figma.
Author: Casati14 / Simone Carozzi
Version: 1.0.0
Template: generatepress
Text Domain: generatepress-child
*/

/* =========================================================
   IMPORTANTE — questo CSS contiene TUTTI gli stili del prototipo Casati14.
   Il body include il blocco :root con i design tokens (verde oliva, marrone caffè, 
   crema, ecc.) + i componenti BEM (.site-header, .hero, .pillars, .price-list, 
   .team-card, .gallery-mosaic, ecc.) presi 1:1 da casati14_html/assets/css/style.css.
   ========================================================= */

/* =========================================================
   CASATI14 — Stylesheet v2
   - Container 1440px
   - Oswald (titoli), Inter (body), Sacramento (script)
   - Verde oliva dominante per CTA
   - Hero 100vh + overlay
   - Animazioni AOS-style
   - Header doppio logo
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette - verde oliva DOMINANTE su marrone */
  --c-olive:         #6B8E5A; /* verde oliva — CTA primarie, accenti */
  --c-olive-dark:    #4F6E3F; /* hover oliva */
  --c-olive-light:   #8FB47C; /* highlight oliva */
  --c-coffee:        #56311D; /* marrone caffè - testi, secondario */
  --c-coffee-soft:   #815B46;
  --c-sage:          #7DAB83; /* verde salvia frame decorativo */
  --c-cream:         #FAF6EE; /* crema sfondo */
  --c-cream-deep:    #E8E4D8; /* crema più calda — dal logo tondo */
  --c-cream-mint:    #E5EFE2; /* crema verdina */
  --c-gold:          #CA9F67; /* oro/copper — bordo logo, accenti */
  --c-gold-soft:     #CBAE71;

  /* Neutri */
  --c-ink:           #2A1A10;
  --c-ink-soft:      #5C4A3E;
  --c-line:          #E1DCCF;
  --c-bg:            #FFFFFF;

  /* Tipografia */
  --f-display: "Oswald", "Arial Narrow", Impact, sans-serif;
  --f-script:  "Sacramento", "Allura", cursive;
  --f-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Sizing */
  --container: 1440px;
  --container-narrow: 980px;
  --container-text:   720px;
  --radius: 6px;
  --radius-lg: 14px;

  /* Header heights */
  --header-h-top:    220px;  /* in apertura, logo tondo 180 + padding */
  --header-h-scroll:  70px;  /* dopo lo scroll, logo compact 56 + padding */

  /* Transizioni */
  --t-fast: 0.18s ease;
  --t-med:  0.32s ease;
  --t-slow: 0.6s cubic-bezier(.16,.84,.44,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 17.5px;          /* base aumentata da 16 → 17.5 */
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { padding: 0; margin: 0; list-style: none; }

h1, h2, h3, h4, h5 {
  margin: 0 0 0.5em;
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.05;
  color: var(--c-coffee);
  letter-spacing: -0.005em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.8rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2.2rem, 4.2vw, 3.4rem); }
h3 { font-size: clamp(1.45rem, 2.4vw, 1.85rem); text-transform: none; letter-spacing: 0; }
h4 { font-size: 1.25rem; text-transform: none; letter-spacing: 0; }
p  { margin: 0 0 1em; }
hr { border: 0; height: 1px; background: var(--c-line); margin: 4rem 0; }

/* ---------- Layout helpers ---------- */
.container         { max-width: var(--container); margin: 0 auto; padding: 0 2rem; }
.container--narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 2rem; }
.container--text   { max-width: var(--container-text); margin: 0 auto; padding: 0 2rem; }
.section           { padding: 6rem 0; }
.section--tight    { padding: 3.5rem 0; }
.section--cream    {
  background-color: var(--c-cream);
  background-image: url('assets/img/beans-pattern.png');
  background-repeat: repeat;
  background-size: 410px;
}
.section--mint     {
  background-color: var(--c-cream-mint);
  background-image: url('assets/img/beans-pattern.png');
  background-repeat: repeat;
  background-size: 410px;
}
.section--coffee   { background: var(--c-coffee); color: var(--c-cream); }
.section--coffee h1, .section--coffee h2, .section--coffee h3 { color: var(--c-cream); }
.text-center       { text-align: center; }

.kicker {
  font-family: var(--f-display);
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 4.2px;
  text-transform: uppercase;
  color: var(--c-gold); /* GOLD come da design Figma — era olive */
  margin-bottom: 0.8rem;
  font-weight: 600;
}
.script {
  font-family: var(--f-script);
  color: var(--c-gold);
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 0.6rem;
}
.lead {
  font-size: 20px;
  line-height: 32px;
  color: var(--c-ink-soft);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 1rem 1.9rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--f-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  transition: all var(--t-fast);
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn--primary {
  background: var(--c-olive);
  color: white;
  box-shadow: 0 2px 0 rgba(79,110,63,0.35);
}
.btn--primary:hover {
  background: var(--c-olive-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(79,110,63,0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--c-olive);
  border-color: var(--c-olive);
}
.btn--ghost:hover { background: var(--c-olive); color: white; }
.btn--ghost-light {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.7);
}
.btn--ghost-light:hover { background: white; color: var(--c-coffee); border-color: white; }
.btn--coffee {
  background: var(--c-coffee);
  color: var(--c-cream);
}
.btn--coffee:hover { background: var(--c-coffee-soft); transform: translateY(-2px); }
.btn--gold {
  background: var(--c-gold);
  color: white;
}
.btn--gold:hover { background: var(--c-coffee); }
.btn--sm { padding: 0.65rem 1.2rem; font-size: 0.85rem; }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-row--center { justify-content: center; }

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--t-med), box-shadow var(--t-med), padding var(--t-med);
  padding: 2rem 0;
  background: transparent;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0 2rem;
  max-width: var(--container);
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
  transition: all var(--t-med);
}
.site-header__cta { padding: 0; margin: 0; }
.site-logo {
  display: block;
  position: relative;
  z-index: 100;           /* sopra il drawer del menu mobile (z-index 95 dentro l'header) */
  height: 180px;          /* default: dimensione del logo tondo */
  width: 180px;           /* logo round è 1:1 */
  flex-shrink: 0;
  transition: height var(--t-med), width var(--t-med);
}
.site-logo__round,
.site-logo__compact {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity var(--t-med), transform var(--t-med);
}
.site-logo__round {
  height: 100%;
  width: auto;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.18));
}
.site-logo__compact {
  height: 40px;
  width: auto;
  opacity: 0;
  transform: translateY(-50%) scale(0.85);
}

/* When scrolled */
.site-header.is-scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  padding: 0.5rem 0;
}
.site-header.is-scrolled .site-logo {
  height: 40px;
  width: 124px;            /* ratio ~3:1 a 40px */
}
.site-header.is-scrolled .site-logo__round {
  opacity: 0;
  transform: translateY(-50%) scale(0.6);
}
.site-header.is-scrolled .site-logo__compact {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

/* Nav */
.site-nav {
  display: flex;
  gap: 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--f-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.site-nav a {
  position: relative;
  color: white;
  padding: 0.5rem 0;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  transition: color var(--t-fast);
}
.site-header.is-scrolled .site-nav a {
  color: var(--c-coffee);
  text-shadow: none;
}
.site-nav a:hover, .site-nav a.is-active { color: var(--c-olive-light); }
.site-header.is-scrolled .site-nav a:hover, .site-header.is-scrolled .site-nav a.is-active { color: var(--c-olive); }
.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--c-olive-light);
}
.site-header.is-scrolled .site-nav a.is-active::after { background: var(--c-olive); }

.site-header__cta { display: flex; gap: 0.6rem; align-items: center; }
.site-header__cta .btn--ghost-light { display: inline-flex; }
.site-header.is-scrolled .site-header__cta .btn--ghost-light { display: none; }
.site-header__cta .btn--ghost { display: none; }
/* In sticky togliamo TUTTI i bottoni CTA (incluso il "Contattaci") */
.site-header.is-scrolled .site-header__cta .btn { display: none; }

/* Mobile menu */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  padding: 0; margin: 0;
  flex-shrink: 0;
  align-items: center; justify-content: center;
  border-radius: var(--radius);
  appearance: none;
  -webkit-appearance: none;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 24px; height: 2px;
  background: white;
  transition: all var(--t-fast);
}
/* Burger in sticky → riquadro olive con angoli smussati, linee bianche */
.site-header.is-scrolled .nav-toggle {
  background: var(--c-olive);
  border-radius: var(--radius);
}
.site-header.is-scrolled .nav-toggle span,
.site-header.is-scrolled .nav-toggle span::before,
.site-header.is-scrolled .nav-toggle span::after { background: #fff; }
.nav-toggle span { position: relative; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after  { top: 7px; }

/* Drawer aperto → burger in riquadro olive con X bianca (visibile su qualsiasi sfondo, anche su drawer cream a top di pagina) */
.nav-toggle[aria-expanded="true"] {
  background: var(--c-olive);
  border-radius: var(--radius);
}
.nav-toggle[aria-expanded="true"] span { background: transparent !important; }
.nav-toggle[aria-expanded="true"] span::before,
.nav-toggle[aria-expanded="true"] span::after { background: #fff !important; }
.nav-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* ---------- HERO 100vh ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: white;
  text-align: center;
  padding: var(--header-h-top) 1.5rem 4rem;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: scale(1.06);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }

/* Slideshow Swiper fullscreen dentro hero */
.hero__slider {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0;
  width: 100% !important;
  height: 100vh !important;
  overflow: hidden;
}
.hero__slider .swiper-wrapper {
  width: 100% !important;
  height: 100vh !important;
}
.hero__slider .swiper-slide {
  width: 100% !important;
  height: 100vh !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}
.hero__slider .swiper-slide-active {
  animation: heroZoom 8s ease-out forwards;
}
/* Frecce navigation sopra overlay (z-index 3) */
.hero__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 56px; height: 56px;
  padding: 0;
  line-height: 1;
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.45);
  color: white;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast), border-color var(--t-fast);
}
@media (hover: hover) {
  .hero__nav:hover {
    background: var(--c-olive);
    border-color: var(--c-olive);
    transform: translateY(-50%) scale(1.06);
  }
}
/* Stato active/focus esplicito: niente residui grigi dopo il click */
.hero__nav:active,
.hero__nav:focus:not(:focus-visible) {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.45);
  box-shadow: none;
}
/* Focus solo per navigazione da tastiera (a11y) — niente halo grigio al click del mouse */
.hero__nav:focus { outline: none; }
.hero__nav:focus-visible {
  outline: 2px solid rgba(255,255,255,0.85);
  outline-offset: 3px;
}
.hero__nav svg { width: 22px; height: 22px; display: block; }
.hero__nav--prev { left: 2rem; }
.hero__nav--next { right: 2rem; }
.hero__nav.swiper-button-disabled { opacity: 0.35; pointer-events: none; }

/* Pagination a pallini per la hero slideshow (sopra slide scure, sopra lo scroll indicator) */
.hero__pagination {
  position: absolute !important;
  left: 0; right: 0;
  bottom: 6rem !important;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 4px;
  pointer-events: auto;
  width: auto !important;
}
.hero__pagination .swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  background: rgba(255,255,255,0.55) !important;
  border-radius: 4px !important;
  opacity: 1 !important;
  margin: 0 4px !important;
  transition: width var(--t-fast), background var(--t-fast);
  cursor: pointer;
}
.hero__pagination .swiper-pagination-bullet-active {
  width: 24px !important;
  background: var(--c-gold-soft) !important;
}
/* Desktop: solo frecce, niente dots; mobile (≤700) inverte (vedi media query in fondo) */
@media (min-width: 701px) {
  .hero__pagination { display: none !important; }
}
/* Fallback glyph (visibile solo se l'SVG non viene renderizzato) */
.hero__nav-fallback {
  display: none;
  font-size: 28px;
  line-height: 1;
  color: #fff;
  font-weight: 300;
}
.hero__nav:not(:has(svg)) .hero__nav-fallback { display: block; }
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(42,26,16,0.55) 0%,
    rgba(42,26,16,0.35) 50%,
    rgba(42,26,16,0.7) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  box-sizing: border-box;
}
.hero__script {
  font-family: var(--f-script);
  color: var(--c-gold-soft);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1;
  margin-bottom: 0.6rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.hero__title {
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2.8rem, 6.5vw, 5.4rem);
  line-height: 1;
  letter-spacing: -0.005em;
  margin: 0 0 1.4rem;
  color: white;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.hero__subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  max-width: 640px;
  margin: 0 auto 2.4rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.6;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.hero__btns {
  display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 28px; height: 46px;
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 14px;
}
.hero__scroll::after {
  content: "";
  width: 4px; height: 8px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  position: absolute;
  left: 50%; top: 8px;
  transform: translateX(-50%);
  animation: scrollDot 1.6s ease-in-out infinite;
}
@keyframes scrollDot {
  0%, 100% { transform: translate(-50%, 0); opacity: 1; }
  50%      { transform: translate(-50%, 12px); opacity: 0.3; }
}

/* Hero compatto per sottopagine */
.hero--compact {
  min-height: 56vh;
  padding-top: var(--header-h-top);
  padding-bottom: 4rem;
}
.hero--compact .hero__title { font-size: clamp(2.4rem, 5vw, 4rem); }

/* ---------- Hero "simple" per pagine statiche (privacy, terms, 404) ---------- */
.hero-simple {
  background: var(--c-coffee);
  color: var(--c-cream);
  padding: calc(var(--header-h-top) + 1rem) 0 3.5rem;
  text-align: center;
}
.hero-simple__kicker {
  font-family: var(--f-display);
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold-soft);
  margin: 0 0 0.8rem;
}
.hero-simple__title {
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.005em;
  margin: 0;
  color: #fff;
}

/* Contenuto pagina statica (the_content): tipografia leggibile, container--text già limita a 720px */
.page-simple-content {
  padding: 4rem 0 5rem;
  background: #fff;
  color: var(--c-ink);
}
.page-simple-content > .container--text { max-width: 1400px; }
.page-simple-content > .container--text > * { max-width: 100%; }
/* Modifier: solo dove serve testo centrato (es. 404 con messaggio breve + CTA) */
.page-simple-content--centered { text-align: center; }
.page-simple-content--centered ul,
.page-simple-content--centered ol { display: inline-block; text-align: left; }
.page-simple-content h2 {
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  margin: 2.4rem 0 1rem;
  color: var(--c-coffee);
  text-transform: none;
  letter-spacing: 0;
}
.page-simple-content h3 {
  font-size: 1.25rem;
  margin: 1.8rem 0 0.8rem;
  color: var(--c-coffee);
}
.page-simple-content p,
.page-simple-content li {
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0 0 1rem;
}
.page-simple-content ul,
.page-simple-content ol { padding-left: 1.4rem; margin: 0 0 1.4rem; }
.page-simple-content li { margin-bottom: 0.4rem; }
.page-simple-content a:not(.btn) { color: var(--c-olive); text-decoration: underline; }
.page-simple-content a:not(.btn):hover { color: var(--c-olive-dark); }
.page-simple-content strong { color: var(--c-coffee); }
.page-simple-content hr { border: 0; border-top: 1px solid var(--c-line); margin: 2.4rem 0; }
.page-simple-content blockquote {
  border-left: 3px solid var(--c-olive);
  margin: 1.6rem 0;
  padding: 0.4rem 1.2rem;
  color: var(--c-coffee-soft);
  font-style: italic;
}
.page-simple-content__btns { display: flex; gap: 0.9rem; flex-wrap: wrap; justify-content: center; margin-top: 2rem; }

/* ---------- Decorative frame (richiama PDF) ---------- */
.frame {
  position: relative;
  background: var(--c-cream-mint);
  padding: 4rem 2rem;
  border-radius: var(--radius-lg);
}
.frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 2px solid var(--c-sage);
  border-radius: calc(var(--radius-lg) - 6px);
  pointer-events: none;
}

/* ---------- Pillars (sezione "QUELLO CHE RENDE SPECIALE CASATI14") ---------- */
/* Solo sulla home (id="esperienza") — bg con tazza decorativa cup.svg */
#esperienza {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  background-image: url('assets/img/cup.svg');
  background-repeat: no-repeat;
  background-position: right -120px bottom -80px;
  background-size: clamp(420px, 50vw, 812px);
}
#esperienza > .container { position: relative; z-index: 1; }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 472px));
  justify-content: center;
  gap: 32px;
  max-width: 1480px;
  margin: 0 auto;
}
/* Card glassmorphism (specs Figma: bg rgba 39%, blur 10, outline cream-deep) */
.pillar {
  text-align: center;
  padding: 40px 32px;
  background: rgba(255, 255, 255, 0.39);
  outline: 1px solid var(--c-cream-deep);
  outline-offset: -1px;
  border-radius: var(--radius-lg);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.pillar:hover { transform: translateY(-6px); box-shadow: 0 14px 32px rgba(86,49,29,0.08); }
/* Icona: container 120×120, no bg (SVG illust ha già rect cream-deep integrato) */
.pillar__icon {
  width: 120px;
  height: 120px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pillar__icon img.icon--illust { width: 120px; height: 120px; display: block; }
/* Fallback line-art SVG inline (se non c'è file in assets/img/icons/{name}.svg) */
.pillar__icon svg {
  width: 80px; height: 80px;
  stroke-width: 1.5;
  color: var(--c-coffee-soft);
}
/* H3 e descrizione card — specs Figma esatte */
.pillar h3 {
  font-size: 30px;
  line-height: 36px;
  margin: 0;
  text-transform: none;
  letter-spacing: 0;
  color: var(--c-coffee);
}
.pillar p {
  font-size: 17px;
  line-height: 28px;
  color: var(--c-ink-soft);
  margin: 0;
  max-width: none;
}

/* ---------- Esperienza split ---------- */
/* Sezione experience generica: relative + overflow per decorativi pseudo */
.experience-section { position: relative; overflow: hidden; }
.experience-section > .container { position: relative; z-index: 1; }
/* Variante "tazzina" — bg decorativo cream allineato bottom-left, altezza 100% sezione */
.experience-section--tazzina {
  background-image: url('assets/img/tazzina.svg');
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: auto 100%;
}

.experience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 9.4rem); /* fino a ~150px su desktop come da Figma 4:60 */
  align-items: center;
}
/* Inverte l'ordine visivo (foto a destra) mantenendo l'ordine sorgente */
.experience--reverse { direction: rtl; }
.experience--reverse > * { direction: ltr; }
.experience__media {
  aspect-ratio: 4 / 5; /* 600/760 ≈ 4:5 Figma */
  background-color: var(--c-sage); /* fallback sage #7DAB83 (Figma) — era cream-mint */
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.experience__media::after {
  /* Cornice oro interna (full opacity, inset 15px, raggio 10px) — confermato da Figma node 4:60 */
  content: "";
  position: absolute;
  inset: 15px;
  border: 2px solid var(--c-gold);
  border-radius: 10px;
  pointer-events: none;
}
/* Nota: .kicker globale è già gold (default), no override necessario qui */
/* Specs Figma: flex column con gap 30px tra TUTTI i direct children
   (kicker, h2, intro, feature rows, btn-row) — uniforme e clean.
   Su sezioni senza lista feature (es. chi-siamo) il gap si stringe a 18px. */
.experience__text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}
.experience__text:not(:has(ul)) { gap: 18px; }
.experience__text:not(:has(ul)) .btn-row { padding-top: 8px; }
.experience__text > * { margin: 0; } /* azzera margin propri */
.experience__text h2 { margin: 0; }
.experience__text ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 30px; /* matcha 30px Figma tra le 3 feature */
  width: 100%;
}
.experience__text li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 25px; /* icon ↔ text Figma */
  align-items: start;
}
/* Feature senza icona: collassa la prima colonna per non spostare il testo */
.experience__text li:not(:has(svg)):not(:has(img)) { grid-template-columns: 1fr; gap: 0; }
/* Line-art SVG icone: rimangono piccole stilizzate olive */
.experience__text li svg {
  width: 26px; height: 26px;
  color: var(--c-olive);
  margin-top: 4px;
  justify-self: center;
}
/* Illustrazioni custom (illust-*): 50×50 a colori originali, no margin-top */
.experience__text li img.icon--illust {
  width: 50px; height: 50px;
  display: block;
  margin-top: 0;
}
.experience__text li strong {
  /* Specs Figma: Inter 600, 17px, line-height 28, coffee — NO uppercase, NO Oswald */
  color: var(--c-coffee);
  display: block;
  font-family: var(--f-body);
  font-size: 17px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 2px;
  text-transform: none;
  letter-spacing: 0;
}
.experience__text li span {
  /* Specs Figma: Inter 400, 15px, line-height 24, ink-soft */
  color: var(--c-ink-soft);
  font-size: 15px;
  line-height: 24px;
}

/* ---------- Testimonials (Swiper) — specs Figma ---------- */
/* Sezione con foto chicchi caffè come bg (assets/img/testimonials-bg.jpg) — niente velo */
.testimonials-section {
  background-color: #fff;
  background-image: url('assets/img/testimonials-bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.testimonials-wrap { position: relative; padding: 1rem 0 0; }
/* Paginazione testimonials FUORI dalla card, sotto e centrata (Figma) */
.swiper-testimonials .swiper-pagination {
  position: static !important;
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 0;
}
.testimonials-wrap::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -20px;
  width: clamp(160px, 22vw, 300px);
  height: clamp(140px, 18vw, 240px);
  background-image: url('assets/img/beans-cluster.png');
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  opacity: 0.85;
  z-index: 0;
}
.testimonials-wrap .swiper { position: relative; z-index: 1; }
.swiper-testimonials .swiper-slide { height: auto; }
/* Card glassmorphism cream-mint (specs Figma: rgba 88%, blur 10, no border, no shadow) */
.testimonial {
  background: rgba(229, 239, 226, 0.88);
  padding: 32px;
  border-radius: 14px;
  text-align: left;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
/* Icona virgolette gold sopra alla quote — sostituisce le tipografiche ::before/::after */
.testimonial__icon {
  width: 21px;
  height: 19px;
  flex-shrink: 0;
  color: var(--c-gold);
}
.testimonial__icon svg { width: 100%; height: 100%; display: block; }
.testimonial__quote {
  font-family: var(--f-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 28px;
  color: var(--c-coffee);
  margin: 0;
  letter-spacing: 0;
  text-transform: none;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto; /* spinge author in fondo card */
}
.testimonial__avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--c-olive);
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--f-display);
  flex-shrink: 0;
}
.testimonial__avatar--img { background-color: var(--c-cream-deep); color: transparent; }
.testimonial__name {
  font-family: var(--f-body);
  font-size: 17px;
  font-weight: 600;
  line-height: 28px;
  color: var(--c-coffee);
}
/* Role: Inter 500 13px / 18 lh OLIVE (Figma) — era ink-soft 0.9rem */
.testimonial__role {
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  color: var(--c-olive);
}

/* Pagination bullets — specs Figma: pillola olive 24×8 attiva, quadratino cream-deep 8×8 inattivi */
.swiper-pagination-bullet {
  width: 8px !important;
  height: 8px !important;
  background: var(--c-cream-deep) !important;
  opacity: 1 !important;
  border-radius: 4px !important;
  margin: 0 4px !important;
  transition: width var(--t-fast), background var(--t-fast);
}
.swiper-pagination-bullet-active {
  width: 24px !important;
  background: var(--c-olive) !important;
}

/* ---------- CTA Visit ---------- */
.cta-visit {
  text-align: center;
  padding: 120px 0; /* Figma chi-siamo: 120px verticale */
  position: relative;
  overflow: hidden;
}
.cta-visit > .container--narrow {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px; /* Figma illustrated — variante photo override sotto */
}
.cta-visit p {
  margin: 0;
  font-size: 17px;
  line-height: 28px;
  color: var(--c-ink-soft);
}
.cta-visit .btn-row { padding-top: 12px; }
/* Variante illustrated: bg cream FLAT (no pattern chicchi) + kicker olive (override default gold) */
.cta-visit--illustrated {
  background-color: var(--c-cream);
  background-image: none;
}
.cta-visit--illustrated .kicker { color: var(--c-olive); }

/* Variante "illustrated": tazza-foto a sx tagliata 1/3 fuori + chicchi a dx h100% */
.cta-visit--illustrated::before,
.cta-visit--illustrated::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 1;
}
/* Tazza vista alto, height 100% sezione, 1/3 nascosta fuori canvas a sinistra */
.cta-visit--illustrated::before {
  left: 0;
  width: auto;
  aspect-ratio: 1 / 1; /* tazza-foto quadrata */
  background-image: url('assets/img/cup-top.png');
  background-size: contain;
  background-position: left center;
  transform: translateX(-33.33%);
}
/* Chicchi sparsi, height 100% sezione, attaccato a right 0 */
.cta-visit--illustrated::after {
  right: 0;
  width: auto;
  aspect-ratio: 1 / 1; /* cluster chicchi quadrato */
  background-image: url('assets/img/beans-cluster.png');
  background-size: contain;
  background-position: right center;
}

/* Variante "photo": foto interno full-bleed + overlay 35% uniforme + testo bianco — specs Figma */
.cta-visit--photo {
  background-size: cover;
  background-position: center;
  background-color: var(--c-coffee); /* fallback */
  color: white;
  padding: 200px 0; /* Figma */
}
.cta-visit--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35); /* overlay 35% uniforme — Figma */
  z-index: 1;
}
.cta-visit--photo .kicker { color: var(--c-gold-soft); } /* #CBAE71 — design distintivo per photo variant */
.cta-visit--photo h2 { color: var(--c-cream); text-shadow: 0 2px 24px rgba(0,0,0,0.4); }
.cta-visit--photo p  { color: #fff; text-shadow: 0 1px 8px rgba(0,0,0,0.4); }
/* Button primary nella variante photo: bianco con testo coffee (NON olive come default) */
.cta-visit--photo .btn--primary {
  background: #fff;
  color: var(--c-coffee);
  box-shadow: 0 2px 0 rgba(107, 142, 90, 0.35); /* shadow olive */
}
.cta-visit--photo .btn--primary:hover {
  background: var(--c-cream);
  color: var(--c-coffee);
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}
/* Ghost nella variante photo: outline bianco pieno (no opacity 70%) */
.cta-visit--photo .btn--ghost {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.cta-visit--photo .btn--ghost:hover { background: #fff; color: var(--c-coffee); border-color: #fff; }

/* ---------- Showcase image block ---------- */
.showcase {
  aspect-ratio: 3 / 1;     /* foto 2400×800 = 3:1, rispetta proporzioni su desktop */
  background-size: cover;
  background-position: center;
  position: relative;
}
.showcase::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.4) 100%);
}

/* ---------- MENU PAGE ---------- */
.site-main.casati14-menu { overflow: hidden; }
/* Intro section sopra le categorie (Figma: padding 96/48 vert, gap 12, bg white) */
.menu-intro {
  background: #fff;
  padding: 96px 0 48px;
}
.menu-intro > .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.menu-intro h2 { margin: 0; }
.menu-intro .kicker { margin: 0; }
.menu-intro .lead { max-width: 720px; margin: 0; }

/* Ogni categoria è una row full-width con bg alternato (Figma) */
.menu-category-row {
  padding: 72px 0;
}
.menu-category-row--white { background: #fff; }
.menu-category-row--cream { background: var(--c-cream); }

/* Card menu-category dentro la row: grid 1fr 1fr gap 64 */
.menu-category {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
/* Foto a destra: controllato dal flag ACF "reverse" */
.menu-category--reverse { direction: rtl; }
.menu-category--reverse > * { direction: ltr; }

/* Foto: height fissa 400px, padding 15 con bordo gold interno + sage bg fallback (Figma) */
.menu-category__media {
  height: 400px;
  background-color: var(--c-sage);
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  padding: 15px;
  position: relative;
}
.menu-category__media::after {
  content: "";
  position: absolute;
  inset: 15px;
  border: 2px solid var(--c-gold);
  border-radius: 10px;
  pointer-events: none;
}

/* Testo categoria: flex column gap 16 con kicker gold + h3 grande 54 (Figma) */
.menu-category__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.menu-category__text > * { margin: 0; }
.menu-category .kicker { color: var(--c-gold); }
.menu-category h3 {
  font-family: var(--f-display);
  font-size: 27px;
  font-weight: 700;
  line-height: 29px;
  color: var(--c-coffee);
  text-transform: uppercase;
  letter-spacing: -0.13px;
}
.menu-category p {
  color: var(--c-ink-soft);
  font-size: 17px;
  line-height: 28px;
}
.menu-category .btn-row { padding-top: 8px; }

/* Price tabs */
.price-tabs { margin-top: 4rem; }
.tabs {
  display: inline-flex;
  background: white;
  border: 2px solid var(--c-olive);
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
}
.tab-btn {
  padding: 0.65rem 1.6rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-olive);
  font-family: var(--f-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all var(--t-fast);
}
.tab-btn.is-active { background: var(--c-olive); color: white; }

.price-list {
  max-width: 760px;
  margin: 2.5rem auto 0;
  background: white;
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.8rem;
  box-shadow: 0 8px 28px rgba(86,49,29,0.06);
}
.price-list__group { margin-bottom: 2.2rem; }
.price-list__group:last-child { margin-bottom: 0; }
.price-list__group h4 {
  font-family: var(--f-display);
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-olive);
  font-weight: 700;
  border-bottom: 1px solid var(--c-line);
  padding-bottom: 0.8rem;
  margin-bottom: 1.1rem;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.55rem 0;
  font-size: 1rem;
  gap: 1rem;
}
.price-row__name { color: var(--c-ink); }
.price-row__name span { color: var(--c-ink-soft); font-size: 0.85rem; }
.price-row__dots { flex: 1; border-bottom: 1px dotted var(--c-line); height: 0; margin-bottom: 5px; }
.price-row__price {
  font-weight: 700;
  color: var(--c-coffee);
  font-variant-numeric: tabular-nums;
  font-family: var(--f-display);
  white-space: nowrap;
  flex-shrink: 0;
}
.tab-panel { display: none; }
.tab-panel.is-active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

.menu-notice {
  text-align: center;
  background: var(--c-cream-mint);
  padding: 2.2rem;
  border-radius: var(--radius-lg);
  border: 2px dashed var(--c-olive);
  margin-top: 3rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.menu-notice strong {
  color: var(--c-coffee);
  display: block;
  font-family: var(--f-display);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.menu-notice p { font-size: 0.95rem; margin: 0; color: var(--c-ink-soft); }

/* ---------- TEAM section ---------- */
/* Bg pattern foglie/herringbone verdino su base cream-mint (Figma chi-siamo) */
.team-section,
.price-section {
  background-color: var(--c-cream-mint);
  background-image: url('assets/img/bg-foglie-pattern.png');
  background-repeat: repeat;
  background-size: 500px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.team-card {
  text-align: center;
  background: white;
  padding: 2.2rem 1.8rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-line);
  transition: all var(--t-med);
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 14px 32px rgba(86,49,29,0.1); }
.team-card__photo {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--c-olive);
  background-size: cover;
  background-position: center;
  margin: 0 auto 1.2rem;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-family: var(--f-display);
  font-size: 2.4rem;
  font-weight: 600;
  border: 4px solid white;
  /* Doppio anello: shadow morbida + anello gold esterno (vedi design Figma) */
  box-shadow: 0 0 0 3px var(--c-gold-soft), 0 6px 18px rgba(86,49,29,0.12);
}
/* Quando c'è una foto vera: sfondo neutro sotto l'immagine (anziché olive che sbuca con PNG trasparenti) */
.team-card__photo--img { background-color: var(--c-cream-deep); color: transparent; }
.team-card h4 { font-size: 1.35rem; margin-bottom: 0.3rem; }
.team-card__role {
  font-family: var(--f-display);
  font-size: 0.85rem;
  color: var(--c-olive);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 1rem;
  font-weight: 600;
}
.team-card p { font-size: 0.95rem; color: var(--c-ink-soft); margin-bottom: 1.2rem; }
.social-icons { display: flex; gap: 0.7rem; justify-content: center; }
.social-icons a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--c-cream-mint);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-coffee);
  transition: all var(--t-fast);
}
.social-icons a:hover { background: var(--c-olive); color: white; }
.social-icons svg { width: 16px; height: 16px; }

/* ---------- GALLERY mosaic ---------- */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 1.2rem;
}
.gallery-mosaic__item {
  background-color: var(--c-cream-mint);
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--t-med);
}
.gallery-mosaic__item::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(86,49,29,0);
  transition: background var(--t-fast);
}
.gallery-mosaic__item:hover { transform: scale(1.02); }
.gallery-mosaic__item:hover::after { background: rgba(86,49,29,0.12); }
.gallery-mosaic__item:nth-child(1) { grid-column: span 2; grid-row: span 2; }

/* ---------- Gallery Swiper slider full ---------- */
.gallery-section { padding: 48px 0 120px; }
.gallery-section__header { margin-bottom: 48px; }
.gallery-section .kicker { margin-bottom: 12px; }
.gallery-section h2 { margin-bottom: 0; }

.gallery-slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
}
.gallery-slider .swiper-slide {
  height: 800px;
  background-size: cover;
  background-position: center;
}
/* Frecce nav — stesse della hero */
.gallery-slider .swiper-button-prev,
.gallery-slider .swiper-button-next {
  width: 56px; height: 56px;
  margin-top: -28px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: 50%;
  color: white;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast), border-color var(--t-fast);
}
.gallery-slider .swiper-button-prev:hover,
.gallery-slider .swiper-button-next:hover {
  background: var(--c-olive);
  border-color: var(--c-olive);
  transform: scale(1.06);
}
.gallery-slider .swiper-button-prev::after,
.gallery-slider .swiper-button-next::after { display: none; }
.gallery-slider .swiper-button-prev svg,
.gallery-slider .swiper-button-next svg { width: 22px; height: 22px; display: block; }
.gallery-slider .swiper-button-prev { left: 2rem; }
.gallery-slider .swiper-button-next { right: 2rem; }
.gallery-slider .swiper-button-disabled { opacity: 0.35; pointer-events: none; }
/* Paginazione pill */
.gallery-slider__dots {
  position: relative !important;
  top: auto !important;
  bottom: auto !important;
  left: auto !important;
  width: auto !important;
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 30px;
}
.gallery-slider__dots .swiper-pagination-bullet {
  width: 8px; height: 8px;
  background: var(--c-line);
  border-radius: 4px;
  opacity: 1;
  transition: all var(--t-fast);
  margin: 0 !important;
}
.gallery-slider__dots .swiper-pagination-bullet-active {
  width: 24px;
  background: var(--c-olive);
}

/* Cursor zoom-in sugli item lightbox */
[data-lightbox] { cursor: zoom-in; }
[data-lightbox]:focus-visible {
  outline: 3px solid var(--c-olive);
  outline-offset: 4px;
}

/* ---------- LIGHTBOX (galleria → click → ingrandimento) ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2147483647; /* sopra qualunque stacking context (header backdrop-filter incluso) */
  background: rgba(20, 12, 8, 0.94);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.28s ease;
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }
.lightbox__inner {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.96);
  transition: transform 0.32s cubic-bezier(.16,.84,.44,1);
}
.lightbox.is-open .lightbox__inner { transform: scale(1); }
.lightbox__img {
  max-width: 100vw;
  max-height: 100vh;
  width: auto;
  height: auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
}
/* Pulsanti lightbox — stesso stile delle frecce gallery/hero */
.lightbox__close,
.lightbox__nav {
  position: absolute;
  z-index: 10; /* sopra .lightbox__inner — senza, il click finisce sull'inner */
  width: 56px; height: 56px;
  padding: 0;
  line-height: 1;
  appearance: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.45);
  color: white;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.lightbox__close { top: 2rem; right: 2rem; }
.lightbox__nav { top: 50%; transform: translateY(-50%); }
.lightbox__nav--prev { left: 2rem; }
.lightbox__nav--next { right: 2rem; }
@media (hover: hover) {
  .lightbox__close:hover {
    background: var(--c-olive);
    border-color: var(--c-olive);
    transform: scale(1.06);
  }
  .lightbox__nav:hover {
    background: var(--c-olive);
    border-color: var(--c-olive);
    transform: translateY(-50%) scale(1.06);
  }
}
.lightbox__close:focus:not(:focus-visible),
.lightbox__nav:focus:not(:focus-visible) {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.45);
}
.lightbox__close svg,
.lightbox__nav svg { width: 22px; height: 22px; display: block; }

/* ---------- CONTATTI page ---------- */

/* Intro centrata (Section · Intro da Figma) */
.contact-intro {
  padding: 96px 0 48px;
  text-align: center;
}
.contact-intro .kicker { margin-bottom: 12px; }
.contact-intro h2 { margin-bottom: 12px; }
.contact-intro .lead { max-width: var(--container-text); }

/* Due colonne: info + form (Section · Info + Form da Figma) */
.contact-section { padding: 30px 0 96px; }
.contact-page {
  display: grid;
  grid-template-columns: 487px 1fr;
  gap: 80px;
  align-items: start;
}

/* Lista info contatti (colonna sx, senza card) */
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 45px;
  padding-top: 16px;
}
.contact-info {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
}
.contact-info__icon {
  width: 56px; height: 56px;
  background: var(--c-cream-mint);
  border-radius: 28px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info__icon svg { width: 24px; height: 24px; }
.contact-info h4 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  line-height: 28px;
  color: var(--c-coffee);
  margin: 0 0 4px;
  text-transform: none;
  letter-spacing: 0;
}
.contact-info p { font-size: 15px; line-height: 24px; color: var(--c-ink-soft); margin: 0 0 4px; }
.contact-info a { font-size: 15px; font-weight: 600; line-height: 28px; color: var(--c-olive); text-decoration: none; }
.contact-info a:hover { color: var(--c-olive-dark); text-decoration: underline; }

/* Wrapper form contatti (colonna dx, card cream) */
.contact-form-wrap {
  background: var(--c-cream);
  padding: 40px;
  border-radius: var(--radius-lg);
}
.contact-form-wrap .kicker { margin-bottom: 18px; }
.contact-form-wrap h3 { font-size: 30px; line-height: 36px; margin: 0 0 18px; }

/* CF7: label */
.contact-form-wrap .wpcf7-form label,
.contact-form-wrap .wpcf7-form .wpcf7-list-item-label {
  display: block;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 13px;
  line-height: 18px;
  color: var(--c-coffee);
  margin-bottom: 6px;
}
/* CF7: campi input */
.contact-form-wrap .wpcf7-form input[type="text"],
.contact-form-wrap .wpcf7-form input[type="email"],
.contact-form-wrap .wpcf7-form input[type="tel"],
.contact-form-wrap .wpcf7-form select,
.contact-form-wrap .wpcf7-form textarea {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--c-line);
  border-radius: 8px;
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 28px;
  color: var(--c-ink);
  background: #fff;
  transition: border-color var(--t-fast);
}
.contact-form-wrap .wpcf7-form textarea {
  height: auto;
  min-height: 107px;
  padding: 12px 14px;
  resize: vertical;
}
.contact-form-wrap .wpcf7-form input:focus,
.contact-form-wrap .wpcf7-form select:focus,
.contact-form-wrap .wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--c-olive);
  box-shadow: 0 0 0 3px rgba(107,142,90,0.12);
}
/* CF7: checkbox privacy */
.contact-form-wrap .wpcf7-form .wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 24px;
  color: var(--c-ink-soft);
}
.contact-form-wrap .wpcf7-form .wpcf7-acceptance input[type="checkbox"] {
  width: 20px; height: 20px;
  border: 1.5px solid var(--c-line);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
}
/* CF7: bottone invio */
.contact-form-wrap .wpcf7-form .wpcf7-submit {
  background: var(--c-olive);
  color: #fff;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 1.28px;
  text-transform: uppercase;
  padding: 16px 28px;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  margin-top: 8px;
  transition: background var(--t-fast);
}
.contact-form-wrap .wpcf7-form .wpcf7-submit:hover { background: var(--c-olive-dark); }
/* CF7: layout 2 colonne per nome/cognome, email/telefono */
.contact-form-wrap .wpcf7-form .form-row--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-form-wrap .wpcf7-form p { margin: 0 0 18px; }

/* Mappa contatti — Leaflet + OpenStreetMap */
.contact-map {
  position: relative;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 64px;
  background: var(--c-cream-mint);
  z-index: 0; /* tiene il pane Leaflet sotto al popup ma sopra al bg */
}
.contact-map .leaflet-container { height: 100%; width: 100%; font-family: var(--f-body); }
/* Pin: drop-shadow per stacco visivo sul tile */
.contact-map__pin { background: transparent; border: 0; }
.contact-map__pin svg { display: block; filter: drop-shadow(0 3px 6px rgba(0,0,0,0.35)); }
/* Popup brandizzato */
.contact-map .leaflet-popup-content-wrapper {
  border-radius: 10px;
  background: #fff;
  color: var(--c-ink);
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.contact-map .leaflet-popup-content {
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 12px 16px;
}
.contact-map .leaflet-popup-content strong { color: var(--c-coffee); }
.contact-map__directions {
  display: inline-block;
  margin-top: 6px;
  color: var(--c-olive);
  font-weight: 600;
  text-decoration: none;
  font-family: var(--f-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
}
.contact-map__directions:hover { color: var(--c-olive-dark); text-decoration: underline; }
.contact-map .leaflet-popup-tip { background: #fff; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--c-coffee);
  color: var(--c-cream);
  padding: 5rem 0 2rem;
}
.site-footer h5 {
  font-family: var(--f-display);
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 1.2rem;
  color: var(--c-gold-soft);
}
.site-footer a { color: var(--c-cream); opacity: 0.85; }
.site-footer a:hover { opacity: 1; color: white; }
.site-footer ul li { padding: 0.35rem 0; font-size: 1rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.6fr;
  gap: 3rem;
}
.footer-brand img { height: 44px; margin-bottom: 1.2rem; filter: brightness(0) invert(1); } /* -30% da 63px */
.footer-brand p { font-size: 0.95rem; opacity: 0.85; margin-bottom: 1.4rem; max-width: 320px; }
.newsletter { display: flex; gap: 0.5rem; margin-top: 0.6rem; max-width: 290px !important; }
.newsletter input {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 190px;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: var(--c-cream);
  font: inherit;
  font-size: 0.95rem;
}
.newsletter input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter button {
  padding: 0.85rem 1.3rem;
  background: var(--c-olive);
  color: white;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--f-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.newsletter button:hover { background: var(--c-olive-dark); }
.newsletter-note { font-size: 0.8rem; opacity: 0.65; margin-top: 0.6rem; }

/* === Form newsletter CF7 nel footer === */
.footer-newsletter .wpcf7 { margin-top: 0.6rem; max-width: 360px; }
/* Il wrapper .newsletter-inline (form v2) è il flex container.
 * Reset margini sui <p> che wpautop potrebbe inserire. */
.footer-newsletter .wpcf7-form p {
  margin-bottom: 1.2rem;
  display: flex;
  gap: 10px;
}
.footer-newsletter .newsletter-inline {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  align-items: stretch;
}
.footer-newsletter .wpcf7-form-control-wrap {
  flex: 1 1 0;
  min-width: 0;
  display: block;
}
.footer-newsletter .wpcf7-spinner { display: none; }
/* Override regole globali .wpcf7-form input[type="email"] (linee ~1920) che hanno !important: nel footer voglio bg scuro su coffee */
.footer-newsletter .wpcf7-form input[type="email"] {
  width: 100% !important;
  padding: 0.85rem 1rem !important;
  border-radius: var(--radius) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  background: rgba(255,255,255,0.08) !important;
  color: var(--c-cream) !important;
  font-family: var(--f-body) !important;
  font-size: 0.95rem !important;
  line-height: 1.2;
  box-sizing: border-box;
}
.footer-newsletter .wpcf7-form input[type="email"]:focus {
  outline: none !important;
  border-color: rgba(255,255,255,0.45) !important;
  background: rgba(255,255,255,0.12) !important;
  box-shadow: none !important;
}
.footer-newsletter .wpcf7-form input[type="email"]::placeholder { color: rgba(255,255,255,0.55); }
.footer-newsletter .wpcf7-form .wpcf7-submit,
.footer-newsletter .wpcf7-form input[type="submit"] {
  flex: 0 0 auto;
  padding: 0.85rem 1.3rem !important;
  background: var(--c-olive) !important;
  color: white !important;
  border: none !important;
  border-radius: var(--radius) !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  font-family: var(--f-display) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  width: auto !important;
  cursor: pointer;
  transition: background var(--t-fast);
}
.footer-newsletter .wpcf7-form .wpcf7-submit:hover,
.footer-newsletter .wpcf7-form input[type="submit"]:hover { background: var(--c-olive-dark) !important; }
.footer-newsletter .newsletter-note {
  font-size: 0.85rem;
  opacity: 0.7;
  margin: 0.8rem 0 0;
}
.footer-newsletter .newsletter-note a { color: var(--c-cream); text-decoration: underline; opacity: 1; }
.footer-newsletter .newsletter-note a:hover { color: #fff; }

/* Acceptance privacy CF7 — stesso look della .newsletter-note ma con checkbox inline */
.footer-newsletter .newsletter-acceptance {
  margin: 0.8rem 0 0;
  font-size: 0.85rem;
  opacity: 0.7;
  line-height: 1.45;
}
.footer-newsletter .newsletter-acceptance .wpcf7-form-control-wrap { display: block; flex: none; min-width: 0; }
.footer-newsletter .wpcf7-acceptance .wpcf7-list-item { margin: 0; }
.footer-newsletter .wpcf7-acceptance label {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  cursor: pointer;
  margin: 0;
  /* override regole globali .wpcf7-form label (riga ~2031): nel footer voglio il look della newsletter-note */
  font-family: var(--f-body);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--c-cream);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.45;
}
.footer-newsletter .wpcf7-acceptance .wpcf7-list-item-label,
.footer-newsletter .wpcf7-acceptance label > span:last-child { display: inline; }
.footer-newsletter .wpcf7-acceptance input[type="checkbox"] {
  accent-color: var(--c-olive);
  margin: 0.15rem 0 0;
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
}
.footer-newsletter .wpcf7-acceptance a { color: var(--c-cream); text-decoration: underline; opacity: 1; }
.footer-newsletter .wpcf7-acceptance a:hover { color: #fff; }
.footer-newsletter .wpcf7-response-output {
  flex: 1 1 100%;
  font-size: 0.85rem;
  margin: 0.8rem 0 0;
  padding: 0.6rem 0.9rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
}
.footer-newsletter .wpcf7 form.invalid .wpcf7-response-output,
.footer-newsletter .wpcf7 form.unaccepted .wpcf7-response-output { border-color: #ff9a9a; color: #ffd2d2; background: rgba(255,80,80,0.15); }
.footer-newsletter .wpcf7 form.sent .wpcf7-response-output { border-color: #a8e6a3; color: #d9f5d6; background: rgba(80,200,80,0.15); }
.footer-newsletter .wpcf7-not-valid-tip { color: #ffd2d2; font-size: 0.8rem; margin-top: 0.25rem; }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  opacity: 1;
  transition: background var(--t-fast);
}
.footer-social a:hover { background: var(--c-olive); }
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom {
  margin-top: 3.5rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
  opacity: 0.7;
}
.footer-bottom__links { display: flex; gap: 1.5rem; }

/* =========================================================
   ANIMAZIONI SCROLL (AOS-style minimale)
   Aggiungi data-aos="fade-up" (o fade-down/left/right/zoom)
   Opzionale data-aos-delay="200"
   ========================================================= */
[data-aos] {
  opacity: 0;
  transition: opacity var(--t-slow), transform var(--t-slow);
  will-change: opacity, transform;
}
[data-aos="fade-up"]    { transform: translateY(40px); }
[data-aos="fade-down"]  { transform: translateY(-40px); }
[data-aos="fade-left"]  { transform: translateX(-40px); }
[data-aos="fade-right"] { transform: translateX(40px); }
[data-aos="zoom-in"]    { transform: scale(0.9); }
[data-aos="fade"]       { transform: none; }
[data-aos].aos-show {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-aos] { opacity: 1; transform: none; transition: none; }
  .hero__bg  { animation: none; transform: none; }
  .hero__scroll::after { animation: none; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  .pillars { gap: 2rem; }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; max-width: 480px; }
}
@media (max-width: 900px) {
  :root { --header-h-top: 160px; }
  .pillars, .testimonials, .team-grid { grid-template-columns: 1fr 1fr; }
  .experience, .menu-category { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-page { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-intro { padding: 64px 0 32px; }
  .menu-category { direction: ltr !important; }
  .menu-category > * { direction: ltr !important; }
  .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 220px; }
  .gallery-mosaic__item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-slider .swiper-slide { height: 560px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 1 / -1; max-width: none; }
  /* logo size invariato su tablet (resta 180×180) */
}
@media (max-width: 700px) {
  /* Header height var ridotta — controlla il padding-top dell'hero su mobile */
  :root { --header-h-top: 130px; }
  body { font-size: 16.5px; }

  /* HEADER mobile — logo & padding ridotti */
  .site-header { padding: 0.75rem 0; }
  .site-header__inner { padding: 0 1rem; gap: 1rem; position: relative; }
  .site-logo { height: 88px; width: 88px; }
  .site-header.is-scrolled { padding: 0.4rem 0; backdrop-filter: none; }
  .site-header.is-scrolled .site-logo { height: 36px; width: 112px; }
  .site-header.is-scrolled .site-logo__compact { height: 36px; }

  /* Burger posizionato assolutamente — bulletproof contro override flex di altri stili */
  .nav-toggle {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    margin: 0;
    z-index: 100; /* sopra il drawer (.site-nav z-index: 95) — altrimenti il drawer aperto lo copre */
  }

  /* Nav mobile (fullscreen drawer) */
  .site-nav {
    display: none;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--c-cream);
    flex-direction: column; padding: 9rem 2rem 2rem; gap: 0; /* padding-top alto: lascia spazio al logo tondo grande */
    z-index: 95;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a {
    color: var(--c-coffee) !important;
    text-shadow: none !important;
    padding: 1.1rem 0 !important;
    border-bottom: 1px solid var(--c-line);
    font-size: 1.2rem;
  }
  .site-header__cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }

  /* HERO mobile */
  .hero { padding: 140px 1.2rem 3rem; min-height: auto; }
  .hero--compact { padding: 140px 1.2rem 3rem; min-height: auto; }
  .hero__title { font-size: clamp(2rem, 8vw, 2.6rem); margin-bottom: 1rem; }
  .hero--compact .hero__title { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .hero__subtitle { font-size: 1rem; margin-bottom: 1.5rem; }
  .hero__script { font-size: clamp(1.8rem, 6vw, 2.4rem); margin-bottom: 0.4rem; }
  .hero__btns { flex-direction: column; align-items: stretch; gap: 0.7rem; }
  .hero__btns .btn { width: 100%; justify-content: center; text-align: center; }
  .hero__scroll { display: none; }
  /* Mobile: solo dots, niente frecce */
  .hero__nav { display: none; }
  .hero__pagination { bottom: 1.5rem !important; }

  /* SEZIONI grid → single column */
  .pillars, .testimonials, .team-grid, .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .section { padding: 3rem 0; }
  .container, .container--narrow { padding: 0 1.2rem; }
  h2 { font-size: clamp(1.6rem, 6vw, 2.2rem); line-height: 1.15; }

  /* BTN ROW nelle sezioni (CTA, experience, ecc.) → full width + colonna */
  .cta-visit .btn-row,
  .experience__text .btn-row,
  .menu-category .btn-row { flex-direction: column; align-items: stretch; }
  .cta-visit .btn-row .btn,
  .experience__text .btn-row .btn,
  .menu-category .btn-row .btn { width: 100%; justify-content: center; text-align: center; }

  /* SHOWCASE mobile → banner basso (no aspect-ratio per evitare 100vw/3 troppo alto) */
  .showcase { aspect-ratio: auto; height: 160px; }

  /* GALLERY MOSAIC mobile → single column con aspect ratio costante */
  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: 240px;
    gap: 12px;
  }
  .gallery-mosaic__item:nth-child(1) { grid-column: auto; grid-row: auto; }

  /* GALLERY SLIDER mobile */
  .gallery-section { padding: 48px 0 80px; }
  .gallery-slider .swiper-slide { height: 360px; }
  .gallery-slider .swiper-button-prev,
  .gallery-slider .swiper-button-next { width: 44px; height: 44px; margin-top: -22px; }
  .gallery-slider .swiper-button-prev { left: 0.8rem; }
  .gallery-slider .swiper-button-next { right: 0.8rem; }

  /* CONTATTI mobile */
  .price-list { padding: 1.6rem 1.2rem; }
  .frame { padding: 2rem 1rem; }
  .contact-form-wrap { padding: 24px; }
  .contact-form-wrap .wpcf7-form .form-row--split { grid-template-columns: 1fr; }
  .contact-section { padding: 16px 0 64px; }
  .contact-info-list { gap: 32px; }
  .contact-map { height: 320px; margin-top: 48px; }

  /* FOOTER mobile */
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* LIGHTBOX mobile */
  .lightbox__close,
  .lightbox__nav { width: 44px; height: 44px; }
  .lightbox__close { top: 0.8rem; right: 0.8rem; }
  .lightbox__nav--prev { left: 0.8rem; }
  .lightbox__nav--next { right: 0.8rem; }

  /* Su mobile nascondo le decorazioni (tazza/chicchi/C) per non affollare il layout */
  .cta-visit--illustrated::before,
  .cta-visit--illustrated::after,
  #esperienza::before,
  .testimonials-wrap::after { display: none; }
  .cta-visit--photo { padding: 5rem 0; }
}

/* =========================================================
   GP-specific overrides (child theme su GeneratePress)
   ========================================================= */

/* Disabilita il container width di GP (il nostro markup usa .container custom) */
.site .grid-container,
.site-content > .inside-article,
.inside-content,
.entry-content {
  max-width: none;
  padding: 0;
}

/* GP wrapper di pagina: niente padding, usa il nostro layout */
.site-main,
.site-content {
  padding: 0;
}

/* GP aggiunge "margin-bottom: 20px" su tutti i figli diretti di .site-main —
   crea gap indesiderati tra le nostre sezioni full-bleed. Azzero. */
.site-main > * { margin-bottom: 0; }

/* Body class casati14 - resetta margini GP */
body.casati14 {
  margin: 0;
}

/* Contact Form 7 styling — allineato al brand */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="number"],
.wpcf7-form input[type="date"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  font-family: var(--f-body) !important;
  font-size: 17px !important;
  padding: 0.9rem 1rem !important;
  border: 1px solid var(--c-line) !important;
  border-radius: var(--radius) !important;
  background: #fff !important;
  color: var(--c-ink) !important;
}
.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
  border-color: var(--c-olive) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(107, 142, 90, 0.15) !important;
}
.wpcf7-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-coffee);
  margin-bottom: 0.4rem;
  font-family: var(--f-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.wpcf7-form p { margin-bottom: 1.2rem; }
.wpcf7-form .wpcf7-submit,
.wpcf7-form input[type="submit"] {
  background: var(--c-olive) !important;
  color: #fff !important;
  font-family: var(--f-display) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.08em !important;
  font-weight: 600 !important;
  padding: 1rem 2rem !important;
  border-radius: var(--radius) !important;
  border: 0 !important;
  cursor: pointer !important;
  transition: background var(--t-fast) !important;
}
.wpcf7-form .wpcf7-submit:hover,
.wpcf7-form input[type="submit"]:hover {
  background: var(--c-olive-dark) !important;
}
.wpcf7-not-valid-tip { color: #c0392b !important; font-size: 0.85rem !important; margin-top: 0.3rem !important; }
.wpcf7-response-output {
  border-radius: var(--radius) !important;
  padding: 1rem !important;
  font-size: 0.95rem !important;
  margin-top: 1.5rem !important;
}
