/* ============================================================
   Farmacia Amendola - Palermo | style.css
   Scientific diagnostics aesthetic: midnight + sienna red + pistachio + caramel
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:wght@500;600;700;800&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --night-900: #0d1c26;
  --night-700: #1c3440;
  --night-500: #2f4f5e;
  --night-300: #7a95a4;
  --night-100: #d4dde3;
  --night-50:  #edf2f4;

  --sienna-800: #7a2618;
  --sienna-600: #c4442e;
  --sienna-500: #de5a3a;
  --sienna-300: #f2a48c;
  --sienna-100: #fbddd0;
  --sienna-50:  #fdeee6;

  --pistachio-600: #5e7f39;
  --pistachio-500: #8bac5e;
  --pistachio-300: #c0d49b;
  --pistachio-100: #e7eed6;

  --caramel-500: #d89754;
  --caramel-300: #eabb88;

  --white: #ffffff;
  --bone: #fbf7f1;
  --oat:  #f7efe0;
  --sand-100: #ece3d0;
  --sand-200: #d8ccb3;
  --sand-400: #a39984;
  --sand-600: #645c4b;
  --sand-800: #2e2a22;
  --text: #1a1c1e;

  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius: 10px;
  --radius-sm: 6px;

  --shadow-sm: 0 2px 8px rgba(13, 28, 38, 0.08);
  --shadow-md: 0 14px 32px rgba(13, 28, 38, 0.13);
  --shadow-lg: 0 24px 50px rgba(13, 28, 38, 0.20);
  --shadow-xl: 0 36px 72px rgba(13, 28, 38, 0.25);

  --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: 88px;
}

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: var(--sand-800);
  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: 'Bricolage Grotesque', 'Helvetica Neue', sans-serif;
  line-height: 1.1;
  color: var(--night-900);
  font-weight: 700;
  letter-spacing: -0.02em;
}

p { margin: 0; }

a {
  color: var(--sienna-600);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--night-900); }

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

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

/* ===== HEADER ===== */
.site-header {
  background: rgba(251, 247, 241, 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(--sand-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: 80px;
  gap: 24px;
}

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

.logo-mark {
  width: 52px;
  height: 52px;
  background: var(--night-900);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sienna-300);
  position: relative;
  box-shadow: 0 6px 14px rgba(13, 28, 38, 0.32);
  overflow: hidden;
}

.logo-mark::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 16px;
  height: 16px;
  background: var(--sienna-500);
  border-bottom-left-radius: 12px;
}

.logo-mark svg { width: 24px; height: 24px; position: relative; z-index: 1; }

.logo-text {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--night-900);
  line-height: 1;
  letter-spacing: -0.02em;
}

.logo-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--sienna-600);
  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(--night-700);
  font-size: 0.94rem;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}

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

.main-nav a.nav-cta {
  background: var(--night-900);
  color: var(--white);
  padding: 11px 22px;
  border-radius: 100px;
  margin-left: 10px;
  box-shadow: 0 6px 14px rgba(13, 28, 38, 0.30);
  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(--sienna-600);
  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(--sand-100);
  border-radius: 8px;
  cursor: pointer;
  padding: 10px;
  transition: all var(--transition);
}

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

.burger span {
  width: 100%;
  height: 2px;
  background: var(--night-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: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  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(--sienna-600);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(196, 68, 46, 0.30);
}

.btn-primary:hover {
  color: var(--white);
  background: var(--sienna-800);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(196, 68, 46, 0.38);
}

.btn-dark {
  background: var(--night-900);
  color: var(--white);
}

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

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

.btn-outline:hover {
  background: var(--night-900);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 96px;
  background: var(--oat);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 48%;
  background: var(--night-900);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.04;
}

.hero::after {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(196, 68, 46, 0.12), transparent 65%);
  pointer-events: none;
}

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

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--sienna-600);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
  box-shadow: 0 6px 14px rgba(196, 68, 46, 0.22);
}

.hero-kicker svg { width: 14px; height: 14px; }

.hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.3rem, 5.4vw, 4.2rem);
  margin-bottom: 22px;
  color: var(--night-900);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.hero h1 span.accent {
  color: var(--sienna-600);
  position: relative;
  display: inline-block;
}

.hero h1 span.accent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 10px;
  background: var(--caramel-300);
  opacity: 0.55;
  z-index: -1;
  border-radius: 3px;
}

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

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 2px solid var(--night-900);
  max-width: 540px;
}

.hero-metric .num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--night-900);
  display: block;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-metric .lbl {
  font-size: 0.78rem;
  color: var(--sand-600);
  margin-top: 8px;
  display: block;
  font-weight: 500;
}

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

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

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

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, transparent 55%, rgba(13, 28, 38, 0.18));
}

.hero-photo-accent {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 60%;
  height: 60%;
  border: 2px solid var(--sienna-600);
  border-radius: var(--radius-xl);
  z-index: -1;
}

.hero-badge-float {
  position: absolute;
  bottom: 34px;
  left: -40px;
  background: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  border-left: 4px solid var(--pistachio-500);
}

