:root {
  --brick: #b24a3b;
  --brick-dark: #8f3b2f;
  --mud: #8a7c71;
  --mud-light: #c8beb6;
  --ink: #2c2522;
  --sand: #f6f3f0;
  --white: #ffffff;
  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow-soft: 0 18px 40px rgba(32, 22, 18, 0.12);
}

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

body {
  font-family: "Sora", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}


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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.no-wrap {
  white-space: nowrap;
}

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(138, 124, 113, 0.2);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 14px;
  flex-wrap: nowrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.nav-links a {
  padding: 8px 7px;
  border-radius: 999px;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
}

.nav-dropdown-toggle span {
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.nav-dropdown.is-open .nav-dropdown-toggle span,
.nav-dropdown:hover .nav-dropdown-toggle span,
.nav-dropdown:focus-within .nav-dropdown-toggle span {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 80;
  width: 250px;
  padding: 10px;
  border: 1px solid rgba(138, 124, 113, 0.22);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.98);
  box-shadow: 0 18px 42px rgba(28, 20, 18, 0.16);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  inset: -14px 0 auto;
  height: 16px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 11px 13px;
  border-radius: 12px;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus {
  background: var(--sand);
}

.nav-dropdown-menu a[href="/canyoning-rafting/"] {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-dropdown-menu a[href="/canyoning-rafting/"]::after,
.side-menu a[href="/canyoning-rafting/"]::after {
  content: "NEW";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  padding: 4px 7px;
  border-radius: 999px;
  background: var(--brick);
  color: var(--white);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  box-shadow: 0 5px 12px rgba(178, 74, 59, 0.22);
  transform: rotate(-7deg);
  transform-origin: center;
}

.nav-links .account-icon-link {
  align-items: center;
  display: inline-flex;
  height: 36px;
  justify-content: center;
  margin-left: 2px;
  padding: 0;
  position: relative;
  width: 36px;
}

.account-icon-link svg {
  display: block;
  fill: currentColor;
  height: 21px;
  width: 21px;
}

.account-icon-link::after {
  background: #151515;
  border-radius: 999px;
  bottom: -36px;
  color: #fff;
  content: attr(aria-label);
  font-size: 0.74rem;
  font-weight: 700;
  left: 50%;
  letter-spacing: 0.01em;
  opacity: 0;
  padding: 7px 10px;
  pointer-events: none;
  position: absolute;
  transform: translate(-50%, -4px);
  transition: opacity 0.16s ease, transform 0.16s ease;
  white-space: nowrap;
  z-index: 80;
}

.account-icon-link::before {
  border: 6px solid transparent;
  border-bottom-color: #151515;
  bottom: -8px;
  content: "";
  left: 50%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translate(-50%, -4px);
  transition: opacity 0.16s ease, transform 0.16s ease;
  z-index: 80;
}

.account-icon-link:hover::after,
.account-icon-link:hover::before,
.account-icon-link:focus-visible::after,
.account-icon-link:focus-visible::before {
  opacity: 1;
  transform: translate(-50%, 0);
}

.nav-links a:hover,
.nav-links a:focus {
  background: var(--sand);
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brick);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
  border: none;
}

.cta:hover,
.cta:focus {
  background: var(--brick-dark);
  transform: translateY(-1px);
}

.cta.secondary {
  background: var(--mud);
}

.cta.secondary:hover,
.cta.secondary:focus {
  background: #6f645b;
}

.cta.subtle {
  background: rgba(138, 124, 113, 0.14);
  color: var(--ink);
}

.cta.subtle:hover,
.cta.subtle:focus {
  background: rgba(138, 124, 113, 0.22);
}

.cta.danger {
  background: var(--brick-dark);
}

.cta.danger:hover,
.cta.danger:focus {
  background: #8c3e32;
}

.cta.icon-only {
  width: 36px;
  height: 36px;
  padding: 0;
  justify-content: center;
}

.hero {
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: none;
}

.hero-wrap {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-split-wrap {
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-split-wrap > * {
  min-width: 0;
}

.hero-media {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: none;
  background: #ffffff;
  height: clamp(320px, 45vw, 560px);
  width: 100%;
  max-width: 100%;
}

.hero-media-split {
  mask-image: linear-gradient(to bottom, #000 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 85%, transparent 100%);
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-media #hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
  transition: opacity 0.7s ease;
}

.hero-mobile-fade {
  display: none;
}

.hero-controls {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  gap: 10px;
  z-index: 2;
}

.hero-nav {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-nav:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.3);
}

.hero-content h1 {
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-content p {
  color: var(--mud);
  font-size: 1.05rem;
  margin-bottom: 22px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 999px;
}

.cta-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.cta-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.cta-instagram,
.cta-facebook {
  position: relative;
  background: #fff;
  color: var(--brick);
  border: 2px solid var(--brick);
}

.cta-instagram:hover,
.cta-facebook:hover {
  background: rgba(178, 74, 59, 0.08);
}

.social-bubble {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  padding: 10px 15px;
  border-radius: 18px 18px 16px 16px;
  background: #111;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px) rotate(-1deg) scale(0.94);
  transition: opacity 260ms ease, transform 260ms ease;
  white-space: nowrap;
}

.social-bubble::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 16px;
  height: 16px;
  background: #111;
  border-radius: 3px 0 4px 3px;
  transform: translateX(-50%) rotate(45deg) skew(-8deg, -8deg);
}

.cta-instagram.show-social-bubble .social-bubble {
  opacity: 1;
  transform: translate(-50%, 0) rotate(-1deg) scale(1);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #fff;
  color: var(--brick);
  border: 2px solid var(--brick);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  z-index: 1200;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.whatsapp-float img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.text-link {
  color: var(--brick);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid rgba(178, 74, 59, 0.3);
  padding-bottom: 2px;
}

.text-link:hover {
  border-bottom-color: rgba(178, 74, 59, 0.6);
}

.hero-brand {
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.7rem;
  color: var(--mud);
  font-weight: 600;
  margin-bottom: 6px;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.75rem;
  color: var(--brick);
  font-weight: 600;
  margin-bottom: 12px;
}

.hero-accent {
  position: relative;
  margin-bottom: 18px;
  padding-top: 8px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(178, 74, 59, 0.35);
  color: var(--brick);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  background: rgba(248, 244, 239, 0.7);
}

.hero-highlights {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-highlights span,
.hero-highlights a {
  background: var(--sand);
  color: var(--mud);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 500;
}

.mobile-break {
  display: inline;
}

.title-line {
  white-space: nowrap;
}

.event-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 75%);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
}

.event-carousel::-webkit-scrollbar {
  display: none;
}

.event-carousel.dragging {
  cursor: grabbing;
}

.event-card--carousel {
  scroll-snap-align: start;
}

.event-photo {
  position: relative;
  margin: 14px 14px 0;
  border-radius: 22px;
  overflow: hidden;
}

.event-photo img {
  display: block;
  height: 220px;
  width: 100%;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 18px 34px rgba(28, 20, 18, 0.12);
}

.event-date {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--white);
  padding: 8px 12px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 18px rgba(28, 20, 18, 0.12);
}


.section {
  padding: 70px 0;
}

.section-tint {
  position: relative;
}

.section-tint-cream {
  background: linear-gradient(180deg, rgba(240, 230, 221, 0.55) 0%, rgba(255, 255, 255, 0.9) 100%);
}

.section-tint-rose {
  background: linear-gradient(180deg, rgba(210, 160, 150, 0.3) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.section-tint-sage {
  background: linear-gradient(180deg, rgba(180, 198, 176, 0.35) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.section-title {
  font-family: "DM Serif Display", serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 18px;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.lead {
  color: var(--mud);
  max-width: 780px;
}

.tagline {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: var(--brick);
  font-weight: 600;
  margin-bottom: 10px;
}

.single-line-title {
  white-space: nowrap;
  font-size: clamp(1.4rem, 3.8vw, 2.8rem);
  max-width: 100%;
  display: block;
}

.title-fit {
  font-size: clamp(1.25rem, 3.3vw, 2.6rem);
}

.cards {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 28px;
}

.card {
  border: 1px solid rgba(138, 124, 113, 0.25);
  border-radius: var(--radius-md);
  padding: 22px;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.card ul {
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.card ul li {
  margin-left: 8px;
}

.icon-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sand);
  font-size: 0.85rem;
  color: var(--mud);
}

.philosophy {
  background: var(--sand);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.philosophy h3 {
  margin-top: 18px;
  margin-bottom: 10px;
}

.gallery-carousel {
  position: relative;
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.gallery-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 8% 18px;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-track.dragging {
  cursor: grabbing;
}

.carousel-shell {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 820px) {
  .carousel-shell .carousel-btn {
    display: none;
  }
}

.gallery-item {
  scroll-snap-align: center;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  flex: 0 0 28%;
  min-width: 220px;
  transform: scale(0.9);
  opacity: 0.75;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-item.is-active {
  transform: scale(1.08);
  opacity: 1;
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.reviews-stage {
  margin-top: 28px;
  display: grid;
  gap: 22px;
}

.reviews-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.review-card {
  position: relative;
  min-width: 0;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(138, 124, 113, 0.24);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 10px 24px rgba(28, 20, 18, 0.06);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 13px;
  overflow: hidden;
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.review-avatar {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brick);
  color: var(--white);
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
}

.review-identity {
  min-width: 0;
  flex: 1;
}

.review-card h3 {
  font-size: 1.05rem;
  line-height: 1.3;
}

.review-card-event {
  color: var(--mud);
  font-size: 0.88rem;
  white-space: normal;
  overflow: visible;
  overflow-wrap: anywhere;
  text-overflow: clip;
}

.review-stars {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #f2bf3a;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.review-text {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.7;
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  position: relative;
  z-index: 1;
}

.reviews-grid .review-text {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
}

.all-reviews-grid .review-text {
  display: block;
  overflow: visible;
}

.review-quote {
  position: absolute;
  top: 2px;
  right: 22px;
  color: rgba(178, 74, 59, 0.1);
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
  pointer-events: none;
}

.review-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--mud);
  font-size: 0.82rem;
}

.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.review-verified::before {
  content: "\2713";
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e8f3ea;
  color: #327341;
  font-weight: 800;
}

.reviews-more {
  display: flex;
  justify-content: center;
  margin-top: 2px;
}

.reviews-page-hero {
  background:
    radial-gradient(circle at 92% 5%, rgba(178, 74, 59, 0.08), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fffaf5 100%);
}

.reviews-page-intro {
  max-width: 860px;
}

.reviews-page-intro .section-title {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

.reviews-summary {
  display: flex;
  gap: 14px;
  margin: 30px 0 18px;
}

.reviews-summary > div {
  min-width: 180px;
  padding: 16px 20px;
  border: 1px solid rgba(138, 124, 113, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
}

.reviews-summary strong,
.reviews-summary span {
  display: block;
}

.reviews-summary strong {
  color: var(--brick);
  font-family: "DM Serif Display", serif;
  font-size: 2rem;
  line-height: 1;
}

.reviews-summary span {
  margin-top: 7px;
  color: var(--mud);
  font-size: 0.82rem;
}

.reviews-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 24px;
}

.reviews-filters[hidden],
.reviews-summary[hidden],
.reviews-empty[hidden] {
  display: none !important;
}

.review-filter {
  padding: 9px 14px;
  border: 1px solid rgba(138, 124, 113, 0.28);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 600;
  cursor: pointer;
}

.review-filter:hover,
.review-filter:focus-visible,
.review-filter.is-active {
  border-color: var(--brick);
  background: var(--brick);
  color: var(--white);
}

.all-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.all-reviews-grid .review-card {
  height: 100%;
}

.reviews-empty {
  padding: 24px;
  border: 1px solid rgba(138, 124, 113, 0.22);
  border-radius: 18px;
  background: var(--white);
  color: var(--mud);
}

.reviews-page-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.reviews-page-cta .section-title {
  margin-bottom: 8px;
}

/* Reviews editorial page */
.page-reviews {
  background: #fbf8f2;
}

.reviews-editorial-hero {
  padding: clamp(42px, 6vw, 88px) 0 clamp(56px, 7vw, 104px);
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 8%, rgba(178, 74, 59, 0.12), transparent 28%),
    linear-gradient(145deg, #fffaf3 0%, #f4eee3 100%);
}

.reviews-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(42px, 7vw, 96px);
}

.reviews-page-intro h1 {
  max-width: 720px;
  margin: 14px 0 24px;
  font-family: "DM Serif Display", serif;
  font-size: clamp(3rem, 5.4vw, 5.8rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.reviews-page-intro .lead {
  max-width: 610px;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.75;
}

.reviews-hero-photo {
  position: relative;
  margin: 0;
}

.reviews-hero-photo::before {
  content: "";
  position: absolute;
  inset: -18px 20px 18px -18px;
  border: 1px solid rgba(178, 74, 59, 0.3);
  border-radius: 46% 54% 45% 55% / 58% 42% 58% 42%;
  transform: rotate(-2deg);
}

.reviews-hero-photo img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.05;
  display: block;
  object-fit: cover;
  border-radius: 46% 54% 45% 55% / 58% 42% 58% 42%;
  box-shadow: 0 30px 70px rgba(63, 45, 33, 0.2);
}

.reviews-hero-photo figcaption {
  position: absolute;
  right: -12px;
  bottom: 28px;
  max-width: 255px;
  padding: 16px 19px;
  border-radius: 14px 0 0 14px;
  background: rgba(35, 46, 39, 0.92);
  color: #fff;
  font-size: 0.78rem;
  line-height: 1.55;
  box-shadow: 0 16px 35px rgba(31, 27, 24, 0.2);
}

.reviews-summary {
  align-items: center;
  gap: 22px;
  margin: 30px 0 20px;
}

.reviews-summary > div {
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.reviews-score {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviews-summary .reviews-score strong {
  color: var(--ink);
  font-size: 3rem;
}

.reviews-summary .reviews-score span {
  margin: 0;
  color: #e7a824;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.reviews-summary-copy {
  padding-left: 22px !important;
  border-left: 1px solid rgba(138, 124, 113, 0.35) !important;
}

.reviews-summary .reviews-summary-copy strong {
  color: var(--brick);
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.reviews-summary .reviews-summary-copy span {
  margin-top: 2px;
}

.reviews-text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--brick);
  font-weight: 700;
  text-decoration: none;
}

.reviews-text-link span {
  transition: transform 0.2s ease;
}

.reviews-text-link:hover span {
  transform: translateY(4px);
}

.reviews-feature-section[hidden] {
  display: none;
}

.reviews-feature-section {
  background: #26372e;
  color: #fff;
}

.reviews-feature-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  align-items: stretch;
  min-height: 620px;
}

.reviews-feature-photo {
  margin: -32px 0;
  overflow: hidden;
  border-radius: 8px 8px 80px 8px;
  box-shadow: 0 28px 60px rgba(10, 19, 14, 0.35);
}

.reviews-feature-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.reviews-feature-story {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(50px, 7vw, 105px);
}

.reviews-feature-story::before {
  content: "“";
  position: absolute;
  top: 30px;
  right: 38px;
  color: rgba(255, 255, 255, 0.07);
  font-family: Georgia, serif;
  font-size: 15rem;
  line-height: 1;
}

.reviews-feature-section .tagline {
  color: #efb49d;
}

.reviews-feature-stars {
  margin: 25px 0 20px;
  color: #f2bf3a;
  letter-spacing: 0.12em;
}

.reviews-feature-story blockquote {
  position: relative;
  z-index: 1;
  max-width: 760px;
  max-height: 14.5em;
  margin: 0 0 28px;
  overflow: auto;
  padding-right: 12px;
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.45rem, 2.25vw, 2.35rem);
  font-weight: 400;
  line-height: 1.45;
  white-space: pre-line;
  scrollbar-width: thin;
}

.reviews-feature-person {
  display: grid;
  gap: 4px;
  margin-bottom: 20px;
}

.reviews-feature-person strong {
  font-size: 1.05rem;
}

.reviews-feature-person span,
.reviews-feature-person time {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  line-height: 1.45;
}

.reviews-feature-story .review-verified {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
}

.reviews-archive {
  background:
    radial-gradient(circle at 90% 10%, rgba(112, 133, 102, 0.11), transparent 28%),
    #fbf8f2;
}

.reviews-archive-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 38px;
}

.reviews-archive-heading .section-title {
  margin: 8px 0 0;
}

.reviews-archive-heading > p {
  max-width: 390px;
  color: var(--mud);
  line-height: 1.7;
}

.all-reviews-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.all-reviews-grid .review-story-card {
  height: auto;
  padding: 28px;
  border-color: rgba(116, 101, 88, 0.17);
  border-radius: 8px 28px 8px 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 36px rgba(50, 38, 30, 0.065);
}

.review-story-card:nth-child(4n + 2),
.review-story-card:nth-child(4n + 3) {
  border-radius: 28px 8px 28px 8px;
}

.review-story-card .review-avatar {
  background: #687b68;
}

.review-date {
  display: block;
  margin-top: 3px;
  color: var(--mud);
  font-size: 0.75rem;
  text-transform: capitalize;
}

.review-story-card .review-card-event {
  width: fit-content;
  padding: 7px 10px;
  border-radius: 7px;
  background: rgba(112, 133, 102, 0.1);
  color: #4c624e;
  font-size: 0.78rem;
}

.review-story-card.is-collapsible:not(.is-expanded) .review-text {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
}

.review-expand {
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--brick);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.reviews-load-more {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.reviews-load-more[hidden] {
  display: none;
}

.reviews-secondary-button {
  padding: 13px 20px;
  border: 1px solid var(--brick);
  border-radius: 999px;
  background: transparent;
  color: var(--brick);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.reviews-secondary-button:hover,
.reviews-secondary-button:focus-visible {
  background: var(--brick);
  color: #fff;
}

.reviews-page-cta {
  position: relative;
  min-height: min(78vh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.reviews-page-cta > img,
.reviews-cta-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.reviews-page-cta > img {
  object-fit: cover;
  object-position: center 32%;
}

.reviews-cta-overlay {
  background: linear-gradient(90deg, rgba(14, 25, 19, 0.86) 0%, rgba(14, 25, 19, 0.5) 50%, rgba(14, 25, 19, 0.1) 100%);
}

.reviews-cta-content {
  position: relative;
  z-index: 1;
  padding-top: clamp(90px, 12vw, 170px);
  padding-bottom: clamp(70px, 9vw, 120px);
}

.reviews-cta-copy {
  max-width: 650px;
}

.reviews-page-cta .tagline {
  color: #efb49d;
}

.reviews-page-cta h2 {
  margin: 10px 0 16px;
  font-family: "DM Serif Display", serif;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 400;
  line-height: 1;
}

.reviews-page-cta p {
  max-width: 540px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
  line-height: 1.7;
}

.reviews-cta-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 28px;
}

.reviews-cta-secondary {
  color: #fff;
  font-weight: 700;
  text-underline-offset: 5px;
}

@media (max-width: 900px) {
  .reviews-hero-layout,
  .reviews-feature-layout {
    grid-template-columns: 1fr;
  }

  .reviews-hero-photo {
    max-width: 680px;
    margin: 10px auto 0;
  }

  .reviews-feature-photo {
    height: min(72vw, 620px);
    margin: -24px 24px 0;
    border-radius: 8px 8px 54px 8px;
  }

  .reviews-feature-story {
    padding: 70px 28px 58px;
  }

  .reviews-feature-story blockquote {
    max-height: none;
    overflow: visible;
  }
}

@media (max-width: 700px) {
  .reviews-editorial-hero {
    padding-top: 34px;
  }

  .reviews-page-intro h1 {
    font-size: clamp(2.75rem, 13vw, 4.2rem);
  }

  .reviews-hero-layout {
    gap: 42px;
  }

  .reviews-hero-photo::before {
    inset: -10px 10px 10px -10px;
  }

  .reviews-hero-photo figcaption {
    right: -4px;
    bottom: 18px;
    max-width: 210px;
  }

  .reviews-archive-heading {
    display: grid;
    align-items: start;
  }

  .all-reviews-grid {
    grid-template-columns: 1fr;
  }

  .all-reviews-grid .review-story-card {
    padding: 22px;
  }

  .review-card-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .review-card-header .review-stars {
    width: 100%;
    padding-left: 58px;
  }

  .review-card-footer {
    align-items: flex-end;
  }

  .reviews-page-cta {
    min-height: 660px;
  }

  .reviews-page-cta > img {
    object-position: 58% center;
  }

  .reviews-cta-overlay {
    background: linear-gradient(0deg, rgba(14, 25, 19, 0.9) 0%, rgba(14, 25, 19, 0.46) 68%, rgba(14, 25, 19, 0.12) 100%);
  }

  .reviews-cta-actions {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Refined light treatment for the testimonial and closing invitation. */
.reviews-feature-section {
  background: #f2ece2;
  color: var(--ink);
}

.reviews-feature-layout {
  min-height: 0;
  align-items: center;
  gap: clamp(34px, 5vw, 74px);
}

.reviews-feature-photo {
  align-self: center;
  margin: 0;
  padding: 12px;
  overflow: visible;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 22px 55px rgba(72, 55, 42, 0.13);
}

.reviews-feature-photo img {
  width: 100%;
  height: auto;
  max-height: 690px;
  object-fit: contain;
  border-radius: 18px;
}

.reviews-feature-story {
  padding: clamp(42px, 5vw, 76px) 0;
}

.reviews-feature-story::before {
  color: rgba(178, 74, 59, 0.07);
}

.reviews-feature-section .tagline {
  color: var(--brick);
}

.reviews-feature-story blockquote {
  max-height: none;
  overflow: visible;
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-size: clamp(1.18rem, 1.45vw, 1.55rem);
  font-weight: 500;
  line-height: 1.68;
  letter-spacing: -0.018em;
  scrollbar-width: auto;
}

/* Quiet editorial counter in the reviews hero. */
.reviews-summary .reviews-summary-copy {
  position: relative;
  display: block;
  align-items: center;
  padding: 2px 0 2px 22px !important;
  border: 0 !important;
  border-left: 1px solid rgba(138, 124, 113, 0.35) !important;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.reviews-count-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin: 0 !important;
  color: var(--mud);
  white-space: nowrap;
}

.reviews-summary .reviews-count-text strong {
  color: var(--brick);
  font-family: "DM Serif Display", serif;
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1;
}

.reviews-summary .reviews-count-text > span {
  margin: 5px 0 0;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

.reviews-feature-person span,
.reviews-feature-person time,
.reviews-feature-story .review-verified {
  color: var(--mud);
}

.reviews-page-cta {
  position: relative;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: stretch;
  margin-top: clamp(65px, 8vw, 110px);
  margin-bottom: clamp(65px, 8vw, 110px);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(138, 124, 113, 0.18);
  border-radius: 30px;
  background: #fffaf3;
  color: var(--ink);
  box-shadow: 0 24px 65px rgba(72, 55, 42, 0.12);
}

.reviews-cta-photo {
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  background: #eee7dd;
}

.reviews-cta-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.reviews-cta-content {
  position: static;
  z-index: auto;
  display: flex;
  align-items: center;
  padding: clamp(42px, 5vw, 72px);
}

.reviews-page-cta .tagline {
  color: var(--brick);
}

.reviews-page-cta h2 {
  color: var(--ink);
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
}

.reviews-page-cta p {
  color: var(--mud);
}

.reviews-cta-secondary {
  color: var(--ink);
}

@media (max-width: 900px) {
  .reviews-feature-photo {
    width: min(100%, 650px);
    height: auto;
    margin: 0 auto;
  }

  .reviews-feature-story {
    padding: 26px 0 10px;
  }

  .reviews-page-cta {
    grid-template-columns: 1fr;
  }

  .reviews-cta-photo {
    min-height: 0;
  }

  .reviews-cta-photo img {
    height: auto;
    max-height: 660px;
    object-fit: contain;
  }
}

@media (max-width: 700px) {
  .reviews-feature-layout {
    gap: 24px;
  }

  .reviews-feature-story {
    padding-bottom: 0;
  }

  .reviews-page-cta {
    min-height: 0;
    width: calc(100% - 28px);
    border-radius: 22px;
  }

  .reviews-cta-content {
    padding: 34px 24px 40px;
  }
}

.nav-links a[aria-current="page"] {
  color: var(--brick);
}

.carousel-btn {
  border: none;
  background: var(--white);
  color: var(--ink);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(28, 20, 18, 0.18);
  font-size: 1.4rem;
  cursor: pointer;
}

.banner {
  border: 1px solid rgba(178, 74, 59, 0.3);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(178, 74, 59, 0.06);
}

.banner strong {
  font-size: 1.2rem;
}

.home-adventure-teaser {
  background: linear-gradient(180deg, rgba(246, 251, 247, 0.65), rgba(255, 250, 243, 0.95));
  padding: 0 0 34px;
}

.home-adventure-card {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(52, 75, 59, 0.1);
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(31, 56, 48, 0.1);
  color: inherit;
  display: grid;
  gap: clamp(16px, 3vw, 28px);
  grid-template-columns: 230px minmax(0, 1fr) auto;
  overflow: hidden;
  padding: 14px clamp(16px, 3vw, 26px) 14px 14px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-adventure-card:hover,
.home-adventure-card:focus {
  box-shadow: 0 22px 54px rgba(31, 56, 48, 0.16);
  transform: translateY(-2px);
}

.home-adventure-media {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, 1fr);
}

.home-adventure-media img {
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  height: 132px;
  object-fit: cover;
  width: 100%;
}

.home-adventure-copy {
  min-width: 0;
}

.home-adventure-badge {
  background: #d92d20;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  padding: 0.24rem 0.46rem;
  transform: rotate(-8deg);
}

.home-adventure-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.3vw, 2.85rem);
  line-height: 0.95;
  margin: 0 0 8px;
}

.home-adventure-copy p {
  color: #4d463e;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}

.home-adventure-cta {
  align-items: center;
  background: var(--brick);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  padding: 0.85rem 1.25rem;
  white-space: nowrap;
}

.home-iceland-highlight {
  background:
    radial-gradient(circle at 10% 12%, rgba(109, 169, 172, 0.16), transparent 28%),
    radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.8), transparent 26%),
    linear-gradient(180deg, rgba(255, 250, 243, 0.96), rgba(237, 246, 242, 0.82));
  padding: clamp(44px, 7vw, 88px) 0;
}

.home-iceland-card {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(16, 30, 33, 0.96), rgba(30, 50, 53, 0.94)),
    radial-gradient(circle at 18% 18%, rgba(128, 207, 214, 0.22), transparent 28%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 36px;
  box-shadow: 0 28px 70px rgba(18, 35, 38, 0.22);
  color: #fff;
  display: grid;
  gap: clamp(24px, 5vw, 64px);
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1fr);
  overflow: hidden;
  padding: clamp(22px, 4.4vw, 54px);
  position: relative;
}

.home-iceland-card::after {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 38%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.home-iceland-poster,
.home-iceland-copy {
  position: relative;
  z-index: 1;
}

.home-iceland-poster img {
  aspect-ratio: 941 / 1672;
  border-radius: 26px;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.34);
  display: block;
  max-width: 390px;
  object-fit: cover;
  width: 100%;
}

.home-iceland-kicker {
  color: #c9ebe5;
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.home-iceland-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6.2vw, 5.8rem);
  line-height: 0.9;
  margin: 0 0 20px;
  max-width: 760px;
}

.home-iceland-copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
  line-height: 1.62;
  margin: 0;
  max-width: 720px;
}

.home-iceland-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}

.home-iceland-meta span {
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 900;
  padding: 0.55rem 0.8rem;
}

.home-iceland-cta {
  align-items: center;
  background: var(--brick);
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-weight: 950;
  justify-content: center;
  padding: 0.95rem 1.35rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-iceland-cta:hover,
.home-iceland-cta:focus {
  box-shadow: 0 16px 34px rgba(178, 74, 59, 0.28);
  transform: translateY(-2px);
}

.infrasettimanali-banner {
  padding: 24px;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 214, 102, 0.22), transparent 26%),
    radial-gradient(circle at 85% 20%, rgba(255, 153, 153, 0.2), transparent 28%),
    linear-gradient(120deg, rgba(178, 74, 59, 0.14), rgba(180, 198, 176, 0.2));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 26px;
  align-items: center;
  border-color: rgba(178, 74, 59, 0.38);
}

#infrasettimanali-highlight {
  padding: 44px 0;
}

.infrasettimanali-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(178, 74, 59, 0.25);
  color: var(--brick-dark);
  font-weight: 700;
  font-size: 0.86rem;
}

.infrasettimanali-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.infrasettimanali-badges span {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(138, 124, 113, 0.25);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 600;
}

.infrasettimanali-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-whatsapp-inline {
  background: #2fb36f;
}

.cta-whatsapp-inline:hover,
.cta-whatsapp-inline:focus {
  background: #24985c;
}

.cta-whatsapp-inline img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  background: #fff;
  border-radius: 999px;
  padding: 3px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

.infrasettimanali-copy p {
  color: var(--mud);
  max-width: 700px;
  margin-bottom: 18px;
}

.infrasettimanali-media img {
  aspect-ratio: 1078 / 1325;
  width: 100%;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.whatsapp-banner {
  padding: 36px;
  background: linear-gradient(120deg, rgba(178, 74, 59, 0.15), rgba(138, 124, 113, 0.1));
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  align-items: center;
}

.whatsapp-banner-media img {
  border-radius: 18px;
  height: auto;
  width: 100%;
  object-fit: contain;
}

.whatsapp-banner .cta-whatsapp-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-banner .cta-whatsapp-inline img {
  width: 20px;
  height: 20px;
  min-width: 20px;
  object-fit: contain;
  flex: 0 0 20px;
}

.whatsapp-features {
  display: grid;
  gap: 12px;
}

.whatsapp-banner .cta {
  margin-top: 18px;
}

.whatsapp-feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.95rem;
}

.whatsapp-feature svg {
  width: 20px;
  height: 20px;
  color: var(--brick);
  margin-top: 2px;
}

.weekly-flow-banner {
  padding: 34px;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 214, 102, 0.16), transparent 24%),
    radial-gradient(circle at 90% 18%, rgba(180, 198, 176, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(255, 248, 243, 0.98), rgba(246, 243, 240, 0.96));
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: start;
  border-color: rgba(178, 74, 59, 0.18);
  box-shadow: 0 24px 50px rgba(32, 22, 18, 0.07);
}

.weekly-flow-header {
  grid-column: 1 / -1;
  max-width: 880px;
}

.weekly-flow-header .section-title {
  margin-bottom: 12px;
}

.weekly-flow-header .lead {
  max-width: 760px;
  margin-bottom: 18px;
}

.weekly-flow-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.weekly-flow-summary span {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(178, 74, 59, 0.12);
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 600;
}

.weekly-flow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.weekly-step-card {
  display: grid;
  gap: 10px;
  grid-template-rows: auto 1fr;
}

.weekly-step-eyebrow {
  color: var(--brick);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.weekly-step-content {
  height: 100%;
  min-height: 144px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(178, 74, 59, 0.1);
  box-shadow: 0 14px 26px rgba(28, 20, 18, 0.05);
}

.weekly-step-content h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.weekly-step-content p {
  margin: 0;
  color: var(--mud);
  font-size: 0.95rem;
  line-height: 1.6;
}

.weekly-flow-aside {
  display: grid;
  gap: 14px;
  align-self: start;
  margin-top: 30px;
  padding: 24px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 250, 247, 0.96));
  border: 1px solid rgba(138, 124, 113, 0.12);
  box-shadow: 0 18px 34px rgba(28, 20, 18, 0.05);
}

.weekly-flow-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.weekly-flow-note p {
  margin: 0;
  color: var(--mud);
  line-height: 1.65;
}

.weekly-flow-aside .cta-whatsapp-inline {
  justify-self: start;
  width: auto;
  max-width: none;
  padding: 11px 15px;
  border-radius: 14px;
  font-size: 0.92rem;
  line-height: 1.2;
  white-space: normal;
}

.weekly-intro-section {
  padding-bottom: 26px;
}

.weekly-flow-section {
  padding-top: 22px;
}

.weekly-attention-card {
  grid-column: 1 / -1;
  margin: 0;
  border: 1px solid rgba(178, 74, 59, 0.18);
  background: linear-gradient(180deg, rgba(255, 247, 242, 0.96), rgba(255, 255, 255, 0.98));
  box-shadow: 0 14px 26px rgba(32, 22, 18, 0.05);
}

.weekly-attention-card p {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.7;
}

.weekly-template-stack {
  display: grid;
  gap: 28px;
}

.weekly-template-card {
  display: grid;
  gap: 26px;
  scroll-margin-top: 132px;
  padding: 30px;
  border-radius: 32px;
  border: 1px solid rgba(178, 74, 59, 0.16);
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(255, 255, 255, 0.98));
  box-shadow: 0 24px 60px rgba(54, 40, 27, 0.08);
}

.weekly-template-main {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 28px;
  align-items: start;
}

.weekly-template-cover img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 18px 38px rgba(54, 40, 27, 0.14);
}

