/* ============================================
   STELLETTA — Design System
   La tua prima stelletta inizia qui.
   ============================================ */

:root {
  /* Palette */
  --navy:       #0B1F3A;
  --navy-90:    #1A3052;
  --navy-70:    #3E5373;
  --gold:       #C9A961;
  --gold-dark:  #A8873F;
  --gold-soft:  #F5EFE0;
  --cream:      #FAF7F0;
  --paper:      #FDFCF8;
  --ink:        #0F0E0C;
  --charcoal:   #2C2C2A;
  --stone:      #5F5E5A;
  --mist:       #B4B2A9;
  --line:       #E5E1D4;
  --alert:      #B23A2E;
  --success:    #2D6A4F;

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:    'JetBrains Mono', 'SF Mono', monospace;

  /* Spacing scale */
  --s-1: 4px;   --s-2: 8px;   --s-3: 12px;  --s-4: 16px;
  --s-5: 24px;  --s-6: 32px;  --s-7: 48px;  --s-8: 64px;
  --s-9: 96px;  --s-10: 128px;

  /* Radii */
  --r-sm: 4px;  --r-md: 8px;  --r-lg: 16px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(11, 31, 58, 0.04), 0 1px 3px rgba(11, 31, 58, 0.06);
  --shadow-md: 0 4px 12px rgba(11, 31, 58, 0.06), 0 2px 4px rgba(11, 31, 58, 0.04);
  --shadow-lg: 0 16px 40px rgba(11, 31, 58, 0.08), 0 4px 12px rgba(11, 31, 58, 0.04);

  /* Layout */
  --max-w: 1200px;
  --max-w-prose: 720px;
}

/* ============================================
   RESET
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--paper);
  font-feature-settings: 'ss01', 'cv01';
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; }

/* ============================================
   TYPOGRAPHY
   ============================================ */
.display-xl {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--navy);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.display-l {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--navy);
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.display-m {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.display-s {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2.5vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.005em;
  color: var(--navy);
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.lead {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: var(--navy-90);
  font-weight: 400;
}
.italic-serif {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

/* ============================================
   LAYOUT
   ============================================ */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.wrap-prose {
  max-width: var(--max-w-prose);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: var(--s-9) 0; }
@media (max-width: 640px) { section { padding: var(--s-8) 0; } }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 252, 248, 0.85);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 32px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.logo__star {
  width: 22px;
  height: 22px;
  color: var(--gold);
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  position: relative;
  transition: color 0.2s;
}
.nav a:hover { color: var(--navy); }
.nav a.current { color: var(--navy); }
.nav a.current::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--gold);
}
.burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  align-items: center;
  justify-content: center;
}
.burger svg { width: 22px; height: 22px; color: var(--navy); }
@media (max-width: 900px) {
  .nav { display: none; }
  .burger { display: inline-flex; }
  .nav.nav--open {
    display: flex;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--line);
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--r-md);
  transition: transform 0.15s ease, background 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary {
  background: var(--navy);
  color: var(--cream);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { background: var(--navy-90); box-shadow: var(--shadow-md); }
.btn--gold {
  background: var(--gold);
  color: var(--navy);
}
.btn--gold:hover { background: var(--gold-dark); color: var(--cream); }
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn--ghost:hover { background: var(--navy); color: var(--cream); }
.btn--link {
  padding: 0;
  color: var(--navy);
  font-weight: 500;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  border-radius: 0;
}
.btn--link:hover { color: var(--gold-dark); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: var(--s-10) 0 var(--s-9);
  overflow: hidden;
  background: var(--paper);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(201, 169, 97, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(11, 31, 58, 0.06) 0%, transparent 40%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding: var(--s-8) 0 var(--s-7); }
}
.hero__visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-90) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__visual svg { width: 60%; height: auto; color: var(--gold); opacity: 0.95; }

/* ============================================
   BANNER / ALERT
   ============================================ */
.banner {
  background: var(--navy);
  color: var(--cream);
  font-size: 14px;
  padding: 10px 24px;
  text-align: center;
}
.banner a {
  color: var(--gold);
  border-bottom: 1px solid rgba(201, 169, 97, 0.5);
  padding-bottom: 1px;
}
.banner a:hover { border-bottom-color: var(--gold); }

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.card--feature { padding: 40px; }
.card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  background: var(--gold-soft);
  color: var(--gold-dark);
  margin-bottom: 20px;
}
.card__icon svg { width: 22px; height: 22px; }

/* ============================================
   FORCE GRID (hub corpi militari)
   ============================================ */
