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

:root {
  --burgundy: #722F37;
  --burgundy-dark: #5A2630;
  --burgundy-light: #8B3A42;
  --orange: #C65D21;
  --orange-light: #D4763E;
  --orange-dark: #A84D1A;
  --cream: #FAF6F0;
  --cream-warm: #F5EDE2;
  --cream-dark: #E8DED2;
  --charcoal: #2C2C2C;
  --charcoal-light: #4A4A4A;
  --brown: #3E2723;
  --brown-light: #6D4C41;
  --gold: #C9A84C;
  --gold-light: #D4B96A;
  --white: #FFFFFF;
  --offwhite: #FFFCF7;
  --wine-glow: rgba(114,47,55,0.12);
  --orange-glow: rgba(198,93,33,0.10);
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --shadow-sm: 0 1px 4px rgba(44,26,6,0.06);
  --shadow-card: 0 2px 8px rgba(44,26,6,0.05), 0 8px 24px rgba(44,26,6,0.07);
  --shadow-hover: 0 8px 32px rgba(44,26,6,0.10), 0 2px 8px rgba(44,26,6,0.06);
  --shadow-deep: 0 12px 48px rgba(44,26,6,0.14);
  --ease: 0.35s cubic-bezier(0.4,0,0.2,1);
  --ease-bounce: 0.45s cubic-bezier(0.34,1.56,0.64,1);
  --transition-fade: opacity 0.6s ease, transform 0.6s ease;
}

@font-face {
  font-family: 'Playfair';
  src: local('Playfair Display');
  font-display: swap;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 400;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

::selection { background: rgba(114,47,55,0.15); color: var(--charcoal); }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, h4 { font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif; }

/* ===== IMAGE SYSTEM — Editorial quality ===== */
.hero__img-wrap {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
  max-height: 80vh;
}
@keyframes kenBurns {
  0% { transform: scale(1.02); }
  100% { transform: scale(1.08); }
}
.hero__img {
  width: 100%; height: 100%; object-fit: cover; object-position: center center;
  filter: brightness(0.35) saturate(1.1);
  transform: scale(1.02);
  animation: kenBurns 25s ease-out infinite alternate;
}
@media (max-width: 1024px) {
  .hero__img { transform: none; animation: none; }
}
.about-hero__img-wrap, .prog-hero__img-wrap, .contact-hero__img-wrap, .page-hero__img-wrap {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
  max-height: 80vh;
}
.about-hero__img-wrap img, .prog-hero__img-wrap img, .contact-hero__img-wrap img, .page-hero__img-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: center center;
  filter: brightness(0.35) saturate(1.1);
  transform: scale(1.02);
  animation: kenBurns 25s ease-out infinite alternate;
}
@media (max-width: 1024px) {
  .about-hero__img-wrap img, .prog-hero__img-wrap img, .contact-hero__img-wrap img, .page-hero__img-wrap img {
    transform: none; animation: none;
  }
}
.card__photo {
  aspect-ratio: 4/3; overflow: hidden;
}
@media (max-width: 480px) { .card__photo { aspect-ratio: 1/1; } }
.card__photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center center;
  transition: transform 0.6s var(--ease);
}
.about-block__img {
  aspect-ratio: 16/9; overflow: hidden; border-radius: var(--r-lg);
}
@media (max-width: 640px) { .about-block__img { aspect-ratio: 3/2; } }
.about-block__img img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.prog-showcase__item {
  aspect-ratio: 4/3; overflow: hidden; border-radius: var(--r-md);
}
@media (max-width: 480px) { .prog-showcase__item { aspect-ratio: 1/1; } }
.prog-showcase__item img { width: 100%; height: 100%; object-fit: cover; object-position: center center; transition: transform 0.5s var(--ease); }
.nav__logo-img { width: 48px; height: 48px; object-fit: cover; border-radius: 50%; }
.footer__logo { width: 52px; height: 52px; object-fit: cover; border-radius: 50%; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(250,246,240,0.82);
  backdrop-filter: blur(20px) saturate(1.4); -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(44,26,6,0.04);
  transition: all var(--ease);
}
.nav.scrolled {
  background: rgba(250,246,240,0.96);
  box-shadow: 0 4px 24px rgba(44,26,6,0.06);
  border-bottom: 1px solid rgba(114,47,55,0.08);
}
.nav__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  height: 56px; display: flex; align-items: center; justify-content: space-between;
}
.nav__logo {
  display: flex; align-items: center; gap: 0;
  text-decoration: none; flex-shrink: 0;
}
.nav__logo-img {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
  border: 2px solid rgba(114,47,55,0.15);
  transition: transform var(--ease);
}
.nav__logo:hover .nav__logo-img { transform: scale(1.05); }
.nav__links { display: flex; gap: 0.25rem; align-items: center; }
.nav__link {
  font-weight: 500; font-size: 0.85rem; color: var(--charcoal-light);
  padding: 0.45rem 0.9rem; border-radius: 100px;
  transition: all var(--ease); letter-spacing: 0.01em;
}
.nav__link:hover { color: var(--burgundy); background: var(--wine-glow); }
.nav__link--active { color: var(--burgundy-dark); background: var(--wine-glow); font-weight: 600; }
.nav__toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 0.5rem; color: var(--charcoal); flex-shrink: 0;
  width: 44px; height: 44px; align-items: center; justify-content: center;
  border-radius: 50%; transition: background var(--ease);
}
.nav__toggle:hover { background: rgba(114,47,55,0.06); }
.nav__toggle svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
.nav__social { display: flex; align-items: center; gap: 0.4rem; flex-shrink: 0; }
.nav__social-link {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  color: var(--charcoal-light); transition: all var(--ease);
}
.nav__social-link svg { width: 18px; height: 18px; }
.nav__social-link:hover { color: var(--burgundy); background: var(--wine-glow); }

