/* ==========================================================================
   MASALA by ANIMA — Design System condiviso
   Bianco puro + oro luminoso, coerente con packaging e landing /box /dolomiti /quiz
   Font: Cormorant Garamond (corpo/titoli) + Josefin Sans (eyebrow/bottoni/nav)
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #ffffff;
  --surface: #faf8f3;
  --text: #111111;
  --text-light: #666666;
  --accent: #c9a84c;
  --accent-dark: #8a6d2e;
  --accent-soft: #f5ecd4;
  --border: #e8e0cc;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 14px rgba(20, 16, 8, 0.05);
  --shadow-md: 0 10px 32px rgba(20, 16, 8, 0.08);
  --shadow-gold: 0 12px 32px rgba(201, 168, 76, 0.22);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.measure {
  max-width: 640px;
  margin: 0 auto;
}

/* ---- HEADER + NAV ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0;
  margin-bottom: 0;
  /* Flex per le pagine interne dove logo+nav sono figli diretti */
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

/* Pagine interne: header dentro .wrap — il padding viene da .wrap */
.wrap .site-header {
  padding: 0;
}

/* Home: header autonomo fuori da .wrap — usa .header-inner */
.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.site-header .logo-link { display: flex; align-items: center; }
.site-header img { height: 38px; width: auto; }
.site-header::after { display: none; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: nowrap;
  margin-top: 0;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.site-nav a {
  color: var(--text);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--accent-dark);
  border-bottom-color: var(--accent);
}

/* ---- BREADCRUMB ---- */
.breadcrumb {
  text-align: center;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 28px;
}
.breadcrumb a { color: var(--text-light); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent-dark); }
.breadcrumb .sep { margin: 0 8px; color: var(--border); }

/* ---- TIPOGRAFIA BASE ---- */
.eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 14px;
}
.eyebrow-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.eyebrow-center::before,
.eyebrow-center::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
  opacity: 0.5;
}

section { margin-bottom: 96px; }
section h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 14px;
}
section h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}
section > p { font-size: 19px; line-height: 1.8; }

.section-intro {
  text-align: center;
  margin-bottom: 36px;
}

/* ---- PAGE HERO (pagine interne) ---- */
.page-hero {
  text-align: center;
  margin-bottom: 56px;
}
.page-hero h1 {
  font-size: clamp(34px, 8vw, 48px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 18px;
}
.page-hero h1 em {
  font-style: italic;
  color: var(--accent-dark);
}
.page-hero .hero-sub {
  font-size: 19px;
  line-height: 1.8;
  color: var(--text);
}

/* ---- HERO (home) ---- */
.hero {
  text-align: center;
  margin-bottom: 56px;
}
.hero-title {
  font-size: clamp(40px, 9.5vw, 58px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.12;
  margin-bottom: 22px;
}
.hero-title em {
  font-style: italic;
  color: var(--accent-dark);
}
.hero-sub {
  font-size: 19px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* ---- BUTTONS ---- */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 17px 24px;
  border-radius: var(--radius-sm);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  margin-bottom: 14px;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: var(--shadow-gold);
  max-width: 440px;
  margin: 0 auto 14px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-primary:disabled { opacity: 0.6; cursor: default; transform: none; }
.btn-secondary {
  background: #fff;
  color: var(--accent-dark);
  border: 1.5px solid var(--accent);
  box-shadow: var(--shadow-sm);
  max-width: 440px;
  margin: 0 auto 14px;
}
.btn-secondary:hover { transform: translateY(-2px); background: var(--accent-soft); }

/* ---- CHECKLIST ---- */
.checklist {
  list-style: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 8px 28px;
  margin-bottom: 28px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  font-size: 19px;
  line-height: 1.5;
  border-bottom: 1px solid var(--border);
}
.checklist li:last-child { border-bottom: none; }
.checklist li .check {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex; align-items: center; justify-content: center;
  margin-top: 3px;
  box-shadow: var(--shadow-gold);
}
.checklist li .check svg { width: 14px; height: 14px; }

.callout {
  text-align: center;
  font-size: 19px;
  line-height: 1.8;
}
.callout .big-no {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--accent-dark);
  margin: 14px 0;
}

/* ---- GALLERY ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: block;
}

/* ---- MOTIVO / FEATURE CARD ---- */
.motivo {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  margin-bottom: 16px;
}
.motivo-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-gold);
}
.motivo-icon img { width: 100%; height: 100%; object-fit: cover; }
.motivo-title {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 6px;
}
.motivo-text {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
}
.motivo-text strong { color: var(--accent-dark); }

