/* ============================================================
   La Nostra Salute - Parafarmacia Senigallia | style.css
   Natural remedies aesthetic: botanical green + warm terracotta
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Nunito+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --herb-900: #1a3a2e;
  --herb-700: #2f6b54;
  --herb-500: #4e9678;
  --herb-400: #72b696;
  --herb-300: #a4d3bb;
  --herb-100: #e2f0e7;
  --herb-50:  #f1f8f4;

  --terra-700: #a34a2a;
  --terra-500: #c76a3f;
  --terra-300: #e8a888;
  --terra-100: #f5dfcf;
  --terra-50:  #fbf0e8;

  --honey-500: #d9a441;
  --honey-300: #eecc8a;

  --bone: #faf6f0;
  --cream: #f7f1e6;
  --parchment: #f3ebdb;
  --stone-100: #ede5d5;
  --stone-200: #d5cbb6;
  --stone-400: #a59e88;
  --stone-600: #6f6a59;
  --stone-800: #3a362a;

  --white: #ffffff;
  --text: #24231a;

  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius: 12px;
  --radius-sm: 6px;

  --shadow-sm: 0 2px 8px rgba(47, 107, 84, 0.06);
  --shadow-md: 0 10px 26px rgba(47, 107, 84, 0.10);
  --shadow-lg: 0 24px 48px rgba(26, 58, 46, 0.18);
  --shadow-xl: 0 34px 70px rgba(26, 58, 46, 0.22);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 92px;
}

body {
  font-family: 'Nunito Sans', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bone);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'DM Serif Display', Georgia, serif;
  line-height: 1.15;
  color: var(--herb-900);
  font-weight: 400;
  letter-spacing: -0.005em;
}

p { margin: 0; }

a {
  color: var(--herb-700);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--terra-500); }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement {
  background: var(--herb-900);
  color: var(--herb-100);
  padding: 10px 0;
  font-size: 0.84rem;
  text-align: center;
  position: relative;
}

.announcement-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.announcement strong { color: var(--honey-300); font-weight: 700; }

.announcement .sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--herb-500);
  display: inline-block;
}

/* ===== HEADER ===== */
.site-header {
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--stone-100);
  background: rgba(255, 255, 255, 0.96);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: var(--container);
  margin: 0 auto;
  height: 82px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--herb-900);
  flex-shrink: 0;
}

.logo-mark {
  width: 52px;
  height: 52px;
  background: var(--herb-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--herb-100);
  box-shadow: 0 6px 14px rgba(47, 107, 84, 0.30);
  position: relative;
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid var(--terra-300);
  opacity: 0.7;
}

.logo-mark svg { width: 26px; height: 26px; }

.logo-text {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  font-weight: 400;
  font-style: italic;
  color: var(--herb-900);
  line-height: 1;
}

.logo-sub {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  color: var(--terra-500);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ===== NAV ===== */
.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.main-nav a {
  color: var(--stone-800);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}

.main-nav a:hover {
  color: var(--herb-700);
  background: var(--herb-50);
}

.main-nav a.nav-cta {
  background: var(--terra-500);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 100px;
  margin-left: 8px;
  box-shadow: 0 8px 18px rgba(199, 106, 63, 0.28);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.main-nav a.nav-cta svg { width: 15px; height: 15px; }

.main-nav a.nav-cta:hover {
  background: var(--terra-700);
  color: var(--white);
  transform: translateY(-1px);
}

/* ===== BURGER ===== */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: none;
  border: 1px solid var(--stone-100);
  border-radius: 10px;
  cursor: pointer;
  padding: 10px;
  transition: all var(--transition);
}

.burger:hover { background: var(--herb-50); border-color: var(--herb-100); }

.burger span {
  width: 100%;
  height: 2px;
  background: var(--herb-900);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: var(--herb-700);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(47, 107, 84, 0.32);
}

.btn-primary:hover {
  color: var(--white);
  background: var(--herb-900);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(47, 107, 84, 0.42);
}

.btn-accent {
  background: var(--terra-500);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(199, 106, 63, 0.28);
}

.btn-accent:hover {
  color: var(--white);
  background: var(--terra-700);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--herb-900);
  border: 2px solid var(--herb-300);
}