/* ===== HERO ===== */
.hero {
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; padding-top: 64px;
  aspect-ratio: 21/9;
  min-height: 520px;
  max-height: 80vh;
  padding-bottom: 5rem;
  background: linear-gradient(155deg, #1a0a0c 0%, #3d1518 30%, var(--burgundy-dark) 60%, #5A2630 100%);
}
@media (max-width: 1024px) {
  .hero { aspect-ratio: auto; min-height: 520px; padding-top: 64px; padding-bottom: 5rem; }
  .hero__scroll { display: none; }
}
@media (max-width: 768px) {
  .hero { min-height: 460px; padding-top: 64px; padding-bottom: 4rem; }
}
@media (max-width: 480px) {
  .hero { aspect-ratio: auto; min-height: 580px; padding-top: 80px; padding-bottom: 4.5rem; }
}


.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to bottom, rgba(26,10,12,0.15) 0%, rgba(26,10,12,0.35) 40%, rgba(26,10,12,0.75) 100%),
    radial-gradient(ellipse at 50% 40%, rgba(114,47,55,0.08) 0%, transparent 60%);
}
.hero__content { position: relative; z-index: 2; padding: 2rem 1.5rem; max-width: 720px; }
@media (max-width: 768px) { .hero__content { padding: 1.25rem 1.5rem; } .hero__over { display: none; } }
.hero__over {
  font-weight: 600; font-size: clamp(0.7rem, 1.8vw, 0.82rem);
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1rem;
  opacity: 0; animation: fadeUp 0.7s 0.1s ease forwards;
}
.hero__title {
  font-family: 'Playfair Display', serif; font-weight: 900;
  font-size: clamp(2.6rem, 9vw, 5rem);
  line-height: 1.05; color: var(--white); margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  opacity: 0; animation: fadeUp 0.7s 0.25s ease forwards;
}
.hero__title em { font-style: italic; color: var(--gold-light); }
.hero__intro {
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  color: rgba(255,255,255,0.8); line-height: 1.8;
  margin-bottom: 2.25rem; max-width: 560px; margin-left: auto; margin-right: auto;
  opacity: 0; animation: fadeUp 0.7s 0.4s ease forwards;
}
.hero__ctas {
  display: flex; flex-direction: column; justify-content: center;
  gap: 1rem; width: 100%; max-width: 420px; margin: 0 auto;
  opacity: 0; animation: fadeUp 0.7s 0.55s ease forwards;
}
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; opacity: 0; animation: fadeUp 0.7s 0.8s ease forwards;
}
.hero__scroll-icon {
  width: 28px; height: 44px; border-radius: 14px;
  border: 2px solid rgba(255,255,255,0.25); position: relative;
}
.hero__scroll-dot {
  width: 4px; height: 8px; border-radius: 2px; background: rgba(255,255,255,0.6);
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); filter: blur(4px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== CTA BUTTONS ===== */
.cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.02em;
  padding: 16px 32px; border-radius: 50px; text-decoration: none;
  transition: all 0.35s ease; font-family: 'Inter', sans-serif;
  text-align: center; white-space: nowrap; cursor: pointer; border: none;
}
.cta:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.cta--primary {
  color: #fff; background: var(--burgundy);
  box-shadow: 0 4px 20px rgba(114,47,55,0.35), 0 1px 3px rgba(0,0,0,0.1);
}
.cta--primary:hover {
  background: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(114,47,55,0.4), 0 2px 8px rgba(0,0,0,0.12);
}
.cta--outline {
  color: #fff; background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.cta--outline:hover {
  background: rgba(255,255,255,0.1); border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,255,255,0.15), 0 2px 8px rgba(0,0,0,0.1);
}
.cta--warm {
  color: #fff; background: var(--orange);
  box-shadow: 0 4px 20px rgba(198,93,33,0.3);
}
.cta--warm:hover {
  background: var(--orange-dark); transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(198,93,33,0.4);
}
.cta svg { flex-shrink: 0; transition: transform 0.3s ease; width: 18px; height: 18px; }
.cta:hover svg { transform: translateX(3px); }

