/* ============================================================
   Farmacia Vetro - Palermo | style.css
   Mediterranean identity: terracotta + deep sea blue + cream
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,500&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --sea-900: #0c2a3d;
  --sea-700: #18496b;
  --sea-500: #2f7aa5;
  --sea-300: #7eb5d4;
  --sea-100: #d4e6f0;
  --sea-50:  #ecf4f8;

  --terra-900: #6d2818;
  --terra-700: #a3452a;
  --terra-500: #c55e3d;
  --terra-300: #e0a489;
  --terra-100: #f4dccf;
  --terra-50:  #faf0e7;

  --lemon-500: #e4b24e;
  --lemon-300: #f2cf88;

  --olive-500: #7a8a5a;
  --olive-300: #b2bd92;

  --bone: #faf7f0;
  --sand: #f5ede0;
  --paper: #fcf9f3;
  --shell-100: #ece5d6;
  --shell-200: #d9cfba;
  --shell-400: #9e9483;
  --shell-600: #5f5648;
  --shell-800: #2d281d;

  --white: #ffffff;
  --text: #221f17;

  --radius-xl: 20px;
  --radius-lg: 14px;
  --radius: 8px;
  --radius-sm: 4px;

  --shadow-sm: 0 2px 9px rgba(12, 42, 61, 0.08);
  --shadow-md: 0 12px 30px rgba(12, 42, 61, 0.12);
  --shadow-lg: 0 22px 50px rgba(12, 42, 61, 0.18);
  --shadow-xl: 0 36px 72px rgba(12, 42, 61, 0.22);

  --transition: 0.28s 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: 96px;
}

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

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  line-height: 1.18;
  color: var(--sea-900);
  font-weight: 600;
  letter-spacing: -0.008em;
}

p { margin: 0; }

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

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

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

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

/* ===== TOPBAR ===== */
.topbar {
  background: var(--sea-900);
  color: var(--sea-100);
  font-size: 0.82rem;
  padding: 9px 0;
  border-bottom: 1px solid var(--sea-700);
}

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

.topbar-left,
.topbar-right {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--sea-100);
}

.topbar-item svg {
  width: 13px;
  height: 13px;
  color: var(--lemon-300);
}

.topbar-item strong {
  color: var(--lemon-300);
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-style: italic;
}

/* ===== HEADER ===== */
.site-header {
  background: rgba(252, 249, 243, 0.96);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  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(--shell-100);
  background: rgba(255, 255, 255, 0.98);
}

.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(--sea-900);
  flex-shrink: 0;
}

.logo-emblem {
  width: 52px;
  height: 52px;
  background: var(--sea-900);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lemon-300);
  position: relative;
  box-shadow: 0 6px 14px rgba(12, 42, 61, 0.3);
  border: 1px solid var(--terra-500);
}

.logo-emblem::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  border-radius: 9px;
  border: 1px solid rgba(228, 178, 78, 0.4);
  pointer-events: none;
}

.logo-emblem svg { width: 24px; height: 24px; }

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--sea-900);
  line-height: 1;
  letter-spacing: -0.01em;
}

.logo-sub {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--terra-700);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 4px;
}

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

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

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

.main-nav a.nav-cta {
  background: var(--terra-500);
  color: var(--white);
  padding: 11px 22px;
  border-radius: var(--radius);
  margin-left: 10px;
  box-shadow: 0 6px 14px rgba(197, 94, 61, 0.32);
  font-weight: 600;
  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(--shell-100);
  border-radius: 8px;
  cursor: pointer;
  padding: 10px;
  transition: all var(--transition);
}

.burger:hover { background: var(--terra-50); border-color: var(--terra-300); }

.burger span {
  width: 100%;
  height: 2px;
  background: var(--sea-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: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Outfit', sans-serif;
  font-size: 0.94rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}

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

.btn-primary {
  background: var(--terra-500);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(197, 94, 61, 0.32);
}

.btn-primary:hover {
  color: var(--white);
  background: var(--terra-700);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(197, 94, 61, 0.40);
}

.btn-dark {
  background: var(--sea-900);
  color: var(--lemon-300);
}

.btn-dark:hover {
  background: var(--sea-700);
  color: var(--lemon-300);
  transform: translateY(-2px);
}

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

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

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 104px;
  background: var(--bone);
  background-image:
    radial-gradient(700px 420px at 85% 8%, rgba(228, 178, 78, 0.15), transparent 60%),
    radial-gradient(600px 460px at 5% 95%, rgba(197, 94, 61, 0.10), transparent 65%);
}

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

.hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--terra-100);
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--terra-700);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--terra-500);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.8vw, 3.6rem);
  margin-bottom: 22px;
  color: var(--sea-900);
  font-weight: 600;
  letter-spacing: -0.018em;
}

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

.hero-lead {
  font-size: 1.08rem;
  color: var(--shell-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 solid var(--shell-100);
}

.hero-signature-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sea-900), var(--terra-700));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lemon-300);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.35rem;
  font-weight: 600;
}

.hero-signature-text strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--sea-900);
  line-height: 1.1;
  font-weight: 600;
}

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

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

.hero-photo {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--sea-100);
  transform: rotate(-1.5deg);
}

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

.hero-photo-frame {
  position: absolute;
  inset: -14px -14px -14px -14px;
  border: 1px solid var(--terra-500);
  border-radius: var(--radius-lg);
  transform: rotate(1.5deg);
  z-index: -1;
}

.hero-price-tag {
  position: absolute;
  bottom: 34px;
  left: -44px;
  background: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 2;
  border-left: 3px solid var(--terra-500);
}

.hero-price-tag .lbl {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--shell-600);
  margin-bottom: 4px;
  font-weight: 600;
}

.hero-price-tag .val {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--sea-900);
  font-weight: 700;
}

.hero-price-tag .val em {
  color: var(--terra-700);
  font-style: italic;
  font-weight: 500;
}

.hero-stamp {
  position: absolute;
  top: 40px;
  right: -24px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--lemon-500);
  color: var(--sea-900);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  padding: 8px;
  border: 2px solid var(--sea-900);
  transform: rotate(10deg);
}

.hero-stamp .n {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
}

.hero-stamp .l {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: 5px;
  line-height: 1.2;
}

/* ===== USP STRIP ===== */
.strip {
  background: var(--sea-900);
  color: var(--sea-100);
  padding: 44px 0;
  position: relative;
  overflow: hidden;
}

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

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.strip-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-right: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.strip-item:last-child { border-right: none; }

.strip-icon {
  width: 48px;
  height: 48px;
  background: rgba(228, 178, 78, 0.14);
  border: 1px solid var(--lemon-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lemon-300);
  flex-shrink: 0;
}

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

.strip-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.12rem;
  color: var(--white);
  margin-bottom: 4px;
  font-weight: 600;
}

.strip-item span {
  font-size: 0.84rem;
  color: var(--sea-300);
  line-height: 1.5;
}

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

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

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

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--terra-700);
  margin-bottom: 18px;
}

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

.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  margin-bottom: 14px;
  color: var(--sea-900);
  font-weight: 600;
}

.section-head h2 em { font-style: italic; color: var(--terra-700); font-weight: 500; }

.section-head p {
  color: var(--shell-600);
  font-size: 1.04rem;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ===== SERVICES PRICELIST (key feature) ===== */
.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.service-row {
  background: var(--white);
  border: 1px solid var(--shell-100);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-row::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--terra-500);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition);
}

.service-row:hover {
  border-color: var(--terra-300);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.service-row:hover::before { transform: scaleY(1); }

.service-row-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--sea-50);
  color: var(--sea-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--sea-100);
}

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

.service-row-body { flex: 1; min-width: 0; }

.service-row-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.02rem;
  color: var(--sea-900);
  font-weight: 600;
  margin-bottom: 2px;
  line-height: 1.3;
}

.service-row-sub {
  font-size: 0.82rem;
  color: var(--shell-600);
  line-height: 1.4;
}

.service-row-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--terra-700);
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.service-row-price.free { color: var(--olive-500); font-size: 0.95rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }

/* ===== REPARTI (categories) ===== */
.reparti-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.reparto-card {
  background: var(--white);
  border: 1px solid var(--shell-100);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.reparto-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--sea-50);
  transition: all var(--transition);
}