.btn-outline:hover {
  background: var(--herb-50);
  border-color: var(--herb-500);
  color: var(--herb-900);
  transform: translateY(-2px);
}

/* ===== HERO (editorial, asymmetric) ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 104px;
  background: var(--cream);
}

.hero::before {
  content: "";
  position: absolute;
  top: 8%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--herb-100) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -180px;
  left: -80px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--terra-100) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 72px;
  align-items: center;
}

.hero-quote {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--stone-100);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--terra-700);
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}

.hero-quote svg { width: 14px; height: 14px; color: var(--terra-500); }

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: 24px;
  color: var(--herb-900);
  font-weight: 400;
}

.hero h1 em {
  font-style: italic;
  color: var(--terra-500);
  position: relative;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 6px;
  background: var(--honey-300);
  opacity: 0.45;
  z-index: -1;
  border-radius: 2px;
}

.hero-lead {
  font-size: 1.12rem;
  color: var(--stone-600);
  margin-bottom: 32px;
  line-height: 1.75;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-signature {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 28px;
  border-top: 1px dashed var(--stone-200);
}

.hero-signature-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--herb-500), var(--terra-500));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.35rem;
}

.hero-signature-text strong {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--herb-900);
  line-height: 1.1;
}

.hero-signature-text span {
  font-size: 0.85rem;
  color: var(--stone-600);
  letter-spacing: 0.02em;
}

/* Hero visual - collage style */
.hero-visual {
  position: relative;
  aspect-ratio: 5 / 6;
}

.hero-photo-main {
  position: absolute;
  inset: 0 0 40px 40px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--herb-100);
}

.hero-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-small {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--cream);
  z-index: 2;
}

.hero-photo-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-leaf-1 {
  position: absolute;
  top: -40px;
  right: 20px;
  width: 120px;
  height: 120px;
  background: var(--herb-100);
  border-radius: 0 100% 0 100%;
  transform: rotate(-25deg);
  z-index: 0;
}

.hero-leaf-2 {
  position: absolute;
  bottom: 60px;
  right: -30px;
  width: 90px;
  height: 90px;
  background: var(--terra-100);
  border-radius: 100% 0 100% 0;
  transform: rotate(40deg);
  z-index: 0;
}

.hero-sticker {
  position: absolute;
  top: 32px;
  right: -20px;
  background: var(--terra-500);
  color: var(--white);
  padding: 18px 20px;
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: rotate(-8deg);
  z-index: 3;
}

.hero-sticker .n {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  font-style: italic;
  line-height: 1;
}

.hero-sticker .l {
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 4px;
  opacity: 0.95;
}

/* ===== QUOTE RIBBON ===== */
.ribbon {
  background: var(--herb-900);
  color: var(--cream);
  padding: 0;
  overflow: hidden;
}

.ribbon-track {
  display: flex;
  align-items: center;
  padding: 22px 0;
  gap: 40px;
  white-space: nowrap;
  animation: ribbonScroll 40s linear infinite;
}

.ribbon-track span {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--honey-300);
  letter-spacing: 0.02em;
}

.ribbon-track .dot {
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: var(--terra-500);
}

@keyframes ribbonScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SECTIONS ===== */
.section {
  padding: 104px 0;
  position: relative;
}

.section.section-alt {
  background: var(--parchment);
}

.section.section-cream {
  background: var(--cream);
}

.section-head {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra-500);
  margin-bottom: 18px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--terra-300);
}

.section-head h2 {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  margin-bottom: 16px;
  color: var(--herb-900);
  font-style: italic;
}

.section-head h2 em {
  font-style: normal;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  color: var(--terra-500);
  font-size: 0.85em;
  vertical-align: super;
  letter-spacing: -0.01em;
}

.section-head p {
  color: var(--stone-600);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto;
}

/* ===== APPROCCIO (philosophy) ===== */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.philosophy-card {
  text-align: center;
  padding: 40px 28px;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--stone-100);
  transition: all var(--transition);
  position: relative;
}

.philosophy-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--herb-100);
}