.weekly-template-copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.weekly-template-copy .section-title {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.weekly-template-description-text {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 62ch;
}

.weekly-template-description-body {
  display: grid;
  gap: 10px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 68ch;
}

.weekly-template-description-body p,
.weekly-template-description-body ul,
.weekly-template-description-body ol {
  margin: 0;
}

.weekly-template-description-body ul,
.weekly-template-description-body ol {
  padding-left: 1.2rem;
}

.weekly-summary-pills {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.weekly-summary-pill {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 10px;
  row-gap: 2px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(188, 91, 65, 0.16);
  color: var(--mud);
  font-size: 0.95rem;
}

.weekly-summary-pill svg {
  grid-row: 1 / span 2;
  width: 18px;
  height: 18px;
  color: var(--brick);
}

.weekly-summary-pill-label {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}

.weekly-summary-pill strong {
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.25;
}

.weekly-equipment-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(248, 237, 227, 0.48);
  border: 1px solid rgba(188, 91, 65, 0.12);
}

.weekly-equipment-panel h4 {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
}

.weekly-equipment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.weekly-equipment-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--brick-dark);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.weekly-equipment-title svg,
.weekly-equipment-list span svg {
  width: 16px;
  height: 16px;
  color: var(--brick);
  flex-shrink: 0;
}

