:root {
  color-scheme: light;
  --sky-50: #fafafa;
  --sky-100: #f3ebdf;
  --sky-200: #dcc7aa;
  --sky-300: #dcc7aa;
  --sky-500: #2c5e6d;
  --sky-700: #8b2635;
  --sky-900: #204954;
  --sand-100: #faf6ef;
  --sand-200: #f3ebdf;
  --ink: #2d2d2d;
  --muted: #5c5b59;
  --card: #ffffff;
  --border: rgba(45, 45, 45, 0.12);
  --shadow: 0 12px 36px rgba(45, 45, 45, 0.08);
  --container: min(1160px, calc(100% - 32px));
  --radius: 1rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--sky-50);
}

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

a {
  color: var(--sky-500);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--sky-700);
  color: #fff;
  text-decoration: none;
}

.skip-link:focus {
  top: 12px;
}

.shell {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid var(--border);
  background: rgba(250, 250, 250, 0.96);
  backdrop-filter: blur(16px);
}

.nav-shell,
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.nav-shell {
  width: var(--container);
  margin: 0 auto;
}

.header__inner {
  width: 100%;
}

.brand {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--sky-700);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
  min-width: 0;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  min-width: 48px;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #ffffff;
  color: var(--ink);
  font: 700 0.92rem/1 "Inter", system-ui, sans-serif;
  cursor: pointer;
  text-transform: uppercase;
  flex-shrink: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  display: block;
  padding: 0.4rem 0;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--sky-700);
}

.site-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--sky-700);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
}

.lang-switcher {
  display: flex;
  gap: 0.35rem;
}

.lang-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2rem;
  min-height: 2.2rem;
  padding: 0 0.5rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #ffffff;
  color: var(--sky-500);
  font-weight: 700;
  font-size: 0.8rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.lang-switcher a.is-current,
.lang-switcher a:hover {
  background: var(--sky-500);
  border-color: var(--sky-500);
  color: #fff;
}

.book-now-btn {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 2.4rem;
  padding: 0 1.2rem;
  border: 2px solid var(--sky-700);
  background: transparent;
  color: var(--sky-700);
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.1em;
  transition: all 0.2s ease;
}

.book-now-btn:hover {
  background: var(--sky-700);
  color: #ffffff;
}

.hero,
.page-hero {
  padding: 28px 0 30px;
}

.hero-card,
.page-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  background: #224654;
  box-shadow: var(--shadow);
}

.hero-card {
  min-height: 74vh;
  display: grid;
  align-items: end;
}

.page-hero-card {
  min-height: 42vh;
  display: grid;
  align-items: end;
}

.hero-card::after,
.page-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 43, 54, 0.82) 0%, rgba(20, 43, 54, 0.48) 48%, rgba(20, 43, 54, 0.2) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  animation: heroDrift 18s ease-out both;
}

.hero-content,
.page-hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  max-width: 54rem;
  padding: clamp(28px, 5vw, 58px);
  color: #fff;
}

.hero-content > *,
.page-hero-content > * {
  opacity: 0;
  transform: translateY(18px);
  animation: riseIn 700ms ease forwards;
}

.hero-content > *:nth-child(1),
.page-hero-content > *:nth-child(1) { animation-delay: 80ms; }
.hero-content > *:nth-child(2),
.page-hero-content > *:nth-child(2) { animation-delay: 150ms; }
.hero-content > *:nth-child(3),
.page-hero-content > *:nth-child(3) { animation-delay: 220ms; }
.hero-content > *:nth-child(4),
.page-hero-content > *:nth-child(4) { animation-delay: 290ms; }
.hero-content > *:nth-child(5),
.page-hero-content > *:nth-child(5) { animation-delay: 360ms; }
.hero-content > *:nth-child(6),
.page-hero-content > *:nth-child(6) { animation-delay: 430ms; }

.eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.06;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.7rem, 5vw, 4.9rem);
}

h2 {
  font-size: clamp(1.95rem, 3vw, 2.9rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0;
  line-height: 1.72;
}

.hero-content p,
.page-hero-content p {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.92);
}

.hero-credit {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.78);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.button {
  background: var(--sky-700);
  color: #fff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
}

.button-light {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(46, 112, 137, 0.08);
  color: var(--sky-900);
  font-weight: 800;
  text-decoration: none;
}

.section {
  padding: 28px 0;
}

.section-header {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
  max-width: 64rem;
}