@media (min-width: 480px) {
  .hero__ctas { flex-direction: row; max-width: none; }
}

/* ===== IMAGE CONTAINERS ===== */
.img-crop { overflow: hidden; position: relative; width: 100%; border-radius: var(--r-md); }
.img-crop img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s var(--ease); }
.img-crop--hero { aspect-ratio: 16/9; }
.img-crop--card { aspect-ratio: 4/3; }
.img-crop--wide { aspect-ratio: 21/9; }
.img-crop--square { aspect-ratio: 1/1; }
.img-crop--portrait { aspect-ratio: 3/4; }

/* ===== SECTION SHARED ===== */
.section {
  padding: 5rem 1.5rem; max-width: 1200px; margin: 0 auto;
}
.section--narrow { max-width: 800px; }
.section--wide { max-width: 1400px; }
.section--flush { padding-left: 0; padding-right: 0; max-width: none; }
.section--dark { background: var(--charcoal); color: var(--cream); }
.section--wine { background: var(--burgundy-dark); color: var(--cream); }
.section--cream { background: var(--cream-warm); }

.section__header {
  text-align: center; margin-bottom: 3.5rem;
}
.section__over {
  font-family: 'Inter', sans-serif; font-weight: 600;
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--burgundy); margin-bottom: 0.75rem;
}
.section__title {
  font-family: 'Playfair Display', serif; font-weight: 900;
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  color: var(--charcoal); line-height: 1.15; letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}
.section--dark .section__title,
.section--wine .section__title { color: var(--white); }
.section--dark .section__over,
.section--wine .section__over { color: var(--gold-light); }
.section__subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--charcoal-light); line-height: 1.7;
  max-width: 600px; margin: 0 auto;
}
.section--dark .section__subtitle,
.section--wine .section__subtitle { color: rgba(255,255,255,0.65); }

/* ===== HIGHLIGHTS / EVENT CARDS ===== */
.card-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.75rem;
}
@media (min-width: 900px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }

.card-grid--center {
  justify-content: center; margin-top: 0.5rem;
}
@media (min-width: 900px) {
  .card-grid--center {
    grid-template-columns: repeat(2, minmax(0, 380px));
  }
}

.card-link { text-decoration: none; color: inherit; display: block; cursor: pointer; }
.card-link .card { opacity: 0; transform: translateY(24px); }
.card-link .card.show { opacity: 1; transform: translateY(0); }

.card {
  background: var(--white); border-radius: var(--r-lg);
  overflow: hidden; border: 1px solid rgba(0,0,0,0.04);
  box-shadow: var(--shadow-card); transition: all var(--ease);
  opacity: 0; transform: translateY(24px);
  position: relative;
  border-left: 3px solid transparent;
}
.card.show { opacity: 1; transform: translateY(0); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-deep); border-color: rgba(114,47,55,0.15); }

.card--food   { border-left-color: var(--burgundy); }
.card--music  { border-left-color: var(--orange); }
.card--family { border-left-color: var(--gold); }
.card--raduno { border-left-color: var(--burgundy-dark); }
.card--stand  { border-left-color: var(--burgundy-light); }

.card__body { padding: 1.75rem 2rem 2.25rem; text-align: left; position: relative; }

.card__num {
  position: absolute; top: 0.75rem; right: 1.25rem;
  font-family: 'Playfair Display', serif; font-weight: 900;
  font-size: 3.5rem; line-height: 1; color: var(--cream-dark);
  letter-spacing: -0.02em; opacity: 0.35;
  pointer-events: none;
}
.card__tag {
  font-family: 'Inter', sans-serif; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  display: inline-block; padding: 0.35rem 0.7rem; border-radius: 4px;
  margin-bottom: 0.75rem;
}
.card__tag--food { color: var(--burgundy); background: var(--wine-glow); }
.card__tag--music { color: var(--orange); background: var(--orange-glow); }
.card__tag--family { color: var(--gold); background: rgba(201,168,76,0.1); }
.card__title {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 1.35rem; color: var(--charcoal); margin-bottom: 0.6rem; line-height: 1.2;
}
.card__desc {
  font-size: 0.9rem; color: var(--charcoal-light); line-height: 1.7;
}

@media (max-width: 480px) {
  .card__num { font-size: 2.6rem; }
  .card__body { padding: 1.25rem 1.5rem 1.75rem; }
  .card__title { font-size: 1.15rem; }
  .card__desc { font-size: 0.85rem; }
}