.weekly-equipment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.weekly-equipment-list span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(188, 91, 65, 0.13);
  color: var(--mud);
  font-size: 0.86rem;
  line-height: 1.35;
}

.weekly-floating-cta {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 1100;
  display: grid;
  gap: 1px;
  min-width: 176px;
  padding: 13px 18px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brick), var(--brick-dark));
  color: var(--white);
  box-shadow: 0 16px 34px rgba(84, 48, 38, 0.28);
  text-align: center;
  transform: translateX(-50%);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.weekly-floating-cta:hover,
.weekly-floating-cta:focus {
  transform: translate(-50%, -2px);
  box-shadow: 0 20px 42px rgba(84, 48, 38, 0.34);
}

.weekly-floating-cta.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
}

.weekly-floating-cta-kicker {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  opacity: 0.82;
  text-transform: uppercase;
}

.weekly-floating-cta strong {
  font-size: 1rem;
  line-height: 1.15;
}

.weekly-template-note {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(178, 74, 59, 0.08);
  color: var(--ink);
  line-height: 1.65;
}

.weekly-ticket-options {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(188, 91, 65, 0.1);
}

.weekly-ticket-options-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}

.weekly-ticket-options-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.weekly-ticket-option {
  display: grid;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(188, 91, 65, 0.16);
  color: var(--ink);
}

.weekly-ticket-option-title {
  color: var(--muted);
  font-size: 0.92rem;
}

.weekly-ticket-options-note {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.weekly-template-primary-action {
  margin-top: 6px;
}

.weekly-template-primary-action .cta {
  width: fit-content;
}

.weekly-template-slots {
  display: grid;
  gap: 18px;
  scroll-margin-top: 132px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(248, 237, 227, 0.55);
  border: 1px solid rgba(188, 91, 65, 0.1);
}

.weekly-template-slots-header {
  display: grid;
  gap: 6px;
}

.weekly-template-slots-header h4 {
  margin: 0;
  font-size: 1.4rem;
}

.weekly-template-slots-header p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.weekly-slot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.weekly-slot-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(188, 91, 65, 0.14);
  box-shadow: 0 16px 32px rgba(54, 40, 27, 0.06);
  align-content: start;
}

.weekly-slot-card.is-selected {
  border-color: rgba(178, 74, 59, 0.34);
  box-shadow: 0 18px 34px rgba(178, 74, 59, 0.12);
}

.weekly-slot-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.weekly-slot-card h3 {
  margin: 0;
  font-size: 1.32rem;
  line-height: 1.2;
}

.weekly-slot-people {
  color: var(--brick-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.weekly-slot-progress {
  margin: 0;
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.6;
}

.weekly-progress-track {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(188, 91, 65, 0.08);
  overflow: hidden;
}

.weekly-progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(178, 74, 59, 0.78), rgba(215, 154, 96, 0.9));
}

.weekly-slot-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.weekly-slot-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(188, 91, 65, 0.14);
  color: var(--muted);
  font-size: 0.95rem;
}

.weekly-slot-card .cta {
  justify-self: start;
  width: fit-content;
}

.weekly-slot-card .cta.is-success {
  background: #2d7c54;
}

.weekly-slot-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.weekly-slot-actions .cta.secondary {
  background: transparent;
}

.weekly-slot-actions .cta.subtle {
  background: rgba(188, 91, 65, 0.08);
}

.weekly-slot-note {
  margin: -2px 0 2px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.weekly-modal-open {
  overflow: hidden;
}

.weekly-vote-modal,
.weekly-action-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
}

.weekly-vote-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(19, 14, 13, 0.55);
  backdrop-filter: blur(4px);
}

.weekly-vote-dialog,
.weekly-action-dialog {
  position: relative;
  z-index: 1;
  width: min(520px, calc(100vw - 32px));
  margin: 5vh auto 0;
  padding: 30px;
  border-radius: 28px;
  border: 1px solid rgba(178, 74, 59, 0.16);
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.99), rgba(255, 255, 255, 0.99));
  box-shadow: 0 28px 70px rgba(25, 19, 17, 0.24);
  max-height: 86vh;
  overflow-y: auto;
}

.weekly-action-dialog {
  width: min(460px, calc(100vw - 32px));
  margin-top: 12vh;
}

.weekly-vote-close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: 0;
  background: transparent;
  color: var(--mud);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

.weekly-vote-copy h3 {
  margin: 0 0 8px;
}

.weekly-vote-copy p {
  margin: 0 0 18px;
  color: var(--mud);
  line-height: 1.65;
}

.weekly-vote-feedback {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(178, 74, 59, 0.08);
  color: var(--brick);
  font-size: 0.95rem;
}

.weekly-vote-form,
.weekly-vote-summary {
  display: grid;
  gap: 14px;
}

.weekly-vote-form label {
  display: grid;
  gap: 8px;
}

.weekly-vote-form span {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}

.weekly-vote-form input,
.weekly-vote-form select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(138, 124, 113, 0.28);
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.weekly-vote-form input:focus,
.weekly-vote-form select:focus {
  outline: none;
  border-color: rgba(178, 74, 59, 0.5);
  box-shadow: 0 0 0 4px rgba(178, 74, 59, 0.12);
}

.weekly-vote-modal[hidden],
.weekly-action-modal[hidden] {
  display: none !important;
}

.weekly-vote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.weekly-vote-summary {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(188, 91, 65, 0.14);
}

.weekly-vote-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  font-size: 0.95rem;
}

.weekly-vote-summary-row span {
  color: var(--muted);
}

.weekly-vote-summary-row strong {
  text-align: right;
}

.weekly-vote-note {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(178, 74, 59, 0.08);
  color: var(--ink);
  line-height: 1.6;
}

.weekly-vote-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

@media (max-width: 900px) {
  .infrasettimanali-banner {
    grid-template-columns: 1fr;
  }

  .infrasettimanali-media {
    order: -1;
  }

  .infrasettimanali-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .weekly-flow-banner {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .weekly-flow-header {
    grid-column: auto;
  }

  .weekly-flow-grid {
    grid-template-columns: 1fr;
  }

  .weekly-flow-aside {
    margin-top: 0;
  }

  .weekly-flow-aside .cta-whatsapp-inline {
    width: 100%;
    justify-content: center;
  }

  .weekly-template-card {
    padding: 20px;
  }

  .weekly-template-main {
    grid-template-columns: 1fr;
  }

  .weekly-slot-grid {
    grid-template-columns: 1fr;
  }

  .weekly-vote-dialog {
    margin-top: 2vh;
    padding: 22px 18px 24px;
    width: min(100vw - 16px, 520px);
    max-height: 92vh;
  }

  .weekly-action-dialog {
    margin-top: 8vh;
    padding: 22px 18px;
    width: min(100vw - 20px, 460px);
  }

  .weekly-vote-grid {
    grid-template-columns: 1fr;
  }

  .weekly-vote-actions {
    flex-direction: column-reverse;
  }

  .weekly-vote-actions .cta,
  .weekly-slot-actions .cta,
  .weekly-slot-card .cta {
    width: 100%;
    justify-content: center;
  }

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

  .all-reviews-grid {
    grid-template-columns: 1fr;
  }

  .reviews-summary,
  .reviews-page-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .reviews-summary > div {
    min-width: 0;
  }

  .reviews-page-cta .cta {
    align-self: flex-start;
  }

  .review-card-header {
    flex-wrap: wrap;
  }

  .review-stars {
    width: 100%;
    padding-left: 58px;
  }
}

/* Archive variants intentionally reuse the live excursion visual system. */
.archive-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.archive-grid .archive-card {
  border-radius: var(--radius-md);
  box-shadow: none;
  transform: none;
}

.archive-grid .archive-card:hover {
  border-color: rgba(178, 74, 59, 0.28);
  box-shadow: 0 14px 28px rgba(28, 20, 18, 0.08);
  transform: translateY(-3px);
}

.archive-grid .archive-card-image {
  display: block;
  aspect-ratio: 4 / 5;
  background: var(--sand);
}

.archive-grid .archive-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: none;
}

.archive-grid .archive-card:hover .archive-card-image img {
  transform: none;
}

.archive-grid .archive-event-date {
  top: 14px;
  left: 14px;
  width: auto;
  padding: 8px 12px;
  background: var(--white);
  color: var(--brick);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.archive-grid .event-content h3 a {
  color: inherit;
}

.archive-grid .event-content p {
  min-height: calc(1.5em * 3);
}

.archive-grid .event-footer {
  margin-top: auto;
}

.live-event-card .event-photo {
  aspect-ratio: auto;
  background: transparent;
}

.live-event-card .event-photo img,
.live-event-card:hover .event-photo img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  transform: none;
  box-shadow: none;
}

.live-event-card .event-date-inline {
  position: static;
  align-self: flex-start;
  width: fit-content;
  padding: 7px 11px;
  border: 1px solid rgba(178, 74, 59, 0.14);
  background: rgba(178, 74, 59, 0.08);
  color: var(--brick);
  box-shadow: none;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.archive-card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
}

.archive-card-meta .event-kicker {
  flex: 1 1 150px;
}

.archive-status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(178, 74, 59, 0.1);
  color: var(--brick);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.archive-detail-hero-coherent {
  background: linear-gradient(180deg, rgba(248, 242, 236, 0.72), rgba(255, 255, 255, 0));
}

.archive-detail-hero-coherent .archive-breadcrumb {
  margin-bottom: 28px;
}

.archive-detail-hero-coherent .archive-summary {
  margin-top: 20px;
  color: var(--mud);
  line-height: 1.8;
}

.archive-detail-hero-coherent .archive-editions {
  margin: 18px 0 0;
  color: var(--brick);
  font-size: 0.82rem;
  font-weight: 700;
}

.archive-detail-hero-coherent .archive-poster {
  overflow: hidden;
  background: var(--sand);
  box-shadow: 0 18px 40px rgba(28, 20, 18, 0.14);
}

.archive-detail-hero-coherent .archive-poster img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  border-radius: inherit;
  box-shadow: none;
}

.archive-detail-panels .archive-story-card {
  grid-column: 1 / -1;
  padding: clamp(24px, 4vw, 36px);
}

.archive-story-card h2 {
  margin: 8px 0 20px;
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  font-weight: 400;
}

.archive-description {
  color: var(--mud);
  line-height: 1.8;
}

.archive-description p {
  margin: 0 0 0.9rem;
}

.archive-description p:last-child {
  margin-bottom: 0;
}

.archive-description hr {
  margin: 24px 0;
  border: 0;
  border-top: 1px solid rgba(138, 124, 113, 0.22);
}

.archive-equipment-card {
  grid-column: span 2;
}

.archive-concluded-callout {
  align-items: flex-start;
  margin-top: 28px;
}

.archive-concluded-callout p {
  margin: 5px 0 14px;
  color: var(--mud);
}

.archive-concluded-callout .cta {
  display: inline-block;
}

@media (max-width: 820px) {
  .archive-detail-hero-coherent .detail-hero-grid {
    grid-template-columns: 1fr;
  }

  .archive-detail-hero-coherent .detail-hero-media {
    order: -1;
  }

  .archive-detail-hero-coherent .detail-hero-head .section-title {
    font-size: clamp(2rem, 9vw, 3.25rem);
  }

  .archive-detail-panels .archive-equipment-card {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .weekly-ticket-options-list {
    grid-template-columns: 1fr;
  }

  .weekly-template-copy .section-title {
    font-size: clamp(1.55rem, 7vw, 2.05rem);
  }
}


.filters {
  margin: 26px 0 24px;
  border-radius: 18px;
  border: 1px solid rgba(138, 124, 113, 0.3);
  background: var(--white);
  box-shadow: 0 18px 30px rgba(28, 20, 18, 0.08);
  overflow: hidden;
}

.filters summary {
  list-style: none;
}

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

.filters-summary {
  cursor: pointer;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: var(--ink);
}

.filters-summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--brick);
  border-bottom: 2px solid var(--brick);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.filters[open] .filters-summary::after {
  transform: rotate(-135deg);
}