.section-kicker {
  margin: 0;
  color: var(--sky-700);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-header p,
.lede,
.article-copy,
.card p,
.card li,
.footer-card p,
.map-note,
.map-copy {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-feature {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.card,
.map-panel,
.footer-card,
.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card,
.footer-card,
.contact-card {
  padding: 22px;
}

.card {
  display: grid;
  gap: 12px;
}

.route-card {
  grid-column: span 6;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.route-card:hover,
.preview-card:hover,
.feature-card:hover,
.association-card:hover {
  transform: translateY(-2px);
}

.route-card.is-contextual {
  border-color: rgba(46, 112, 137, 0.4);
  box-shadow: 0 28px 60px rgba(46, 112, 137, 0.14);
}

.route-card.is-contextual::before {
  content: "In evidenza";
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(46, 112, 137, 0.08);
  color: var(--sky-700);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-card[hidden] {
  display: none !important;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip,
.meta-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(111, 184, 209, 0.12);
  color: var(--sky-900);
  font-size: 0.84rem;
  font-weight: 800;
}

.preview-card,
.feature-card,
.association-card {
  min-height: 100%;
}

.preview-card a,
.feature-card a,
.association-card a,
.footer-card a,
.contact-card a {
  width: fit-content;
  color: var(--sky-900);
  font-weight: 800;
  text-decoration: none;
}

.facts-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.facts-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}

.facts-table th,
.facts-table td {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(34, 49, 58, 0.08);
  text-align: left;
  vertical-align: top;
}

.facts-table th {
  width: 42%;
  color: var(--ink);
  font-weight: 700;
}

.timeline,
.stats-list,
.plain-list {
  display: grid;
  gap: 12px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.timeline li,
.stats-list li,
.plain-list li {
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(233, 244, 249, 0.88);
}

.timeline strong,
.stats-list strong,
.plain-list strong {
  color: var(--ink);
}

.article-layout {
  display: grid;
  gap: 18px;
}

.article-copy {
  max-width: 74ch;
}

.article-copy p + p {
  margin-top: 14px;
}

.callout {
  padding: 18px 20px;
  border-left: 4px solid var(--sky-500);
  border-radius: 20px;
  background: rgba(220, 239, 247, 0.7);
}

.map-panel {
  padding: clamp(24px, 3vw, 40px);
  background: linear-gradient(180deg, #f8fdff 0%, #e9f5fa 100%);
}

.map-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.map-copy-wrap {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  max-width: 62ch;
}

.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 32rem;
}

.map-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(34, 49, 58, 0.08);
  font-size: 0.92rem;
  font-weight: 700;
}

.map-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.dot-crater {
  background: var(--sand-200);
  border: 1px solid rgba(34, 49, 58, 0.16);
}

.dot-route {
  background: var(--sky-700);
}

.dot-lake {
  background: var(--sky-500);
}

.map-frame {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(34, 49, 58, 0.1);
  background: #dfeff5;
}

#map {
  width: 100%;
  min-height: 420px;
  height: clamp(420px, 68vh, 760px);
}

.map-powered {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 650;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  line-height: 1.2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.map-note {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(34, 49, 58, 0.1);
  max-width: 68ch;
}

.poi-icon {
  width: 42px;
  height: 42px;
  border-radius: 50% 50% 50% 12%;
  transform: rotate(-45deg);
  display: grid;
  place-items: center;
  border: 2px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.poi-icon span {
  transform: rotate(45deg);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 800;
}

.poi-cathedral {
  background: linear-gradient(135deg, #5da9c6, #7bc4da);
}

.poi-rocca {
  background: linear-gradient(135deg, #2e7089, #5ba2bb);
}

.poi-francigena {
  background: linear-gradient(135deg, #5e7785, #89a9b8);
}

.popup h3 {
  margin: 0 0 6px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1rem;
}

.popup p {
  margin: 0;
  color: #445861;
  font-size: 0.92rem;
  line-height: 1.52;
}

.site-footer {
  padding: 34px 0 56px;
}

.footer-grid,
.footer__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.footer-card,
.contact-card {
  display: grid;
  gap: 14px;
}

.footer-list {
  display: grid;
  gap: 10px;
}

.footer__title {
  margin: 0;
}

.footer-note {
  font-size: 0.88rem;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1.01);
  }
}

:focus-visible {
  outline: 2px solid var(--sky-700);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .grid-3,
  .facts-layout,
  .footer-grid,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .route-card {
    grid-column: span 12;
  }
}

@media (max-width: 63.99rem) {
  .nav-shell,
  .header__inner {
    flex-wrap: wrap;
    gap: 12px 16px;
  }

  .brand {
    flex: 1 1 auto;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: 0;
    order: 3;
  }

  .header__actions {
    order: 2;
    margin-left: auto;
  }

  .site-nav {
    width: 100%;
    display: grid;
    gap: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    order: 4;
    flex-basis: 100%;
    transition: max-height 220ms ease, opacity 220ms ease;
  }

  .site-header.is-open .site-nav {
    max-height: 24rem;
    opacity: 1;
    pointer-events: auto;
    padding-bottom: 6px;
  }

  .site-nav a {
    padding: 12px 6px;
    border-top: 1px solid rgba(34, 49, 58, 0.08);
  }

  .lang-switcher {
    width: auto;
    margin-left: 0;
  }

  .book-now-btn {
    display: none;
  }

  .hero-card {
    min-height: 68vh;
  }

  .page-hero-card {
    min-height: 34vh;
  }

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

  #map {
    min-height: 360px;
    height: 70vh;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media,
  .hero-content > *,
  .page-hero-content > *,
  .js [data-reveal] {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ─── Premium Lake & Stone Redesign Additions ─── */

/* Floating Hero Card */
.page-hero__panel--home {
  background: var(--hero-bg-image, url("/media/hero-rocca-dei-papi-1600.jpg")) center / cover no-repeat;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.page-hero__panel--home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.page-hero__content--floating {
  position: relative;
  z-index: 2;
  background: #ffffff;
  color: var(--ink);
  max-width: 540px;
  padding: 3rem 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 24px 64px rgba(45, 45, 45, 0.15);
  text-align: center;
  margin: 1.5rem;
}

.page-hero__content--floating h1 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--sky-700);
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.page-hero__content--floating p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

.page-hero__content--floating .eyebrow {
  color: var(--sky-500);
  font-weight: 700;
  display: block;
}

.button--hero {
  margin-top: 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sky-700);
  color: #ffffff;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.8rem 2.2rem;
  text-decoration: none;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}

.button--hero:hover {
  background: var(--sky-500);
  color: #ffffff;
}

/* Two-column Hub Layout */
.hub-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 48rem) {
  .hub-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(18rem, 1fr);
    align-items: start;
  }
}

.hub-main .eyebrow {
  color: var(--sky-700);
  margin-bottom: 0.5rem;
  display: inline-block;
}

.hub-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--ink);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.hub-description {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.tag-pills {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-pill {
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffff;
  color: var(--sky-500);
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

/* Weather Premium Widget */
.weather-widget-premium {
  background: var(--sky-500);
  color: #ffffff;
  padding: 2rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}

.weather-widget-premium h3 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sky-200);
  margin-bottom: 1rem;
}

.weather-current {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.weather-current .temp {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.weather-current .cond {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.9;
}

.weather-advice {
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.9;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
}

/* Essential Data Widget */
.essential-data-widget {
  background: var(--sand-100);
  border: 1px solid var(--sky-200);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.essential-data-widget h3 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sky-700);
  margin-bottom: 1rem;
}

.essential-table {
  width: 100%;
  border-collapse: collapse;
}

.essential-table tr {
  border-bottom: 1px solid rgba(45, 45, 45, 0.08);
}

.essential-table tr:last-child {
  border-bottom: none;
}

.essential-table th,
.essential-table td {
  padding: 0.75rem 0;
  text-align: left;
  font-size: 0.95rem;
}

.essential-table th {
  color: var(--sky-700);
  font-weight: 700;
  width: 40%;
}

.essential-table td {
  color: var(--ink);
  font-weight: 600;
}

/* Explore Grid */
.explore-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 48rem) {
  .explore-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.explore-card {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--ink) var(--bg-img) center / cover no-repeat;
  text-decoration: none;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.explore-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
  transition: background 0.3s ease;
}

.explore-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  color: #ffffff;
  z-index: 2;
}

.explore-card__icon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky-200);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.explore-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.explore-card p {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.4;
  margin: 0;
  color: #e5e5e5;
}

.explore-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
}

.explore-card:hover .explore-card__overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(139, 38, 53, 0.85) 100%);
}