.reparto-card:hover {
  transform: translateY(-4px);
  border-color: var(--terra-300);
  box-shadow: var(--shadow-md);
}

.reparto-card:hover::before {
  background: var(--terra-100);
  transform: scale(1.4);
}

.reparto-card > * { position: relative; }

.reparto-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--sea-900);
  color: var(--lemon-300);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all var(--transition);
}

.reparto-card:hover .reparto-icon {
  background: var(--terra-700);
  color: var(--white);
  transform: rotate(-4deg);
}

.reparto-icon svg { width: 26px; height: 26px; }

.reparto-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--sea-900);
  margin-bottom: 10px;
  font-weight: 600;
}

.reparto-card p {
  color: var(--shell-600);
  font-size: 0.94rem;
  line-height: 1.7;
}

/* ===== 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-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--sea-100);
}

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

.story-decor-frame {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 140px;
  height: 140px;
  border: 2px solid var(--lemon-500);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.story-badge-year {
  position: absolute;
  bottom: -22px;
  right: -22px;
  background: var(--terra-500);
  color: var(--white);
  padding: 20px 26px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.story-badge-year .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
  display: block;
  color: var(--white);
}

.story-badge-year .lbl {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 6px;
  display: block;
  font-weight: 600;
}

.story-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  margin-bottom: 22px;
  font-weight: 600;
}

.story-text h2 em { font-style: italic; color: var(--terra-700); font-weight: 500; }

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

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

.story-team {
  margin-top: 28px;
  padding: 24px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--shell-100);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.team-member {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.team-member .circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sea-900);
  color: var(--lemon-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 600;
  flex-shrink: 0;
}

.team-member strong {
  display: block;
  font-family: 'Playfair Display', serif;
  color: var(--sea-900);
  font-size: 1.02rem;
  margin-bottom: 2px;
  font-weight: 600;
}

.team-member span {
  font-size: 0.82rem;
  color: var(--shell-600);
  line-height: 1.45;
}

/* ===== ORARI / SEDE ===== */
.sede-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.sede-card {
  background: var(--white);
  border: 1px solid var(--shell-100);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-sm);
}

.sede-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  color: var(--sea-900);
  margin-bottom: 6px;
  font-weight: 600;
}

.sede-card .sede-sub {
  color: var(--shell-600);
  font-size: 0.92rem;
  margin-bottom: 26px;
}

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

.hours-table li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px dashed var(--shell-100);
  font-size: 0.96rem;
}

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

.hours-table .day {
  font-weight: 600;
  color: var(--sea-900);
}

.hours-table .time {
  color: var(--terra-700);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  font-family: 'Playfair Display', serif;
}

.hours-table li.is-closed .time { color: var(--shell-400); font-style: italic; }

.hours-table li.today {
  margin: 8px -14px;
  padding: 14px;
  background: var(--terra-100);
  border-radius: 8px;
  border-bottom-color: transparent;
}

.sede-dark {
  background: var(--sea-900);
  color: var(--sea-100);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
}

.sede-dark::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 178, 78, 0.14), transparent 65%);
}

.sede-dark > * { position: relative; z-index: 1; }

.sede-dark h3 {
  color: var(--white);
  font-size: 1.55rem;
  margin-bottom: 24px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.sede-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sede-row:last-of-type { border-bottom: none; }

.sede-row .icon {
  width: 42px;
  height: 42px;
  background: rgba(228, 178, 78, 0.14);
  border: 1px solid var(--lemon-500);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--lemon-300);
  flex-shrink: 0;
}

.sede-row .icon svg { width: 20px; height: 20px; }

.sede-row .lbl {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sea-300);
  margin-bottom: 3px;
  font-weight: 600;
}

.sede-row .val {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  line-height: 1.45;
  font-weight: 500;
}

.sede-row .val a { color: var(--lemon-300); }
.sede-row .val a:hover { color: var(--white); }

.sede-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 12px 22px;
  background: var(--lemon-500);
  color: var(--sea-900);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
}

.sede-map-btn:hover {
  background: var(--white);
  color: var(--sea-900);
  transform: translateY(-2px);
}