.filters-panel {
  padding: 18px 20px 22px;
  border-top: 1px solid rgba(138, 124, 113, 0.2);
  display: grid;
  gap: 18px;
}

.filters-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.05rem;
  color: var(--ink);
}

.filters-close {
  border: none;
  background: var(--sand);
  color: var(--ink);
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 999px;
  cursor: pointer;
}

.filters-group h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  color: var(--ink);
}

.filters-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-pill {
  border: 1px solid rgba(138, 124, 113, 0.35);
  background: var(--white);
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-pill.is-active {
  background: var(--brick);
  color: var(--white);
  border-color: var(--brick);
  box-shadow: 0 12px 18px rgba(178, 74, 59, 0.2);
}

.filters-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.filters-actions .cta {
  flex: 1;
  text-align: center;
}

@media (max-width: 700px) {
  .filters-summary {
    padding: 14px 16px;
  }

  .filters-panel {
    padding: 16px;
  }

  .filters-actions {
    flex-direction: column;
  }
}

.event-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.event-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(138, 124, 113, 0.2);
  background: var(--white);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.event-card.is-clickable {
  cursor: pointer;
}

.event-card--partner {
  border-color: rgba(43, 112, 111, 0.22);
  box-shadow: 0 1rem 2.4rem rgba(41, 69, 63, 0.06);
}

.event-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
}

.event-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.event-content h3 {
  line-height: 1.25;
  min-height: calc(1.25em * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-kicker {
  color: #b24f3f;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.event-content p {
  line-height: 1.5;
  min-height: calc(1.5em * 3);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--mud);
}

.event-price {
  font-weight: 700;
  color: var(--ink);
  font-size: 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  min-height: 52px;
  justify-content: flex-end;
}

.event-price-note,
.ticket-fee-note {
  font-size: 0.64rem;
  color: var(--mud);
  font-weight: 500;
}

.event-actions {
  margin-top: auto;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.event-actions a {
  flex: 1;
  text-align: center;
}

.event-actions .cta {
  padding: 8px 12px;
  font-size: 0.9rem;
}

.event-photo {
  position: relative;
}

.event-date {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--white);
  padding: 8px 12px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 8px 18px rgba(28, 20, 18, 0.12);
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  min-height: 38px;
}

.event-tag {
  background: var(--sand);
  color: var(--mud);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.event-tag svg {
  width: 14px;
  height: 14px;
  color: var(--brick);
}

.event-footer {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.event-footer .event-actions {
  margin-top: 0;
  flex: 1;
  justify-content: flex-end;
}

.event-footer .event-actions a {
  flex: 0;
  min-width: 120px;
}

.event-footer .event-actions a.icon-only {
  min-width: 36px;
}

.detail-hero {
  padding: 70px 0 40px;
  position: relative;
}

.detail-hero-head {
  margin-bottom: 24px;
}

.detail-hero-head .section-title {
  max-width: 100%;
  line-height: 1.14;
  margin-bottom: 0;
}

.detail-hero img {
  border-radius: var(--radius-lg);
  height: 360px;
  object-fit: cover;
  width: 100%;
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 36px;
  align-items: center;
}

/* On live desktop detail pages, keep the poster beside the long description. */
@media (min-width: 821px) {
  #detail-hero .detail-hero-grid {
    align-items: start;
  }

  #detail-hero .detail-hero-grid > .detail-hero-media {
    position: sticky;
    top: 112px;
    align-self: start;
  }

  #detail-hero .detail-hero-grid > .detail-hero-media:not(.has-video) {
    display: flex;
    justify-content: center;
    background: transparent;
  }

  #detail-hero .detail-hero-grid > .detail-hero-media:not(.has-video) img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: calc(100vh - 136px);
    object-fit: contain;
  }
}

.page-multiday-detail .detail-hero {
  padding: 0;
  background: transparent;
}

.page-multiday-detail .detail-hero-grid {
  align-items: start;
}

.page-multiday-detail .detail-hero-head {
  margin-bottom: 18px;
}

.page-multiday-detail .detail-hero-head .section-title {
  max-width: 16ch;
  font-size: clamp(2.35rem, 5vw, 4.5rem);
}

.multiday-hero-shell {
  padding: 56px 0 18px;
  background: linear-gradient(180deg, rgba(248, 242, 236, 0.96), rgba(255, 255, 255, 0.98));
  color: var(--ink);
  border-bottom: 1px solid rgba(138, 124, 113, 0.12);
}

.multiday-hero-inner {
  min-height: auto;
  display: block;
}

.multiday-hero-layout {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  margin-top: 22px;
}

.multiday-hero-copy {
  width: 100%;
}

.multiday-hero-copy .tagline {
  color: var(--brick);
  margin-bottom: 12px;
}

.multiday-hero-copy .section-title {
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  text-shadow: none;
  font-size: clamp(1.9rem, 3.3vw, 3.35rem);
  line-height: 1.12;
}

.multiday-hero-subtitle {
  width: min(60ch, 100%);
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--mud);
}

.multiday-hero-subtitle p,
.multiday-hero-subtitle ul {
  margin: 0;
}

.multiday-hero-subtitle ul {
  padding-left: 1.2rem;
}

.multiday-hero-subtitle p + p,
.multiday-hero-subtitle p + ul,
.multiday-hero-subtitle ul + p,
.multiday-hero-subtitle ul + ul {
  margin-top: 0.6rem;
}

.multiday-hero-meta {
  display: grid;
  gap: 18px;
  align-content: start;
}

.multiday-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.multiday-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(138, 124, 113, 0.18);
}

.multiday-chip svg,
.multiday-summary-icon svg,
.multiday-day-meta svg,
.multiday-plain-list svg,
.multiday-logistics-panel .equip-title svg,
.multiday-logistics-panel .bubble-list span svg {
  width: 16px;
  height: 16px;
  color: var(--brick);
  flex-shrink: 0;
}

.multiday-hero-actions {
  display: flex;
  margin-top: 24px;
}

.multiday-primary-cta {
  min-width: 170px;
  justify-content: center;
  background: rgba(255,255,255,0.95);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,0.55);
}

.multiday-primary-cta:hover {
  background: var(--white);
}

.detail-hero-content .lead {
  font-size: 1.05rem;
}

.detail-hero-content .lead p {
  margin: 0 0 0.8rem;
}

.detail-hero-content .lead p:last-child {
  margin-bottom: 0;
}

.page-multiday-detail .detail-hero-content .lead {
  max-width: 62ch;
  color: var(--mud);
  font-size: 1.02rem;
  line-height: 1.8;
}

.detail-hero-media,
.multiday-hero-media {
  display: block;
  border-radius: 26px;
  background: var(--sand);
}

.guide-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  min-height: 64px;
  margin: 20px 0 22px;
  padding: 6px 20px 6px 6px;
  border: 1px solid rgba(170, 81, 60, 0.2);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(249, 239, 231, 0.96));
  box-shadow: 0 12px 26px rgba(28, 20, 18, 0.12);
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  line-height: 1;
}

.detail-hero .guide-badge img,
.multiday-hero-meta .guide-badge img {
  display: block;
  width: 52px;
  height: 52px;
  margin: 0;
  border: 2px solid var(--brick);
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  box-shadow: none;
}

.guide-badge strong {
  color: var(--brick);
  font-weight: 700;
}

.detail-hero-media.has-video,
.multiday-hero-media.has-video {
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.detail-hero-media img,
.detail-hero-media video {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: initial;
  border-radius: inherit;
  box-shadow: 0 18px 40px rgba(28, 20, 18, 0.14);
}

.detail-hero-media.has-video video,
.multiday-hero-media.has-video video {
  height: 100%;
  max-height: 100%;
  object-fit: cover;
  transition: opacity 180ms ease;
}

.page-multiday-detail .detail-hero-media img,
.page-multiday-detail .detail-hero-media video {
  max-height: none;
  border-radius: inherit;
}

.multiday-hero-media img,
.multiday-hero-media video {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: initial;
  border-radius: inherit;
  box-shadow: 0 24px 48px rgba(28, 20, 18, 0.14);
}

.video-sound-toggle {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  padding: 0;
  background: rgba(28, 20, 18, 0.68);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(8px);
}

.video-sound-toggle[hidden] {
  display: none;
}

.video-sound-toggle svg {
  width: 22px;
  height: 22px;
}

.video-sound-toggle .icon-audio,
.video-sound-toggle.is-muted .icon-muted {
  display: block;
}

.video-sound-toggle .icon-muted,
.video-sound-toggle.is-muted .icon-audio {
  display: none;
}

.detail-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
}

.detail-title-image {
  display: none;
  width: 96px;
  height: 96px;
  border-radius: 18px;
  object-fit: cover;
  flex-shrink: 0;
}

.ticket-grid {
  display: grid;
  gap: 12px;
}

.ticket-item {
  border: 1px solid rgba(138, 124, 113, 0.2);
  background: #fff;
  border-radius: 16px;
  padding: 12px 14px;
}

.ticket-title {
  font-weight: 600;
  color: var(--ink);
}

.ticket-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
  color: var(--mud);
  font-size: 0.92rem;
}

.ticket-deposit {
  font-size: 0.82rem;
  color: var(--clay);
}

.detail-pills,
.detail-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--mud);
  font-size: 0.9rem;
  border: 1px solid rgba(138, 124, 113, 0.2);
}

.pill svg {
  width: 16px;
  height: 16px;
  color: var(--brick);
}

.pill.soft {
  background: rgba(178, 74, 59, 0.08);
  color: var(--ink);
}

.detail-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.detail-price {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--ink);
}

.multiday-hero-card {
  margin-top: 20px;
  padding: 20px 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.98), rgba(246, 240, 231, 0.98));
  border: 1px solid rgba(178, 74, 59, 0.16);
  box-shadow: 0 18px 36px rgba(28, 20, 18, 0.08);
}

.multiday-hero-card__eyebrow,
.multiday-overview-eyebrow {
  margin-bottom: 10px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brick);
}

.multiday-hero-card__stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.multiday-hero-stat {
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(138, 124, 113, 0.12);
}

.multiday-hero-stat span,
.multiday-overview-metrics span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mud-gray);
}

.multiday-hero-stat strong,
.multiday-overview-metrics strong {
  color: var(--ink);
  font-size: 1rem;
}

.multiday-hero-card__note {
  margin-top: 14px;
  color: var(--mud);
  font-size: 0.94rem;
}

.detail-panels {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.info-card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(138, 124, 113, 0.2);
  background: var(--white);
  padding: 20px;
  box-shadow: 0 14px 28px rgba(28, 20, 18, 0.08);
}

.info-card h3 {
  margin-bottom: 12px;
}

.multiday-overview-card {
  grid-column: 1 / -1;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: center;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(252, 246, 238, 0.98), rgba(255, 255, 255, 1)),
    var(--white);
}

.multiday-overview-copy h3 {
  margin-bottom: 10px;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.multiday-overview-copy p {
  color: var(--mud);
  line-height: 1.8;
}

.multiday-overview-metrics {
  display: grid;
  gap: 12px;
}

.multiday-overview-metrics div {
  padding: 15px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(138, 124, 113, 0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.5);
}

.multiday-program-card {
  grid-column: 1 / -1;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(249, 245, 239, 0.92));
}

.multiday-program-disclosure {
  overflow: hidden;
}

.multiday-program-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.multiday-program-summary::-webkit-details-marker {
  display: none;
}

.multiday-program-summary-copy {
  display: grid;
  gap: 4px;
}

.multiday-program-summary-copy .multiday-section-kicker {
  margin: 0;
}

.multiday-program-summary-copy strong {
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.1;
}

.multiday-program-summary-copy small {
  color: var(--mud);
  font-size: 0.86rem;
}

.multiday-program-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 94px;
  padding: 10px 14px;
  border: 1px solid rgba(178, 74, 59, 0.2);
  border-radius: 999px;
  background: rgba(178, 74, 59, 0.09);
  color: var(--brick);
  font-size: 0.82rem;
  font-weight: 700;
}

.multiday-program-toggle svg {
  width: 18px;
  height: 18px;
  transition: transform 200ms ease;
}

.program-close-label,
.multiday-program-disclosure[open] .program-open-label {
  display: none;
}

.multiday-program-disclosure[open] .program-close-label {
  display: inline;
}

.multiday-program-disclosure[open] .multiday-program-toggle svg {
  transform: rotate(180deg);
}

.multiday-program-summary:focus-visible {
  outline: 3px solid rgba(178, 74, 59, 0.3);
  outline-offset: 6px;
  border-radius: 16px;
}

.multiday-program-content {
  padding-top: 24px;
  border-top: 1px solid rgba(138, 124, 113, 0.18);
}

.multiday-day-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.multiday-day-grid.is-horizontal {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.multiday-day-card {
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 252, 248, 0.98), rgba(246, 239, 229, 0.94));
  border: 1px solid rgba(178, 74, 59, 0.12);
  box-shadow: 0 14px 28px rgba(28, 20, 18, 0.06);
}

.multiday-day-grid.is-horizontal .multiday-day-card {
  height: 100%;
}

.multiday-day-label {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(178, 74, 59, 0.12);
  color: var(--brick);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.multiday-day-card h4 {
  margin-bottom: 10px;
  font-size: 1.14rem;
  color: var(--ink);
  line-height: 1.35;
}

.multiday-day-description {
  color: var(--mud);
  font-size: 0.96rem;
  line-height: 1.72;
  margin-bottom: 16px;
}

.multiday-day-description p {
  margin: 0 0 12px;
}

.multiday-day-description p:last-child,
.multiday-day-description ul:last-child {
  margin-bottom: 0;
}

.multiday-day-description ul {
  margin: 0 0 12px;
  padding-left: 18px;
}

.multiday-day-description li + li {
  margin-top: 6px;
}

.multiday-day-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.multiday-day-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--mud);
  font-size: 0.82rem;
}

.page-multiday-detail .detail-callout {
  background: linear-gradient(180deg, rgba(178, 74, 59, 0.12), rgba(214, 173, 103, 0.12));
  border: 1px solid rgba(178, 74, 59, 0.14);
}

.multiday-page-stack {
  display: grid;
  gap: 26px;
  margin-top: -36px;
  position: relative;
  z-index: 2;
}

.multiday-intro-card,
.multiday-summary-panel,
.multiday-program-section,
.multiday-booking-panel {
  border-radius: 30px;
  border: 1px solid rgba(138, 124, 113, 0.16);
  background: linear-gradient(180deg, rgba(251, 248, 244, 0.98), rgba(255, 255, 255, 0.98));
  box-shadow: 0 18px 40px rgba(28, 20, 18, 0.08);
  padding: 30px;
}

.multiday-intro-content {
  width: min(860px, 100%);
  margin: 0 auto;
  text-align: center;
}

.multiday-section-kicker {
  margin-bottom: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brick);
}

.multiday-intro-content h2,
.multiday-summary-panel h2,
.multiday-program-section h2,
.multiday-logistics-panel h2,
.multiday-booking-panel h2 {
  margin-bottom: 18px;
  text-align: center;
}

.multiday-intro-text {
  color: var(--mud);
  line-height: 1.8;
  text-align: justify;
  text-justify: inter-word;
}