/* ===== TIMELINE (Programma) ===== */
.timeline {
  position: relative; padding-left: 2rem; margin: 0 auto; max-width: 800px;
}
.timeline::before {
  content: ''; position: absolute; left: 0.75rem; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--burgundy), var(--orange), var(--gold));
  border-radius: 2px;
}
.timeline__item {
  position: relative; padding: 0 0 2.5rem 2rem;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.timeline__item.show { opacity: 1; transform: translateY(0); }
.timeline__dot {
  position: absolute; left: -1.55rem; top: 0.35rem;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--cream); border: 3px solid var(--burgundy);
  z-index: 1;
}
.timeline__item--finale .timeline__dot { border-color: var(--gold); background: var(--gold); }
.timeline__date {
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--burgundy); margin-bottom: 0.5rem;
  padding: 0.2rem 0.7rem; background: var(--wine-glow);
  border-radius: 4px; display: inline-block;
}
.timeline__item--stand .timeline__date { color: var(--charcoal-light); background: var(--cream-dark); }
.timeline__item--finale .timeline__date { color: var(--gold); background: rgba(201,168,76,0.1); }
.timeline__name {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: clamp(1.15rem, 3vw, 1.4rem);
  color: var(--charcoal); line-height: 1.3; margin-bottom: 0.35rem;
}
.timeline__desc {
  font-size: 0.92rem; color: var(--charcoal-light); line-height: 1.7; max-width: 520px;
}
.timeline__tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.75rem; }
.timeline__pill {
  font-family: 'Inter', sans-serif; font-size: 0.7rem; font-weight: 600;
  padding: 0.2rem 0.6rem; border-radius: 100px;
  display: inline-flex; align-items: center; gap: 0.3rem;
}
.timeline__pill--cena { color: var(--burgundy); background: var(--wine-glow); }
.timeline__pill--stand { color: var(--charcoal-light); background: var(--cream-dark); }
.timeline__pill--torneo { color: #2E7D32; background: rgba(46,125,50,0.06); border: 1px solid rgba(46,125,50,0.1); }
.timeline__pill--finale { color: var(--gold); background: rgba(201,168,76,0.1); }

/* ===== ABOUT PAGE ===== */
.about-hero {
  position: relative; max-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; padding-top: 64px;
  aspect-ratio: 21/9;
  background: linear-gradient(155deg, #1a0a0c 0%, #3d1518 30%, var(--burgundy-dark) 60%, #5A2630 100%);
}
@media (max-width: 768px) { .about-hero { aspect-ratio: 16/9; } }
@media (max-width: 480px) { .about-hero { aspect-ratio: 4/3; } }

.about-hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(26,10,12,0.15) 0%, rgba(26,10,12,0.35) 40%, rgba(26,10,12,0.75) 100%);
}
.about-hero__content { position: relative; z-index: 2; padding: 3.5rem 1.5rem; max-width: 640px; }
.about-hero__over {
  font-weight: 600; font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.75rem;
  opacity: 0; animation: fadeUp 0.6s 0.15s ease forwards;
}
.about-hero__title {
  font-family: 'Playfair Display', serif; font-weight: 900;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white); margin-bottom: 0.5rem; letter-spacing: -0.01em;
  opacity: 0; animation: fadeUp 0.6s 0.25s ease forwards;
}
.about-hero__sub {
  font-size: 1rem; color: rgba(255,255,255,0.7); line-height: 1.7;
  opacity: 0; animation: fadeUp 0.6s 0.4s ease forwards;
}

.about-content { max-width: 800px; margin: 0 auto; padding: 4rem 1.5rem; }
.about-block { margin-bottom: 3.5rem; opacity: 0; transform: translateY(20px); transition: var(--transition-fade); }
.about-block.show { opacity: 1; transform: translateY(0); }
.about-block__label {
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.7rem;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--burgundy);
  margin-bottom: 0.75rem;
}
.about-block__title {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--charcoal); margin-bottom: 1rem; line-height: 1.3;
}
.about-block__text {
  font-size: 1.02rem; color: var(--charcoal-light); line-height: 1.85;
  margin-bottom: 1rem;
}
.about-block__text em { color: var(--burgundy); font-style: italic; }
.about-block__img { border-radius: var(--r-lg); overflow: hidden; margin-top: 1.5rem; }

.territory-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
  max-width: 1200px; margin: 0 auto;
}
@media (min-width: 1024px) {
  .territory-grid { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
}

.territory-card {
  background: var(--white); border-radius: var(--r-lg);
  overflow: hidden; border: 1px solid rgba(0,0,0,0.04);
  box-shadow: var(--shadow-card); transition: all var(--ease);
}
.territory-card:hover {
  transform: translateY(-6px); box-shadow: var(--shadow-deep);
  border-color: rgba(114,47,55,0.12);
}
.territory-card__img {
  aspect-ratio: 4/3; overflow: hidden;
}
.territory-card__img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center center;
  transition: transform 0.6s var(--ease);
}
.territory-card:hover .territory-card__img img { transform: scale(1.05); }
.territory-card__body { padding: 1.25rem 1.5rem 1.5rem; }
@media (min-width: 768px) and (max-width: 1023px) {
  .territory-card {
    display: grid; grid-template-columns: 42% 1fr;
    align-items: stretch; gap: 0;
  }
  .territory-card__img { aspect-ratio: auto; height: 100%; }
  .territory-card__img img { height: 100%; min-height: 100%; }
  .territory-card__body {
    display: flex; flex-direction: column; justify-content: center;
    padding: 1.5rem 2rem;
  }
}
.territory-card__title {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 1.2rem; color: var(--charcoal); margin-bottom: 0.75rem; line-height: 1.3;
}
@media (max-width: 480px) {
  .territory-card__title { font-size: 1.3rem; margin-bottom: 0.9rem; }
}
.territory-card__text {
  font-size: 0.92rem; color: var(--charcoal-light); line-height: 1.75;
}
@media (max-width: 480px) {
  .territory-card__text { font-size: 1rem; line-height: 1.85; }
}