/* ---- TESTIMONIANZE ---- */
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px 26px;
  margin-bottom: 18px;
}
.testimonial-quote {
  font-size: 19px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-quote::before { content: '\201C'; }
.testimonial-quote::after { content: '\201D'; }
.testimonial-author {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
}
.testimonial-author span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: normal;
  text-transform: none;
  color: var(--text-light);
  margin-top: 2px;
}

/* ---- ANNUSA / HOOK SENSORIALE ---- */
.annusa {
  text-align: center;
  padding: 48px 28px;
  background: linear-gradient(135deg, var(--surface), var(--accent-soft));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.annusa h2 { margin-bottom: 18px; }
.annusa p {
  font-size: 19px;
  line-height: 1.8;
  margin-bottom: 14px;
}
.annusa .punch {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-top: 24px;
}
.annusa .punch-note {
  font-size: 15px;
  color: var(--text-light);
  margin-top: 10px;
}

/* ---- FORM SECTION (embed esterno, es. GHL) ---- */
.form-section { text-align: center; padding: 12px 0 0; }
.form-section .section-intro { margin-bottom: 28px; }
.form-embed {
  background: #fff;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-gold);
  overflow: hidden;
  padding: 4px;
}
.form-embed iframe { width: 100%; min-height: 600px; border: none; display: block; }

/* ---- FORM CUSTOM (n8n) ---- */
.form-card {
  background: #fff;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-gold);
  padding: 30px 26px;
  text-align: left;
}
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 17px;
  background: var(--surface);
  color: var(--text);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.18);
  background: #fff;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 420px) { .form-row { grid-template-columns: 1fr; } }
.form-note {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  margin-top: 4px;
}
.form-status {
  margin-top: 16px;
  font-size: 16px;
  text-align: center;
  line-height: 1.6;
}
.form-status.error { color: #b3361c; }
.form-status.success { color: var(--accent-dark); font-weight: 600; }
.form-consent { font-size: 14px; line-height: 1.6; color: var(--text-light); }
.form-consent a { color: var(--accent-dark); }
.form-consents { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.consent-label { display: flex; align-items: flex-start; gap: 12px; cursor: pointer; padding: 14px 16px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-sizing: border-box; }
.consent-label input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; accent-color: var(--accent); width: 16px; height: 16px; cursor: pointer; }
.consent-label span { font-size: 13px; line-height: 1.5; color: var(--text-light); }
.consent-label span a { color: var(--accent-dark); }

/* ---- STATS ---- */
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 24px 16px;
  text-align: center;
}
.stat-card .stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-dark);
  line-height: 1.1;
  margin-bottom: 6px;
}
.stat-card .stat-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ---- TAG PILLS (feature tags home) ---- */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.tag-pill {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 18px;
}

/* ---- FRAGRANZE ---- */
.fragranza-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 24px 26px;
  margin-bottom: 16px;
}
.fragranza-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.fragranza-card h3 .num {
  display: inline-block;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-right: 10px;
}
.fragranza-card p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
}

/* ---- STORY CHAPTERS (masala / storia) ---- */
.chapter {
  border-left: 2px solid var(--accent);
  padding-left: 22px;
  margin-bottom: 36px;
}
.chapter .chapter-num {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 8px;
}
.chapter h3 { font-size: 24px; margin-bottom: 10px; }
.chapter p { font-size: 18px; line-height: 1.75; color: var(--text); }

/* ---- VALORI (masala-incenso) ---- */
.valore { margin-bottom: 28px; }
.valore h3 { font-size: 22px; margin-bottom: 8px; color: var(--accent-dark); }
.valore p { font-size: 18px; line-height: 1.75; }

/* ---- RESELLER LIST (trova rivenditore) ---- */
.reseller-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  padding: 18px 22px;
  margin-bottom: 12px;
}
.reseller-card .reseller-name { font-size: 19px; font-weight: 600; }
.reseller-card .reseller-place {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-top: 4px;
}

/* ---- NOTICE BOX (work in progress / info) ---- */
.notice {
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
}
.notice strong { color: var(--accent-dark); }