.multiday-intro-text p {
  margin: 0 0 0.85rem;
}

.multiday-intro-text img[src*="logo-smartravel"],
.multiday-day-description img[src*="logo-smartravel"],
.detail-hero-content img[src*="logo-smartravel"],
.lead img[src*="logo-smartravel"],
.archive-description img[src*="logo-smartravel"],
.archive-description img[alt*="smartravel" i] {
  display: block;
  width: min(260px, 64vw) !important;
  max-width: min(260px, 64vw) !important;
  height: auto !important;
  margin: 18px 0 12px !important;
  object-fit: contain;
}

.multiday-summary-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.multiday-summary-card {
  padding: 22px 18px;
  border-radius: 22px;
  background: var(--white);
  border: 1px solid rgba(138, 124, 113, 0.14);
  text-align: center;
}

.multiday-summary-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}

.multiday-summary-card span,
.multiday-booking-card span {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--mud-gray);
  margin-bottom: 8px;
}

.multiday-summary-card strong,
.multiday-booking-card strong {
  color: var(--ink);
  font-size: 1.18rem;
}

.multiday-summary-day-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.multiday-summary-day-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-top: 7px;
  border-top: 1px solid rgba(138, 124, 113, 0.14);
}

.multiday-summary-day-list small {
  color: var(--mud);
  font-size: 0.82rem;
  line-height: 1.35;
}

.multiday-summary-day-list b {
  color: var(--ink);
  font-size: 0.98rem;
  white-space: nowrap;
}

.multiday-program-section .multiday-day-grid {
  margin-top: 8px;
}

.multiday-day-card h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
  line-height: 1.3;
}

.multiday-logistics-panel {
  border-radius: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 54px calc((100vw - min(1100px, 92vw)) / 2) 54px;
  background: linear-gradient(180deg, rgba(244, 235, 228, 0.98), rgba(251, 246, 241, 0.98));
  color: var(--ink);
  border: none;
  box-shadow: none;
}

.multiday-logistics-grid {
  width: min(1100px, 92vw);
  margin: 0 auto;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.multiday-logistics-column h3 {
  color: var(--ink);
}

.multiday-plain-list {
  list-style: none;
  display: grid;
  gap: 12px;
  color: var(--mud);
}

.multiday-plain-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.multiday-plain-list strong {
  color: var(--ink);
}

.multiday-equipment-split {
  display: grid;
  gap: 18px;
}

.multiday-logistics-panel .equip-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brick);
}

.multiday-logistics-panel .bubble-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--ink);
  border: 1px solid rgba(178, 74, 59, 0.12);
}

.multiday-ticket-card-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 280px));
  justify-content: center;
}

.multiday-ticket-card {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(138, 124, 113, 0.22);
  box-shadow: 0 10px 24px rgba(28, 20, 18, 0.05);
}

.multiday-ticket-card h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  color: var(--ink);
}

.multiday-ticket-main {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
  color: var(--mud);
}

.multiday-ticket-main strong {
  color: var(--brick);
  font-size: 1.05rem;
}

.multiday-ticket-deposit {
  color: var(--mud);
  font-size: 0.98rem;
  margin-bottom: 6px;
}

.multiday-ticket-fee {
  color: var(--mud);
  font-size: 0.82rem;
}

.multiday-booking-card p {
  margin-top: 10px;
  color: var(--mud);
  line-height: 1.7;
  font-size: 0.94rem;
}

.multiday-booking-actions {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.bubble-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.bubble {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  background: var(--sand);
  font-size: 0.9rem;
  color: var(--ink);
}

.bubble svg {
  width: 16px;
  height: 16px;
  color: var(--brick);
}

.multiday-route-bubble {
  align-items: flex-start;
}

.multiday-route-summary {
  flex: 1;
  min-width: 0;
}

.multiday-route-summary > strong {
  display: block;
  margin-bottom: 8px;
}

.bubble-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.equip-section + .equip-section {
  margin-top: 18px;
}

.equip-title {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mud-gray);
  margin-bottom: 10px;
}

.bubble-list span {
  background: var(--sand);
  color: var(--mud);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.icon-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.icon-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--mud);
}

.icon-list svg {
  width: 18px;
  height: 18px;
  color: var(--brick);
  margin-top: 2px;
  flex-shrink: 0;
}

.detail-callout {
  margin-top: 24px;
  border-radius: var(--radius-md);
  background: rgba(178, 74, 59, 0.08);
  padding: 16px 18px;
  color: var(--ink);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.detail-callout svg {
  width: 18px;
  height: 18px;
  color: var(--brick);
  margin-top: 2px;
  flex-shrink: 0;
}

.detail-empty-state {
  padding: 64px 0 52px;
  text-align: center;
}

.detail-empty-state .section-title {
  max-width: 18ch;
  margin: 0 auto 16px;
}

.detail-empty-state p {
  width: min(620px, 100%);
  margin: 0 auto;
  color: var(--mud);
  line-height: 1.8;
}

.detail-empty-state__actions {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: start;
}

.hero-card {
  display: flex;
  justify-content: flex-end;
}

.about-photo {
  width: min(520px, 100%);
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: var(--sand);
  border-radius: 24px;
}

.page-chi-sono .hero-card img {
  width: min(520px, 100%);
}

.detail-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: 30px;
}

.specs {
  border: 1px solid rgba(138, 124, 113, 0.2);
  border-radius: var(--radius-md);
  padding: 20px;
  background: var(--sand);
}

.specs ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

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

.note {
  font-size: 0.9rem;
  color: var(--mud);
}

.faq {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.faq details {
  border: 1px solid rgba(138, 124, 113, 0.25);
  border-radius: 12px;
  padding: 14px 18px;
  background: var(--white);
}

footer {
  padding: 40px 0;
  border-top: 1px solid rgba(138, 124, 113, 0.2);
  color: var(--mud);
  font-size: 0.9rem;
}

footer .footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--mud);
}

.badge svg {
  width: 18px;
  height: 18px;
  color: var(--brick);
}

.menu-toggle {
  display: none;
  background: var(--white);
  border: 1px solid rgba(138, 124, 113, 0.35);
  border-radius: 12px;
  padding: 6px 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 4px 0;
}

.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: min(280px, 80vw);
  height: 100%;
  background: var(--white);
  box-shadow: 18px 0 40px rgba(28, 20, 18, 0.2);
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 70;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
}

.side-menu.active {
  transform: translateX(0);
}

.side-menu a {
  font-weight: 600;
  font-size: 1.05rem;
}

.side-menu-label {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.side-menu .side-menu-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 0;
  margin: -6px 0 0 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 500;
}

.side-menu .side-menu-child:hover,
.side-menu .side-menu-child:focus {
  background: transparent;
  color: var(--brick);
}

.side-menu .side-menu-child[href="/escursioni/"] {
  margin-bottom: 4px;
  border: 0;
  border-radius: 0;
}

/* Search-friendly archive pages are generated by the SEO sync service. */
.archive-index-hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 92px;
  background:
    radial-gradient(circle at 82% 20%, rgba(192, 111, 73, 0.26), transparent 32%),
    linear-gradient(135deg, #f4eadb 0%, #fbf8f1 48%, #dce8db 100%);
}

.archive-index-hero::after {
  content: "";
  position: absolute;
  right: -5vw;
  bottom: -140px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(73, 91, 67, 0.18);
  border-radius: 48% 52% 38% 62%;
  transform: rotate(18deg);
}

.archive-index-hero .container {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin-left: max(calc((100vw - 1180px) / 2), 24px);
}

.archive-index-hero h1 {
  max-width: 760px;
  margin: 12px 0 18px;
  font-family: "DM Serif Display", serif;
  font-size: clamp(3rem, 7vw, 6.2rem);
  font-weight: 400;
  line-height: 0.96;
}

.archive-index-hero p {
  max-width: 680px;
  margin: 0 0 28px;
  color: var(--mud);
  font-size: clamp(1rem, 2vw, 1.22rem);
  line-height: 1.75;
}

.archive-toolbar {
  display: grid;
  grid-template-columns: minmax(280px, 1.8fr) 1fr 1fr;
  gap: 14px;
  margin-bottom: 22px;
  padding: 18px;
  border: 1px solid rgba(138, 124, 113, 0.22);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(28, 20, 18, 0.07);
}

.archive-toolbar label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--mud);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.archive-toolbar input,
.archive-toolbar select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(138, 124, 113, 0.32);
  border-radius: 13px;
  background: #fffdfa;
  color: var(--ink);
  font: 500 0.95rem "Sora", sans-serif;
  letter-spacing: normal;
  text-transform: none;
}

.archive-results-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 2px 22px;
  color: var(--mud);
}

.archive-results-heading p {
  margin: 0;
}

.archive-results-heading button {
  border: 0;
  background: transparent;
  color: var(--brick);
  font: 600 0.88rem "Sora", sans-serif;
  cursor: pointer;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.archive-card {
  overflow: hidden;
  border: 1px solid rgba(138, 124, 113, 0.2);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(28, 20, 18, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.archive-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(28, 20, 18, 0.13);
}

.archive-card[hidden] {
  display: none;
}

.archive-card-image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sand);
}

.archive-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.archive-card:hover .archive-card-image img {
  transform: scale(1.035);
}

.archive-card-image > span,
.archive-status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f0e3d2;
  color: #74432f;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.archive-card-image > span {
  position: absolute;
  top: 15px;
  left: 15px;
  box-shadow: 0 5px 18px rgba(28, 20, 18, 0.12);
}

.archive-card-content {
  padding: 24px;
}

.archive-card-meta {
  margin-bottom: 10px;
  color: var(--brick);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.archive-card h2 {
  margin: 0 0 12px;
  font-family: "DM Serif Display", serif;
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.12;
}

.archive-card h2 a {
  color: inherit;
}

.archive-card p {
  min-height: 5.1em;
  margin: 0 0 18px;
  color: var(--mud);
  font-size: 0.92rem;
  line-height: 1.7;
}

.archive-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 20px;
}

.archive-card-tags span {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--mud);
  font-size: 0.72rem;
  font-weight: 600;
}

.archive-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brick);
  font-weight: 700;
}

.archive-empty {
  padding: 64px 24px;
  border-radius: 26px;
  background: var(--sand);
  text-align: center;
}

.archive-detail-hero {
  padding: 64px 0 72px;
  background: linear-gradient(135deg, #f7f0e5 0%, #edf2ea 100%);
}

.archive-detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(34px, 6vw, 80px);
}

.archive-detail-cover {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 34px 34px 120px 34px;
  background: var(--sand);
  box-shadow: 0 28px 64px rgba(28, 20, 18, 0.16);
}

.archive-detail-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.archive-breadcrumb {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--mud);
  font-size: 0.82rem;
}

.archive-detail-intro h1 {
  margin: 16px 0 20px;
  font-family: "DM Serif Display", serif;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1;
}

.archive-detail-intro > p {
  color: var(--mud);
  font-size: 1.04rem;
  line-height: 1.75;
}

.archive-detail-intro .archive-editions {
  margin: 18px 0 26px;
  color: var(--brick);
  font-size: 0.8rem;
  font-weight: 700;
}

.archive-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
  gap: 34px;
}

.archive-detail-main {
  display: grid;
  gap: 24px;
}

.archive-content-card,
.archive-facts-card {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(138, 124, 113, 0.2);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(28, 20, 18, 0.06);
}

.archive-content-card h2,
.archive-facts-card h2,
.archive-final-cta h2 {
  margin: 8px 0 20px;
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  font-weight: 400;
}

.archive-description p,
.archive-description li,
.archive-content-card > p {
  color: var(--mud);
  line-height: 1.8;
}

.archive-description hr {
  margin: 26px 0;
  border: 0;
  border-top: 1px solid rgba(138, 124, 113, 0.25);
}

.archive-facts-card {
  position: sticky;
  top: 24px;
}

.archive-fact {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(138, 124, 113, 0.2);
}

.archive-fact span {
  color: var(--mud);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.archive-fact strong {
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1.5;
}

.archive-facts-card .cta {
  width: 100%;
  margin-top: 24px;
  text-align: center;
}

.archive-final-cta {
  padding: 78px 0;
  background: #293b31;
  color: #fffaf2;
  text-align: center;
}

.archive-final-cta .container {
  max-width: 720px;
}

.archive-final-cta p {
  margin: 0 0 26px;
  color: rgba(255, 250, 242, 0.75);
}

@media (max-width: 980px) {
  .archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .archive-detail-layout {
    grid-template-columns: 1fr;
  }

  .archive-facts-card {
    position: static;
  }
}

@media (max-width: 720px) {
  .archive-index-hero {
    padding: 72px 0 62px;
  }

  .archive-index-hero .container {
    margin: 0 auto;
  }

  .archive-toolbar,
  .archive-grid,
  .archive-detail-hero-grid {
    grid-template-columns: 1fr;
  }

  .archive-grid {
    gap: 18px;
  }

  .archive-card p {
    min-height: 0;
  }

  .archive-detail-hero {
    padding: 28px 0 52px;
  }

  .archive-detail-cover {
    border-radius: 24px 24px 70px 24px;
  }

  .archive-detail-intro h1 {
    font-size: clamp(2.35rem, 11vw, 3.8rem);
  }

  .archive-content-card,
  .archive-facts-card {
    border-radius: 22px;
  }
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(28, 20, 18, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 65;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.whatsapp-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 14, 12, 0.5);
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s ease;
  z-index: 90;
}

.whatsapp-modal-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.whatsapp-modal {
  width: min(92vw, 520px);
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(28, 20, 18, 0.28);
  padding: 28px;
  position: relative;
  border: 1px solid rgba(134, 92, 72, 0.18);
}

.whatsapp-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(130, 86, 66, 0.12);
  color: var(--ink);
  font-size: 1.2rem;
  cursor: pointer;
}

.whatsapp-modal-body h3 {
  font-size: 1.4rem;
  margin: 16px 0 10px;
}

.whatsapp-modal-body p {
  color: var(--muted);
  margin-bottom: 18px;
}

.whatsapp-modal-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.whatsapp-modal-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.whatsapp-modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ghost-button {
  border: 1px solid rgba(134, 92, 72, 0.35);
  background: transparent;
  color: var(--ink);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: clamp(16px, 3vw, 44px);
  bottom: clamp(16px, 3vw, 36px);
  width: min(calc(100vw - 32px), 520px);
  padding: 17px 18px;
  display: grid;
  gap: 14px;
  background: #fffdfa;
  border: 1px solid rgba(134, 92, 72, 0.2);
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(45, 31, 25, 0.2);
  font-size: 0.94rem;
  color: var(--ink);
  z-index: 1000;
}

.cookie-banner.is-expanded {
  width: min(calc(100vw - 32px), 640px);
}

.cookie-summary {
  display: grid;
  gap: 6px;
}

