:root {
  color-scheme: light;
  --rosso: #8b2635;
  --deep-burgundy: #6c0c20;
  --off-white: #fbfaf7;
  --on-surface: #232323;
  --antracite: #232323;
  --blu-lago: #1e5261;
  --blu-lago-700: #003b48;
  --tufo: #d8c3a7;
  --tufo-50: #faf4e6;
  --tufo-100: #f5dfc1;
  --surface: #ffffff;
  --surface-strong: #ffffff;
  --surface-low: #f8f6f3;
  --surface-container: #f1ede8;
  --surface-high: #eae5df;
  --surface-highest: #e3dcd4;
  --on-surface-variant: #564242;
  --border: rgba(45, 45, 45, 0.08);
  --border-strong: rgba(30, 82, 97, 0.16);
  --text-soft: #63615e;
  --shadow: 0 12px 40px rgba(108, 12, 32, 0.05), 0 1px 3px rgba(0, 0, 0, 0.01);
  --radius-xl: 0.75rem;
  --radius-lg: 0.5rem;
  --radius-md: 0.25rem;
  --container: min(72rem, calc(100% - 1.5rem));
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--antracite);
  line-height: 1.6;
  background: var(--off-white);
  overflow-wrap: break-word;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: var(--blu-lago);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}
a:hover {
  color: var(--rosso);
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(30, 82, 97, 0.45);
  outline-offset: 3px;
}
h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.02em;
}
p,
ul,
ol,
dl {
  margin: 0;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: absolute;
  left: 1rem;
  top: -6rem;
  z-index: 999;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  background: var(--blu-lago);
  color: #fff;
  text-decoration: none;
  line-height: 1.2;
}
.skip-link:focus {
  top: 1rem;
}
.container {
  width: var(--container);
  margin-inline: auto;
}
.nav-shell {
  width: var(--container);
  margin-inline: auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(250, 250, 250, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 28px rgba(45, 45, 45, 0.04);
}
.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(139, 38, 53, 0) 0%, rgba(139, 38, 53, 0.2) 48%, rgba(30, 82, 97, 0.14) 100%);
  pointer-events: none;
}
.site-header.is-open {
  box-shadow: 0 18px 38px rgba(45, 45, 45, 0.08);
}
.header__inner,
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.5rem;
  padding-block: 0.75rem;
}
.brand {
  hyphens: none;
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--rosso);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
  min-width: 0;
}
.nav-toggle {
  display: none;
  min-height: 2.5rem;
  padding: 0 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: #ffffff;
  color: var(--antracite);
  font: 700 0.9rem/1 var(--font-body);
  cursor: pointer;
  text-transform: uppercase;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.nav-toggle::before {
  content: "";
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 -0.32rem 0 currentColor, 0 0.32rem 0 currentColor;
}
.nav-toggle[aria-expanded="true"] {
  background: var(--blu-lago);
  color: #ffffff;
  border-color: var(--blu-lago);
}
.site-nav {
  hyphens: none;
  display: block;
}
.site-nav__clusters,
.site-nav > ul,
.tag-list,
.hero__highlights,
.plain-list,
.breadcrumb,
.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-nav > ul {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.site-nav__clusters {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.site-nav__item {
  position: relative;
}
.site-nav a {
  display: block;
  padding: 0.4rem 0;
  color: var(--on-surface-variant);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  transition: color 0.2s ease;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--rosso);
}
.site-nav--enhanced .site-nav__home-link,
.site-nav--enhanced .site-nav__trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--on-surface-variant);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.site-nav--enhanced .site-nav__trigger {
  gap: 0.5rem;
}
.site-nav--enhanced .site-nav__trigger::after {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-0.08rem);
  transition: transform 0.2s ease;
}
.site-nav--enhanced .site-nav__item.is-current > .site-nav__trigger::after,
.site-nav--enhanced .site-nav__trigger[aria-expanded="true"]::after {
  transform: rotate(-135deg) translateY(-0.02rem);
}
.site-nav--enhanced .site-nav__item.is-current > .site-nav__home-link,
.site-nav--enhanced .site-nav__item.is-current > .site-nav__trigger,
.site-nav--enhanced .site-nav__home-link:hover,
.site-nav--enhanced .site-nav__trigger:hover,
.site-nav--enhanced .site-nav__trigger[aria-expanded="true"] {
  color: var(--rosso);
  background: rgba(139, 38, 53, 0.08);
  border-color: rgba(139, 38, 53, 0.18);
  box-shadow: inset 0 0 0 1px rgba(139, 38, 53, 0.04);
}
.site-nav--enhanced .site-nav__home-link::after,
.site-nav--enhanced .site-nav__trigger::before,
.site-nav--enhanced .site-nav__trigger::after {
  flex-shrink: 0;
}
.site-nav--enhanced .site-nav__panel {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  z-index: 80;
  width: min(28rem, calc(100vw - 2rem));
  padding: 1rem;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 246, 239, 0.98) 100%);
  box-shadow: 0 18px 40px rgba(45, 45, 45, 0.12);
}
.site-nav--enhanced .site-nav__panel[hidden] {
  display: none;
}
.site-nav__panel-title {
  margin: 0 0 0.7rem;
  color: var(--rosso);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.site-nav__panel-list {
  display: grid;
  gap: 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav__panel-list a {
  display: grid;
  gap: 0.14rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  text-transform: none;
  letter-spacing: normal;
  font-size: 0.95rem;
}
.site-nav__panel-list a:hover,
.site-nav__panel-list a[aria-current="page"] {
  border-color: rgba(30, 82, 97, 0.22);
  background: rgba(30, 82, 97, 0.08);
}
.site-nav__panel-list a::after {
  display: none;
}
.site-nav__panel-label {
  color: var(--antracite);
  font-weight: 700;
}
.site-nav__panel-note {
  color: var(--text-soft);
  font-size: 0.82rem;
  line-height: 1.45;
}
.site-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--rosso);
  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: 999px;
  background: #ffffff;
  color: var(--blu-lago);
  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(--blu-lago);
  border-color: var(--blu-lago);
  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(--rosso);
  background: transparent;
  color: var(--rosso);
  font-family: var(--font-body);
  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(--rosso);
  color: #ffffff;
}
.hero,
.detail-hero {
  padding: 1.25rem 0 0;
}
.hero__grid,
.detail-hero__grid,
.knowledge-grid,
.spoke-grid,
.detail-grid,
.section-grid {
  display: grid;
  gap: 1rem;
}
.hero__panel,
.detail-hero__panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 35%),
    linear-gradient(135deg, rgba(139, 38, 53, 0.92) 0%, rgba(45, 45, 45, 0.38) 48%, rgba(30, 82, 97, 0.9) 100%);
  box-shadow: var(--shadow);
}
.hero__media,
.detail-hero__media {
  min-height: 19rem;
}
.hero__media img,
.detail-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94);
}
.detail-hero__media img {
  object-position: center 40%;
  filter: saturate(1) contrast(1.02);
}
.detail-hero__media--poster {
  min-height: 0;
  aspect-ratio: 7 / 2;
}
.detail-hero__media--poster img {
  object-position: center 4%;
}
.hero__content,
.detail-hero__content {
  position: relative;
  padding: 1.5rem;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(14, 17, 22, 0.08) 0%, rgba(14, 17, 22, 0.62) 100%),
    linear-gradient(135deg, rgba(139, 38, 53, 0.14) 0%, rgba(30, 82, 97, 0.16) 100%);
}
.hero__content > * + *,
.detail-hero__content > * + *,
.card > * + *,
.template-note > * + *,
.cta-panel > * + *,
.section__head > * + * {
  margin-top: 0.85rem;
}
.eyebrow {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow--dark {
  color: var(--rosso);
}
.eyebrow--light {
  color: rgba(255, 255, 255, 0.82);
}
.hero h1 {
  font-size: clamp(2.3rem, 7vw, 4.3rem);
}
.detail-hero h1 {
  font-size: clamp(2rem, 6vw, 3.4rem);
}
.hero__highlights {
  display: grid;
  gap: 0.5rem;
  padding-top: 0.25rem;
}
.hero__highlights li {
  position: relative;
  padding-left: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
}
.hero__highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--tufo);
}
.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  background: var(--deep-burgundy);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}
.button:hover {
  transform: translateY(-1px);
  background: var(--rosso);
  color: #fff;
}
.button--primary {
  background: var(--deep-burgundy);
  color: #fff;
}
.button--primary:hover {
  background: var(--rosso);
}
.button--secondary {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.button--ghost {
  background: rgba(30, 82, 97, 0.08);
  border-color: rgba(30, 82, 97, 0.16);
  color: var(--blu-lago);
}
.weather-widget {
  background: linear-gradient(180deg, var(--surface-strong) 0%, var(--tufo-50) 100%);
}
.weather-widget__intro {
  color: var(--text-soft);
}
.weather-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}
.weather-stats div {
  padding: 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.66);
}
.weather-stats dt {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rosso);
}
.weather-stats dd {
  margin-top: 0.35rem;
  font-weight: 700;
}
.weather-widget__note {
  padding: 1rem;
  border-left: 4px solid var(--rosso);
  border-radius: var(--radius-md);
  background: rgba(30, 82, 97, 0.08);
}
.section {
  padding: 3.5rem 0;
}
.section--alt {
  background: rgba(255, 255, 255, 0.38);
}
.section__head {
  max-width: 48rem;
  margin-bottom: 1.5rem;
}
.card,
.cta-panel,
.template-note {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}
.card {
  padding: 1.25rem;
}
.card__eyebrow {
  color: var(--rosso);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.data-table {
  width: 100%;
  border-collapse: collapse;
}
.data-table th,
.data-table td {
  padding: 0.8rem 1.25rem 0.8rem 0;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}
.data-table th {
  width: 44%;
  color: var(--antracite);
  font-weight: 700;
}
.data-table tr:last-child th,
.data-table tr:last-child td {
  border-bottom: 0;
}
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
  padding: 0.4rem 1.1rem;
}
.data-table tr.is-past {
  opacity: 0.7;
}
@media (max-width: 47.9375rem) {
  .table-wrap {
    padding: 0;
    border: none;
    box-shadow: none;
    background: none;
  }
  .data-table thead {
    display: none;
  }
  .data-table,
  .data-table tbody,
  .data-table tr,
  .data-table td {
    display: block;
    width: 100%;
  }
  .data-table tr {
    margin-bottom: 1rem;
    padding: 1rem 1.1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface-strong);
    box-shadow: var(--shadow);
  }
  .data-table tr:last-child {
    margin-bottom: 0;
  }
  .data-table td {
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--border);
  }
  .data-table td:last-child {
    border-bottom: 0;
  }
  .data-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 0.2rem;
    color: var(--rosso);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
}
.plain-list {
  display: grid;
  gap: 0.7rem;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem 2.25rem;
}
.related-col h3 {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
}
.related-col .plain-list {
  gap: 0.55rem;
}
.plain-list li {
  padding-left: 1rem;
  position: relative;
}
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--blu-lago);
}
.spoke-card {
  display: grid;
  gap: 0.9rem;
}
.spoke-card.is-priority {
  border-color: rgba(139, 38, 53, 0.3);
  box-shadow: 0 0 0 3px rgba(139, 38, 53, 0.08), var(--shadow);
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.tag-list li {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(30, 82, 97, 0.08);
  color: var(--blu-lago);
  font-size: 0.85rem;
  font-weight: 700;
}
.cta-panel {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  align-items: center;
}
.template-note {
  padding: 1rem 1.1rem;
  background: linear-gradient(180deg, #fffaf6 0%, #fff1e8 100%);
}
.info-box {
  padding: 1.5rem;
  border: none;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--blu-lago-700) 0%, var(--blu-lago) 100%);
  color: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}