.about-partners {
  padding: 4rem 1.5rem; background: var(--cream-warm);
}
.about-partners__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
  max-width: 800px; margin: 0 auto;
}
@media (min-width: 640px) { .about-partners__grid { grid-template-columns: repeat(3, 1fr); } }
.about-partners__item {
  background: var(--white); border-radius: var(--r-md); padding: 1.25rem 1.5rem;
  border: 1px solid rgba(0,0,0,0.04); box-shadow: var(--shadow-sm);
  font-size: 0.9rem; color: var(--charcoal); text-align: center;
  font-weight: 500; transition: all var(--ease);
}
.about-partners__item:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }

/* ===== PROGRAMMA HERO ===== */
.prog-hero {
  position: relative; max-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; padding-top: 64px;
  aspect-ratio: 21/9;
  background: linear-gradient(155deg, #1a0a0c 0%, #3d1518 30%, var(--burgundy-dark) 60%, #5A2630 100%);
}
@media (max-width: 768px) { .prog-hero { aspect-ratio: 16/9; } }
@media (max-width: 480px) { .prog-hero { aspect-ratio: 4/3; } }

.prog-hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(26,10,12,0.15) 0%, rgba(26,10,12,0.35) 40%, rgba(26,10,12,0.75) 100%);
}
.prog-hero__content { position: relative; z-index: 2; padding: 3rem 1.5rem; max-width: 640px; }
.prog-hero__over {
  font-weight: 600; font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.75rem;
  opacity: 0; animation: fadeUp 0.6s 0.15s ease forwards;
}
.prog-hero__title {
  font-family: 'Playfair Display', serif; font-weight: 900;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white); margin-bottom: 0.5rem; letter-spacing: -0.01em;
  opacity: 0; animation: fadeUp 0.6s 0.25s ease forwards;
}
.prog-hero__sub {
  font-size: 1rem; color: rgba(255,255,255,0.7); line-height: 1.7;
  opacity: 0; animation: fadeUp 0.6s 0.4s ease forwards;
}

.prog-showcase {
  max-width: 1000px; margin: 0 auto; padding: 3rem 1.5rem 1rem;
}
.prog-showcase__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem;
}
@media (min-width: 640px) { .prog-showcase__grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }


.prog-content { max-width: 800px; margin: 0 auto; padding: 1rem 1.5rem 3rem; }

/* ===== EDITION SWITCHER ===== */
.edition-switcher {
  display: flex; justify-content: center; gap: 0.75rem;
  margin-bottom: 2.5rem; flex-wrap: wrap;
}
.edition-switcher__btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.75rem; border-radius: 50px;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.02em; cursor: pointer;
  background: var(--white); color: var(--charcoal-light);
  border: 2px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
}
.edition-switcher__btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.edition-switcher__btn:hover {
  border-color: var(--burgundy-light); color: var(--burgundy);
  background: var(--wine-glow);
}
.edition-switcher__btn--active {
  background: var(--burgundy); color: #fff;
  border-color: var(--burgundy);
  box-shadow: 0 4px 20px rgba(114,47,55,0.35);
}
.edition-switcher__btn--active:hover {
  background: var(--burgundy-dark); color: #fff;
}
.edition-switcher__btn--active svg { stroke: #fff; }

/* ===== CONTATTI PAGE ===== */
.contact-hero {
  position: relative; max-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; padding-top: 64px;
  aspect-ratio: 21/9;
  background: linear-gradient(155deg, #1a0a0c 0%, #3d1518 30%, var(--burgundy-dark) 60%, #5A2630 100%);
}
@media (max-width: 768px) { .contact-hero { aspect-ratio: 16/9; } }
@media (max-width: 480px) { .contact-hero { aspect-ratio: 4/3; } }

.contact-hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(26,10,12,0.15) 0%, rgba(26,10,12,0.35) 40%, rgba(26,10,12,0.75) 100%);
}
.contact-hero__content { position: relative; z-index: 2; padding: 3rem 1.5rem; max-width: 640px; }
.contact-hero__over {
  font-weight: 600; font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.75rem;
  opacity: 0; animation: fadeUp 0.6s 0.15s ease forwards;
}
.contact-hero__title {
  font-family: 'Playfair Display', serif; font-weight: 900;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white); margin-bottom: 0.5rem; letter-spacing: -0.01em;
  opacity: 0; animation: fadeUp 0.6s 0.25s ease forwards;
}
.contact-hero__sub {
  font-size: 1rem; color: rgba(255,255,255,0.7); line-height: 1.7;
  opacity: 0; animation: fadeUp 0.6s 0.4s ease forwards;
}