.force-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.force-card {
  position: relative;
  display: block;
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--paper);
  transition: all 0.25s ease;
  overflow: hidden;
}
.force-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-90) 100%);
  opacity: 0;
  transition: opacity 0.25s;
  z-index: 0;
}
.force-card > * { position: relative; z-index: 1; }
.force-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: transparent; }
.force-card:hover::before { opacity: 1; }
.force-card:hover .force-card__title,
.force-card:hover .force-card__meta,
.force-card:hover .force-card__arrow { color: var(--cream); }
.force-card:hover .force-card__badge {
  background: var(--gold);
  color: var(--navy);
}
.force-card__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  background: var(--gold-soft);
  color: var(--gold-dark);
  border-radius: var(--r-sm);
  margin-bottom: 16px;
  transition: all 0.25s;
}
.force-card__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  transition: color 0.25s;
}
.force-card__meta {
  font-size: 14px;
  color: var(--stone);
  margin-bottom: 24px;
  transition: color 0.25s;
}
.force-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  transition: color 0.25s;
}
.force-card__arrow svg { width: 16px; height: 16px; transition: transform 0.2s; }
.force-card:hover .force-card__arrow svg { transform: translateX(4px); }

/* ============================================
   PILLARS (cosa facciamo)
   ============================================ */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  padding: 36px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  position: relative;
}
.pillar__num {
  font-family: var(--font-display);
  font-size: 48px;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
  font-weight: 400;
}
.pillar h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.pillar p { color: var(--stone); font-size: 16px; line-height: 1.6; }

/* ============================================
   STATS / NUMBERS
   ============================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 760px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat__number {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.stat__label {
  font-size: 14px;
  color: var(--stone);
  line-height: 1.4;
}

/* ============================================
   PRICING
   ============================================ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}
@media (max-width: 1000px) { .price-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .price-grid { grid-template-columns: 1fr; } }

.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.price-card--featured {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
  transform: scale(1.02);
}
.price-card--featured:hover { transform: scale(1.02) translateY(-3px); }
.price-card:not(.price-card--featured):hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}
.price-card__badge {
  position: absolute;
  top: -12px;
  right: 24px;
  padding: 5px 12px;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
}
.price-card__tier {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.price-card--featured .price-card__tier { color: var(--gold); }
.price-card__name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.price-card__sub {
  font-size: 14px;
  color: var(--stone);
  margin-bottom: 20px;
  min-height: 40px;
}
.price-card--featured .price-card__sub { color: var(--mist); }
.price-card__price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.price-card__unit {
  font-size: 13px;
  color: var(--stone);
  margin-bottom: 28px;
}
.price-card--featured .price-card__unit { color: var(--mist); }
.price-card__features {
  list-style: none;
  margin: 0 0 28px 0;
  padding: 0;
  flex: 1;
}
.price-card__features li {
  font-size: 14px;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  border-bottom: 1px solid rgba(229, 225, 212, 0.5);
  line-height: 1.5;
}
.price-card--featured .price-card__features li {
  border-bottom-color: rgba(201, 169, 97, 0.2);
}
.price-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 12px;
  height: 6px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}
.price-card__features li:last-child { border-bottom: none; }

/* ============================================
   KIT (landing page del lead magnet)
   ============================================ */
.kit-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
  padding: var(--s-9) 0;
}
@media (max-width: 960px) {
  .kit-hero { grid-template-columns: 1fr; gap: 40px; padding: var(--s-7) 0; }
}
.kit-card-visual {
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: 40px;
  color: var(--cream);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.kit-card-visual::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -40%;
  width: 120%;
  height: 140%;
  background: radial-gradient(circle, rgba(201, 169, 97, 0.2) 0%, transparent 55%);
}
.kit-card-visual > * { position: relative; }
.kit-card-visual__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.kit-card-visual__title {
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}
.kit-card-visual__sub {
  color: var(--mist);
  font-size: 15px;
  margin-bottom: 28px;
}
.kit-card-visual__list {
  list-style: none;
  padding: 0;
}
.kit-card-visual__list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(201, 169, 97, 0.25);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.kit-card-visual__list li:last-child { border-bottom: none; }
.kit-card-visual__list .day {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.05em;
}

/* Form */
.form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.form__row { margin-bottom: 20px; }
.form__label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}
.form__input, .form__select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--paper);
  font-size: 15px;
  color: var(--charcoal);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form__input:focus, .form__select:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}
.form__check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--stone);
  line-height: 1.4;
}
.form__check input { margin-top: 2px; }
.form .btn { width: 100%; justify-content: center; font-size: 16px; padding: 16px 24px; }

/* ============================================
   TESTIMONIAL
   ============================================ */