.info-box h2,
.info-box h3 {
  color: #ffffff !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 0.5rem;
  margin-bottom: 0.75rem;
}
.info-box strong {
  color: #ffffff;
}
.info-box a {
  color: var(--tufo-100);
}
.info-box a:hover {
  color: #ffffff;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.8rem;
  font-size: 0.94rem;
  color: var(--text-soft);
}
.breadcrumb li + li::before {
  content: "/";
  margin-right: 0.55rem;
}
.detail-hero__content .breadcrumb {
  color: rgba(255, 255, 255, 0.8);
}
.detail-hero__content .breadcrumb a {
  color: inherit;
  text-decoration: none;
}
.detail-hero__content .breadcrumb a:hover {
  color: #ffffff;
}
.detail-hero__content .breadcrumb li:last-child,
.detail-hero__content .breadcrumb li:last-child a {
  color: #ffffff;
}
.detail-hero__content .breadcrumb li + li::before {
  color: rgba(255, 255, 255, 0.58);
}
.summary-list {
  display: grid;
  gap: 0.8rem;
}
.summary-list div {
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  background: var(--tufo-50);
  border: 1px solid rgba(139, 38, 53, 0.08);
}
.summary-list dt {
  color: var(--rosso);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.summary-list dd {
  margin-top: 0.35rem;
  font-weight: 700;
}
.content-card h2 {
  font-size: clamp(1.6rem, 4vw, 2.3rem);
}
.content-card h3 {
  font-size: 1.3rem;
}
.content-stack {
  display: grid;
  gap: 1rem;
}
.content-stack .media-card-grid {
  margin: 1.5rem 0;
}
.content-stack section {
  display: grid;
  gap: 0.75rem;
}
.map-copy,
.map-note {
  color: var(--text-soft);
}
.map-panel {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #f8fdff 0%, #e9f5fa 100%);
  box-shadow: var(--shadow);
}
.map-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.5rem;
}
.map-copy-wrap {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.75rem;
  max-width: 62ch;
}
.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 32rem;
}
.map-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(45, 45, 45, 0.08);
  font-size: 0.92rem;
  font-weight: 700;
}
.map-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 999px;
}
.dot-crater {
  background: var(--tufo);
  border: 1px solid rgba(45, 45, 45, 0.16);
}
.dot-route {
  background: var(--rosso);
}
.dot-lake {
  background: var(--blu-lago);
}
.map-frame {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(45, 45, 45, 0.1);
  background: #dfeff5;
}
#map {
  width: 100%;
  min-height: 26rem;
  height: clamp(26rem, 68vh, 47.5rem);
}
.map-powered {
  position: absolute;
  right: 0.625rem;
  bottom: 0.625rem;
  z-index: 650;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--antracite);
  font-size: 0.75rem;
  line-height: 1.2;
  box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.08);
}
.map-note {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(45, 45, 45, 0.1);
  max-width: 68ch;
}
.poi-icon {
  width: 2.625rem;
  height: 2.625rem;
  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 0.75rem 1.5rem 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 0.35rem;
  font-family: var(--font-display);
  font-size: 1rem;
}
.popup p {
  margin: 0;
  color: #445861;
  font-size: 0.92rem;
  line-height: 1.52;
}
.site-footer {
  margin-top: 2.5rem;
  background: var(--antracite);
  color: rgba(255, 255, 255, 0.86);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.site-footer a {
  color: rgba(255, 255, 255, 0.92);
}
.footer__inner,
.site-footer__grid {
  display: grid;
  gap: 1rem;
  padding: 2rem 0;
  align-items: start;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
}
.footer__links,
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.site-footer__grid {
  gap: 1.4rem;
  padding-bottom: 1.35rem;
}
.site-footer__brand,
.site-footer__section {
  display: grid;
  gap: 0.75rem;
}
.site-footer__title,
.site-footer__heading {
  margin: 0;
  color: #ffffff;
}
.site-footer__heading {
  font-size: 1.15rem;
}
.site-footer__brand p,
.site-footer__section p {
  color: rgba(255, 255, 255, 0.78);
}
.site-footer__disclaimer {
  font-size: 0.95rem;
}
.site-footer__links {
  display: grid;
  gap: 0.65rem;
  padding: 0;
  margin: 0;
}
.site-footer__links li {
  list-style: none;
}
.site-footer__links a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  text-decoration: none;
  line-height: 1.45;
}
.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
}
.site-footer__meta {
  padding: 0 0 2.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.site-footer__meta p {
  margin: 0;
  padding-top: 1rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.65;
}
@media (min-width: 48rem) {
  .nav-toggle {
    display: none;
  }
  .site-nav {
  hyphens: none;
    display: block;
    width: auto;
    margin-left: auto;
  }
  .site-nav__clusters,
  .site-nav > ul {
    display: flex;
    align-items: center;
    gap: 0.9rem;
  }
  .lang-switcher {
    margin-left: 0;
  }
  .hero__grid {
    grid-template-columns: minmax(0, 2fr) minmax(18rem, 1fr);
    align-items: start;
  }
  .hero__panel {
    min-height: 36rem;
  }
  .hero__media {
    min-height: 100%;
  }
  .hero__content {
    position: absolute;
    inset: auto auto 0 0;
    max-width: 42rem;
    padding: 2rem;
  }
  .knowledge-grid,
  .detail-grid,
  .section-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .spoke-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .cta-panel {
    grid-template-columns: minmax(0, 1.8fr) auto;
  }
  .footer__inner {
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    align-items: start;
  }
}
@media (min-width: 64rem) {
  .site-nav > a {
    display: inline-block;
    margin-left: 0.9rem;
  }
  .site-nav > a:first-child {
    margin-left: 0;
  }
}
@media (max-width: 63.99rem) {
  body.nav-open {
    overflow: hidden;
  }
  .header__inner,
  .nav-shell {
    flex-wrap: wrap;
    gap: 0.8rem 1rem;
  }
  .brand {
  hyphens: none;
    flex: 1 1 auto;
  }
  .nav-toggle {
    display: inline-flex;
    order: 3;
  }
  .header__actions {
    order: 2;
    margin-left: auto;
  }
  .lang-switcher {
    order: 2;
    margin-left: 0;
  }
  .site-nav {
  hyphens: none;
    display: none;
    width: 100%;
    order: 4;
  }
  .site-nav.is-open {
    display: block;
  }
  .site-nav__clusters,
  .site-nav > ul {
    display: grid;
    gap: 0;
    padding: 0.65rem 1rem 0.8rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 246, 239, 0.98));
    box-shadow: 0 20px 40px rgba(45, 45, 45, 0.12);
  }
  .site-nav__item + .site-nav__item,
  .site-nav li + li {
    border-top: 1px solid var(--border);
  }
  .site-nav__clusters {
    align-items: stretch;
  }
  .site-nav--enhanced .site-nav__item {
    border-top: 1px solid var(--border);
  }
  .site-nav--enhanced .site-nav__item:first-child {
    border-top: 0;
  }
  .site-nav--enhanced .site-nav__home-link,
  .site-nav--enhanced .site-nav__trigger {
    width: 100%;
    justify-content: space-between;
    min-height: 3.1rem;
    padding: 0.95rem 0.2rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .site-nav--enhanced .site-nav__item.is-current > .site-nav__home-link,
  .site-nav--enhanced .site-nav__item.is-current > .site-nav__trigger,
  .site-nav--enhanced .site-nav__trigger[aria-expanded="true"] {
    background: transparent;
    border-color: transparent;
    box-shadow: none;
  }
  .site-nav--enhanced .site-nav__panel {
    position: static;
    width: 100%;
    margin-bottom: 0.55rem;
    padding: 0.15rem 0 0.75rem;
    border: 0;
    border-top: 1px solid var(--border);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .site-nav__panel-title {
    margin: 0.7rem 0 0.55rem;
    font-size: 0.72rem;
  }
  .site-nav__panel-list a {
    padding: 0.8rem 0.55rem;
    background: transparent;
    border: 0;
    border-bottom: 1px dashed rgba(45, 45, 45, 0.12);
  }
  .site-nav__panel-list li:last-child a {
    border-bottom: 0;
  }
  .site-nav__panel-list a:hover,
  .site-nav__panel-list a[aria-current="page"] {
    background: rgba(30, 82, 97, 0.06);
    border-radius: var(--radius-md);
    border-bottom-color: transparent;
  }
  .site-nav a {
    padding: 0.9rem 0.15rem;
  }
  .site-nav a::after {
    left: 0.15rem;
    right: 0.15rem;
  }
  .site-footer__grid {
    gap: 1.1rem;
    padding-top: 1.75rem;
  }
  .site-footer__section {
    padding-top: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .site-footer__section:first-of-type {
    padding-top: 0;
    border-top: 0;
  }
  .site-nav.is-open > a {
    padding: 0.9rem 1rem;
    border: 1px solid var(--border);
    border-bottom: 0;
    background: rgba(255, 255, 255, 0.98);
  }
  .site-nav.is-open > a:first-child {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  .site-nav.is-open > a:last-child {
    border-bottom: 1px solid var(--border);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }
}
.page-hero {
  padding: 1.5rem 0 1rem;
}
.page-hero__panel {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(139, 38, 53, 0.92), rgba(30, 82, 97, 0.9)),
    var(--surface-strong);
  color: #fff;
  box-shadow: var(--shadow);
}
.page-hero__panel--home {
  background:
    linear-gradient(135deg, rgba(139, 38, 53, 0.7), rgba(30, 82, 97, 0.74)),
    #224654;
  border-radius: 0;
  border: none;
}
.page-hero__content {
  padding: 1.5rem;
}
.page-hero__content > * + *,
.page-hero p + p {
  margin-top: 0.85rem;
}
.page-hero h1 {
  font-size: clamp(2rem, 8vw, 4rem);
  margin-top: 0.75rem;
}
@media (min-width: 48rem) {
  .page-hero {
    padding-top: 2rem;
  }
  .page-hero__content {
    padding: 2.25rem;
    max-width: 48rem;
  }
}
.nav-grid {
  display: grid;
  gap: 1rem;
}
.nav-card > * + * {
  margin-top: 0.85rem;
}
.nav-card__eyebrow {
  color: var(--rosso);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.nav-card__link {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  text-decoration: none;
  color: var(--blu-lago);
}
.nav-card__link:hover {
  color: var(--rosso);
}
@media (min-width: 48rem) {
  .nav-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.dynamic-panel {
  border-left: 4px solid var(--rosso);
  background: linear-gradient(180deg, var(--surface-strong) 0%, var(--tufo-50) 100%);
  color: var(--antracite);
  padding: 1.25rem;
  border-radius: var(--radius-md);
}
.dynamic-panel h3 {
  color: var(--rosso);
}
.dynamic-panel > * + * {
  margin-top: 0.85rem;
}
.association-stack {
  display: grid;
  gap: 1.25rem;
}
.association-entry {
  display: grid;
  gap: 1rem;
}
.association-entry__media {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--tufo-50) 0%, var(--surface-strong) 100%);
}
.association-entry__media img {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 0.2rem);
}
.association-entry__body {
  display: grid;
  gap: 0.9rem;
}
.association-entry__text > * + * {
  margin-top: 0.85rem;
}
@media (min-width: 48rem) {
  .association-entry {
    grid-template-columns: minmax(13rem, 18rem) minmax(0, 1fr);
    align-items: start;
  }
}
.footer__title {
  color: #fff;
}
.contact-card > * + * {
  margin-top: 0.85rem;
}
.footer-list {
  display: grid;
  gap: 0.5rem;
}
.section__head > p {
  color: var(--text-soft);
}
.grid--2 {
  display: grid;
  gap: 1rem;
}
@media (min-width: 48rem) {
  .grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.page-hero__panel--home {
  background: #224654;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.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(--antracite);
  max-width: 540px;
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(45, 45, 45, 0.15);
  text-align: center;
  margin: 1.5rem;
}
.page-hero__content--floating h1 {
  font-family: var(--font-display);
  color: var(--rosso);
  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(--text-soft);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}
.page-hero__content--floating .eyebrow {
  color: var(--blu-lago);
  font-weight: 700;
  display: block;
}
.button--hero {
  margin-top: 1.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--rosso);
  color: #ffffff;
  font-family: var(--font-body);
  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(--blu-lago);
  color: #ffffff;
}
@media (max-width: 47.99rem) {
  .header__inner,
  .nav-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.7rem 0.5rem;
  }
  .brand {
  hyphens: none;
    grid-column: 1;
    grid-row: 1;
    font-size: clamp(1.2rem, 5.7vw, 1.45rem);
    letter-spacing: 0.035em;
    white-space: nowrap;
  }
  .header__actions {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    margin-left: 0;
  }
  .nav-toggle {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: start;
    order: initial;
  }
  .site-nav {
  hyphens: none;
    grid-column: 1 / -1;
    grid-row: 3;
    order: initial;
  }
  .lang-switcher {
    gap: 0.25rem;
  }
  .lang-switcher a {
    min-width: 2rem;
    padding-inline: 0.35rem;
  }
  .site-nav__panel-note {
    font-size: 0.8rem;
  }
  .hero__grid,
  .detail-hero__grid,
  .hero__panel,
  .detail-hero__panel,
  .hero__content,
  .detail-hero__content {
    min-width: 0;
  }
  .page-hero {
    padding: 1rem 0 0.75rem;
  }
  .page-hero__panel--home {
    min-height: 420px;
    border-radius: 0;
    border: none;
    margin: 0;
  }
  .page-hero__content--floating {
    width: calc(100% - 1.7rem);
    max-width: none;
    min-width: 0;
    padding: 1.55rem 1.2rem;
    margin: 0.85rem;
  }
  .page-hero__content--floating h1 {
    font-size: clamp(1.85rem, 9vw, 2.35rem);
    overflow-wrap: anywhere;
  }
  .page-hero__content--floating p {
    font-size: 1rem;
  }
  .home-en .detail-hero {
    padding-top: 1rem;
  }
  .home-en .detail-hero__media {
    min-height: 15rem;
  }
  .home-en .detail-hero__content {
    padding: 1.2rem;
  }
  .home-en .detail-hero h1 {
    font-size: clamp(1.85rem, 8vw, 2.3rem);
  }
}
.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(--rosso);
  margin-bottom: 0.5rem;
  display: inline-block;
}
.hub-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--antracite);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.hub-description {
  color: var(--text-soft);
  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(--blu-lago);
  font-family: var(--font-body);
  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-widget-premium {
  background: linear-gradient(160deg, var(--blu-lago-700) 0%, var(--blu-lago) 100%);
  color: #ffffff;
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}
.weather-widget-premium h3 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--tufo);
  margin-bottom: 1rem;
}
.weather-current {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
.weather-current .temp {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}
.weather-current .cond {
  font-family: var(--font-body);
  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 {
  background: var(--tufo-50);
  border: 1px solid var(--tufo);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.essential-data-widget h3 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--rosso);
  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(--rosso);
  font-weight: 700;
  width: 40%;
}
.essential-table td {
  color: var(--antracite);
  font-weight: 600;
}
.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: var(--radius-lg);
  overflow: hidden;
  background: var(--antracite) 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(--tufo);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}