.hero-badge-float .ico {
  width: 44px;
  height: 44px;
  background: var(--pistachio-100);
  color: var(--pistachio-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-badge-float .ico svg { width: 22px; height: 22px; }

.hero-badge-float strong {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  color: var(--night-900);
  font-weight: 700;
  line-height: 1.1;
}

.hero-badge-float span {
  font-size: 0.78rem;
  color: var(--sand-600);
}

.hero-tag-top {
  position: absolute;
  top: 34px;
  right: -20px;
  background: var(--caramel-500);
  color: var(--night-900);
  padding: 12px 20px;
  border-radius: 100px;
  box-shadow: var(--shadow-lg);
  z-index: 2;
  transform: rotate(4deg);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
}

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

.strip::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sienna-600), var(--caramel-500), var(--pistachio-500), var(--sienna-600));
  background-size: 200% 100%;
  animation: stripBand 8s linear infinite;
}

@keyframes stripBand {
  to { background-position: 200% 0; }
}

.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(255, 255, 255, 0.08);
  border: 1px solid var(--sienna-600);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--caramel-300);
  flex-shrink: 0;
}

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

.strip-item strong {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.08rem;
  color: var(--white);
  margin-bottom: 4px;
  font-weight: 700;
}

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

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

.section.section-alt { background: var(--oat); }
.section.section-bone { background: var(--bone); }
.section.section-dark { background: var(--night-900); color: var(--night-100); }

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

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

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

.section-head h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  margin-bottom: 14px;
  color: var(--night-900);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-head h2 span.accent { color: var(--sienna-600); }

.section.section-dark .section-head h2 { color: var(--white); }
.section.section-dark .section-head .section-eyebrow { color: var(--caramel-300); }
.section.section-dark .section-eyebrow::before,
.section.section-dark .section-eyebrow::after { background: var(--caramel-300); }

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

.section.section-dark .section-head p { color: var(--night-300); }

/* ===== DIAGNOSTIC SERVICES ===== */
.diag-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

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

.diag-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--sienna-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.diag-card:hover {
  transform: translateY(-6px);
  border-color: var(--sienna-300);
  box-shadow: var(--shadow-md);
}

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

.diag-num {
  position: absolute;
  top: 22px;
  right: 28px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--sand-100);
  line-height: 1;
  letter-spacing: -0.04em;
  user-select: none;
}

.diag-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--night-900);
  color: var(--caramel-300);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all var(--transition);
}

.diag-card:hover .diag-icon {
  background: var(--sienna-600);
  color: var(--white);
  transform: rotate(-4deg);
}

.diag-icon svg { width: 28px; height: 28px; }

.diag-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.25rem;
  color: var(--night-900);
  margin-bottom: 10px;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.diag-card p {
  color: var(--sand-600);
  font-size: 0.94rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.diag-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--sienna-600);
  font-weight: 600;
}

.diag-meta svg { width: 14px; height: 14px; }

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

.about-visual {
  position: relative;
}

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

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

.about-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  background: var(--sienna-600);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-caption {
  position: absolute;
  bottom: 26px;
  left: -32px;
  background: var(--white);
  padding: 18px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-width: 230px;
  border-bottom: 3px solid var(--sienna-600);
}

.about-caption strong {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.02rem;
  color: var(--night-900);
  font-weight: 700;
  margin-bottom: 3px;
}

.about-caption span {
  font-size: 0.82rem;
  color: var(--sand-600);
}

.about-text h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  margin-bottom: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.about-text h2 span.accent { color: var(--sienna-600); }

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

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

.about-checks {
  list-style: none;
  margin-top: 28px;
  display: grid;
  gap: 14px;
}

.about-checks li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.96rem;
  color: var(--night-700);
  line-height: 1.6;
}

.about-checks li .check {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: var(--pistachio-500);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.about-checks li .check svg { width: 14px; height: 14px; }

.about-checks li strong { color: var(--night-900); font-weight: 700; }

/* ===== TAMPONE CENTRAL CTA ===== */
.tampone-block {
  background: linear-gradient(140deg, var(--night-900) 0%, var(--night-700) 100%);
  border-radius: var(--radius-xl);
  padding: 72px 60px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.tampone-block::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 340px;
  height: 340px;
  background: var(--sienna-600);
  border-radius: 50%;
  opacity: 0.25;
  filter: blur(30px);
}

.tampone-block::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 260px;
  height: 260px;
  background: var(--caramel-500);
  border-radius: 50%;
  opacity: 0.18;
  filter: blur(40px);
}

.tampone-block > * { position: relative; z-index: 1; }

.tampone-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 50px;
  align-items: center;
}

.tampone-block .section-eyebrow {
  color: var(--caramel-300);
  justify-content: flex-start;
  margin-bottom: 18px;
}

.tampone-block .section-eyebrow::before,
.tampone-block .section-eyebrow::after { background: var(--caramel-300); }