.contact-layout {
  display: grid; grid-template-columns: 1fr; gap: 1.5rem;
  margin-top: 1rem;
}
@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1.2fr 1fr;
  }
  .contact-layout__form  { grid-column: 1; grid-row: 1 / 4; }
  .contact-layout__sidebar { grid-column: 2; }
  .contact-map {
    grid-column: 1 / -1;
  }
}

.contact-form {
  background: var(--white); border-radius: var(--r-lg);
  padding: 2rem; border: 1px solid rgba(0,0,0,0.04);
  box-shadow: var(--shadow-card);
}
.contact-form.show { opacity: 1; transform: translateY(0); }
.form__row { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 0.75rem; }
@media (min-width: 540px) { .form__row { flex-direction: row; } }
.form__field { flex: 1; display: flex; flex-direction: column; gap: 0.3rem; margin-bottom: 0.5rem; }
.form__label { font-weight: 500; font-size: 0.8rem; color: var(--charcoal); }
.form__textarea { resize: vertical; min-height: 120px; }
.form__select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234A4A4A' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem;
  cursor: pointer;
}
.form__input, .form__textarea, .form__select {
  padding: 0.7rem 1rem; border: 1.5px solid var(--cream-dark); border-radius: var(--r-sm);
  font-family: 'Inter', sans-serif; font-size: 0.9rem; color: var(--charcoal);
  background: var(--offwhite); transition: border-color var(--ease), box-shadow var(--ease); outline: none;
}
.form__input:focus, .form__textarea:focus, .form__select:focus { border-color: var(--burgundy); box-shadow: 0 0 0 3px rgba(114,47,55,0.08); }
.form__input.invalid, .form__select.invalid { border-color: #c62828; box-shadow: 0 0 0 3px rgba(198,40,40,0.08); }
.form__error { font-size: 0.72rem; color: #c62828; min-height: 0.9rem; opacity: 0; transition: opacity var(--ease); }
.form__error.visible { opacity: 1; }
.form__submit {
  margin-top: 0.75rem; font-weight: 700; font-size: 0.95rem; color: #fff;
  background: var(--burgundy); padding: 0.85rem 2rem; border-radius: 50px;
  border: none; cursor: pointer; font-family: 'Inter', sans-serif;
  transition: all var(--ease); width: 100%;
}
.form__submit:hover { background: var(--burgundy-dark); transform: translateY(-1px); }
.form__submit:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.form__success {
  display: none; margin-top: 1rem; padding: 1.25rem; border-radius: var(--r-md);
  background: rgba(46,125,50,0.06); color: #2E7D32; font-weight: 600;
  text-align: center; font-size: 0.92rem; border: 1px solid rgba(46,125,50,0.1);
  align-items: center; justify-content: center; gap: 0.5rem;
}
.form__success svg { margin: 0 auto 0.5rem; color: #2E7D32; }
.form__success.visible { display: block; }
.form__error-global {
  display: none; margin-top: 1rem; padding: 1.25rem; border-radius: var(--r-md);
  background: rgba(198,40,40,0.06); color: #c62828; font-weight: 600;
  text-align: center; font-size: 0.92rem; border: 1px solid rgba(198,40,40,0.1);
}
.form__error-global svg { margin: 0 auto 0.5rem; }
.form__error-global.visible { display: block; }

.contact-layout__sidebar { display: flex; flex-direction: column; gap: 1.25rem; }

.contact-info-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 1.5rem; border: 1px solid rgba(0,0,0,0.04);
  box-shadow: var(--shadow-card);
  opacity: 0; transform: translateY(20px); transition: var(--transition-fade);
}
.contact-info-card.show { opacity: 1; transform: translateY(0); }
.contact-info-card__icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--wine-glow); color: var(--burgundy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.75rem;
}
.contact-info-card__icon svg { width: 20px; height: 20px; }
.contact-info-card__title {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 1.05rem; color: var(--charcoal); margin-bottom: 0.4rem;
}
.contact-info-card__text {
  font-size: 0.88rem; color: var(--charcoal-light); line-height: 1.65; margin-bottom: 0.25rem;
}
.contact-info-card__text a { color: var(--burgundy); text-decoration: underline; cursor: pointer; }
.contact-info-card__text a:hover { text-decoration: underline; opacity: 0.75; }
.contact-info-card__text--sm {
  display: flex; align-items: center; font-size: 0.88rem; color: var(--charcoal-light); margin-bottom: 0.15rem;
}
.contact-info-card__text--sm a { color: var(--burgundy); }
.contact-info-card__text--note { font-size: 0.75rem; color: var(--charcoal-light); opacity: 0.6; }

.contact-social-links { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 0.5rem; }
.contact-social-link {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.55rem 0.85rem; border-radius: var(--r-sm);
  font-size: 0.88rem; font-weight: 500; color: var(--charcoal-light);
  transition: all var(--ease);
}
.contact-social-link:hover { background: var(--wine-glow); color: var(--burgundy); }
.contact-social-link svg { flex-shrink: 0; }

.contact-map {
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--cream-dark); box-shadow: var(--shadow-card);
  width: 100%;
}
.contact-map iframe { width: 100%; height: 350px; display: block; border: 0; }