.explore-card h3 {
  font-family: var(--font-display);
  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(--rosso);
}
.media-card-grid {
  display: grid;
  gap: 1.25rem;
}
.media-card {
  overflow: hidden;
  padding: 0;
}
.media-card__thumb {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--tufo-50);
}
.media-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-feature__media {
  overflow: hidden;
  padding: 0;
  aspect-ratio: 4 / 3;
}
.event-feature__media picture,
.event-feature__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.media-card__body {
  display: grid;
  gap: 0.75rem;
  padding: 1rem 1.05rem 1.1rem;
  border-top: 1px solid var(--border);
}
.media-card__body p {
  color: var(--text-soft);
}
.media-card__body a {
  color: var(--blu-lago);
  font-weight: 700;
}
.meta-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 1.9rem;
  padding: 0 0.7rem;
  border-radius: 999px;
  background: rgba(30, 82, 97, 0.08);
  color: var(--blu-lago);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hub-links {
  display: grid;
  gap: 1rem;
}
.hub-links a {
  font-weight: 700;
}
.hub-links p {
  color: var(--text-soft);
}
.section-split {
  display: grid;
  gap: 1rem;
}
.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;
  }
  .media-card-grid--2,
  .section-split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .media-card-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.spoke-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--antracite);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.spoke-description {
  color: var(--text-soft);
  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: var(--radius-lg);
  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(--tufo);
}
.winery-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--rosso);
  margin-bottom: 0.75rem;
}
.winery-card p {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.winery-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--blu-lago);
  background: rgba(30, 82, 97, 0.08);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin-right: 0.4rem;
  letter-spacing: 0.05em;
}
.fast-facts-widget {
  background: var(--tufo-50);
  border: 1px solid var(--tufo);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}