.cookie-summary > strong {
  display: block;
  color: var(--ink);
  font-family: "DM Serif Display", Georgia, serif;
  font-size: clamp(1.2rem, 3vw, 1.45rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.cookie-summary p {
  max-width: 58ch;
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.cookie-eyebrow {
  color: var(--brick);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.cookie-preferences {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(134, 92, 72, 0.14);
}

.cookie-preferences[hidden] {
  display: none;
}

.cookie-preferences label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(130, 86, 66, 0.13);
  border-radius: 14px;
  background: #fff;
}

.cookie-preferences input {
  margin-top: 3px;
  accent-color: var(--brick);
}

.cookie-preferences span {
  display: grid;
  gap: 2px;
}

.cookie-preferences small {
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.35;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.cookie-link {
  width: fit-content;
  color: var(--brick);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
  font-size: 0.8rem;
}

.cookie-btn {
  min-height: 38px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 7px 13px;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.15;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

.cookie-accept {
  background: var(--brick);
  color: var(--white);
}

.cookie-reject {
  background: transparent;
  border-color: rgba(130, 86, 66, 0.25);
  color: var(--ink);
}

.cookie-customize,
.cookie-save {
  background: rgba(130, 86, 66, 0.09);
  color: var(--brick-dark);
}

.cookie-settings-button {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  cursor: pointer;
  text-align: left;
}

@media (max-width: 640px) {
  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
    padding: 15px;
    gap: 12px;
    border-radius: 18px;
  }

  .cookie-banner.is-expanded {
    width: auto;
    max-height: calc(100dvh - 20px);
    overflow-y: auto;
  }

  .cookie-summary > strong {
    font-size: 1.25rem;
  }

  .cookie-summary p {
    font-size: 0.87rem;
    line-height: 1.45;
  }

  .cookie-preferences {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-btn {
    width: 100%;
    min-height: 40px;
    padding-inline: 10px;
    white-space: normal;
  }

  .cookie-accept:last-child {
    grid-column: 1 / -1;
  }
}

.calendar-preview {
  background: var(--sand);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.calendar-preview .event-grid {
  margin-top: 24px;
}

@media (max-width: 820px) {
  .nav-links {
    display: none;
  }

  .hero::before {
    background: none;
  }

  .menu-toggle {
    display: block;
    position: fixed;
    right: 0;
    top: 110px;
    padding: 10px 12px;
    border-radius: 14px 0 0 14px;
    box-shadow: 0 8px 18px rgba(28, 20, 18, 0.18);
    z-index: 30;
  }

  .hero {
    padding-top: 16px;
  }

  .hero-wrap,
  .hero-split-wrap {
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .hero-media,
  .hero-media-split {
    border-radius: 24px;
  }

  .hero-content h1 {
    display: block;
  }

  .hero-media-split {
    mask-image: linear-gradient(to bottom, #000 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, #000 85%, transparent 100%);
  }

  .hero-media-split {
    order: 1;
    height: 300px;
  }

  .hero-copy {
    order: 2;
    padding-bottom: 12px;
  }

  .section {
    padding: 52px 0;
  }

  .detail-hero-head .section-title {
    font-size: clamp(1.5rem, 6.2vw, 2.2rem);
    line-height: 1.08;
    text-wrap: balance;
  }

  .multiday-overview-card {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .multiday-hero-shell {
    min-height: auto;
    padding: 54px 0 40px;
  }

  .multiday-hero-inner {
    min-height: auto;
  }

  .multiday-hero-layout,
  .multiday-logistics-grid,
  .multiday-booking-grid {
    grid-template-columns: 1fr;
  }

  .multiday-hero-layout {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }

  .multiday-hero-meta {
    order: 2;
  }

  .multiday-hero-media {
    order: 1;
  }

  .multiday-hero-copy .section-title {
    max-width: 100%;
    font-size: clamp(1.5rem, 6.2vw, 2.2rem);
    line-height: 1.08;
    text-wrap: balance;
  }

  .brand img {
    width: 62px;
    height: 62px;
  }

  .brand span {
    font-size: 0.95rem;
  }

  .cta {
    padding: 8px 12px;
    font-size: 0.9rem;
  }

}

@media (min-width: 1024px) {
  .hero-media-split {
    mask-image: linear-gradient(to right, #000 82%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, #000 82%, transparent 100%);
  }
}

@media (max-width: 640px) {
  .hero-content h1 {
    font-size: clamp(1.9rem, 7.5vw, 2.5rem);
  }

  .mobile-break {
    display: block;
  }

  .event-carousel {
    grid-auto-columns: minmax(220px, 82%);
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    overscroll-behavior-x: contain;
  }
  .hero-media {
    aspect-ratio: 16 / 9;
  }
  .hero-media-split {
    aspect-ratio: 16 / 9;
    height: 300px;
  }

  .page-multiday-detail .detail-hero-head .section-title {
    max-width: 100%;
  }

  .multiday-hero-card,
  .multiday-program-card,
  .multiday-intro-card,
  .multiday-summary-panel,
  .multiday-booking-panel {
    padding: 18px;
  }

  .multiday-day-card {
    padding: 18px;
  }

  .multiday-day-grid.is-horizontal {
    grid-template-columns: 1fr;
  }

  .multiday-page-stack {
    margin-top: -24px;
  }

  .multiday-chip {
    font-size: 0.84rem;
  }

  .hero-mobile-fade {
    height: 140px;
  }

  .social-bubble {
    bottom: calc(100% + 8px);
    left: 50%;
    min-width: 78px;
    padding: 8px 12px;
    font-size: 0.78rem;
    transform: translate(-50%, 8px) rotate(-1deg) scale(0.94);
  }

  .cta-instagram.show-social-bubble .social-bubble {
    transform: translate(-50%, 0) rotate(-1deg) scale(1);
  }

  .single-line-title {
    font-size: clamp(1.2rem, 4.8vw, 2.3rem);
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    text-wrap: balance;
  }

  .title-fit {
    font-size: clamp(1.1rem, 4.4vw, 2.2rem);
  }

  .detail-hero img {
    height: auto;
  }

  .detail-hero-grid {
    grid-template-columns: 1fr;
  }

  .detail-hero-media img,
  .detail-hero-media video {
    max-height: none;
  }

  .detail-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .detail-title-image {
    display: block;
    width: 100%;
    max-width: 360px;
    height: auto;
    margin-top: 12px;
  }

  .detail-hero-media {
    display: block;
    order: -1;
  }

  .guide-badge {
    min-height: 54px;
    margin: 16px 0 18px;
    padding-right: 16px;
    font-size: 0.84rem;
  }

  .detail-hero .guide-badge img,
  .multiday-hero-meta .guide-badge img {
    width: 42px;
    height: 42px;
  }

  .hero-actions {
    gap: 10px;
  }

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

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

  .calendar-preview {
    padding: 24px;
  }

  .home-adventure-teaser {
    padding: 12px 0 28px;
  }

  .home-adventure-card {
    grid-template-columns: 96px minmax(0, 1fr);
    padding: 10px;
  }

  .home-adventure-media {
    gap: 5px;
  }

  .home-adventure-media img {
    border-radius: 14px;
    height: 104px;
  }

  .home-adventure-copy h2 {
    font-size: clamp(1.42rem, 6.2vw, 1.9rem);
  }

  .home-adventure-copy p {
    font-size: 0.88rem;
  }

  .home-adventure-cta {
    grid-column: 1 / -1;
    width: 100%;
  }

  .home-iceland-highlight {
    padding: 28px 0 46px;
  }

  .home-iceland-card {
    border-radius: 28px;
    gap: 22px;
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .home-iceland-poster img {
    border-radius: 22px;
    margin: 0 auto;
    max-width: 300px;
  }

  .home-iceland-kicker {
    font-size: 0.68rem;
    margin-bottom: 10px;
  }

  .home-iceland-copy h2 {
    font-size: clamp(2.15rem, 12vw, 3.55rem);
    margin-bottom: 14px;
  }

  .home-iceland-copy p {
    font-size: 0.95rem;
  }

  .home-iceland-meta {
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr 1fr;
    margin: 18px 0 22px;
  }

  .home-iceland-meta span {
    font-size: 0.82rem;
    padding: 0.5rem 0.62rem;
  }

  .home-iceland-cta {
    width: 100%;
  }

  .philosophy {
    padding: 26px;
  }

  .whatsapp-banner {
    padding: 26px;
  }

  .infrasettimanali-banner {
    padding: 20px;
  }

  .infrasettimanali-kicker {
    font-size: 0.8rem;
    padding: 6px 10px;
    margin-bottom: 8px;
  }

  .infrasettimanali-copy .tagline {
    margin-bottom: 8px;
  }

  .infrasettimanali-copy p {
    font-size: 0.96rem;
    line-height: 1.55;
    margin-bottom: 14px;
  }

  .infrasettimanali-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 14px;
  }

  .infrasettimanali-badges span {
    width: 100%;
    border-radius: 12px;
    padding: 9px 11px;
    font-size: 0.86rem;
    justify-content: flex-start;
    background: rgba(255, 255, 255, 0.88);
  }

  .infrasettimanali-actions .cta {
    width: 100%;
    justify-content: center;
  }

  .gallery-track {
    padding: 6px 6% 18px;
    gap: 12px;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    overscroll-behavior-x: contain;
  }

  .gallery-item img {
    height: 220px;
  }

  .gallery-item {
    flex: 0 0 70%;
    min-width: 200px;
  }

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

  .hero-card {
    justify-content: center;
  }
}
  .hero-controls {
    display: none;
  }
.multiday-hero-media { border-radius: 24px; box-shadow: none; }
.multiday-hero-media img,
.multiday-hero-media video { width: 100%; height: auto; border-radius: inherit; box-shadow: none; }
.multiday-hero-media.has-video video { height: 100%; max-height: 100%; object-fit: cover; }
@media (max-width: 767px) { .weekly-template-main { display: flex; flex-direction: column; } }
.weekly-template-image img { width: 100%; border-radius: 28px; box-shadow: 0 18px 38px rgba(54, 40, 27, 0.14); }
@media (max-width: 767px) { .weekly-template-image { margin: 16px 0; } }
@media (max-width: 767px) {
  .weekly-template-main { display: flex; flex-direction: column; }
  .weekly-template-copy { display: flex; flex-direction: column; }
  .weekly-template-copy .weekly-hero-image { order: 3; margin: 16px 0; width: 100%; border-radius: 28px; box-shadow: 0 18px 38px rgba(54, 40, 27, 0.14); }
  .weekly-template-copy .tagline { order: 1; }
  .weekly-template-copy .section-title { order: 2; }
  .weekly-template-copy .weekly-template-description-body { order: 4; }
  
  /* Desktop: image BEFORE title */
  @media (min-width: 768px) {
    .weekly-template-copy .weekly-hero-image { order: 0; margin: 0 0 16px 0; }
    .weekly-template-copy .tagline { order: 1; }
    .weekly-template-copy .section-title { order: 2; }
  }
  .weekly-template-copy .weekly-summary-pills { order: 5; }
  .weekly-template-copy .weekly-equipment-panel { order: 6; }
  .weekly-template-copy .weekly-ticket-options { order: 7; }
  .weekly-template-copy .weekly-template-note { order: 8; }
  .weekly-template-copy .weekly-template-primary-action { order: 9; }
}

.nav-new-link {
  display: none !important;
  position: relative;
}

body.adventure-public-enabled .nav-new-link {
  align-items: center;
  display: inline-flex !important;
  line-height: 1.1;
  padding-right: 0.95rem;
}

body.adventure-public-enabled .side-menu .nav-new-link {
  display: flex !important;
}

body.adventure-gated .site-header,
body.adventure-gated .menu-overlay,
body.adventure-gated .side-menu,
body.adventure-gated main,
body.adventure-gated .whatsapp-float {
  visibility: hidden;
}

.nav-new-link span {
  background: #d92d20;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 0.5rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  margin: 0;
  padding: 0.17rem 0.32rem;
  pointer-events: none;
  position: absolute;
  right: -0.25rem;
  top: -0.25rem;
  transform: rotate(-13deg);
}

.adventure-page {
  background: radial-gradient(circle at 12% 8%, rgba(38, 154, 173, 0.16), transparent 34rem), linear-gradient(180deg, #fffdf8 0%, #f6fbfb 45%, #fffaf3 100%);
  color: #1c211d;
  min-height: 100vh;
}

.adventure-hero {
  align-items: center;
  display: grid;
  gap: 3rem;
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
  padding: 6rem 0 3rem;
}

.adventure-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.92;
  margin: 0.6rem 0 1.2rem;
  max-width: 12ch;
}

.adventure-copy p {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.7;
  max-width: 46rem;
}

.adventure-alert {
  background: #fff1df;
  border: 1px solid rgba(185, 74, 49, 0.18);
  border-radius: 1.3rem;
  color: #7b2d20;
  font-weight: 800;
  margin: 1.5rem 0;
  padding: 1rem 1.15rem;
  max-width: 42rem;
}

.adventure-primary,
.adventure-slot a,
.adventure-map {
  align-items: center;
  background: #b84f3f;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  padding: 0.9rem 1.2rem;
  text-decoration: none;
}

.adventure-partner-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(45, 95, 68, 0.16);
  border-radius: 2rem;
  box-shadow: 0 1.7rem 4rem rgba(39, 79, 70, 0.14);
  padding: 2rem;
  text-align: center;
}

.adventure-partner-card img {
  display: block;
  margin: 0 auto 1rem;
  max-width: 13rem;
  width: 100%;
}

.adventure-partner-card p {
  color: #315a3e;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.adventure-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 2rem 0;
}

.adventure-card,
.adventure-rules,
.adventure-dates {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(44, 63, 51, 0.12);
  border-radius: 2rem;
  box-shadow: 0 1rem 3rem rgba(41, 69, 63, 0.08);
  padding: clamp(1.25rem, 3vw, 2rem);
}

.adventure-card.canyoning {
  background: linear-gradient(145deg, rgba(227, 251, 255, 0.94), rgba(255, 255, 255, 0.94));
}

.adventure-card.rafting {
  background: linear-gradient(145deg, rgba(238, 250, 234, 0.94), rgba(255, 255, 255, 0.94));
}

.adventure-card-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: #2b706f;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.adventure-card h2,
.adventure-rules h2,
.adventure-dates h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  margin: 1rem 0;
}

.adventure-card p,
.adventure-card li,
.adventure-rule-list div,
.adventure-slot p {
  line-height: 1.65;
}

.adventure-card ul {
  padding-left: 1.2rem;
}

.adventure-price {
  background: rgba(184, 79, 63, 0.08);
  border-radius: 1.2rem;
  display: grid;
  gap: 0.4rem;
  margin: 1.2rem 0;
  padding: 1rem;
}

.adventure-price span {
  font-size: 1.25rem;
  font-weight: 900;
}

.adventure-price strong,
.adventure-note {
  color: #b84f3f;
}

.adventure-rules,
.adventure-dates {
  margin: 2rem auto;
}

.adventure-rule-list {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.adventure-rule-list div {
  background: #f8f1e8;
  border-radius: 1.1rem;
  padding: 1rem;
}

.adventure-status {
  color: #6a5c54;
  font-weight: 800;
  margin-top: 1rem;
}

.adventure-status span {
  color: #7a6b62;
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 0.35rem;
}

.adventure-slots {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.adventure-success-message {
  background: #eef8f2;
  border: 1px solid rgba(47, 122, 80, 0.22);
  border-radius: 1.2rem;
  color: #285c3d;
  font-weight: 850;
  line-height: 1.45;
  padding: 1rem 1.1rem;
  box-shadow: 0 0.8rem 2rem rgba(47, 122, 80, 0.08);
}

.adventure-calendar {
  display: block;
}

.adventure-calendar-month {
  background: #fff;
  border: 1px solid rgba(44, 63, 51, 0.12);
  border-radius: 1.4rem;
  box-shadow: 0 0.8rem 2.2rem rgba(41, 69, 63, 0.06);
  padding: 1rem;
}

.adventure-calendar-header {
  align-items: center;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-bottom: 0.9rem;
}

.adventure-calendar-header button {
  align-items: center;
  background: #f8f1e8;
  border: 1px solid rgba(44, 63, 51, 0.12);
  border-radius: 999px;
  color: #2c3f33;
  cursor: pointer;
  display: inline-flex;
  font-size: 2rem;
  font-weight: 950;
  height: 2.6rem;
  justify-content: center;
  line-height: 1;
  width: 2.6rem;
}

.adventure-calendar-header button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.adventure-calendar-month h3 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin: 0;
  text-align: center;
}

.adventure-calendar-weekdays,
.adventure-calendar-grid {
  display: grid;
  gap: 0.45rem;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.adventure-calendar-weekdays span {
  color: #8b7b72;
  font-size: 0.72rem;
  font-weight: 950;
  text-align: center;
}

.adventure-calendar-day {
  align-items: flex-start;
  aspect-ratio: 1;
  background: #f6f0e9;
  border: 1px solid rgba(44, 63, 51, 0.08);
  border-radius: 0.85rem;
  color: #3f3730;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  justify-content: space-between;
  min-width: 0;
  padding: 0.5rem;
  text-decoration: none;
}

.adventure-calendar-day:is(button) {
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.adventure-calendar-day[href] {
  box-shadow: 0 0.5rem 1.2rem rgba(41, 69, 63, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.adventure-calendar-day[href]:hover,
.adventure-calendar-day:is(button):hover {
  box-shadow: 0 0.8rem 1.7rem rgba(41, 69, 63, 0.13);
  transform: translateY(-2px);
}

.adventure-calendar-day.is-spacer {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.adventure-calendar-day.is-empty {
  color: #aa9b91;
}

.adventure-calendar-day.is-collecting {
  background: #fff7e8;
  border-color: rgba(209, 129, 45, 0.22);
}

.adventure-calendar-day.is-almost {
  background: #fff1c7;
  border-color: rgba(199, 138, 18, 0.28);
}

.adventure-calendar-day.is-confirmed {
  background: #eaf7ed;
  border-color: rgba(56, 142, 83, 0.25);
}

.adventure-calendar-day.is-closed {
  background: #f0ece8;
  color: #9d8e84;
}

.adventure-calendar-number {
  font-size: 1rem;
  font-weight: 950;
}

.adventure-calendar-people {
  font-size: 0.72rem;
  font-weight: 950;
}

.adventure-calendar-state {
  font-size: 0.62rem;
  font-weight: 850;
  line-height: 1.05;
}

.adventure-calendar-action {
  background: rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  color: #b24f3f;
  display: inline-block;
  font-size: 0.58rem;
  font-weight: 950;
  padding: 0.18rem 0.42rem;
}

.adventure-interest-form {
  background: #fff;
  border: 1px solid rgba(178, 79, 63, 0.2);
  border-radius: 1.4rem;
  box-shadow: 0 1rem 2.6rem rgba(41, 69, 63, 0.08);
  display: grid;
  gap: 1.1rem;
  margin-top: 1rem;
  padding: 1.2rem;
}

.adventure-interest-form h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin: 0.1rem 0 0.35rem;
}

.adventure-interest-form p {
  color: #6a5c54;
  margin: 0;
}

.adventure-form-kicker {
  color: #b24f3f !important;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.adventure-form-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.adventure-form-grid label {
  color: #3f3730;
  display: grid;
  font-size: 0.88rem;
  font-weight: 850;
  gap: 0.35rem;
}

.adventure-form-grid input {
  border: 1px solid rgba(44, 63, 51, 0.16);
  border-radius: 0.8rem;
  color: #2c2723;
  font: inherit;
  padding: 0.78rem 0.85rem;
}

.adventure-form-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.adventure-form-submit,
.adventure-form-cancel {
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 950;
  padding: 0.9rem 1.25rem;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.adventure-form-submit {
  background: #b24f3f;
  border: 1px solid #b24f3f;
  box-shadow: 0 0.75rem 1.6rem rgba(178, 79, 63, 0.18);
  color: #fff;
}

.adventure-form-cancel {
  background: #fff;
  border: 1px solid rgba(44, 63, 51, 0.16);
  color: #3f3730;
}

.adventure-form-submit:hover,
.adventure-form-cancel:hover {
  box-shadow: 0 0.9rem 1.9rem rgba(41, 69, 63, 0.12);
  transform: translateY(-1px);
}

.adventure-form-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.adventure-form-message {
  color: #2b706f !important;
  font-weight: 800;
}

.adventure-slot {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(44, 63, 51, 0.12);
  border-radius: 1.3rem;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 1rem;
}

.adventure-slot span {
  color: #2b706f;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.adventure-slot h3 {
  margin: 0.2rem 0;
}

.adventure-slot button {
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.2rem;
}

@media (max-width: 900px) {
  .adventure-hero,
  .adventure-grid,
  .adventure-rule-list {
    grid-template-columns: 1fr;
  }

  .adventure-hero {
    padding-top: 3.5rem;
  }

  .adventure-slot {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Keep archive pages aligned with the live excursion components. */
.archive-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.archive-grid .archive-card {
  border-radius: var(--radius-md);
  box-shadow: none;
  transform: none;
}

.archive-grid .archive-card:hover {
  border-color: rgba(178, 74, 59, 0.28);
  box-shadow: 0 14px 28px rgba(28, 20, 18, 0.08);
  transform: translateY(-3px);
}

.archive-grid .archive-card-image {
  display: block;
  aspect-ratio: auto;
  background: transparent;
}

.archive-grid .archive-card-image img,
.archive-grid .archive-card:hover .archive-card-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  transform: none;
  box-shadow: none;
}

.archive-grid .archive-event-date {
  top: 14px;
  left: 14px;
  width: auto;
  padding: 8px 12px;
  background: var(--white);
  color: var(--brick);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.archive-grid .event-content h3 a {
  color: inherit;
}

.archive-grid .event-content p {
  min-height: calc(1.5em * 3);
}

.archive-grid .event-footer {
  margin-top: auto;
}

.archive-detail-hero-coherent {
  background: linear-gradient(180deg, rgba(248, 242, 236, 0.72), rgba(255, 255, 255, 0));
}

.archive-detail-hero-coherent .archive-breadcrumb {
  margin-bottom: 28px;
}

.archive-detail-hero-coherent .archive-summary {
  margin-top: 20px;
  color: var(--mud);
  line-height: 1.8;
}

.archive-detail-hero-coherent .archive-editions {
  margin: 18px 0 0;
  color: var(--brick);
  font-size: 0.82rem;
  font-weight: 700;
}

.archive-detail-hero-coherent .archive-poster {
  overflow: hidden;
  background: var(--sand);
  box-shadow: 0 18px 40px rgba(28, 20, 18, 0.14);
}

.archive-detail-hero-coherent .archive-poster img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  border-radius: inherit;
  box-shadow: none;
}

.archive-detail-panels .archive-story-card {
  display: block;
  padding: clamp(26px, 4vw, 44px);
  background: linear-gradient(145deg, rgba(255, 252, 248, 0.98), rgba(249, 244, 237, 0.92));
  box-shadow: 0 16px 36px rgba(28, 20, 18, 0.07);
}

.archive-story-heading {
  position: relative;
  margin-bottom: 24px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(138, 124, 113, 0.2);
}

.archive-story-heading::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 74px;
  height: 3px;
  border-radius: 999px;
  background: var(--brick);
}

.archive-story-card .archive-story-heading h2 {
  max-width: none;
  margin: 8px 0 0;
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  line-height: 1.08;
}

.archive-story-card .archive-description {
  max-width: 92ch;
  color: #655b53;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.85;
}

.archive-story-card .archive-description strong {
  color: inherit;
  font-weight: 600;
}

.archive-back-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-bottom: 28px;
  color: var(--brick);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.archive-back-link svg {
  width: 22px;
  height: 22px;
  transition: transform 180ms ease;
}

.archive-back-link:hover svg {
  transform: translateX(-4px);
}

.archive-multiday-hero .archive-back-link {
  margin-bottom: 30px;
}

.archive-multiday-hero .archive-editions {
  margin: 0;
  color: var(--brick);
  font-size: 0.82rem;
  font-weight: 700;
}

.archive-multiday-hero .archive-poster {
  overflow: hidden;
  background: var(--sand);
}

.archive-multiday-hero .archive-poster img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
}

/* Keep the poster beside the archive summary while the hero content scrolls. */
@media (min-width: 821px) {
  .archive-detail-hero-coherent .detail-hero-grid,
  .archive-multiday-hero .multiday-hero-layout {
    align-items: start;
  }

  .archive-detail-hero-coherent .archive-poster,
  .archive-multiday-hero .archive-poster {
    position: sticky;
    top: 112px;
    align-self: start;
    display: flex;
    justify-content: center;
    background: transparent;
  }

  .archive-detail-hero-coherent .archive-poster img,
  .archive-multiday-hero .archive-poster img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: calc(100vh - 136px);
    object-fit: contain;
  }

  .archive-story-card--desktop {
    display: block;
    margin-top: 34px;
  }

  .archive-story-card--desktop .archive-story-card {
    padding: clamp(26px, 3vw, 40px);
  }

  .archive-story-card--mobile {
    display: none;
  }
}

.archive-story-card--mobile {
  grid-column: 1 / -1;
}

@media (max-width: 820px) {
  .archive-story-card--desktop {
    display: none;
  }
}

.archive-program-card {
  overflow: hidden;
}

.archive-program-heading {
  margin-bottom: 22px;
}

.archive-program-heading h3 {
  margin: 7px 0 0;
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
}

.archive-program-card .multiday-day-meta svg {
  width: 16px;
  height: 16px;
  color: var(--brick);
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .archive-grid {
    grid-template-columns: 1fr;
  }

  .archive-grid .archive-card-image {
    aspect-ratio: auto;
  }

  .archive-grid .archive-card-image img {
    height: auto;
    max-height: 78vh;
  }

  .live-event-card .event-photo {
    aspect-ratio: auto;
  }

  .live-event-card .event-photo img {
    height: auto;
    max-height: 78vh;
  }

  .archive-detail-hero-coherent .archive-poster {
    margin-top: 8px;
    order: -1;
  }

  .archive-detail-panels .archive-story-card,
  .archive-program-card {
    padding: 22px 18px;
  }

  .archive-story-heading {
    margin-bottom: 20px;
  }

  .archive-back-link {
    margin-bottom: 20px;
  }

  .multiday-program-summary {
    gap: 14px;
    min-height: 72px;
  }

  .multiday-program-summary-copy strong {
    font-size: 1.45rem;
  }

  .multiday-program-toggle {
    min-width: 46px;
    padding: 10px;
  }

  .multiday-program-toggle .program-open-label,
  .multiday-program-toggle .program-close-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}

@media (max-width: 560px) {
  .adventure-dates {
    border-radius: 1.35rem;
    padding: 0.85rem;
  }

  .adventure-calendar-month {
    border-radius: 1.1rem;
    padding: 0.65rem;
  }

  .adventure-calendar-header {
    gap: 0.55rem;
    margin-bottom: 0.65rem;
  }

  .adventure-calendar-header h3 {
    font-size: 1.45rem;
  }

  .adventure-calendar-header button {
    font-size: 1.45rem;
    height: 2.15rem;
    width: 2.15rem;
  }

  .adventure-calendar-weekdays,
  .adventure-calendar-grid {
    gap: 0.22rem;
  }

  .adventure-calendar-weekdays span {
    font-size: 0.62rem;
  }

  .adventure-calendar-day {
    border-radius: 0.52rem;
    gap: 0;
    overflow: hidden;
    padding: 0.28rem;
  }

  .adventure-calendar-number {
    font-size: 0.82rem;
    line-height: 1;
  }

  .adventure-calendar-people {
    font-size: 0.54rem;
    line-height: 1;
  }

  .adventure-calendar-state {
    display: none;
  }

  .adventure-calendar-action {
    font-size: 0.48rem;
    line-height: 1;
    max-width: 100%;
    overflow: hidden;
    padding: 0.14rem 0.24rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

@media (max-width: 900px) {
  .weekly-summary-pills {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .weekly-equipment-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .weekly-summary-pills {
    grid-template-columns: 1fr;
  }

  .weekly-template-card {
    scroll-margin-top: 104px;
  }

  .weekly-template-slots {
    scroll-margin-top: 104px;
  }

  .weekly-floating-cta {
    left: 50%;
    right: auto;
    bottom: 14px;
    width: min(250px, calc(100vw - 96px));
    min-width: 0;
    border-radius: 999px;
    padding: 12px 16px 13px;
  }

  body:has(.weekly-floating-cta) {
    padding-bottom: 78px;
  }
}

.weekly-template-main {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 28px;
  align-items: start;
}



/* Mobile-only image */
.mobile-only-image { display: none; }
.mobile-only-image img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 18px 38px rgba(54, 40, 27, 0.14);
  margin: 16px 0;
}

/* Show mobile image only on mobile */
@media (max-width: 767px) {
  .desktop-only { display: none; }
  .mobile-only-image { display: block; }
  .weekly-template-main { display: flex; flex-direction: column; }
  .weekly-template-copy { display: flex; flex-direction: column; }
  .weekly-template-copy .tagline { order: 1; }
  .weekly-template-copy .section-title { order: 2; }
  .mobile-only-image { order: 3; }
  .weekly-template-copy .weekly-template-description-body { order: 4; }
  .weekly-template-copy .weekly-summary-pills { order: 5; }
  .weekly-template-copy .weekly-equipment-panel { order: 6; }
  .weekly-template-copy .weekly-ticket-options { order: 7; }
  .weekly-template-copy .weekly-template-note { order: 8; }
  .weekly-template-copy .weekly-template-primary-action { order: 9; }
}

/* Escursioni Partner landing */
.adventure-page {
  background:
    radial-gradient(circle at 12% 10%, rgba(50, 140, 125, 0.12), transparent 34rem),
    linear-gradient(180deg, #fffdf7 0%, #f6fbf7 54%, #fff9ee 100%);
  color: #1d211b;
  min-height: 100vh;
}

.adventure-hero {
  align-items: center;
  display: grid;
  gap: clamp(1.5rem, 5vw, 4rem);
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.75fr);
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(2rem, 4vw, 3rem);
}

.adventure-hero-copy {
  text-align: left;
}

.adventure-partner-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(52, 75, 59, 0.1);
  border-radius: 2rem;
  box-shadow: 0 1.2rem 3.4rem rgba(31, 56, 48, 0.1);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  text-align: center;
}

.adventure-partner-mark {
  align-items: center;
  display: inline-flex;
  gap: 0.85rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.adventure-partner-mark img {
  height: clamp(138px, 15vw, 196px);
  object-fit: contain;
  width: auto;
}

.adventure-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.3rem, 9vw, 7rem);
  line-height: 0.9;
  margin: 0.75rem 0 0;
  max-width: 8.5ch;
}

.adventure-hero p {
  color: #4d463e;
  font-size: clamp(1.02rem, 1.45vw, 1.22rem);
  font-weight: 800;
  line-height: 1.55;
  margin: 0 auto;
  max-width: 24rem;
}

.adventure-grid {
  display: grid;
  gap: clamp(1.2rem, 3vw, 2rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 1rem 0 3rem;
}

.adventure-card {
  background: #fff;
  border: 1px solid rgba(52, 75, 59, 0.12);
  border-radius: 2rem;
  box-shadow: 0 1.3rem 3.8rem rgba(31, 56, 48, 0.12);
  overflow: hidden;
  padding: 0;
  position: relative;
}

.adventure-card-link {
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.adventure-card-link:hover {
  box-shadow: 0 1.6rem 4.4rem rgba(31, 56, 48, 0.18);
  transform: translateY(-4px);
}

.adventure-photo-strip {
  display: grid;
  grid-auto-columns: 100%;
  grid-auto-flow: column;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.adventure-photo-strip::-webkit-scrollbar {
  display: none;
}

.adventure-photo-strip img {
  aspect-ratio: 5 / 4;
  display: block;
  height: auto;
  object-fit: cover;
  scroll-snap-align: start;
  width: 100%;
}

.adventure-card .adventure-photo-strip {
  border-radius: 2rem 2rem 0 0;
}

.adventure-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.adventure-card-body > span,
.adventure-slot span {
  color: #2c756d;
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
}

.adventure-card h2,
.adventure-dates h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.94;
  margin: 0 0 0.9rem;
}

.adventure-card p,
.adventure-details p,
.adventure-slot p {
  color: #4c4640;
  line-height: 1.65;
}

.adventure-card details {
  border-top: 1px solid rgba(52, 75, 59, 0.12);
  margin-top: 1.2rem;
  padding-top: 1rem;
}

.adventure-card summary {
  align-items: center;
  background: #b84f3f;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  list-style: none;
  padding: 0.82rem 1.15rem;
}

.adventure-card-cta {
  align-items: center;
  align-self: flex-start;
  background: #b84f3f;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-weight: 900;
  margin-top: auto;
  padding: 0.82rem 1.15rem;
}

.adventure-card summary::-webkit-details-marker {
  display: none;
}

.adventure-details {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.adventure-details p {
  background: #fbf5eb;
  border-radius: 1rem;
  margin: 0;
  padding: 0.85rem 1rem;
}

.adventure-note {
  color: #9b382b !important;
}

.adventure-new-badge {
  background: #d92d20;
  border-radius: 999px;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.5rem;
  position: absolute;
  right: 1.15rem;
  text-transform: uppercase;
  top: 1.15rem;
  transform: rotate(-12deg);
  z-index: 2;
}

.adventure-dates {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(52, 75, 59, 0.12);
  border-radius: 2rem;
  box-shadow: 0 1rem 3rem rgba(41, 69, 63, 0.08);
  margin: 0 auto 3rem;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.adventure-detail-hero {
  align-items: center;
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  padding: clamp(3rem, 7vw, 6rem) 0 2rem;
}

.adventure-photo-strip-detail {
  border-radius: 2rem;
  box-shadow: 0 1.4rem 4rem rgba(31, 56, 48, 0.14);
}

.adventure-detail-hero .adventure-photo-strip-detail img {
  aspect-ratio: 4 / 5;
  border-radius: 2rem;
  object-fit: cover;
  width: 100%;
}

.adventure-detail-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  line-height: 0.92;
  margin: 0.7rem 0 1rem;
}

.adventure-detail-hero p {
  color: #4d463e;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  line-height: 1.65;
  max-width: 42rem;
}

.adventure-detail-grid {
  padding: 0 0 2rem;
}

.adventure-status {
  color: #6a5c54;
  font-weight: 800;
  margin-top: 1rem;
}

.adventure-slots {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.adventure-slot {
  align-items: center;
  background: #fff;
  border: 1px solid rgba(44, 63, 51, 0.12);
  border-radius: 1.3rem;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  padding: 1rem;
}

.adventure-slot h3 {
  margin: 0.2rem 0;
}

.adventure-slot a {
  align-items: center;
  background: #b84f3f;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  padding: 0.9rem 1.2rem;
  text-decoration: none;
}

.adventure-slot button {
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.2rem;
}

@media (max-width: 900px) {
  .adventure-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .adventure-hero-copy {
    text-align: center;
  }

  .adventure-hero h1 {
    margin-left: auto;
    margin-right: auto;
  }

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

  .adventure-detail-hero {
    grid-template-columns: 1fr;
  }

  .adventure-form-grid {
    grid-template-columns: 1fr;
  }

  .adventure-slot {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Reviews page: compact, readable composition on phones only. */
@media (max-width: 700px) {
  .page-reviews .reviews-editorial-hero {
    padding: 28px 0 54px;
  }

  .page-reviews .reviews-hero-layout {
    gap: 34px;
  }

  .page-reviews .reviews-page-intro h1 {
    margin: 10px 0 18px;
    font-size: clamp(2.55rem, 12vw, 3.45rem);
    line-height: 1;
    letter-spacing: -0.035em;
  }

  .page-reviews .reviews-page-intro .lead {
    font-size: 0.97rem;
    line-height: 1.65;
  }

  .page-reviews .reviews-summary {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 18px;
    margin: 25px 0 19px;
  }

  .page-reviews .reviews-summary .reviews-score strong {
    font-size: 2.35rem;
  }

  .page-reviews .reviews-summary .reviews-score {
    gap: 8px;
  }

  .page-reviews .reviews-summary .reviews-score span {
    font-size: 0.74rem;
  }

  .page-reviews .reviews-summary .reviews-summary-copy {
    align-self: center;
    padding-left: 17px !important;
  }

  .page-reviews .reviews-hero-photo {
    width: calc(100% - 10px);
    margin: 0 auto;
  }

  .page-reviews .reviews-hero-photo img {
    aspect-ratio: 4 / 5;
    border-radius: 30px 30px 68px 30px;
  }

  .page-reviews .reviews-hero-photo::before {
    inset: -8px 8px 8px -8px;
    border-radius: 34px 34px 72px 34px;
  }

  .page-reviews .reviews-hero-photo figcaption {
    right: -4px;
    bottom: 16px;
    max-width: min(235px, 78%);
    padding: 12px 15px;
    font-size: 0.7rem;
  }

  .page-reviews .reviews-feature-section {
    padding: 50px 0 54px;
  }

  .page-reviews .reviews-feature-layout {
    gap: 30px;
  }

  .page-reviews .reviews-feature-photo {
    width: 100%;
    padding: 8px;
    border-radius: 20px;
    box-shadow: 0 15px 38px rgba(72, 55, 42, 0.12);
  }

  .page-reviews .reviews-feature-photo img {
    border-radius: 14px;
  }

  .page-reviews .reviews-feature-story {
    padding: 0;
  }

  .page-reviews .reviews-feature-story::before {
    top: -34px;
    right: 0;
    font-size: 8rem;
  }

  .page-reviews .reviews-feature-stars {
    margin: 16px 0 14px;
    font-size: 0.86rem;
  }

  .page-reviews .reviews-feature-story blockquote {
    margin-bottom: 22px;
    padding: 0;
    font-size: 1.04rem;
    line-height: 1.65;
    letter-spacing: -0.012em;
  }

  .page-reviews .reviews-feature-person {
    margin-bottom: 15px;
  }

  .page-reviews .reviews-archive {
    padding: 58px 0;
  }

  .page-reviews .reviews-archive-heading {
    gap: 14px;
    margin-bottom: 26px;
  }

  .page-reviews .reviews-archive-heading .section-title {
    font-size: clamp(2.15rem, 10vw, 3rem);
    line-height: 1.04;
  }

  .page-reviews .reviews-archive-heading > p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .page-reviews .all-reviews-grid {
    gap: 15px;
  }

  .page-reviews .all-reviews-grid .review-story-card {
    padding: 20px;
    border-radius: 18px;
  }

  .page-reviews .review-story-card:nth-child(4n + 2),
  .page-reviews .review-story-card:nth-child(4n + 3) {
    border-radius: 18px;
  }

  .page-reviews .review-card-header .review-stars,
  .page-reviews .review-stars {
    width: auto;
    padding-left: 0;
  }

  .page-reviews .review-card-footer {
    align-items: flex-start;
    gap: 12px;
  }

  .page-reviews .reviews-page-cta {
    width: calc(100% - 28px);
    margin: 54px auto;
    border-radius: 20px;
  }

  .page-reviews .reviews-cta-photo img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .page-reviews .reviews-cta-content {
    padding: 30px 22px 34px;
  }

  .page-reviews .reviews-page-cta h2 {
    margin: 8px 0 13px;
    font-size: clamp(2.5rem, 12vw, 3.35rem);
    line-height: 1;
  }

  .page-reviews .reviews-page-cta p {
    font-size: 0.94rem;
    line-height: 1.6;
  }

  .page-reviews .reviews-cta-actions {
    align-items: stretch;
    gap: 16px;
    margin-top: 22px;
  }

  .page-reviews .reviews-cta-actions .cta {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .page-reviews .reviews-cta-secondary {
    align-self: center;
  }
}

/* Home reviews: editorial cards in a swipeable story deck. */
#recensioni {
  overflow: hidden;
}

.home-reviews-deck {
  position: relative;
}

#recensioni .reviews-grid {
  display: flex;
  gap: 20px;
  margin: 0 calc((100vw - min(1180px, calc(100vw - 40px))) / -2);
  padding: 10px max(20px, calc((100vw - 1180px) / 2)) 28px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
}

#recensioni .reviews-grid::-webkit-scrollbar {
  display: none;
}

#recensioni .home-review-card {
  flex: 0 0 min(430px, calc(100vw - 60px));
  min-height: 390px;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  padding: 28px;
  border-color: rgba(116, 101, 88, 0.17);
  border-radius: 8px 28px 8px 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(50, 38, 30, 0.09);
}

#recensioni .home-review-card:nth-child(even) {
  border-radius: 28px 8px 28px 8px;
}

#recensioni .home-review-card .review-avatar {
  background: #687b68;
}

#recensioni .home-review-card .review-card-event {
  width: fit-content;
  margin-top: 5px;
  padding: 6px 9px;
  border-radius: 7px;
  background: rgba(112, 133, 102, 0.1);
  color: #4c624e;
  font-size: 0.72rem;
  line-height: 1.4;
}

#recensioni .home-review-card .review-text {
  font-size: 0.96rem;
  line-height: 1.72;
}

.home-reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
}

.home-reviews-controls button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(178, 74, 59, 0.24);
  border-radius: 50%;
  background: #fff;
  color: var(--brick);
  font: inherit;
  font-size: 1.15rem;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(50, 38, 30, 0.08);
}

.home-reviews-controls button:disabled {
  opacity: 0.35;
  cursor: default;
}

.home-reviews-controls > span {
  min-width: 48px;
  color: var(--mud);
  font-size: 0.78rem;
  text-align: center;
}

.home-reviews-controls strong {
  color: var(--ink);
}

.home-reviews-swipe-hint {
  display: none;
}

#recensioni .reviews-more {
  margin-top: 22px;
}

@media (max-width: 700px) {
  #recensioni .section-title.single-line-title {
    font-size: clamp(2.15rem, 10vw, 3rem);
    line-height: 1.04;
  }

  #recensioni .reviews-stage {
    margin-top: 22px;
  }

  #recensioni .reviews-grid {
    gap: 14px;
    margin: 0 -20px;
    padding: 8px 20px 22px;
    scroll-padding-inline: 20px;
  }

  #recensioni .home-review-card {
    flex-basis: calc(100vw - 58px);
    min-height: 430px;
    padding: 22px;
    border-radius: 20px;
    scroll-snap-align: start;
  }

  #recensioni .home-review-card:nth-child(even) {
    border-radius: 20px;
  }

  #recensioni .home-review-card .review-card-header {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
  }

  #recensioni .home-review-card .review-stars {
    grid-column: 1 / -1;
    width: auto;
    padding-left: 0;
  }

  #recensioni .home-review-card .review-text {
    -webkit-line-clamp: 10;
    font-size: 0.93rem;
    line-height: 1.67;
  }

  #recensioni .home-review-card .review-card-footer {
    align-items: flex-start;
  }

  .home-reviews-controls {
    display: none;
  }

  .home-reviews-swipe-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 2px;
    color: var(--mud);
    font-size: 0.72rem;
  }

  .home-reviews-swipe-hint span {
    color: var(--brick);
    font-size: 1rem;
  }
}