.explore-card:hover .explore-card__icon {
  background: #ffffff;
  color: var(--sky-700);
}

/* Wineries Spoke Page Components */
.spoke-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 48rem) {
  .spoke-grid {
    grid-template-columns: minmax(0, 1.4fr) minmax(18rem, 1fr);
    align-items: start;
  }
}

.spoke-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--ink);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

.spoke-description {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.winery-list {
  display: grid;
  gap: 1.5rem;
}

.winery-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.winery-card:hover {
  transform: translateY(-2px);
  border-color: var(--sky-200);
}

.winery-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.4rem;
  color: var(--sky-700);
  margin-bottom: 0.75rem;
}

.winery-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.winery-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--sky-500);
  background: rgba(44, 94, 109, 0.08);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin-right: 0.4rem;
  letter-spacing: 0.05em;
}

/* Fast Facts Sidebar Widget */
.fast-facts-widget {
  background: var(--sand-100);
  border: 1px solid var(--sky-200);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.fast-facts-widget h3 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--sky-700);
  margin-bottom: 1.25rem;
}

.fast-facts-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.fast-facts-list li {
  display: flex;
  flex-direction: column;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(45, 45, 45, 0.08);
}

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

.fast-facts-list li strong {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--sky-700);
  margin-bottom: 0.25rem;
  letter-spacing: 0.05em;
}

.fast-facts-list li span {
  font-weight: 600;
  color: var(--ink);
}

.download-guide-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sky-700);
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.8rem 1.5rem;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: background-color 0.2s ease;
  width: 100%;
  text-align: center;
}

.download-guide-btn:hover {
  background: var(--sky-500);
}

/* Vintage Car Card */
.vintage-car-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--ink) center / cover no-repeat;
  aspect-ratio: 4 / 3;
  color: #ffffff;
  box-shadow: var(--shadow);
}

.vintage-car-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}

.vintage-car-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 2rem;
  z-index: 2;
}

.vintage-car-card__content h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.vintage-car-card__content p {
  font-size: 0.95rem;
  opacity: 0.85;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: #e5e5e5;
}

.vintage-car-card__link {
  color: var(--sky-200);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  display: inline-block;
  transition: color 0.2s ease;
}

.vintage-car-card__link:hover {
  color: #ffffff;
}