.fast-facts-widget h3 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--rosso);
  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(--rosso);
  margin-bottom: 0.25rem;
  letter-spacing: 0.05em;
}
.fast-facts-list li span {
  font-weight: 600;
  color: var(--antracite);
}
.download-guide-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--rosso);
  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(--blu-lago);
}
.vintage-car-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--antracite) 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: var(--font-display);
  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(--tufo);
  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;
}
.page-hero__content--overlay {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  max-width: 800px;
  padding: 4rem 1.5rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.page-hero__content--overlay .eyebrow {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}
.page-hero__content--overlay h1 {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 1.1;
  text-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.page-hero__content--overlay p {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  max-width: 600px;
}
.page-hero__content--overlay .button--hero {
  background: #fff;
  color: var(--rosso);
  padding: 1rem 2.5rem;
  border-radius: 30px;
  font-weight: 600;
  margin-top: 1rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.page-hero__content--overlay .button--hero:hover {
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-2px);
}
.media-card--overlay {
  position: relative;
  aspect-ratio: 1 / 1;
  border: none;
  border-radius: var(--radius-lg);
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.media-card--overlay .media-card__thumb {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
}
.media-card--overlay .media-card__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.9) 100%);
  pointer-events: none;
}
.media-card--overlay .media-card__body {
  position: relative;
  z-index: 2;
  border-top: none;
  padding: 1.5rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.media-card--overlay .media-card__body h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin: 0;
  font-family: var(--font-display);
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}
.media-card--overlay .media-card__body p {
  font-size: 0.92rem;
  color: #fcf9f8 !important;
  opacity: 0.95;
  margin: 0;
  line-height: 1.4;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}
.media-card--overlay .media-card__body a {
  display: inline-block;
  color: var(--tufo) !important;
  font-weight: 700;
  font-size: 0.88rem;
  margin-top: 0.35rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.media-card-grid .media-card .media-card__body a:hover,
.media-card--overlay .media-card__body a:hover {
  color: #ffffff !important;
}
.media-card-grid .media-card .media-card__body a::after,
.media-card--overlay .media-card__body a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
}
.media-card-grid .media-card .meta-badge,
.media-card--overlay .meta-badge {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 0.2rem 0.8rem;
  border: 1px solid rgba(255,255,255,0.4);
  margin-bottom: 0.25rem;
  font-size: 0.72rem;
  backdrop-filter: blur(4px);
  width: fit-content;
}
.footer-columns {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-copyright {
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.site-nav--enhanced .site-nav__home-link,
.site-nav--enhanced .site-nav__trigger {
  font-size: 0.82rem !important;
  padding: 0.5rem 0.75rem !important;
  letter-spacing: 0.04em !important;
}
.site-nav > ul {
  gap: 0.65rem !important;
}
.site-nav__clusters {
  gap: 0.2rem !important;
}
.site-nav--enhanced .site-nav__panel {
  top: calc(100% + 0.5rem) !important;
}
.site-nav--enhanced .site-nav__panel::before {
  content: "";
  position: absolute;
  top: -0.7rem;
  left: 0;
  right: 0;
  height: 0.7rem;
  background: transparent;
  z-index: -1;
}
.lang-switcher--dropdown {
  position: relative;
  display: block !important;
}
.lang-switcher__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 2rem;
  padding: 0 0.75rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffff;
  color: var(--blu-lago);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.lang-switcher__trigger:hover,
.lang-switcher__trigger[aria-expanded="true"] {
  background: var(--blu-lago);
  border-color: var(--blu-lago);
  color: #ffffff;
}
.lang-switcher__arrow {
  display: inline-block;
  width: 0.35rem;
  height: 0.35rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-0.06rem);
  transition: transform 0.2s ease;
}
.lang-switcher__trigger[aria-expanded="true"] .lang-switcher__arrow {
  transform: rotate(-135deg) translateY(0.04rem);
}
.lang-switcher__list {
  position: absolute;
  top: calc(100% + 0.4rem);
  right: 0;
  z-index: 99;
  min-width: 7rem;
  padding: 0.25rem 0;
  margin: 0;
  list-style: none;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(45, 45, 45, 0.1);
}
.lang-switcher__list[hidden] {
  display: none;
}
.lang-switcher__list li {
  margin: 0;
  padding: 0;
}
.lang-switcher__list li a {
  display: block;
  padding: 0.4rem 0.75rem;
  color: var(--antracite);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  text-align: left;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.lang-switcher__list li a:hover {
  background-color: var(--tufo-50);
  color: var(--rosso);
}
.media-card-grid .media-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border: none;
  border-radius: var(--radius-lg);
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.media-card-grid .media-card .media-card__thumb {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
}
.media-card-grid .media-card .media-card__thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.9) 100%);
  pointer-events: none;
}
.media-card-grid .media-card .media-card__body {
  position: relative;
  z-index: 2;
  border-top: none;
  padding: 1.5rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.media-card-grid .media-card .media-card__body h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin: 0;
  font-family: var(--font-display);
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}
.media-card-grid .media-card .media-card__body p {
  font-size: 0.92rem;
  color: #fcf9f8 !important;
  opacity: 0.95;
  margin: 0;
  line-height: 1.4;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}