.philosophy-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 3.2rem;
  color: var(--herb-100);
  line-height: 1;
  z-index: 0;
  user-select: none;
}

.philosophy-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--herb-50);
  color: var(--herb-700);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}

.philosophy-card:hover .philosophy-icon {
  background: var(--herb-700);
  color: var(--white);
  transform: rotate(-8deg);
}

.philosophy-icon svg { width: 36px; height: 36px; }

.philosophy-card h3 {
  font-size: 1.45rem;
  color: var(--herb-900);
  margin-bottom: 12px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.philosophy-card p {
  color: var(--stone-600);
  font-size: 0.96rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ===== PRODOTTI (categories) ===== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 18px;
}

.category-card {
  background: var(--white);
  border: 1px solid var(--stone-100);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--herb-900);
}

.category-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--terra-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  color: var(--herb-900);
  border-color: var(--herb-100);
}

.category-card:hover::before { transform: scaleX(1); }

.category-card.is-featured {
  grid-row: span 2;
  background: linear-gradient(160deg, var(--herb-700) 0%, var(--herb-900) 100%);
  color: var(--white);
  border-color: transparent;
}

.category-card.is-featured::before { background: var(--honey-300); }

.category-card.is-featured:hover { color: var(--white); }

.category-card.is-terra {
  background: var(--terra-100);
  border-color: var(--terra-100);
}

.category-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--herb-50);
  color: var(--herb-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.category-card.is-featured .category-icon {
  background: rgba(255, 255, 255, 0.14);
  color: var(--honey-300);
}

.category-card.is-terra .category-icon {
  background: var(--white);
  color: var(--terra-700);
}

.category-icon svg { width: 22px; height: 22px; }

.category-name {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.25;
  margin-bottom: 6px;
}

.category-card.is-featured .category-name {
  font-size: 1.8rem;
  margin-top: auto;
  margin-bottom: 10px;
}

.category-desc {
  font-size: 0.82rem;
  color: var(--stone-600);
  line-height: 1.5;
}

.category-card.is-featured .category-desc { color: rgba(255, 255, 255, 0.8); font-size: 0.9rem; }
.category-card.is-terra .category-desc { color: var(--terra-700); }

.category-count {
  margin-top: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra-500);
}

.category-card.is-featured .category-count { color: var(--honey-300); }

/* ===== AREE CLINICHE (medical areas grid) ===== */
.areas-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.areas-intro {
  position: sticky;
  top: 110px;
}

.areas-intro h2 {
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  margin-bottom: 18px;
  font-style: italic;
}

.areas-intro p {
  color: var(--stone-600);
  margin-bottom: 18px;
  line-height: 1.75;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.area-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--stone-100);
  border-radius: var(--radius);
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--herb-900);
  transition: all var(--transition);
  cursor: pointer;
}

.area-chip:hover {
  border-color: var(--herb-500);
  background: var(--herb-50);
  color: var(--herb-900);
  transform: translateX(4px);
}

.area-chip-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--herb-100);
  color: var(--herb-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.area-chip-icon svg { width: 16px; height: 16px; }

/* ===== STORIA / CHI SIAMO ===== */
.story-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 72px;
  align-items: center;
}

.story-visual {
  position: relative;
}

.story-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-lg);
  background: var(--herb-100);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-decor-frame {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 160px;
  height: 160px;
  border: 2px solid var(--terra-300);
  border-radius: var(--radius-xl);
  z-index: -1;
}

.story-badge {
  position: absolute;
  bottom: 30px;
  right: -30px;
  background: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 160px;
}

.story-badge .num {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 2.5rem;
  color: var(--terra-500);
  line-height: 1;
  display: block;
}

.story-badge .lbl {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone-600);
  margin-top: 6px;
  display: block;
}

.story-text h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 22px;
  font-style: italic;
}

.story-text p {
  color: var(--stone-600);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.8;
}

.story-text p strong {
  color: var(--herb-900);
  font-weight: 700;
}

.story-values {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.story-value {
  padding-left: 18px;
  border-left: 3px solid var(--terra-500);
}

.story-value strong {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--herb-900);
  margin-bottom: 4px;
}