/* True Tinder-style stack: the top story can be thrown in either direction. */
#recensioni .home-reviews-deck {
  max-width: 620px;
  margin: 0 auto;
}

#recensioni .reviews-grid {
  position: relative;
  display: block;
  width: 100%;
  height: 430px;
  margin: 0;
  padding: 0;
  overflow: visible;
  touch-action: pan-y;
}

#recensioni .home-review-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(100% - 48px);
  max-width: 560px;
  min-width: 480px;
  height: 390px;
  min-height: 0;
  margin: 0;
  transform: translateX(-50%);
  transform-origin: 50% 110%;
  transition: transform 280ms cubic-bezier(.2,.8,.2,1), opacity 220ms ease;
  grid-template-rows: auto minmax(0, 1fr) auto;
  background: #fff;
  user-select: none;
  cursor: grab;
}

#recensioni .home-review-card .review-card-header {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
}

#recensioni .home-review-card .review-stars {
  grid-column: 1 / -1;
  width: auto;
  padding-left: 0;
}

#recensioni .home-review-card .review-identity,
#recensioni .home-review-card .review-card-event {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
}

#recensioni .home-review-card[data-deck-position="0"] {
  z-index: 4;
}

#recensioni .home-review-card[data-deck-position="1"] {
  z-index: 3;
  transform: translateX(-50%) translateY(13px) scale(0.965) rotate(-1deg);
  opacity: 1;
  pointer-events: none;
}