.media-card-grid .media-card .media-card__body a {
  display: inline-block;
  color: var(--tufo) !important;
  font-weight: 700;
  font-size: 0.88rem;
  margin-top: 0.35rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.detail-hero__panel,
.hero--subpage {
  background: #ffffff !important;
  border: 1px solid rgba(45, 45, 45, 0.08) !important;
  box-shadow: 0 15px 40px rgba(45, 45, 45, 0.06) !important;
  color: var(--antracite) !important;
}
.detail-hero__content,
.hero--subpage .hero__content {
  background: transparent !important;
  color: var(--antracite) !important;
  padding: 1.5rem !important;
}
.detail-hero__content h1,
.hero--subpage .hero__content h1 {
  color: var(--rosso) !important;
  font-family: var(--font-display) !important;
  text-shadow: none !important;
}
.detail-hero__content .eyebrow,
.hero--subpage .hero__content .eyebrow {
  color: var(--blu-lago) !important;
}
.detail-hero__content .breadcrumb a,
.hero--subpage .hero__content .breadcrumb a {
  color: var(--text-soft) !important;
}
@media (min-width: 48rem) {
  .detail-hero__panel,
  .hero--subpage {
    display: grid !important;
    grid-template-columns: 1fr 1.1fr !important;
    align-items: stretch !important;
  }
  .detail-hero__media,
  .hero--subpage picture {
    min-height: 100% !important;
    order: 2 !important;
  }
  .detail-hero__content,
  .hero--subpage .hero__content {
    padding: 3rem !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }
  .detail-hero__content h1,
  .hero--subpage .hero__content h1 {
    font-size: clamp(1.8rem, 4vw, 2.8rem) !important;
  }
}
.detail-hero--pillar .detail-hero__panel,
.hero--subpage-pillar {
  background: var(--deep-burgundy) !important;
  border: none !important;
  box-shadow: 0 20px 50px rgba(108, 12, 32, 0.15) !important;
}
.detail-hero--pillar .detail-hero__content,
.hero--subpage-pillar .hero__content {
  color: #ffffff !important;
}
.detail-hero--pillar .detail-hero__content h1,
.hero--subpage-pillar .hero__content h1 {
  color: var(--tufo) !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3) !important;
}
.detail-hero--pillar .detail-hero__content .eyebrow,
.hero--subpage-pillar .hero__content .eyebrow {
  color: var(--tufo) !important;
}
.detail-hero--pillar .detail-hero__content .breadcrumb a,
.hero--subpage-pillar .hero__content .breadcrumb a {
  color: rgba(255, 255, 255, 0.75) !important;
}
:root {
  --rosso-hover: #7a1e2c;
  --shadow-card: 0 4px 20px rgba(45, 45, 45, 0.08);
  --shadow-lift: 0 16px 48px rgba(45, 45, 45, 0.14);
  --transition-base: 0.22s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
body {
  background: var(--off-white);
}
.site-header {
  background: rgba(252, 249, 248, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(45, 45, 45, 0.07);
  box-shadow: 0 2px 16px rgba(45, 45, 45, 0.05);
}
.header__inner,
.nav-shell {
  min-height: 5rem;
}
.brand {
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  color: var(--rosso);
}
@media (min-width: 48rem) {
  .brand {
    font-size: 1.75rem;
  }
}
.site-nav a {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  font-weight: 700;
}
.lang-switcher a {
  min-width: 2.4rem;
  min-height: 2.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  border-color: rgba(30, 82, 97, 0.2);
}
.page-hero {
  padding: 0;
}
.page-hero__panel--home {
  min-height: 72vh;
  min-height: min(72vh, 680px);
  border-radius: 0;
  border: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  background: #1a2e35;
  overflow: hidden;
}
.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(1.08) contrast(1.02);
}
.page-hero__panel--home::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.12) 40%,
      rgba(0, 0, 0, 0.65) 80%,
      rgba(0, 0, 0, 0.78) 100%
    );
  z-index: 1;
}
.page-hero__content--floating {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--antracite);
  max-width: 520px;
  padding: 2.75rem 2.5rem 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.22), 0 4px 16px rgba(0, 0, 0, 0.12);
  text-align: center;
  margin: 2.5rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
}
.page-hero__content--floating h1 {
  font-family: var(--font-display);
  color: var(--rosso);
  font-size: clamp(1.9rem, 5vw, 2.7rem);
  margin: 0.4rem 0 0.85rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.page-hero__content--floating p {
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0 auto;
  max-width: 38ch;
}
.page-hero__content--floating .eyebrow {
  color: var(--blu-lago);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  display: block;
}
.page-hero__content--overlay {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: left;
  max-width: 680px;
  padding: 3.5rem 2rem 4rem;
  margin: 0 auto 0 clamp(1rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.page-hero__content--overlay .eyebrow {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
}
.page-hero__content--overlay h1 {
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  line-height: 1.06;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
  margin: 0;
  max-width: 16ch;
}
.page-hero__content--overlay p {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
  max-width: 52ch;
  margin: 0;
  line-height: 1.6;
  opacity: 0.95;
}
.button--hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--rosso);
  color: #ffffff;
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.9rem 2.4rem;
  text-decoration: none;
  letter-spacing: 0.1em;
  font-size: 0.82rem;
  border-radius: 0;
  margin-top: 0.5rem;
  transition:
    background var(--transition-base),
    transform var(--transition-base),
    box-shadow var(--transition-base);
  box-shadow: 0 4px 20px rgba(139, 38, 53, 0.3);
}
.button--hero:hover {
  background: var(--rosso-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 38, 53, 0.4);
}
.page-hero__content--floating .button--hero {
  border-radius: 6px;
  background: var(--rosso);
  color: #fff;
  box-shadow: 0 6px 20px rgba(139, 38, 53, 0.28);
  padding: 0.85rem 2.2rem;
  margin-top: 1.5rem;
  align-self: center;
}
.section {
  padding: 4.5rem 0;
}
@media (min-width: 48rem) {
  .section {
    padding: 5.5rem 0;
  }
}
.section__head {
  max-width: 52rem;
  margin-bottom: 2.5rem;
}
.section__head h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1;
  color: var(--antracite);
  margin-bottom: 0.75rem;
}
.section__head p,
.section__head > p {
  font-size: 1.08rem;
  color: var(--text-soft);
  line-height: 1.7;
  max-width: 62ch;
}
.hub-grid {
  gap: 3.5rem;
}
.hub-title {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.hub-description {
  font-size: 1.08rem;
  line-height: 1.72;
  margin-bottom: 1rem;
}
.media-card-grid .media-card {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}
.media-card-grid .media-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}
.media-card-grid .media-card .media-card__thumb::after {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.2) 35%,
    rgba(0, 0, 0, 0.75) 75%,
    rgba(0, 0, 0, 0.9) 100%
  );
}
.media-card--overlay {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}
.media-card--overlay:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lift);
}
.media-card--overlay .media-card__thumb::after {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.2) 35%,
    rgba(0, 0, 0, 0.75) 75%,
    rgba(0, 0, 0, 0.9) 100%
  );
}
.media-card-grid .media-card .media-card__body,
.media-card--overlay .media-card__body {
  padding: 1.75rem;
  gap: 0.5rem;
}
.media-card-grid .media-card .media-card__body h3,
.media-card--overlay .media-card__body h3 {
  font-size: 1.35rem;
  line-height: 1.2;
}
.media-card-grid .media-card .media-card__body p,
.media-card--overlay .media-card__body p {
  font-size: 0.9rem;
  line-height: 1.5;
}
.media-card-grid .media-card .meta-badge,
.media-card--overlay .meta-badge {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
}
.card {
  border-radius: var(--radius-lg);
  border-color: rgba(45, 45, 45, 0.08);
  box-shadow: var(--shadow-card);
}
.card h3 {
  font-size: 1.1rem;
  line-height: 1.3;
}
.tag-pill {
  border-color: rgba(30, 82, 97, 0.18);
  color: var(--blu-lago);
  font-size: 0.78rem;
  transition: background var(--transition-base), color var(--transition-base), border-color var(--transition-base);
}
.tag-pill:hover {
  background: rgba(30, 82, 97, 0.08);
  border-color: rgba(30, 82, 97, 0.3);
}
.detail-hero {
  padding: 1.5rem 0 0;
}
.detail-hero__panel {
  border-radius: var(--radius-xl);
  overflow: hidden;
}
@media (min-width: 48rem) {
  .detail-hero__media {
    min-height: 26rem;
  }
  .detail-hero__content {
    padding: 2.5rem 2.75rem !important;
  }
}
.hero--subpage {
  position: relative;
  overflow: hidden;
  min-height: 50vh;
  min-height: min(50vh, 480px);
  display: flex;
  align-items: flex-end;
}
.hero--subpage picture {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero--subpage picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(1.05) brightness(0.9);
}
.hero--subpage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.55) 75%,
    rgba(0, 0, 0, 0.75) 100%
  );
}
.hero--subpage .hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 3rem 2rem 2.5rem !important;
  background: transparent !important;
  color: #ffffff !important;
}
.hero--subpage .hero__content h1 {
  color: #ffffff !important;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4) !important;
  font-size: clamp(2rem, 5vw, 3.2rem) !important;
}
.hero--subpage .hero__content p {
  color: rgba(255, 255, 255, 0.9) !important;
}
.hero--subpage .hero__content .eyebrow {
  color: var(--tufo) !important;
  opacity: 0.9;
}
.hero--subpage .hero__content .breadcrumb a {
  color: rgba(255, 255, 255, 0.75) !important;
}
.hero--subpage .hero__content .breadcrumb li + li::before {
  color: rgba(255, 255, 255, 0.45) !important;
}
.hero--subpage {
  background: #1a2e35 !important;
  border: none !important;
  box-shadow: none !important;
}
@media (min-width: 48rem) {
  .hero--subpage {
    display: flex !important;
    align-items: flex-end !important;
    min-height: 55vh !important;
  }
  .hero--subpage .hero__content {
    padding: 4rem 3.5rem 3.5rem !important;
    max-width: 56rem;
  }
  .hero--subpage picture {
    min-height: 100% !important;
    order: unset !important;
  }
}
.site-footer {
  margin-top: 4rem;
  background: #1e1e1e;
  border-top: none;
}
.footer__inner {
  gap: 2.5rem;
  padding: 3rem 0 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
}
.footer__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.4rem;
}
.contact-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-top: 0.5rem;
}
.contact-card a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--transition-base);
}
.contact-card a:hover {
  color: var(--tufo);
}
.contact-card:first-child .footer__title {
  font-size: 1.3rem;
  color: #fff;
  letter-spacing: 0.02em;
}
.site-footer__meta {
  padding: 1rem 0 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-top: 1rem;
}
.explore-card {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
}
@media (min-width: 48rem) {
  .explore-card {
    aspect-ratio: 3 / 4;
  }
}
.content-card h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: var(--antracite);
}
.content-card h3 {
  font-size: 1.25rem;
  color: var(--antracite);
}
.content-stack {
  gap: 1.5rem;
}
.content-stack section {
  gap: 0.9rem;
}
.summary-list div {
  background: rgba(250, 246, 239, 0.7);
  border: 1px solid rgba(220, 199, 170, 0.4);
  border-radius: var(--radius-md);
}
.button--primary:hover,
.button:hover {
  background: var(--rosso-hover);
  color: #ffffff;
}
.breadcrumb {
  font-size: 0.88rem;
}
.detail-hero--pillar .detail-hero__panel {
  min-height: 420px;
}
@media (min-width: 48rem) {
  .detail-hero--pillar .detail-hero__panel {
    min-height: 520px;
  }
}
.related-grid {
  gap: 2rem 3rem;
}
.related-col h3 {
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--rosso);
  margin-bottom: 0.8rem;
}
.related-col .plain-list {
  gap: 0.6rem;
}
.related-col .plain-list li::before {
  background: var(--tufo);
  opacity: 0.7;
}
@media (max-width: 47.99rem) {
  .page-hero__panel--home {
    min-height: 55vh;
    min-height: min(55vh, 500px);
    align-items: center;
    justify-content: center;
  }
  .page-hero__content--floating {
    width: calc(100% - 2rem);
    max-width: none;
    min-width: 0;
    padding: 1.75rem 1.5rem;
    margin: 1rem;
    border-radius: var(--radius-lg);
  }
  .page-hero__content--floating h1 {
    font-size: clamp(1.8rem, 9vw, 2.3rem);
  }
  .page-hero__content--overlay {
    padding: 2rem 1.25rem 3rem;
    margin: 0;
    align-items: flex-start;
  }
  .page-hero__content--overlay h1 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }
  .section {
    padding: 3.5rem 0;
  }
  .media-card-grid .media-card,
  .media-card--overlay {
    aspect-ratio: 4 / 5;
  }
  .hero--subpage {
    min-height: 42vh !important;
  }
  .hero--subpage .hero__content {
    padding: 2rem 1.25rem 2rem !important;
  }
  .footer__inner {
    padding: 2.5rem 0 1rem;
    gap: 1.75rem;
  }
  .detail-hero {
    padding: 1rem 0 0;
  }
}
.section--alt {
  background: rgba(250, 246, 239, 0.45);
}
.site-nav--enhanced .site-nav__panel {
  width: min(30rem, calc(100vw - 2rem));
}
.site-nav__panel-list a {
  font-size: 0.93rem;
  padding: 0.9rem 1rem;
}
.winery-card:hover {
  border-color: rgba(139, 38, 53, 0.25);
  box-shadow: 0 8px 30px rgba(139, 38, 53, 0.1);
}
.detail-hero__media img {
  filter: saturate(1.05) contrast(1.02);
}
.hero--subpage {
  display: grid !important;
  grid-template-rows: 1fr !important;
  grid-template-columns: 1fr !important;
  min-height: clamp(320px, 50vh, 520px) !important;
  background: #1a2e35 !important;
  border: none !important;
  box-shadow: none !important;
  overflow: hidden;
  position: relative !important;
}
.hero--subpage > picture {
  grid-area: 1 / 1 !important;
  position: static !important;
  display: block !important;
  overflow: hidden !important;
  z-index: 0 !important;
  order: unset !important;
}
.hero--subpage > picture img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 35% !important;
  filter: saturate(1.06) brightness(0.82) !important;
  min-height: clamp(320px, 50vh, 520px) !important;
}
.hero--subpage > .hero__content {
  grid-area: 1 / 1 !important;
  position: relative !important;
  z-index: 2 !important;
  align-self: end !important;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.55) 55%,
    rgba(0, 0, 0, 0.82) 100%
  ) !important;
  color: #ffffff !important;
  padding: 4rem 1.5rem 2.5rem !important;
  width: 100% !important;
}
.hero--subpage > .hero__content h1 {
  color: #ffffff !important;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4) !important;
  font-size: clamp(2rem, 5vw, 3.2rem) !important;
  font-family: var(--font-display) !important;
}
.hero--subpage > .hero__content p {
  color: rgba(255, 255, 255, 0.88) !important;
  line-height: 1.65;
}
.hero--subpage > .hero__content .eyebrow {
  color: var(--tufo) !important;
  opacity: 0.92;
}
.hero--subpage > .hero__content .breadcrumb a {
  color: rgba(255, 255, 255, 0.72) !important;
}
.hero--subpage > .hero__content .breadcrumb li:last-child,
.hero--subpage > .hero__content .breadcrumb li:last-child a {
  color: rgba(255, 255, 255, 0.92) !important;
}
.hero--subpage > .hero__content .breadcrumb li + li::before {
  color: rgba(255, 255, 255, 0.38) !important;
}
@media (min-width: 48rem) {
  .hero--subpage {
    min-height: clamp(400px, 58vh, 600px) !important;
  }
  .hero--subpage > picture img {
    min-height: clamp(400px, 58vh, 600px) !important;
  }
  .hero--subpage > .hero__content {
    padding: 5rem 2.5rem 3.5rem !important;
  }
  .hero--subpage > .hero__content h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem) !important;
  }
}
@media (max-width: 47.99rem) {
  .hero--subpage {
    min-height: clamp(260px, 45vh, 380px) !important;
  }
  .hero--subpage > picture img {
    min-height: clamp(260px, 45vh, 380px) !important;
  }
  .hero--subpage > .hero__content {
    padding: 3rem 1rem 1.75rem !important;
  }
  .hero--subpage > .hero__content h1 {
    font-size: clamp(1.75rem, 8vw, 2.3rem) !important;
  }
}
.hero--subpage-pillar > .hero__content {
  background: linear-gradient(
    180deg,
    rgba(108, 12, 32, 0) 0%,
    rgba(108, 12, 32, 0.65) 55%,
    rgba(108, 12, 32, 0.92) 100%
  ) !important;
}
.hero--subpage-pillar > .hero__content h1 {
  color: var(--tufo) !important;
}
.hero--subpage-pillar > .hero__content .eyebrow {
  color: var(--tufo) !important;
}
.hub-sidebar {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 64rem) {
  .hub-sidebar {
    position: sticky;
    top: 5.5rem;
    align-self: start;
  }
}
.spoke-main {
  min-width: 0;
}
.spoke-sidebar {
  min-width: 0;
}
@media (min-width: 64rem) {
  .spoke-sidebar {
    position: sticky;
    top: 5.5rem;
    align-self: start;
  }
}
.photo-card {
  margin: 1.5rem 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-strong);
  box-shadow: var(--shadow-card);
  transition:
    box-shadow var(--transition-base),
    transform var(--transition-base);
}
.photo-card:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-2px);
}
.photo-card img {
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 64rem) {
  .hub-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(20rem, 1fr);
    gap: 4rem;
  }
}
.weather-widget-premium {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}
.weather-widget-premium .dynamic-panel {
  border-left: none;
  background: transparent;
  color: #ffffff;
  padding: 0;
  border-radius: 0;
}
.weather-widget-premium .dynamic-panel h3 {
  color: var(--tufo);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
}
.weather-widget-premium .dynamic-panel .summary-list div {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}
.weather-widget-premium .dynamic-panel .summary-list dt {
  color: var(--tufo);
}
.weather-widget-premium .dynamic-panel .summary-list dd {
  color: #ffffff;
}
.weather-widget-premium .button {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  width: 100%;
  margin-top: 0.5rem;
  font-size: 0.84rem;
}
.weather-widget-premium .button:hover {
  background: rgba(255, 255, 255, 0.28);
  color: #ffffff;
  transform: translateY(-1px);
}
.essential-data-widget {
  background: rgba(250, 246, 239, 0.82);
  border-color: rgba(220, 199, 170, 0.5);
  padding: 1.5rem;
}
.detail-hero--pillar .detail-hero__panel {
  background: linear-gradient(
    135deg,
    var(--deep-burgundy) 0%,
    #4a0a18 60%,
    #3a0812 100%
  ) !important;
  border: none !important;
}
.detail-hero--pillar .detail-hero__content {
  background: transparent !important;
}
.detail-hero--pillar .detail-hero__content h1 {
  color: var(--tufo) !important;
  font-size: clamp(1.9rem, 4.5vw, 3rem) !important;
  line-height: 1.08 !important;
}
.detail-hero--pillar .detail-hero__content p {
  color: rgba(255, 255, 255, 0.86) !important;
  line-height: 1.65;
}
.detail-hero--pillar .detail-hero__content .eyebrow {
  color: var(--tufo) !important;
  opacity: 0.88;
}
.detail-hero--pillar .detail-hero__media img {
  filter: saturate(1.1) brightness(0.82) !important;
}
.card {
  transition:
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}
.card:hover {
  box-shadow: 0 8px 28px rgba(45, 45, 45, 0.1);
  border-color: rgba(45, 45, 45, 0.11);
}
.spoke-card {
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}
.spoke-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(30, 82, 97, 0.2);
}
.nav-card {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface-strong);
  box-shadow: var(--shadow-card);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base);
}
.nav-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}
.nav-card__link::after {
  content: " →";
  display: inline-block;
  transition: transform var(--transition-base);
}
.nav-card__link:hover::after {
  transform: translateX(3px);
}
@media (min-width: 48rem) {
  .footer__inner {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}
@media (min-width: 64rem) {
  .footer__inner {
    grid-template-columns: 1.6fr 1fr 1.2fr;
  }
}
@media (max-width: 47.99rem) {
  .media-card-grid--3,
  .media-card-grid--2 {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .hub-sidebar,
  .spoke-sidebar {
    position: static;
  }
}
.content-card .content-stack section h2 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  color: var(--antracite);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
.content-card .content-stack section h3 {
  font-size: 1.05rem;
  color: var(--rosso);
  margin-bottom: 0.35rem;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.content-card .content-stack section p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--on-surface);
}
.plain-list li a {
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--transition-base);
}
.section__head .eyebrow--dark {
  display: inline-block;
  margin-bottom: 0.4rem;
}
@media (min-width: 48rem) and (max-width: 63.99rem) {
  .section-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 48rem) {
  .page-hero__panel--home {
    justify-content: center;
    align-items: flex-end;
    min-height: min(74vh, 720px);
  }
  .page-hero__content--floating {
    margin: 0 0 3.5rem;
    max-width: 560px;
  }
}
@media (min-width: 64rem) {
  .page-hero__content--overlay {
    padding: 5rem 4rem 5rem;
  }
  .page-hero__content--overlay h1 {
    font-size: clamp(3rem, 5.5vw, 4.5rem);
  }
}
.map-panel {
  border-radius: var(--radius-xl);
}
.association-stack {
  gap: 2rem;
}
.association-entry {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.association-entry:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.button--ghost {
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.87rem;
  transition:
    background var(--transition-base),
    color var(--transition-base),
    border-color var(--transition-base);
}
.button--ghost:hover {
  background: rgba(30, 82, 97, 0.14);
  border-color: rgba(30, 82, 97, 0.28);
  color: var(--blu-lago-700);
}
.site-footer__meta {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.25rem 0 2rem;
}
.tag-list li {
  cursor: default;
  transition: background var(--transition-base);
}
.tag-list li:hover {
  background: rgba(30, 82, 97, 0.14);
}
.skip-link:focus {
  top: 0.75rem;
  z-index: 9999;
}
.download-guide-btn {
  border-radius: 6px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}
.winery-card {
  padding: 1.35rem 1.5rem;
}
.fast-facts-widget {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(220, 199, 170, 0.5);
}
@media (min-width: 64rem) {
  .detail-hero__content {
    padding: 3rem 3.5rem !important;
  }
}
h1, h2, h3 {
  font-weight: 400 !important;
  letter-spacing: -0.03em !important;
  color: var(--antracite) !important;
}
.eyebrow, .card__eyebrow {
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: var(--rosso) !important;
  display: inline-block !important;
}
.brand {
  letter-spacing: 0.08em !important;
  font-weight: 400 !important;
}
.card, .explore-card, .spoke-card, .nav-card, .photo-card {
  border: 1px solid rgba(139, 38, 53, 0.05) !important;
  background: var(--surface) !important;
  box-shadow: 0 10px 30px rgba(108, 12, 32, 0.03), 0 1px 3px rgba(0, 0, 0, 0.01) !important;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.4s ease !important;
}
.card:hover, .explore-card:hover, .spoke-card:hover, .nav-card:hover, .photo-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 20px 40px rgba(108, 12, 32, 0.06), 0 1px 5px rgba(0, 0, 0, 0.02) !important;
  border-color: rgba(139, 38, 53, 0.12) !important;
}
.media-card, .media-card--overlay {
  border: none !important;
  box-shadow: 0 10px 30px rgba(108, 12, 32, 0.04) !important;
  overflow: hidden !important;
  background: #000000 !important;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}
.media-card .media-card__thumb, .media-card--overlay .media-card__thumb {
  overflow: hidden !important;
  border-radius: var(--radius-xl) !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
}
.media-card .media-card__thumb img, .media-card--overlay .media-card__thumb img {
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
.media-card:hover, .media-card--overlay:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 24px 48px rgba(108, 12, 32, 0.09) !important;
}
.media-card:hover .media-card__thumb img, .media-card--overlay:hover .media-card__thumb img {
  transform: scale(1.04) !important;
}
.site-header {
  background: rgba(251, 250, 247, 0.85) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(139, 38, 53, 0.05) !important;
  box-shadow: 0 4px 20px rgba(45, 45, 45, 0.02) !important;
}
.weather-widget-premium {
  background: linear-gradient(135deg, var(--blu-lago) 0%, var(--blu-lago-700) 100%) !important;
  box-shadow: 0 10px 30px rgba(30, 82, 97, 0.15) !important;
  border: none !important;
  color: #ffffff !important;
}
.weather-widget-premium h3 {
  color: var(--tufo) !important;
  font-family: var(--font-body) !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
}
.weather-widget-premium .summary-list div {
  border-color: rgba(255, 255, 255, 0.12) !important;
}
.essential-data-widget {
  background: rgba(250, 246, 239, 0.6) !important;
  border: 1px solid rgba(220, 199, 170, 0.3) !important;
}
.essential-table th, .essential-table td {
  border-bottom: 1px solid rgba(220, 199, 170, 0.2) !important;
}
.section {
  padding: 5rem 0 !important;
}
@media (min-width: 48rem) {
  .section {
    padding: 7rem 0 !important;
  }
}
.section--alt {
  background: rgba(250, 246, 239, 0.4) !important;
  border-top: 1px solid rgba(220, 199, 170, 0.15) !important;
  border-bottom: 1px solid rgba(220, 199, 170, 0.15) !important;
}
.site-footer {
  background: #121212 !important;
}
.contact-card:first-child .footer__title {
  font-size: 1.55rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  font-family: var(--font-display) !important;
  color: var(--tufo) !important;
}
:root {
  --premium-paper: #fbfaf7;
  --premium-burgundy: #8b2635;
  --premium-shadow-card: 0 10px 30px rgba(108, 12, 32, 0.03), 0 1px 3px rgba(0, 0, 0, 0.01);
}
.hero:not(.hero--subpage)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.4) 50%,
    rgba(0, 0, 0, 0.8) 100%
  ) !important;
  z-index: 1;
  pointer-events: none;
}
.hero--subpage > .hero__content {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.6) 60%,
    rgba(0, 0, 0, 0.85) 100%
  ) !important;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
}
.media-card:not(:has(img)) {
  background: var(--premium-paper) !important;
  border: 1px solid rgba(139, 38, 53, 0.08) !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}