.tampone-block h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  color: var(--white);
  margin-bottom: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.tampone-block p {
  color: var(--night-100);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 28px;
}

.tampone-features {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-bottom: 32px;
  max-width: 520px;
}

.tampone-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.96rem;
  color: var(--night-100);
}

.tampone-features li .mark {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: var(--sienna-600);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tampone-features li .mark svg { width: 14px; height: 14px; }

.tampone-price {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  backdrop-filter: blur(12px);
}

.tampone-price .lbl {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--caramel-300);
  margin-bottom: 10px;
  font-weight: 700;
}

.tampone-price .val {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3.2rem;
  color: var(--white);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.tampone-price .desc {
  font-size: 0.85rem;
  color: var(--night-300);
  margin-bottom: 22px;
}

.tampone-price .btn-white {
  width: 100%;
  background: var(--sienna-600);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 100px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition);
  text-decoration: none;
  font-size: 0.92rem;
}

.tampone-price .btn-white:hover {
  background: var(--white);
  color: var(--night-900);
}

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

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

.sede-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.45rem;
  color: var(--night-900);
  margin-bottom: 6px;
  font-weight: 700;
}

.sede-card .sede-sub {
  color: var(--sand-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(--sand-100);
  font-size: 0.96rem;
}

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

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

.hours-table .time {
  color: var(--sienna-600);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  font-family: 'Bricolage Grotesque', sans-serif;
}

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

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

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

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

.sede-info::before {
  content: "";
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 68, 46, 0.22), transparent 65%);
}

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

.sede-info h3 {
  color: var(--white);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.45rem;
  margin-bottom: 24px;
  font-weight: 700;
}

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

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

.sede-row .icon {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--sienna-600);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--caramel-300);
  flex-shrink: 0;
}

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

.sede-row .lbl {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--night-300);
  margin-bottom: 4px;
  font-weight: 600;
}

.sede-row .val {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.02rem;
  color: var(--white);
  line-height: 1.45;
  font-weight: 600;
}

.sede-row .val a { color: var(--caramel-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(--sienna-600);
  color: var(--white);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: all var(--transition);
}

.sede-map-btn:hover {
  background: var(--white);
  color: var(--night-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(--sand-100);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition);
}

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

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--night-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  letter-spacing: -0.01em;
}

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

.faq-item summary::after {
  content: "+";
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--oat);
  color: var(--night-900);
  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;
}

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

.faq-item .faq-body {
  padding: 0 28px 24px;
  color: var(--sand-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(--sand-100);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
  box-shadow: var(--shadow-sm);
}

.contact-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.55rem;
  color: var(--night-900);
  margin-bottom: 12px;
  font-weight: 700;
}

.contact-card > p {
  color: var(--sand-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(--oat);
  border-radius: var(--radius);
  transition: all var(--transition);
  border: 1px solid transparent;
}

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

.contact-rows .icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--night-900);
  color: var(--caramel-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.2em;
  text-transform: uppercase;
  color: var(--sand-600);
  margin-bottom: 2px;
  font-weight: 700;
}

.contact-rows .val {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--night-900);
  letter-spacing: -0.01em;
}

.contact-rows .val a { color: var(--night-900); }
.contact-rows .val a:hover { color: var(--sienna-600); }

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

.site-footer::after {
  content: "";
  position: absolute;
  top: 40px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(196, 68, 46, 0.12), 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-mark {
  background: rgba(255, 255, 255, 0.06);
  color: var(--caramel-300);
}

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

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

.footer-col h4 {
  color: var(--white);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 22px;
  padding-bottom: 12px;
  position: relative;
  letter-spacing: -0.01em;
}

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

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

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

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

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

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

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

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

.footer-legal a { color: var(--night-300); }
.footer-legal a:hover { color: var(--caramel-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; }
  .diag-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; }
  .tampone-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 1024px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--bone);
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--sand-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: 60px;
  }
  .hero-visual { max-width: 460px; margin: 0 auto; width: 100%; }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 72px;
  }
  .about-accent { top: -14px; right: 14px; width: 100px; height: 100px; }

  .diag-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; }
  .tampone-block { padding: 56px 36px; }
}

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

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

  .hero h1 { font-size: 2.2rem; }
  .hero-lead { font-size: 1rem; }
  .hero-ctas .btn { flex: 1 1 auto; justify-content: center; }
  .hero-metrics { grid-template-columns: 1fr 1fr; gap: 18px; }

  .hero-badge-float { left: 10px; bottom: 16px; padding: 12px 16px; }
  .hero-badge-float .ico { width: 34px; height: 34px; }
  .hero-tag-top { top: 14px; right: 10px; padding: 8px 14px; font-size: 0.78rem; }

  .sede-card, .sede-info { padding: 32px 26px; }
  .contact-card { padding: 36px 26px; }
  .tampone-block { padding: 48px 26px; }
  .tampone-block h2 { font-size: 1.9rem; }
  .tampone-price { padding: 24px 20px; }
  .tampone-price .val { font-size: 2.4rem; }

  .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-mark { 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; }
}

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

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