.testimonial {
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--r-lg);
  padding: 56px;
  position: relative;
}
@media (max-width: 640px) { .testimonial { padding: 32px; } }
.testimonial__quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--cream);
  font-weight: 400;
  font-style: italic;
  max-width: 760px;
}
.testimonial__mark {
  font-family: var(--font-display);
  font-size: 96px;
  color: var(--gold);
  line-height: 0;
  position: absolute;
  top: 72px;
  left: 28px;
  opacity: 0.3;
}
.testimonial__attribution {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
}
.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 500;
}
.testimonial__name { color: var(--cream); font-weight: 500; }
.testimonial__role { color: var(--mist); font-size: 13px; }

/* ============================================
   BLOG / ARTICLE
   ============================================ */
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.article-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--paper);
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.article-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.article-card__cover {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-90) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  position: relative;
}
.article-card__cover svg { width: 40%; opacity: 0.6; }
.article-card__cover--alt { background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%); }
.article-card__cover--alt2 { background: linear-gradient(135deg, var(--success) 0%, #3a8a69 100%); }
.article-card__cover--alt3 { background: linear-gradient(135deg, #4A3520 0%, var(--gold-dark) 100%); }
.article-card__body { padding: 24px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.article-card__meta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.article-card__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.article-card__excerpt {
  color: var(--stone);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 20px;
  flex: 1;
}
.article-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--stone);
}

/* Article (full post) */
.article-body { max-width: 720px; margin: 0 auto; }
.article-body h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--navy);
  margin: 48px 0 20px;
  letter-spacing: -0.01em;
}
.article-body h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--navy);
  margin: 36px 0 16px;
}
.article-body p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 24px;
}
.article-body ul, .article-body ol { margin: 0 0 24px 1.5rem; }
.article-body li { font-size: 18px; line-height: 1.7; padding: 6px 0; }
.article-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 12px 24px;
  margin: 32px 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--navy);
}

/* ============================================
   FAQ
   ============================================ */
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq details:first-child { border-top: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  gap: 20px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 24px;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.2s;
}
.faq details[open] summary::after { content: "−"; }
.faq details p {
  margin-top: 12px;
  color: var(--stone);
  font-size: 16px;
  line-height: 1.6;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy);
  color: var(--mist);
  padding: var(--s-8) 0 var(--s-5);
  margin-top: var(--s-9);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
.footer-brand .logo { color: var(--cream); margin-bottom: 16px; }
.footer-brand p { color: var(--mist); font-size: 14px; line-height: 1.6; max-width: 320px; }
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--mist); font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  border-top: 1px solid rgba(201, 169, 97, 0.2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--mist);
  gap: 16px;
  flex-wrap: wrap;
}
.footer-socials { display: flex; gap: 16px; }
.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: var(--mist);
}
.footer-socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.footer-socials svg { width: 16px; height: 16px; }

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.mb-3 { margin-bottom: var(--s-3); }
.mb-4 { margin-bottom: var(--s-4); }
.mb-5 { margin-bottom: var(--s-5); }
.mb-6 { margin-bottom: var(--s-6); }
.mb-7 { margin-bottom: var(--s-7); }
.mb-8 { margin-bottom: var(--s-8); }
.mt-5 { margin-top: var(--s-5); }
.mt-6 { margin-top: var(--s-6); }
.mt-7 { margin-top: var(--s-7); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 800px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

.divider {
  height: 1px;
  background: var(--line);
  margin: var(--s-7) 0;
}

.tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--gold-soft);
  color: var(--gold-dark);
  border-radius: var(--r-sm);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* Ribbon subtile sotto hero */
.ribbon {
  background: var(--navy);
  color: var(--cream);
  padding: 18px 0;
}
.ribbon-items {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
}
.ribbon-item { display: flex; align-items: center; gap: 10px; }
.ribbon-item svg { width: 18px; height: 18px; color: var(--gold); }

/* Breadcrumb */
.breadcrumb {
  padding: 16px 0;
  font-size: 13px;
  color: var(--stone);
  border-bottom: 1px solid var(--line);
}
.breadcrumb a { color: var(--stone); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--navy); }
.breadcrumb span { margin: 0 8px; color: var(--mist); }
.breadcrumb strong { color: var(--navy); font-weight: 500; }

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  animation: fadeUp 0.6s ease-out backwards;
}
.reveal:nth-child(1) { animation-delay: 0.05s; }
.reveal:nth-child(2) { animation-delay: 0.15s; }
.reveal:nth-child(3) { animation-delay: 0.25s; }
.reveal:nth-child(4) { animation-delay: 0.35s; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