.sede-map-btn svg { width: 15px; height: 15px; }

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

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

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

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--sea-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: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sea-50);
  color: var(--sea-700);
  flex-shrink: 0;
  font-size: 1.4rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  line-height: 1;
  font-family: 'Playfair Display', serif;
}

.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(--shell-600);
  font-size: 0.97rem;
  line-height: 1.8;
}

/* ===== CONTATTI ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--shell-100);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow-sm);
}

.contact-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.65rem;
  color: var(--sea-900);
  margin-bottom: 12px;
  font-weight: 600;
}

.contact-card > p {
  color: var(--shell-600);
  margin-bottom: 32px;
  font-size: 0.98rem;
  line-height: 1.7;
}

.contact-rows {
  list-style: none;
  display: grid;
  gap: 16px;
}

.contact-rows li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: var(--sand);
  border-radius: var(--radius);
  transition: all var(--transition);
  border: 1px solid transparent;
}

.contact-rows li:hover {
  border-color: var(--terra-300);
  transform: translateX(3px);
}

.contact-rows .icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--sea-900);
  color: var(--lemon-300);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-rows .icon svg { width: 18px; height: 18px; }

.contact-rows .lbl {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--shell-600);
  margin-bottom: 2px;
  font-weight: 700;
}

.contact-rows .val {
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--sea-900);
}

.contact-rows .val a { color: var(--sea-900); }
.contact-rows .val a:hover { color: var(--terra-700); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--sea-900);
  color: var(--sea-300);
  padding: 72px 0 0;
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--terra-500);
}

.site-footer::after {
  content: "";
  position: absolute;
  bottom: 60px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(228, 178, 78, 0.08), transparent 65%);
  pointer-events: none;
}

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

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

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

.footer-brand .logo-emblem {
  background: rgba(228, 178, 78, 0.14);
  color: var(--lemon-300);
}

.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-sub { color: var(--terra-300); }

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--sea-300);
  max-width: 340px;
}

.footer-col h4 {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 22px;
  padding-bottom: 12px;
  position: relative;
}

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

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

.footer-col ul li a {
  color: var(--sea-300);
  font-size: 0.92rem;
  transition: all var(--transition);
}

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

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--sea-300);
}

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

.footer-contact-item a { color: var(--white); }
.footer-contact-item a:hover { color: var(--lemon-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: var(--sea-300);
}

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

.footer-legal a { color: var(--sea-300); }
.footer-legal a:hover { color: var(--lemon-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.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.24s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1199px) {
  .hero-layout { gap: 44px; }
  .services-list { grid-template-columns: 1fr; }
  .reparti-grid { grid-template-columns: 1fr 1fr; }
  .strip-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .strip-item { border-right: none; padding-right: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--shell-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) {
  .topbar-left .topbar-item:nth-child(n+3) { display: none; }

  .hero { padding: 56px 0 80px; }
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .hero-visual { max-width: 460px; margin: 0 auto; width: 100%; }

  .story-layout {
    grid-template-columns: 1fr;
    gap: 72px;
  }
  .story-team { grid-template-columns: 1fr; }

  .reparti-grid { grid-template-columns: 1fr; }
  .sede-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .strip-grid { grid-template-columns: 1fr; gap: 20px; }
}

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

  .section { padding: 72px 0; }
  .section-head { margin-bottom: 40px; }
  .section-head h2 { font-size: 1.85rem; }

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

  .hero-price-tag { left: 10px; bottom: 18px; padding: 12px 16px; }
  .hero-price-tag .val { font-size: 1.1rem; }
  .hero-stamp { width: 88px; height: 88px; top: 14px; right: 10px; }
  .hero-stamp .n { font-size: 1.3rem; }

  .sede-card, .sede-dark { padding: 32px 26px; }
  .contact-card { padding: 36px 26px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .logo-text { font-size: 1.12rem; }
  .logo-sub { font-size: 0.62rem; }
  .logo-emblem { width: 44px; height: 44px; }

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

  .service-row { flex-wrap: wrap; padding: 18px 22px; }
  .service-row-body { width: 100%; }
  .service-row-price { margin-left: auto; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero h1 { font-size: 1.75rem; }
}

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