.event-card:not(:has(img)) {
  background: var(--premium-paper) !important;
  border: 1px dashed rgba(139, 38, 53, 0.15) !important;
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.events-page .media-card--overlay {
  aspect-ratio: 3 / 4 !important;
  box-shadow: var(--premium-shadow-card) !important;
  transition: transform 0.4s ease, box-shadow 0.4s ease !important;
}
.events-page .media-card--overlay:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 20px 40px rgba(108, 12, 32, 0.08) !important;
}
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.04) !important;
  background: #111111 !important;
}
@media (max-width: 760px) {
  .section {
    padding: 3.5rem 0 !important;
  }
  .page-hero__content--floating {
    margin: 1.5rem 1rem !important;
    padding: 2rem 1.5rem !important;
  }
  .media-card-grid--3, .media-card-grid--2 {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .site-header {
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
  }
  body {
    overflow-x: hidden !important;
  }
}
body.home .hero,
body.home .home-hero,
body.home .hero--home,
body.home main > .hero:first-child,
body:not(.page-detail) main > .hero:first-child {
  position: relative;
  isolation: isolate;
  background-color: #111;
}
body.home .hero::before,
body.home .home-hero::before,
body.home .hero--home::before,
body.home main > .hero:first-child::before,
body:not(.page-detail) main > .hero:first-child::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.68) 32%,
      rgba(0, 0, 0, 0.36) 58%,
      rgba(0, 0, 0, 0.12) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.22) 0%,
      rgba(0, 0, 0, 0.18) 45%,
      rgba(0, 0, 0, 0.56) 100%
    ) !important;
}
body.home .hero__content,
body.home .home-hero__content,
body.home .hero .container,
body.home main > .hero:first-child .container,
body:not(.page-detail) main > .hero:first-child .container {
  position: relative;
  z-index: 2;
}
body.home .hero h1,
body.home .home-hero h1,
body.home .hero--home h1,
body.home main > .hero:first-child h1,
body:not(.page-detail) main > .hero:first-child h1 {
  color: #fff8ef !important;
  text-shadow:
    0 3px 18px rgba(0, 0, 0, 0.72),
    0 10px 44px rgba(0, 0, 0, 0.58) !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}
