/* ==========================================================================
   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: #cca266;
  --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(204, 162, 102, 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;
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1;
}

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

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

/* ---- 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;
  padding-top: 56px;
}
.page-hero .eyebrow { margin-bottom: 6px; }
.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);
  text-wrap: balance;
}

/* ---- HERO (home) ---- */
.hero {
  text-align: center;
  margin-bottom: 56px;
  padding-top: 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;
  text-wrap: balance;
}

/* ---- 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-icon { display: flex; align-items: center; justify-content: center; background: var(--accent-soft); }
.motivo-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--accent-dark); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.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 .addr a { color: var(--text); text-decoration: none; transition: color 0.15s ease; }
.site-footer .addr a:hover { color: var(--accent-dark); text-decoration: underline; }
.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;
  box-sizing: border-box;
}
.locator-map .leaflet-popup-content a { color: var(--accent-dark); }
.locator-map .leaflet-popup-content-wrapper,
.locator-map .leaflet-popup-content {
  max-width: calc(100vw - 48px);
}
.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; }
  .page-hero { padding-top: 72px; }
  .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; }
}

/* ==========================================================================
   2026 REDESIGN — Sistema colori-fragranza, doppio percorso B2B/B2C,
   video, divider loto. Coerente con packaging ANIMA by TEOS.
   ========================================================================== */

/* ---- VARIABILI COLORE FRAGRANZA (dal packaging) ---- */
:root {
  --f-loban:        #afa4a0;
  --f-rosa:         #ee3650;
  --f-opium:        #100d11;
  --f-omshanti:     #00b1dc;
  --f-vaniglia:     #ebac34;
  --f-oudh:         #f87f3a;
  --f-supernatural: #006eac;
  --f-spiritual:    #dcf1f5;
  --f-patchouly:    #7db844;
  --f-palosanto:    #60341a;
  --f-mirra:        #ffe53f;
  --f-salvia:       #a1d8d0;
  --f-deserto:      #c1a4c4;
  --f-sandalo:      #c73955;
  --f-antico:       #004732;
  --f-drago:        #712973;
}

/* ---- LOTUS DIVIDER (firma visiva, separatore di sezione) ---- */
.lotus-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto 14px;
  max-width: 320px;
}
.lotus-divider::before,
.lotus-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
}
.lotus-divider::after { background: linear-gradient(90deg, var(--accent), transparent); }
.lotus-divider svg { width: 26px; height: 26px; flex-shrink: 0; }
.lotus-divider svg path,
.lotus-divider svg circle { fill: var(--accent); }
/* Loto: sprite SVG <symbol> + <use>, colorato via currentColor */
.lotus-mark {
  display: inline-block;
  width: 26px; height: 26px;
  flex-shrink: 0;
  color: var(--accent);
}
.lotus-mark svg { width: 100%; height: 100%; display: block; fill: var(--accent); }
.lotus-mark use { fill: var(--accent); }