.story-value span {
  font-size: 0.88rem;
  color: var(--stone-600);
  line-height: 1.55;
}

/* ===== NEWS (notizie) ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--stone-100);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--herb-100);
}

.news-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--terra-100);
  color: var(--terra-700);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 14px;
}

.news-card-body {
  padding: 28px;
}

.news-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--stone-600);
  font-weight: 600;
  margin-bottom: 14px;
}

.news-date svg {
  width: 14px;
  height: 14px;
  color: var(--terra-500);
}

.news-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.3rem;
  color: var(--herb-900);
  margin-bottom: 10px;
  font-style: italic;
  line-height: 1.3;
}

.news-card p {
  color: var(--stone-600);
  font-size: 0.94rem;
  line-height: 1.65;
}

/* ===== FAQ ===== */
.faq-wrap {
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--stone-100);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: all var(--transition);
}

.faq-item[open],
.faq-item:hover {
  border-color: var(--herb-300);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--herb-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--herb-50);
  color: var(--herb-700);
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  line-height: 1;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
  background: var(--terra-500);
  color: var(--white);
}

.faq-item .faq-body {
  padding: 0 28px 24px;
  color: var(--stone-600);
  font-size: 0.96rem;
  line-height: 1.75;
}

/* ===== CONTATTI ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: stretch;
}

.contact-main {
  background: var(--herb-900);
  color: var(--cream);
  padding: 56px 48px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.contact-main::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(199, 106, 63, 0.22) 0%, transparent 65%);
}

.contact-main::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 180px;
  height: 180px;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.contact-main > * { position: relative; z-index: 1; }

.contact-main h3 {
  color: var(--white);
  font-size: 1.9rem;
  margin-bottom: 14px;
  font-style: italic;
}

.contact-main p.lead {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 34px;
  font-size: 1rem;
  max-width: 420px;
}

.contact-list {
  list-style: none;
  display: grid;
  gap: 18px;
  margin-bottom: 36px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-list .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--terra-500);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-list .icon svg { width: 20px; height: 20px; }

.contact-list .lbl {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--honey-300);
  margin-bottom: 4px;
  font-weight: 700;
}

.contact-list .val {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--white);
  line-height: 1.3;
}

.contact-list .val a { color: var(--white); }
.contact-list .val a:hover { color: var(--honey-300); }

.contact-hours-card {
  background: var(--cream);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  border: 1px solid var(--stone-100);
}

.contact-hours-card h3 {
  font-size: 1.6rem;
  margin-bottom: 6px;
  font-style: italic;
  color: var(--herb-900);
}

.contact-hours-card .hours-sub {
  color: var(--stone-600);
  font-size: 0.92rem;
  margin-bottom: 28px;
}

.hours-list {
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed var(--stone-200);
  font-size: 0.96rem;
}

.hours-list li:last-child { border-bottom: none; }

.hours-list .day {
  font-weight: 700;
  color: var(--stone-800);
  text-transform: capitalize;
}

.hours-list .time {
  color: var(--herb-700);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.hours-list li.today {
  margin: 6px -14px;
  padding: 12px 14px;
  background: var(--herb-700);
  border-radius: 10px;
  border-bottom-color: transparent;
}

.hours-list li.today .day,
.hours-list li.today .time { color: var(--white); }

.hours-note {
  margin-top: 24px;
  padding: 14px 18px;
  background: var(--terra-50);
  border-left: 3px solid var(--terra-500);
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--terra-700);
  line-height: 1.55;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--herb-900);
  color: rgba(255, 255, 255, 0.72);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 106, 63, 0.10), transparent 65%);
}

.site-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--terra-500), var(--honey-500), var(--terra-500));
}

.site-footer .container { position: relative; z-index: 1; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.1fr 1.3fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-brand .logo-mark {
  background: rgba(255, 255, 255, 0.10);
  color: var(--honey-300);
}

.footer-brand .logo-mark::after { border-color: rgba(255, 255, 255, 0.18); }

.footer-brand .logo-text { color: var(--white); font-size: 1.4rem; }
.footer-brand .logo-sub { color: var(--honey-300); }

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.72);
  max-width: 340px;
}

.footer-col h4 {
  color: var(--white);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 22px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-bottom: 12px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--terra-500);
  border-radius: 2px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  transition: all var(--transition);
  display: inline-block;
}

.footer-col ul li a:hover {
  color: var(--honey-300);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

.footer-contact-item strong {
  color: var(--honey-300);
  display: block;
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-contact-item a { color: rgba(255, 255, 255, 0.88); }
.footer-contact-item a:hover { color: var(--honey-300); }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-legal {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-legal a { color: rgba(255, 255, 255, 0.55); }
.footer-legal a:hover { color: var(--honey-300); }

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay-1 { transition-delay: 0.10s; }
.reveal.delay-2 { transition-delay: 0.20s; }
.reveal.delay-3 { transition-delay: 0.30s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
  .hero-layout { gap: 48px; }
  .philosophy-grid { grid-template-columns: 1fr 1fr; }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--stone-100);
    gap: 4px;
  }
  .main-nav.active { display: flex; }
  .main-nav a { padding: 14px 16px; width: 100%; border-radius: var(--radius-sm); }
  .main-nav a.nav-cta { margin-left: 0; margin-top: 10px; justify-content: center; }
  .burger { display: flex; align-items: center; }
}

@media (max-width: 900px) {
  .hero { padding: 56px 0 80px; }
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .hero-visual { max-width: 480px; margin: 0 auto; width: 100%; }

  .story-layout {
    grid-template-columns: 1fr;
    gap: 72px;
  }
  .story-badge { bottom: -18px; right: 18px; padding: 18px 22px; min-width: auto; }
  .story-badge .num { font-size: 1.8rem; }

  .areas-wrap { grid-template-columns: 1fr; gap: 40px; }
  .areas-intro { position: static; }

  .categories-grid { grid-template-columns: 1fr 1fr; }
  .category-card.is-featured { grid-row: auto; }

  .news-grid { grid-template-columns: 1fr; }

  .contact-layout { grid-template-columns: 1fr; gap: 28px; }
  .contact-main { padding: 44px 32px; }
}

@media (max-width: 768px) {
  html { scroll-padding-top: 76px; }
  .announcement .sep-mobile-hide { display: none; }
  .header-inner { height: 72px; }
  .main-nav { top: 72px; }

  .section { padding: 68px 0; }
  .section-head { margin-bottom: 44px; }
  .section-head h2 { font-size: 1.8rem; }

  .hero h1 { font-size: 2.1rem; }
  .hero-lead { font-size: 1rem; }
  .hero-ctas .btn { flex: 1 1 auto; justify-content: center; }

  .hero-sticker { width: 88px; height: 88px; top: 12px; right: 12px; padding: 10px; }
  .hero-sticker .n { font-size: 1.4rem; }
  .hero-sticker .l { font-size: 0.56rem; }
  .hero-photo-main { inset: 0 0 24px 24px; }
  .hero-leaf-1, .hero-leaf-2 { display: none; }

  .philosophy-grid { grid-template-columns: 1fr; gap: 18px; }
  .philosophy-card { padding: 32px 26px; }

  .categories-grid { grid-template-columns: 1fr; }

  .areas-grid { grid-template-columns: 1fr; }

  .story-values { grid-template-columns: 1fr; }

  .ribbon-track span { font-size: 1rem; }

  .contact-main { padding: 36px 26px; }
  .contact-hours-card { padding: 32px 26px; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 36px;
  }

  .logo-text { font-size: 1.2rem; }
  .logo-sub { font-size: 0.6rem; }
  .logo-mark { width: 44px; height: 44px; }

  .faq-item summary { padding: 18px 22px; font-size: 0.95rem; }
  .faq-item .faq-body { padding: 0 22px 20px; font-size: 0.92rem; }

  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero h1 { font-size: 1.8rem; }
  .story-badge { position: static; margin-top: 24px; display: inline-block; }
}

@media print {
  .site-header, .site-footer, .burger, .hero-ctas, .announcement, .ribbon {
    display: none !important;
  }
  body { background: #fff; color: #000; }
}