body.home .hero .eyebrow,
body.home .hero__eyebrow,
body.home .home-hero .eyebrow,
body.home .home-hero__eyebrow,
body.home main > .hero:first-child .eyebrow,
body.home main > .hero:first-child .hero__eyebrow {
  color: #dcc7aa !important;
  background: rgba(255, 248, 239, 0.14);
  border: 1px solid rgba(255, 248, 239, 0.20);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.58);
}
body.home .hero p,
body.home .home-hero p,
body.home .hero--home p,
body.home main > .hero:first-child p,
body:not(.page-detail) main > .hero:first-child p {
  color: rgba(255, 248, 239, 0.94) !important;
  text-shadow:
    0 2px 14px rgba(0, 0, 0, 0.70),
    0 8px 30px rgba(0, 0, 0, 0.48) !important;
}
body.home .hero .button,
body.home .hero .btn,
body.home .home-hero .button,
body.home .home-hero .btn,
body.home main > .hero:first-child .button,
body.home main > .hero:first-child .btn {
  background: #fff8ef !important;
  color: #6c0c20 !important;
  border: 0 !important;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35) !important;
}
main > section:first-child.hero h1,
main > .hero:first-child h1,
main > .home-hero:first-child h1 {
  color: #fff8ef !important;
  text-shadow:
    0 3px 18px rgba(0, 0, 0, 0.72),
    0 10px 44px rgba(0, 0, 0, 0.58) !important;
}
@media (max-width: 760px) {
  body.home .hero::before,
  body.home .home-hero::before,
  body.home .hero--home::before,
  body.home main > .hero:first-child::before,
  body:not(.page-detail) main > .hero:first-child::before {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.42) 0%,
        rgba(0, 0, 0, 0.34) 28%,
        rgba(0, 0, 0, 0.82) 100%
      ) !important;
  }
  body.home .hero h1,
  body.home .home-hero h1,
  body.home .hero--home h1,
  body.home main > .hero:first-child h1,
  body:not(.page-detail) main > .hero:first-child h1 {
    color: #fff8ef !important;
    text-shadow:
      0 3px 18px rgba(0, 0, 0, 0.78),
      0 10px 42px rgba(0, 0, 0, 0.62) !important;
  }
}
.page-hero__content--overlay h1 {
  color: #fff8ef !important;
  text-shadow:
    0 3px 18px rgba(0, 0, 0, 0.72),
    0 10px 44px rgba(0, 0, 0, 0.58) !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}