.engage-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 900px; margin: 0 auto; }
@media (min-width: 640px) { .engage-grid { grid-template-columns: 1fr 1fr; } }

.engage-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 2.25rem 2rem; border: 1px solid rgba(0,0,0,0.04);
  box-shadow: var(--shadow-card); text-align: center;
  opacity: 0; transform: translateY(20px); transition: var(--transition-fade);
}
.engage-card.show { opacity: 1; transform: translateY(0); }
.engage-card__icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--wine-glow); color: var(--burgundy);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.engage-card__icon svg { width: 28px; height: 28px; }
.engage-card__icon--gold { background: rgba(201,168,76,0.12); color: var(--gold); }
.engage-card__title {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 1.5rem; color: var(--charcoal); margin-bottom: 0.75rem;
}
.engage-card__text {
  font-size: 0.92rem; color: var(--charcoal-light); line-height: 1.75;
  margin-bottom: 1.75rem;
}
.engage-card .cta { width: 100%; }

/* ===== GALLERY ===== */
.gallery { max-width: 1000px; margin: 0 auto; padding: 2rem 1.5rem 4rem; }
.gallery__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem;
}
@media (min-width: 640px) {
  .gallery__grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .gallery__grid .gallery__item:first-child { grid-column: 1 / 3; grid-row: 1 / 3; }
}
.gallery__item {
  border-radius: var(--r-md); overflow: hidden;
  transition: transform var(--ease); aspect-ratio: 4/3;
}
@media (max-width: 480px) { .gallery__item { aspect-ratio: 1/1; } }
.gallery__item:hover { transform: translateY(-4px); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; object-position: center center; transition: transform 0.5s var(--ease); }
.gallery__item:hover img { transform: scale(1.04); }

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 5rem 1.5rem;
  background: linear-gradient(155deg, #1a0a0c 0%, #3d1518 30%, var(--burgundy-dark) 60%, #5A2630 100%);
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner__inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.cta-banner__title {
  font-family: 'Playfair Display', serif; font-weight: 900;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--white); line-height: 1.15; margin-bottom: 0.75rem; letter-spacing: -0.01em;
  opacity: 0; transform: translateY(20px); transition: var(--transition-fade);
}
.cta-banner.show .cta-banner__title { opacity: 1; transform: translateY(0); }
.cta-banner__text {
  font-size: 1rem; color: rgba(255,255,255,0.65); line-height: 1.7;
  margin-bottom: 2rem;
  opacity: 0; transform: translateY(20px); transition: opacity 0.5s 0.1s ease, transform 0.5s 0.1s ease;
}
.cta-banner.show .cta-banner__text { opacity: 1; transform: translateY(0); }
.cta-banner__actions {
  display: flex; flex-direction: column; justify-content: center;
  gap: 1rem; max-width: 400px; margin: 0 auto;
  opacity: 0; transform: translateY(20px); transition: opacity 0.5s 0.2s ease, transform 0.5s 0.2s ease;
}
.cta-banner.show .cta-banner__actions { opacity: 1; transform: translateY(0); }
@media (min-width: 480px) {
  .cta-banner__actions { flex-direction: row; max-width: none; }
}

/* ===== COUNTERS ===== */
.counters {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
  max-width: 900px; margin: 0 auto;
}
@media (min-width: 640px) { .counters { grid-template-columns: repeat(3, 1fr); } }

.counter {
  text-align: center; padding: 1.75rem 1rem;
  opacity: 0; transform: translateY(20px); transition: var(--transition-fade);
}
.counter.show { opacity: 1; transform: translateY(0); }
.counter__number {
  font-family: 'Playfair Display', serif; font-weight: 900;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--burgundy); line-height: 1; margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--burgundy), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.counter__label {
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--charcoal); margin-bottom: 0.35rem;
}
.counter__desc {
  font-size: 0.8rem; color: var(--charcoal-light); line-height: 1.5;
}

/* ===== VALUES ===== */
.values-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
  max-width: 900px; margin: 0 auto;
}
@media (min-width: 540px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }

.value-card {
  background: var(--white); border-radius: var(--r-lg);
  padding: 2rem 1.5rem; text-align: center;
  border: 1px solid rgba(0,0,0,0.04); box-shadow: var(--shadow-card);
  opacity: 0; transform: translateY(20px); transition: var(--transition-fade);
}
.value-card.show { opacity: 1; transform: translateY(0); }
.value-card__icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--wine-glow); color: var(--burgundy);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.value-card__icon svg { width: 24px; height: 24px; }
.value-card__title {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 1.1rem; color: var(--charcoal); margin-bottom: 0.5rem;
}
.value-card__text {
  font-size: 0.88rem; color: var(--charcoal-light); line-height: 1.65;
}