/* ---- HERO: supporto media (foto + slot video) ---- */
.hero-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--surface), var(--accent-soft));
  aspect-ratio: 4 / 5;
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.hero-media.contain { background: radial-gradient(circle at 50% 40%, #fff, var(--surface) 75%); }
.hero-media.contain img { object-fit: contain; padding: 24px; }
.hero-badge {
  position: absolute;
  left: 18px; bottom: 18px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 16px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

/* ---- VIDEO BLOCK (slot per video reale: poster + play) ---- */
.video-block {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #1c1a16, #2c2620 60%, var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.video-block iframe,
.video-block video { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.video-block .video-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 24px;
}
.video-block .play-btn {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  transition: transform 0.2s ease, background 0.2s ease;
}
.video-block:hover .play-btn { transform: scale(1.06); background: var(--accent); border-color: var(--accent); }
.video-block .play-btn svg { width: 26px; height: 26px; fill: #fff; margin-left: 4px; }
.video-block .video-label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.video-block .video-note {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
  font-style: italic;
}

/* ---- DOPPIO PERCORSO B2B / B2C ---- */
.dual-path {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.path-card {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  overflow: hidden;
}
.path-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
}
.path-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.path-card.is-b2c { background: linear-gradient(160deg, #fff, var(--surface)); }
.path-card.is-b2b { background: linear-gradient(160deg, var(--surface), var(--accent-soft)); }
.path-kicker {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 14px;
}
.path-card h3 { font-size: 27px; font-weight: 600; line-height: 1.2; margin-bottom: 12px; }
.path-card h3 em { font-style: italic; color: var(--accent-dark); }
.path-card > p { font-size: 18px; line-height: 1.7; color: var(--text); margin-bottom: 22px; }
.path-list { list-style: none; margin: 0 0 26px; padding: 0; }
.path-list li {
  position: relative;
  padding-left: 26px;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-light);
  margin-bottom: 11px;
}
.path-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.path-card .btn { margin-top: auto; }

/* ---- SCENT STRIP (teaser fragranze in home) ---- */
.scent-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 22px;
  margin: 0 auto;
  max-width: 760px;
}
.scent-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}
.scent-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.04);
  flex-shrink: 0;
}

/* ---- FRAGRANZE GRID (pagina fragranze, sistema colore) ---- */
.fragranze-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.frag-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px 22px 24px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.frag-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.frag-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--frag, var(--accent));
}
.frag-lotus {
  width: 42px; height: 42px;
  margin-bottom: 16px;
}
.frag-lotus svg { width: 100%; height: 100%; display: block; fill: var(--accent); }
.frag-lotus use { fill: var(--accent); }
.frag-card h3 { font-size: 21px; font-weight: 600; margin-bottom: 8px; line-height: 1.2; color: var(--frag, var(--text)); }
.frag-card .frag-note {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text-light);
}
.frag-card .frag-fam {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--frag, var(--accent-dark));
  margin-top: 14px;
  display: block;
}

/* ---- BANDA B2C SENSORIALE ---- */
.sensory-band {
  background: linear-gradient(135deg, var(--surface), var(--accent-soft));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.sensory-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.sensory-grid .sensory-text h2 { font-size: clamp(28px, 3.4vw, 40px); line-height: 1.15; margin-bottom: 18px; }
.sensory-grid .sensory-text h2 em { font-style: italic; color: var(--accent-dark); }
.sensory-grid .sensory-text p { font-size: 18px; line-height: 1.8; color: var(--text); margin-bottom: 16px; }

/* ---- FAQ (accordion semplice via <details>) ---- */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: var(--shadow-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-size: 19px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: 'Josefin Sans', sans-serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--accent-dark);
  transition: transform 0.2s ease;
  line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 24px 22px; font-size: 17px; line-height: 1.7; color: var(--text-light); }

/* ---- MINI FORM above-the-fold (3 campi) ---- */
.mini-form {
  background: #fff;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-gold);
  padding: 24px 22px;
}
.mini-form .mini-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.mini-form input, .mini-form select {
  width: 100%; padding: 13px 15px;
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-family: 'Cormorant Garamond', Georgia, serif; font-size: 16px;
  background: var(--surface);
}
.mini-form input:focus, .mini-form select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(201,168,76,0.18); background:#fff; }

/* ---- RESPONSIVE redesign 2026 ---- */
@media (max-width: 960px) {
  .fragranze-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .dual-path { grid-template-columns: 1fr; }
  .sensory-grid { grid-template-columns: 1fr; gap: 36px; }
  .fragranze-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .path-card { padding: 32px 26px; }
  .scent-strip { gap: 12px 16px; }
  .mini-form .mini-row { grid-template-columns: 1fr; }
}
@media (max-width: 460px) {
  .fragranze-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .frag-card { padding: 22px 16px 20px; }
}