/* ---- CLOSING ---- */
.closing { text-align: center; padding: 8px 0; }
.closing p { font-size: 21px; line-height: 1.9; font-style: italic; }

/* ---- FOOTER ---- */
.site-footer {
  text-align: center;
  padding: 36px 0 44px;
  position: relative;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.site-footer::before {
  content: '';
  display: block;
  width: 48px; height: 2px;
  margin: 0 auto 28px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.site-footer img {
  height: 28px;
  width: auto;
  opacity: 0.5;
  margin-bottom: 16px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.site-footer .addr { font-size: 17px; line-height: 1.7; margin-bottom: 18px; }
.site-footer .links {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.site-footer .links a { color: var(--accent-dark); text-decoration: none; margin: 0 8px; }
.site-footer .links a:hover { text-decoration: underline; }
.site-footer p.copy {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

/* ---- LEGAL (privacy / cookie) ---- */
.legal h2 { font-size: 17px; margin: 28px 0 8px; }
.legal h2:first-child { margin-top: 0; }
.legal p { font-size: 16px; line-height: 1.75; color: var(--text); margin-bottom: 14px; }
.legal strong { color: var(--accent-dark); }

/* ---- STORE LOCATOR ---- */
.locator-map {
  height: 420px;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
  background: var(--surface);
}
.locator-map .leaflet-popup-content {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 15px;
  line-height: 1.5;
}
.locator-map .leaflet-popup-content a { color: var(--accent-dark); }
.locator-search {
  margin-bottom: 28px;
}
.locator-search input[type="search"],
.locator-search input[type="text"] {
  width: 100%;
  padding: 16px 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 19px;
  background: var(--surface);
  color: var(--text);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  -webkit-appearance: none;
}
.locator-search input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.18);
  background: #fff;
}
.locator-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 8px;
}
.locator-count {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}
.locator-count strong { color: var(--accent-dark); }
.vendor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.vendor-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.vendor-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.vendor-tipo {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-dark);
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 12px;
  display: inline-block;
  margin-bottom: 14px;
  align-self: flex-start;
}
.vendor-nome {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 6px;
}
.vendor-luogo {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 10px;
}
.vendor-addr {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-light);
  margin-bottom: 16px;
  flex-grow: 1;
}
.vendor-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: auto;
}
.vendor-link {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  text-decoration: none;
  transition: color 0.15s ease;
}
.vendor-link:hover { color: var(--accent); }
.vendor-empty {
  text-align: center;
  padding: 72px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.vendor-empty p { font-size: 19px; color: var(--text-light); margin-bottom: 18px; line-height: 1.8; }

/* ==========================================================================
   LAYOUT ESTESO — classi per il sito a larghezza piena (2026 redesign)
   ========================================================================== */

/* ---- SECTION UTILITIES ---- */
.section-pad { padding: 88px 0; }
.bg-surface {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ---- HERO SECTION ---- */
.hero-section {
  padding: 96px 0 104px;
  border-bottom: 1px solid var(--border);
}
.hero-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 72px;
  align-items: center;
}
.hero-section .hero-title {
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.07;
  text-align: left;
  margin-bottom: 24px;
}
.hero-section .hero-sub {
  font-size: 20px;
  text-align: left;
  margin-bottom: 0;
  max-width: 480px;
  color: var(--text);
}
.hero-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}
.hero-actions .btn {
  width: auto;
  max-width: none;
  margin: 0;
  padding: 16px 32px;
}
.hero-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  text-align: center;
}
.trust-item:last-child { border-right: none; }
.trust-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-dark);
  line-height: 1.1;
  font-family: 'Cormorant Garamond', Georgia, serif;
}
.trust-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ---- FEATURE GRID (3-col) ---- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 36px 30px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.feature-num {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
}
.feature-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.25;
}
.feature-card p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-light);
}

/* ---- TESTIMONIAL GRID (2-col) ---- */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ---- SECTION INTRO — variante allineata a sinistra ---- */
.section-intro-left {
  margin-bottom: 40px;
}
.section-intro-left .eyebrow { margin-bottom: 12px; }
.section-intro-left h2 { font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 16px; }
.section-intro-left p { font-size: 18px; line-height: 1.8; color: var(--text-light); max-width: 520px; }