/* ===== FOOTER ===== */
.footer {
  background: var(--charcoal); color: rgba(255,255,240,0.5);
  padding: 4rem 1.5rem 0;
}
.footer__inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,240,0.06);
}
@media (min-width: 900px) {
  .footer__inner { grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 2rem; }
}
.footer__col--brand { display: flex; flex-direction: column; align-items: flex-start; }
.footer__logo {
  width: 52px; height: 52px; border-radius: 50%; object-fit: cover;
  margin-bottom: 1rem; border: 2px solid rgba(255,255,240,0.08);
}
.footer__name {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 1.1rem; color: var(--cream); margin-bottom: 0.2rem;
}
.footer__tagline { font-size: 0.78rem; color: rgba(255,255,240,0.35); letter-spacing: 0.04em; }
.footer__heading {
  font-family: 'Inter', sans-serif; font-weight: 700; font-size: 0.68rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--white); margin-bottom: 1rem;
}
.footer__location {
  font-size: 0.9rem; font-weight: 600; color: var(--gold-light); line-height: 1.6;
}
.footer__sub { font-size: 0.82rem; color: rgba(255,255,240,0.35); margin-top: 0.35rem; }
.footer__list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer__list a {
  font-size: 0.88rem; color: rgba(255,255,240,0.5);
  transition: color var(--ease);
}
.footer__list a:hover { color: var(--gold-light); }
.footer__social { display: flex; gap: 1rem; }
.footer__social-link {
  font-size: 0.88rem; font-weight: 500; color: rgba(255,255,240,0.5);
  transition: color var(--ease);
}
.footer__social-link:hover { color: var(--gold-light); }
.footer__bottom { text-align: center; padding: 1.25rem 0; }
.footer__copy { font-size: 0.65rem; opacity: 0.35; }
.footer__map { max-width: 1100px; margin: 0 auto; padding: 0 0 2rem; }
.footer__map iframe { width: 100%; display: block; border-radius: var(--r-md); }

/* ===== MOBILE NAV ===== */
@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__social { display: none; }
  .nav__links {
    display: none; position: absolute; top: 56px; left: 0; right: 0;
    background: rgba(250,246,240,0.98); backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(44,26,6,0.06);
    flex-direction: column; padding: 0.75rem 1.5rem; gap: 0.25rem;
    box-shadow: 0 8px 32px rgba(44,26,6,0.08);
  }
  .nav__links.open { display: flex; }
  .nav__link { font-size: 1rem; padding: 0.75rem 1rem; border-radius: var(--r-sm); }
}

/* ===== PAGE HERO SHARED ===== */
.page-hero {
  position: relative; max-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; padding-top: 64px;
  aspect-ratio: 21/9;
  background: linear-gradient(155deg, #1a0a0c 0%, #3d1518 30%, var(--burgundy-dark) 60%, #5A2630 100%);
}
@media (max-width: 768px) { .page-hero { aspect-ratio: 16/9; } }
@media (max-width: 480px) { .page-hero { aspect-ratio: 4/3; } }

.page-hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(26,10,12,0.2) 0%, rgba(26,10,12,0.45) 45%, rgba(26,10,12,0.8) 100%);
}
.page-hero__content { position: relative; z-index: 2; padding: 3.5rem 1.5rem; max-width: 640px; }
.page-hero__over {
  font-weight: 600; font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-light); margin-bottom: 0.75rem;
  opacity: 0; animation: fadeUp 0.6s 0.15s ease forwards;
}
.page-hero__title {
  font-family: 'Playfair Display', serif; font-weight: 900;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white); margin-bottom: 0.5rem; letter-spacing: -0.01em;
  opacity: 0; animation: fadeUp 0.6s 0.25s ease forwards;
}
.page-hero__sub {
  font-size: 1rem; color: rgba(255,255,255,0.7); line-height: 1.7;
  opacity: 0; animation: fadeUp 0.6s 0.4s ease forwards;
}

/* ===== DECORATIVE DIVIDER ===== */
.divider {
  display: flex; align-items: center; justify-content: center;
  padding: 1rem 0; gap: 1rem;
}
.divider__line { flex: 1; height: 1px; background: var(--cream-dark); max-width: 80px; }
@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.divider__icon { color: var(--burgundy); opacity: 0.3; }
.divider__icon svg {
  width: 20px; height: 20px;
  animation: floatIcon 4s ease-in-out infinite;
}

/* ===== RESPONSIVE FINE-TUNING ===== */
@media (max-width: 400px) {
  .cta { font-size: 0.9rem; padding: 14px 24px; }
  .section { padding: 3.5rem 1.25rem; }
  .card__body { padding: 1.25rem; }
}

@media (min-width: 1024px) {
  .nav__inner { height: 72px; }
  .hero, .about-hero, .prog-hero, .contact-hero, .page-hero { padding-top: 64px; max-height: 80vh; }
  .nav__links { top: 64px; }
}