.page-hero__content--overlay p {
  color: rgba(255, 248, 239, 0.94) !important;
  text-shadow:
    0 2px 14px rgba(0, 0, 0, 0.7),
    0 8px 30px rgba(0, 0, 0, 0.48) !important;
}
.page-hero__content--overlay .eyebrow {
  color: #f5dfc1 !important;
  background: rgba(255, 248, 239, 0.14);
  border: 1px solid rgba(255, 248, 239, 0.2);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.58);
}
.page-hero__panel--home::before {
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.72) 0%,
      rgba(0, 0, 0, 0.55) 34%,
      rgba(0, 0, 0, 0.25) 62%,
      rgba(0, 0, 0, 0.08) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.16) 0%,
      rgba(0, 0, 0, 0.14) 45%,
      rgba(0, 0, 0, 0.55) 100%
    ) !important;
}
@media (max-width: 760px) {
  .page-hero__panel--home::before {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.44) 0%,
        rgba(0, 0, 0, 0.36) 30%,
        rgba(0, 0, 0, 0.78) 100%
      ) !important;
  }
}
.detail-hero__panel {
  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-template-rows: 1fr !important;
  min-height: clamp(320px, 52vh, 540px) !important;
  border-radius: var(--radius-xl) !important;
  background: #1a2e35 !important;
  border: none !important;
  box-shadow: var(--shadow) !important;
  overflow: hidden !important;
  position: relative !important;
  isolation: isolate;
}
.detail-hero__panel > .detail-hero__media {
  grid-area: 1 / 1 !important;
  position: static !important;
  min-height: 100% !important;
  order: 0 !important;
}
.detail-hero__panel > .detail-hero__media img {
  width: 100% !important;
  height: 100% !important;
  min-height: clamp(320px, 52vh, 540px) !important;
  object-fit: cover !important;
  object-position: center 38% !important;
  filter: saturate(1.05) brightness(0.84) !important;
}
.detail-hero__panel > .detail-hero__content {
  grid-area: 1 / 1 !important;
  position: relative !important;
  z-index: 2 !important;
  align-self: end !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  gap: 0.7rem !important;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 52%, rgba(0,0,0,0.82) 100%) !important;
  color: #fff !important;
  padding: 4rem 1.75rem 2.25rem !important;
  max-width: none !important;
}
.detail-hero__panel > .detail-hero__content h1 {
  color: #fff !important;
  text-shadow: 0 2px 16px rgba(0,0,0,0.42) !important;
  font-size: clamp(2rem, 5vw, 3.2rem) !important;
}
.detail-hero__panel > .detail-hero__content p {
  color: rgba(255,255,255,0.9) !important;
}
.detail-hero__panel > .detail-hero__content .eyebrow { color: var(--tufo) !important; opacity: 0.95; }
.detail-hero__panel > .detail-hero__content .breadcrumb a { color: rgba(255,255,255,0.72) !important; }
.detail-hero__panel > .detail-hero__content .breadcrumb li:last-child,
.detail-hero__panel > .detail-hero__content .breadcrumb li:last-child a { color: rgba(255,255,255,0.92) !important; }
.detail-hero__panel > .detail-hero__content .breadcrumb li + li::before { color: rgba(255,255,255,0.4) !important; }
.detail-hero__panel:has(.detail-hero__media--poster) {
  display: block !important;
  min-height: 0 !important;
  background: #ffffff !important;
}
.detail-hero__panel:has(.detail-hero__media--poster) > .detail-hero__media img { min-height: 0 !important; filter: none !important; }
.detail-hero__panel:has(.detail-hero__media--poster) > .detail-hero__content {
  position: static !important;
  background: none !important;
  color: var(--antracite) !important;
  padding: 1.5rem !important;
}
.detail-hero__panel:has(.detail-hero__media--poster) > .detail-hero__content h1 { color: var(--rosso) !important; text-shadow: none !important; }
.detail-hero__panel:has(.detail-hero__media--poster) > .detail-hero__content p { color: var(--text-soft) !important; }
.detail-hero__panel:has(.detail-hero__media--poster) > .detail-hero__content .eyebrow { color: var(--blu-lago) !important; }
.detail-hero__panel:has(.detail-hero__media--poster) > .detail-hero__content .breadcrumb a { color: var(--text-soft) !important; }
.detail-hero__panel:has(.detail-hero__media--poster) > .detail-hero__content .breadcrumb li:last-child,
.detail-hero__panel:has(.detail-hero__media--poster) > .detail-hero__content .breadcrumb li:last-child a { color: var(--antracite) !important; }
@media (min-width: 48rem) {
  .detail-hero__panel {
    grid-template-columns: 1fr !important;   
    min-height: clamp(400px, 58vh, 600px) !important;
  }
  .detail-hero__panel > .detail-hero__media { order: 0 !important; }
  .detail-hero__panel > .detail-hero__media img { min-height: clamp(400px, 58vh, 600px) !important; }
  .detail-hero__panel > .detail-hero__content {
    padding: 5rem 2.5rem 3rem !important;
    max-width: none !important;
  }
}
.section > .container.section-grid,
.section > .container.detail-grid {
  display: block !important;
  max-width: 48rem;
}
.container.section-grid > .content-card,
.container.detail-grid > .content-card {
  max-width: 44rem;
  margin-inline: auto;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}
.container.section-grid > aside,
.container.detail-grid > aside {
  max-width: 44rem;
  margin: 2.5rem auto 0;
}
.content-card .content-stack > section:not(.info-box):first-of-type > p:first-of-type::first-letter {
  float: left;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 3.4rem;
  line-height: 0.82;
  padding: 0.15rem 0.55rem 0 0;
  color: var(--rosso);
}
.content-card blockquote {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--rosso);
  background: var(--tufo-50);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--antracite);
}