/* ---- ANNUSA WIDE (story 2-col) ---- */
.annusa-wide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  background: linear-gradient(135deg, var(--surface), var(--accent-soft));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 56px 52px;
}
.annusa-wide-text .eyebrow { margin-bottom: 14px; }
.annusa-wide-text h2 { font-size: clamp(26px, 3vw, 38px); margin-bottom: 18px; line-height: 1.18; }
.annusa-wide-text p { font-size: 18px; line-height: 1.8; color: var(--text); margin-bottom: 14px; }
.annusa-wide-stats .stats { grid-template-columns: 1fr 1fr; }

/* ---- CTA SECTION (dark) ---- */
.cta-section {
  background: var(--text);
  padding: 104px 0;
  text-align: center;
}
.cta-section .eyebrow { color: var(--accent); }
.cta-section .eyebrow-center::before,
.cta-section .eyebrow-center::after { background: var(--accent); opacity: 0.4; }
.cta-section h2 {
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-bottom: 18px;
  color: #fff;
}
.cta-section .cta-body {
  font-size: 19px;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto 40px;
}
.cta-section .btn-primary {
  background: var(--accent);
  box-shadow: 0 8px 28px rgba(201,168,76,0.35);
  max-width: 340px;
  margin: 0 auto;
}
.cta-section .btn-primary:hover { background: var(--accent-dark); }
.cta-note {
  margin-top: 20px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1100px) {
  .wrap { padding: 0 32px; }
  .site-header .header-inner { padding: 0 32px; }
  .hero-grid { gap: 48px; }
  .annusa-wide { gap: 48px; padding: 48px 40px; }
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-image { aspect-ratio: 16 / 9; }
  .hero-section { padding: 60px 0 72px; }
  .hero-section .hero-sub { max-width: 100%; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .vendor-grid { grid-template-columns: 1fr 1fr; }
  .annusa-wide {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 40px 30px;
  }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item { border-bottom: 1px solid var(--border); }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }
  .section-pad { padding: 64px 0; }
  .cta-section { padding: 72px 0; }
}

@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .site-header .header-inner { padding: 0 20px; height: auto; padding-top: 16px; padding-bottom: 16px; flex-direction: column; gap: 14px; }
  /* Mobile: nav per pagine interne (header senza header-inner) */
  .wrap .site-header { flex-direction: column; align-items: flex-start; padding: 16px 0; gap: 12px; min-height: auto; }
  .site-nav { gap: 18px; flex-wrap: wrap; justify-content: center; }
  .hero-section .hero-title { text-align: center; }
  .hero-section .hero-sub { text-align: center; max-width: 100%; margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero-actions .btn { width: 100%; max-width: 340px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .vendor-grid { grid-template-columns: 1fr; }
  .locator-map { height: 280px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .annusa-wide-stats .stats { grid-template-columns: 1fr 1fr; }
  section { margin-bottom: 64px; }
}

@media (max-width: 420px) {
  .site-nav { gap: 14px; font-size: 11px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
  .trust-item:last-child { border-bottom: none; }
}

/* ---- STORE DETAIL PAGE ---- */
.store-detail-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 56px;
  align-items: start;
}
.store-info-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 18px;
  line-height: 1.6;
}
.store-info-item:first-child { border-top: 1px solid var(--border); }
.store-info-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  min-width: 96px;
  flex-shrink: 0;
  padding-top: 3px;
}
.store-info-value { color: var(--text); }
.store-info-value a { color: var(--accent-dark); text-decoration: none; }
.store-info-value a:hover { text-decoration: underline; }
.store-social-links { display: flex; flex-wrap: wrap; gap: 12px 20px; }
.store-social-links a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  text-decoration: none;
  transition: color 0.15s ease;
}
.store-social-links a:hover { color: var(--accent); }
.store-badge {
  background: linear-gradient(135deg, var(--surface), var(--accent-soft));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 36px 28px;
  text-align: center;
  position: sticky;
  top: 96px;
}
.store-badge img { height: 32px; opacity: 0.55; margin: 0 auto 20px; display: block; }
.store-badge .eyebrow { margin-bottom: 10px; }
.store-badge h3 { font-size: 21px; font-weight: 600; margin-bottom: 12px; line-height: 1.3; }
.store-badge p { font-size: 16px; line-height: 1.7; color: var(--text-light); margin-bottom: 24px; }
@media (max-width: 860px) {
  .store-detail-grid { grid-template-columns: 1fr; gap: 36px; }
  .store-badge { position: static; }
}