#recensioni .home-review-card[data-deck-position="2"] {
  z-index: 2;
  transform: translateX(-50%) translateY(25px) scale(0.93) rotate(1.2deg);
  opacity: 1;
  pointer-events: none;
}

#recensioni .home-review-card[data-deck-position]:not([data-deck-position="0"]):not([data-deck-position="1"]):not([data-deck-position="2"]) {
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

#recensioni .home-review-card.is-dragging {
  cursor: grabbing;
  transition: none;
}

#recensioni .home-review-card.is-leaving {
  pointer-events: none;
}

#recensioni .home-review-card .review-text {
  display: block;
  min-height: 0;
  padding-right: 10px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(178, 74, 59, 0.42) transparent;
  touch-action: pan-y;
  user-select: text;
  -webkit-line-clamp: unset;
  -webkit-overflow-scrolling: touch;
}

#recensioni .home-review-card .review-text::-webkit-scrollbar {
  width: 5px;
}

#recensioni .home-review-card .review-text::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(178, 74, 59, 0.42);
}

@media (max-width: 700px) {
  #recensioni .home-reviews-deck {
    width: 100%;
  }

  #recensioni .reviews-grid {
    height: 474px;
    margin: 0;
    padding: 0;
  }

  #recensioni .home-review-card {
    width: calc(100% - 18px);
    min-width: 0;
    max-width: none;
    height: 438px;
    padding: 22px;
  }

  #recensioni .home-review-card .review-card-event {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: calc(2.7em + 10px);
    overflow: hidden;
    padding: 5px 7px;
    font-size: 0.68rem;
    line-height: 1.35;
    white-space: normal;
  }

  #recensioni .home-review-card[data-deck-position="1"] {
    transform: translateX(-50%) translateY(10px) scale(0.965) rotate(-1deg);
  }

  #recensioni .home-review-card[data-deck-position="2"] {
    transform: translateX(-50%) translateY(20px) scale(0.93) rotate(1.2deg);
  }
}
