@font-face {
  font-family: "Google Sans";
  src: url("fonts/GoogleSans-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Google Sans";
  src: url("fonts/GoogleSans-Medium.ttf") format("truetype");
  font-weight: 500;
}

@font-face {
  font-family: "Google Sans";
  src: url("fonts/GoogleSans-Bold.ttf") format("truetype");
  font-weight: 700;
}

:root {
  --ink: #201916;
  --muted: #75675c;
  --cream: #fffdf8;
  --paper: #fffaf2;
  --white: #ffffff;
  --wine: #3e6f4b;
  --wine-dark: #286338;
  --rose: #e58aa6;
  --gold: #f09a3a;
  --green: #3e6f4b;
  --sage: #6fa77b;
  --line: rgba(32, 25, 22, 0.12);
  --shadow: 0 30px 90px rgba(48, 34, 24, 0.16);
  --shadow-soft: 0 18px 50px rgba(48, 34, 24, 0.10);
  --radius: 34px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
font-family: "Google Sans", sans-serif;  background: #ffffff;
  line-height: 1.5;
}

.app-shell {
  width: min(1480px, 100%);
  margin: 0 auto;
}

a {
  color: inherit;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 9999;
  margin: 14px auto 0;
  width: min(1360px, calc(100% - 28px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 10px;
  border: 1px solid rgba(32,25,22,0.10);
  border-radius: 28px;
  background: rgba(255, 250, 242, 0.78);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 60px rgba(48, 34, 24, 0.10);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-left: 6px;
  text-decoration: none;
}

.brand-symbol {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  color: white;
  background: #6faa7b;
  font-family: Georgia, serif;
  letter-spacing: 0.08em;
  box-shadow: 0 16px 32px rgba(63,93,55,0.24);
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.58);
}

.nav a {
  padding: 10px 13px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.9rem;
}

.nav a:hover {
  background: white;
  color: var(--wine);
}

.menu-button {
  display: none;
}

.hero {
  width: min(1360px, calc(100% - 28px));
  margin: 28px auto 0;
  min-height: 760px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 18px;
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 660px;
  border-radius: 44px;
  background:
    url("https://stanlakepark.com/wp-content/uploads/wine-tour-ladies.jpg?auto=format&fit=crop&w=1600&q=85") center/cover;
  box-shadow: var(--shadow);
}

.hero-overlay {
  display: none;
}

.hero-badge {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  color: white;
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 26px;
  background: rgba(255,255,255,0.13);
  backdrop-filter: blur(16px);
}
.hero-badge {
  display: none;
}

.hero-badge span {
  font-size: 2rem;
}

.hero-badge p {
  margin: 0;
  font-weight: 800;
}

.hero-content {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 82px);
  border-radius: 44px;
  border: 1px solid rgba(32,25,22,0.10);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--wine);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.06em;
}

h1 {
  max-width: 800px;
  font-size: clamp(3.6rem, 7vw, 7.8rem);
}

h2 {
  font-size: clamp(2.4rem, 4.8vw, 5.2rem);
}

h3 {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.hero-content > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
}

.hero-actions,
.matcher-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 950;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--wine), var(--wine-dark));
  box-shadow: 0 18px 34px rgba(116,34,69,0.24);
}

.button.glass,
.button.plain {
  color: var(--wine);
  border-color: rgba(32,25,22,0.10);
  background: rgba(255,255,255,0.70);
}

.quick-actions {
  width: min(1360px, calc(100% - 28px));
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.action-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  border-radius: 30px;
  text-decoration: none;
  color: white;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  position: relative;
}

.action-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.68));
}

.action-card span,
.action-card strong,
.action-card small {
  position: relative;
}

.action-card span {
  font-size: 2rem;
}

.action-card strong {
  margin-top: 16px;
  font-size: 1.2rem;
}

.action-card small {
  color: rgba(255,255,255,0.78);
  margin-top: 5px;
}

.action-card.wine {
  background: linear-gradient(rgba(63,93,55,0.15), rgba(63,93,55,0.45)), url("https://stanlakepark.com/wp-content/uploads/stanlake-park-rose-pouring.jpg?auto=format&fit=crop&w=900&q=85") center/cover;
}

.action-card.visit {
  background: linear-gradient(rgba(63,93,55,0.15), rgba(63,93,55,0.45)), url("https://stanlakepark.com/wp-content/uploads/Wine-Bar-ladies-scaled.jpg?auto=format&fit=crop&w=900&q=85") center/cover;
}

.action-card.estate {
  background: linear-gradient(rgba(63,93,55,0.15), rgba(63,93,55,0.45)), url("https://stanlakepark.com/wp-content/uploads/berkshire-thames-walks-drone-view.jpg?auto=format&fit=crop&w=900&q=85") center/cover;
}

.action-card.nearby {
  background: linear-gradient(rgba(63,93,55,0.15), rgba(63,93,55,0.45)), url("https://stanlakepark.com/wp-content/uploads/Winter-vineyard-walk-during-a-guided-wine-tour-near-London.jpg?auto=format&fit=crop&w=900&q=85") center/cover;
}
.action-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
  cursor: pointer;
}

.action-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.18);
  filter: brightness(1.03);
}
.action-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
  cursor: pointer;
}

.action-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.18);
  filter: brightness(1.03);
}

.feature-section {
  width: min(1360px, calc(100% - 28px));
  margin: 18px auto 0;
  padding: clamp(34px, 5vw, 72px);
  border-radius: 44px;
  border: 1px solid rgba(32,25,22,0.10);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.section-intro {
  max-width: 1000px;
  margin-bottom: 34px;
}

.section-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.13rem;
}

.section-intro.light,
.section-intro.light .eyebrow {
  color: white;
}

.section-intro.light p:not(.eyebrow) {
  color: rgba(255,255,255,0.76);
}

.matcher-section {
  background:
    radial-gradient(circle at 95% 5%, rgba(116,34,69,0.11), transparent 34%),
    rgba(255, 250, 242, 0.84);
}

.matcher-app {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 18px;
}

.preference-panel,
.results-panel {
  padding: 24px;
  border-radius: 32px;
  border: 1px solid rgba(32,25,22,0.10);
  background: rgba(255,255,255,0.66);
}

.panel-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.panel-head p {
  margin: 6px 0 0;
  color: var(--muted);
}

.step {
  display: grid;
  place-items: center;
  min-width: 46px;
  height: 46px;
  border-radius: 16px;
  color: white;
  background: linear-gradient(135deg, var(--wine), var(--wine-dark));
  font-weight: 950;
}

.choice-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.choice-cloud label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border: 1px solid rgba(32,25,22,0.10);
  border-radius: 999px;
  background: rgba(255,255,255,0.75);
  cursor: pointer;
  font-weight: 850;
}

.choice-cloud label:has(input:checked) {
  color: white;
  background: linear-gradient(135deg, var(--wine), var(--wine-dark));
  border-color: transparent;
}

.choice-cloud input {
  accent-color: var(--wine);
}

.empty-card {
  min-height: 280px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 32px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 20%, rgba(199,160,90,0.24), transparent 35%),
    rgba(255,255,255,0.66);
  color: var(--muted);
}

.empty-card span {
  font-size: 3rem;
}

.wine-stack {
  display: grid;
  gap: 14px;
}

.result-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 22px;
  border-radius: 28px;
  color: white;
  background:
    linear-gradient(135deg, rgba(63,93,55,0.92), rgba(32,25,22,0.60)),
    url("https://stanlakepark.com/wp-content/uploads/stanlake-park-rose-bottling.jpg?auto=format&fit=crop&w=900&q=85") center/cover;
  box-shadow: 0 18px 50px rgba(116,34,69,0.18);
}

.result-card:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(63,93,55,0.92), rgba(32,25,22,0.60)),
    url("https://stanlakepark.com/wp-content/uploads/stanlake-park-rose-glass.jpg?auto=format&fit=crop&w=900&q=85") center/cover;
}

.result-card:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(63,93,55,0.92), rgba(32,25,22,0.60)),
    url("https://stanlakepark.com/wp-content/uploads/stanlake-park-rose-pouring.jpg?auto=format&fit=crop&w=900&q=85") center/cover;
}

.result-card p {
  color: rgba(255,255,255,0.84);
}

.result-card .card-label {
  margin: 0 0 8px;
  color: rgba(255,255,255,0.70);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.score {
  align-self: start;
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.20);
  backdrop-filter: blur(10px);
  font-weight: 950;
}

.match-reasons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 14px 0 0;
  list-style: none;
}

.match-reasons li {
  padding: 7px 10px;
  border-radius: 999px;
  color: white;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 0.84rem;
  font-weight: 850;
}

.dark-section {
  color: white;
  background:
    linear-gradient(135deg, rgba(111,167,123,0.96), rgba(62,111,75,0.90)),
    url("https://stanlakepark.com/wp-content/uploads/stanlake-park-winery-1-scaled.jpg?auto=format&fit=crop&w=1600&q=85") center/cover;
  box-shadow: var(--shadow);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.journey-card {
  overflow: hidden;
  border-radius: 32px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
}

.journey-image {
  min-height: 220px;
}

.journey-image.london {
  background: url("https://stanlakepark.com/wp-content/uploads/wine-tour-small-2.jpg?auto=format&fit=crop&w=900&q=85") center/cover;
}

.journey-image.couple {
  background: url("https://stanlakepark.com/wp-content/uploads/Stanlake-Park-Winery-1-Bed-0001-7-scaled.jpg?auto=format&fit=crop&w=900&q=85") center/cover;
}

.journey-image.group {
  background: url("https://stanlakepark.com/wp-content/uploads/2-42.jpg?auto=format&fit=crop&w=900&q=85") center/cover;
}

.journey-copy {
  padding: 24px;
}

.journey-copy span {
  color: #f5d690;
  font-weight: 950;
}

.journey-copy p,
.journey-copy li {
  color: rgba(255,255,255,0.76);
}

.journey-copy ol {
  padding-left: 18px;
}

.experience-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.experience-row article {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border-radius: 30px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(32,25,22,0.10);
}

.experience-row article span {
  font-size: 2rem;
}

.experience-row p {
  color: var(--muted);
}

.experience-row a {
  color: var(--wine);
  font-weight: 950;
}

.estate-section {
  background:
    radial-gradient(circle at 10% 15%, rgba(63,93,55,0.18), transparent 32%),
    rgba(255,250,242,0.82);
}

.estate-card {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 4vw, 48px);
  border-radius: 36px;
  color: white;
  background:
    linear-gradient(135deg, rgba(32,25,22,0.88), rgba(63,93,55,0.74)),
    url("https://stanlakepark.com/wp-content/uploads/Organic-Wine-vs-Vegan-Wine.jpg?auto=format&fit=crop&w=1500&q=85") center/cover;
  box-shadow: var(--shadow);
}

.estate-card .eyebrow,
.estate-card p {
  color: rgba(255,255,255,0.78);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.stat-grid div {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
}

.stat-grid strong {
  display: block;
  font-size: 1.55rem;
}

.stat-grid span {
  color: rgba(255,255,255,0.72);
}

.story-strip {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.story-strip article {
  padding: 24px;
  border-radius: 30px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(32,25,22,0.10);
}

.story-strip span {
  color: var(--wine);
  font-weight: 950;
}

.story-strip p {
  color: var(--muted);
}

.stay-showcase {
  display: grid;
  gap: 14px;
}

.stay-card {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  border-radius: 34px;
  color: white;
  box-shadow: var(--shadow-soft);
}

.stay-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.72));
}

.stay-card div {
  position: relative;
}

.stay-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: #f7d88c;
  font-weight: 950;
}

.stay-card p {
  color: rgba(255,255,255,0.78);
}

.stay-card.north {
  background: url("https://stanlakepark.com/wp-content/uploads/Stanlake-Park-Winery-1-Bed-0001-7-scaled.jpg?auto=format&fit=crop&w=1200&q=85") center/cover;
}

.stay-card.south {
  background: url("https://stanlakepark.com/wp-content/uploads/South-Lodge-0001-245-scaled.jpg?auto=format&fit=crop&w=900&q=85") center/cover;
}

.stay-card.school {
  background: url("https://stanlakepark.com/wp-content/uploads/The-Old-School-House-Front-View-scaled.jpg?auto=format&fit=crop&w=900&q=85") center/cover;
}
.stay-intro {
  max-width: 780px;
  margin: 24px 0 48px;
}

.stay-intro p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #5c5c5c;
  margin-bottom: 24px;
}

.stay-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #2f6f44;
  color: white;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: 0.25s;
}

.stay-button:hover {
  transform: translateY(-2px);
  background: #255938;
}
.property-specs {
  margin: 12px 0 18px;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.9;
}

.property-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.95);
  color: #1d1d1d;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.property-button:hover {
  transform: translateY(-2px);
  background: #ffffff;
}
  .stay-finder {
  margin: 40px 0 60px;
}

.stay-question h3 {
  margin-bottom: 16px;
}

.stay-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.stay-options button {
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  cursor: pointer;
  background: #f4f0e8;
  color: #2f6f44;
  font-weight: 700;
}

.stay-options button.active {
  background: #2f6f44;
  color: white;
}

.stay-result {
  padding: 24px;
  border-radius: 24px;
  background: #f8f8f8;
  font-weight: 700;
}

.nearby-board {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.nearby-tile {
  text-align: left;
  min-height: 190px;
  padding: 22px;
  border-radius: 30px;
  border: 1px solid rgba(32,25,22,0.10);
  background: rgba(255,255,255,0.68);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.nearby-tile.active {
  color: white;
  background:
    linear-gradient(135deg, rgba(111,167,123,0.92), rgba(62,111,75,0.90));
}

.nearby-tile span {
  display: block;
  font-size: 2rem;
  margin-bottom: 18px;
}

.nearby-tile strong {
  display: block;
  font-size: 1.1rem;
}

.nearby-tile small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.nearby-tile.active small {
  color: rgba(255,255,255,0.74);
}

.nearby-detail {
  margin-top: 16px;
}

.nearby-panel {
  display: none;
  padding: 28px;
  border-radius: 30px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(32,25,22,0.10);
}

.nearby-panel.active {
  display: block;
}

.nearby-panel p {
  color: var(--muted);
  max-width: 760px;
}

.closing {
  width: min(1360px, calc(100% - 28px));
  margin: 18px auto 28px;
  padding: clamp(38px, 6vw, 76px);
  border-radius: 44px;
  text-align: center;
  color: white;
  background:
    linear-gradient(135deg, rgba(62,111,75,0.92), rgba(111,167,123,0.76)),
    url("https://stanlakepark.com/wp-content/uploads/Autumn-vineyard-at-Stanlake-Park-Wine-Estate-Berkshire.jpg?auto=format&fit=crop&w=1500&q=85") center/cover;
  box-shadow: var(--shadow);
}

.closing .eyebrow {
  color: #f7d88c;
}

@media (max-width: 1050px) {
  .menu-button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(32,25,22,0.10);
    background: white;
    font-weight: 950;
  }

  .nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border-radius: 28px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .hero,
  .matcher-app,
  .estate-card,
  .quick-actions,
  .journey-grid,
  .experience-row,
  .story-strip,
  .stay-showcase,
  .nearby-board {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 440px;
    order: 2;
  }

  .hero-content {
    order: 1;
  }

  .stay-card {
    min-height: 330px;
  }
}

@media (max-width: 620px) {
  .topbar,
  .hero,
  .quick-actions,
  .feature-section,
  .closing {
    width: calc(100% - 20px);
  }

  .topbar {
    border-radius: 22px;
  }

  .brand small {
    display: none;
  }

  .brand-symbol {
    width: 44px;
    height: 44px;
  }

  .hero,
  .hero-content,
  .hero-media,
  .feature-section,
  .closing {
    border-radius: 30px;
  }

  .hero-content,
  .feature-section {
    padding: 28px;
  }

  h1 {
    font-size: clamp(3.1rem, 16vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.4rem, 12vw, 3.8rem);
  }

  .hero-media {
    min-height: 360px;
  }

  .hero-badge {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .result-card {
    grid-template-columns: 1fr;
  }

  .score {
    justify-self: start;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }
}
.tour-faq {
  margin-top: 30px;
  padding: 32px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(32,25,22,0.10);
  box-shadow: var(--shadow-soft);
  max-width: 100%;
}

.tour-faq h3 {
  margin-top: 0;
  margin-bottom: 20px;
}

.tour-faq details {
  border-top: 1px solid rgba(32,25,22,0.10);
  padding: 16px 0;
}

.tour-faq details:first-of-type {
  border-top: 0;
}

.tour-faq summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--ink);
  list-style: none;
}

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

.tour-faq summary::after {
  content: "+";
  float: right;
  color: var(--wine);
  font-size: 1.3rem;
}

.tour-faq details[open] summary::after {
  content: "–";
}

.tour-faq p {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 820px;
}
.tour-tips {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.tip-card {
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(32,25,22,0.10);
  box-shadow: var(--shadow-soft);
}

.tip-card span {
  display: block;
  font-size: 2rem;
  margin-bottom: 14px;
}

.tip-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.tip-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

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

@media (max-width: 700px) {
  .tour-tips {
    grid-template-columns: 1fr;
  }
}
.tour-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  margin-bottom: 20px;
}
.experience-row article {
  display: flex;
  flex-direction: column;
}

.experience-row article h3 {
    margin-top: 0;
  min-height: 72px;
}

.experience-row article p {
  min-height: 120px;
}

.experience-row article ul {
  margin-top: auto;
}
.tour-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
}

.tour-divider::before,
.tour-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: rgba(32,25,22,0.08);
}

.tour-divider span {
  padding: 0 16px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}
.tour-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
  margin-bottom: 34px;
  width: 100%;
}

.highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 22px;
  padding: 22px;
  min-height: 150px;
}

.highlight-card span {
  display: grid;
  place-items: center;
  min-width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,0.16);
  font-size: 1.4rem;
}

.highlight-card h3 {
  margin: 0 0 8px;
  color: white;
  font-size: 1.1rem;
}

.highlight-card p {
  display: block;
  margin: 0;
  color: rgba(255,255,255,0.82);
  line-height: 1.45;
}

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

@media (max-width: 650px) {
  .tour-highlights {
    grid-template-columns: 1fr;
  }
}
.tour-summary {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin: 30px 0 45px;
  font-weight: 700;
  color: white;
  flex-wrap: wrap;
}

.tour-summary span {
  opacity: 0.95;
}
.wine-link {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #6faa7b;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.wine-link:hover {
  opacity: 0.9;
}
.result-card {
  grid-template-columns: 150px 1fr auto;
}

.wine-result-image {
  width: 180px;
  height: 320px;
  object-fit: contain;
  object-position: center;
  align-self: center;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.25));
}

@media (max-width: 700px) {
  .result-card {
    grid-template-columns: 1fr;
  }

  .wine-result-image {
    width: 120px;
    justify-self: center;
  }
}
.estate-button {
  display: inline-flex;
  margin-top: 24px;
  padding: 13px 20px;
  border-radius: 999px;
  background: #ffffff;
  color: #2f6f46;
  text-decoration: none;
  font-weight: 800;
}

.estate-button:hover {
  opacity: 0.9;
}
.estate-history-strip {
  width: 100%;
  height: 120px;
  margin-bottom: 24px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}

.estate-history-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.explorer-search{
width:100%;
padding:16px 20px;
border-radius:16px;
border:1px solid #ddd;
margin-bottom:30px;
font-size:16px;
}

.explorer-grid{
display:grid;
grid-template-columns:
repeat(auto-fill,minmax(280px,1fr));
gap:20px;
}

.explorer-card{
background:#fff;
padding:24px;
border-radius:24px;
border:1px solid #e5e5e5;
}

.explorer-card h3{
margin-bottom:8px;
}

.distance{
font-weight:600;
color:#2d6b43;
}

.explorer-card a{
display:inline-block;
margin-top:12px;
font-weight:600;
color:#2d6b43;
text-decoration:none;
}

.explorer-tabs{
display:flex;
gap:12px;
flex-wrap:wrap;
margin-bottom:24px;
}

.explorer-tab{
border:none;
padding:12px 18px;
border-radius:999px;
cursor:pointer;
}

.explorer-tab.active{
background:#2d6b43;
color:white;
}
.explorer-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.explorer-category,
.explorer-distance {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 800;
}

.explorer-category {
  text-transform: capitalize;
  background: rgba(47,111,68,0.10);
  color: #2f6f44;
}

.explorer-distance {
  background: #f4f0e8;
  color: #4f463e;
}

.explorer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.explorer-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #f7f3ec;
  color: #5d5249;
  font-size: 0.82rem;
  font-weight: 700;
}
.explorer-grid,
.explorer-card,
.explorer-card a {
  position: relative;
  z-index: 5;
}

.explorer-card a {
  pointer-events: auto;
}

.nearby-detail,
.nearby-panel {
  display: none !important;
}
.explorer-card a {
  display: inline-flex;
  margin-top: 18px;
  padding: 11px 16px;
  border-radius: 999px;
  background: #2f6f44;
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
}
.explorer-grid,
.explorer-card,
.explorer-card a {
  position: relative;
  z-index: 999;
}

.explorer-card a {
  pointer-events: auto;
}
.explorer-empty {
  grid-column: 1 / -1;
  padding: 32px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(32,25,22,0.10);
  text-align: center;
  color: var(--muted);
}

.explorer-empty h3 {
  color: var(--ink);
  margin-bottom: 8px;
}
.explorer-clear {
  background: #f4f0e8;
}

.explorer-clear:hover {
  background: #e9e2d5;
}
.tour-cta-card{
  margin-top:24px;
  padding:28px;
  border-radius:24px;
  background:#2f6f44;
  color:white;
  text-align:center;
}

.tour-cta-button{
  display:inline-flex;
  align-items:center;
  gap:10px;

  background:#ffffff;
  color:#347a47;

  padding:16px 32px;

  border-radius:999px;

  font-weight:700;
  font-size:1.1rem;

  text-decoration:none;

  box-shadow:0 8px 24px rgba(0,0,0,0.15);

  transition:all 0.25s ease;
}

.tour-cta-button:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 30px rgba(0,0,0,0.20);
}

.tour-cta-button:active{
  transform:translateY(0);
}
.final-tour-cta {
  margin-top: 36px;
}

.final-tour-cta h3 {
  color: white;
  margin-bottom: 16px;
}

.final-tour-cta p {
  color: rgba(255,255,255,0.9);
}

.tour-cta-small {
  margin-top: 18px;
  margin-bottom: 0;
  font-size: 0.95rem;
  font-weight: 700;
  opacity: 0.9;
}
.sticky-tour-button{
  position:fixed;
  bottom:24px;
  right:24px;

  z-index:9999;

  background:#2f6f44;
  color:white;

  padding:16px 24px;

  border-radius:999px;

  text-decoration:none;

  font-weight:700;

  box-shadow:0 12px 30px rgba(0,0,0,.18);
}
.popular-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.popular-card {
  padding: 30px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(32,25,22,0.10);
  box-shadow: var(--shadow-soft);
}

.popular-card span {
  display: block;
  font-size: 2rem;
  margin-bottom: 16px;
}

.popular-card h3 {
  margin: 0 0 12px;
}

.popular-card p {
  color: var(--muted);
  margin-bottom: 22px;
}

.popular-card a {
  display: inline-flex;
  padding: 12px 18px;
  border-radius: 999px;
  background: #2f6f44;
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
}

@media (max-width: 900px) {
  .popular-grid {
    grid-template-columns: 1fr;
  }
}
.tour-cta-strip {

  background: #2f6f44;

  border-radius: 32px;

  padding: 60px 50px;

  margin: 80px 0;

  text-align: center;

  color: white;

}

.tour-cta-strip h2 {

  color: white;

  margin: 0 0 30px;

  font-size: clamp(2rem, 4vw, 3.5rem);

  line-height: 1.1;

}

.tour-cta-actions {

  display: flex;

  justify-content: center;

  gap: 16px;

  margin-bottom: 40px;

  flex-wrap: wrap;

}

.tour-primary-btn {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 16px 28px;

  background: white;

  color: #2f6f44;

  text-decoration: none;

  border-radius: 999px;

  font-weight: 800;

}

.tour-primary-btn:hover {

  transform: translateY(-2px);

}

.tour-secondary-btn {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 16px 28px;

  background: transparent;

  color: white;

  text-decoration: none;

  border-radius: 999px;

  font-weight: 700;

  border: 1px solid rgba(255,255,255,0.4);

}

.tour-cta-stat {

  font-family: "Cormorant Garamond", serif;

  font-size: clamp(2rem, 4vw, 3.25rem);

  font-weight: 700;

  color: white;

  opacity: 0.95;

  padding-top: 30px;

  border-top: 1px solid rgba(255,255,255,0.2);

}

@media (max-width: 768px) {

  .tour-cta-strip {

    padding: 40px 24px;

  }

  .tour-cta-actions {

    flex-direction: column;

  }

}
.estate-wedding-callout {

  display: flex;

  gap: 18px;

  align-items: flex-start;

  margin-top: 28px;

  padding: 22px;

  border-radius: 20px;

  background: rgba(255,255,255,0.08);

  border: 1px solid rgba(255,255,255,0.12);

}

.estate-wedding-callout span {

  font-size: 1.8rem;

  line-height: 1;

}

.estate-wedding-callout h3 {

  color: white;

  margin: 0 0 8px;

  font-size: 1.1rem;

}

.estate-wedding-callout p {

  color: rgba(255,255,255,0.85);

  margin: 0 0 10px;

  font-size: 0.95rem;

}

.estate-wedding-callout a {

  color: white;

  font-weight: 700;

  text-decoration: none;

}

.estate-wedding-callout a:hover {

  text-decoration: underline;

}

.sticky-tour-button{
  position:fixed;
  bottom:24px;
  right:24px;

  z-index:9999;

  background:#2f6f44;
  color:white;

  padding:16px 24px;

  border-radius:999px;

  text-decoration:none;

  font-weight:700;

  box-shadow:0 12px 30px rgba(0,0,0,.18);
}
.experience-matcher {
  display: grid;
  gap: 28px;
}

.experience-question {
  padding: 26px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid rgba(32,25,22,0.10);
  box-shadow: var(--shadow-soft);
}

.experience-question h3 {
  margin-bottom: 18px;
}

.experience-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.experience-options button {
  border: 1px solid rgba(32,25,22,0.12);
  background: #f7f3ec;
  color: var(--ink);
  padding: 12px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}

.experience-options button.active {
  background: #2f6f44;
  color: #ffffff;
  border-color: #2f6f44;
}

.experience-match-button {
  justify-self: start;
  border: 0;
  background: #2f6f44;
  color: #ffffff;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  transition: all 0.25s ease;
}

.experience-match-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.20);
}

.experience-result {
  display: none;
}

.experience-result-card {
  padding: 32px;
  border-radius: 30px;
  background: #2f6f44;
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.experience-result-card h3 {
  color: #ffffff;
  margin-bottom: 10px;
}

.experience-result-card p {
  color: rgba(255,255,255,0.88);
}

.experience-result-card ul {
  margin: 18px 0;
  padding-left: 20px;
}

.experience-result-card a {
  display: inline-flex;
  margin-top: 18px;
  padding: 14px 24px;
  border-radius: 999px;
  background: #ffffff;
  color: #2f6f44;
  text-decoration: none;
  font-weight: 900;
}
.experience-matcher-section .section-intro {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.experience-helper {
  margin-top: 10px;
  color: var(--wine);
  font-weight: 900;
}

.experience-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.experience-match-button,
.experience-clear-button {
  border: 0;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.25s ease;
}

.experience-match-button {
  background: #2f6f44;
  color: #ffffff;
}

.experience-clear-button {
  background: #f4f0e8;
  color: #2f6f44;
}

.experience-match-button:hover,
.experience-clear-button:hover {
  transform: translateY(-3px);
}
.experience-matcher {
  max-width: 1200px;
  margin: 0 auto;
}

.experience-question {
  text-align: center;
}

.experience-question h3 {
  text-align: center;
  margin-bottom: 24px;
}

.experience-options {
  justify-content: center;
}
.experience-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
}
.experience-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.experience-mini-card {
  background: #f8f6f2;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 1.5rem;
}

.experience-mini-card p:first-child {
  margin-top: 0;
}

.experience-mini-card h3 {
  font-size: 1.5rem;
  margin: 0.5rem 0;
}

.experience-mini-card a {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
  color: var(--green);
}

@media (max-width: 768px) {
  .experience-mini-grid {
    grid-template-columns: 1fr;
  }
}
.experience-result-image {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 24px;
}

.experience-mini-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 18px;
}
.experience-includes {
  margin: 24px 0;
}

.experience-includes h4 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.experience-includes ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.experience-includes li {
  margin-bottom: 8px;
  opacity: 0.95;
}
.gift-voucher-callout {
  margin-top: 24px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
}

.gift-voucher-callout h3 {
  margin: 0 0 8px;
  color: white;
}

.gift-voucher-callout p {
  margin: 0 0 14px;
  color: rgba(255,255,255,0.86);
}

.gift-voucher-callout a {
  background: white;
  color: #2f6f44;
}
.experience-result-content {
  max-width: 1100px;
}

.experience-result-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.experience-result-columns > div {
  align-self: start;
}

.experience-result-columns > div:last-child p {
  margin-bottom: 18px;
}

.experience-why {
  margin-top: 24px;
}

.experience-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.experience-result-actions a {
  display: inline-flex;
  padding: 14px 24px;
  border-radius: 999px;
  background: #ffffff;
  color: #2f6f44;
  text-decoration: none;
  font-weight: 900;
  transition: all 0.25s ease;
}

.experience-result-actions a:hover {
  transform: translateY(-3px);
}

.gift-voucher-button {
  background: rgba(255,255,255,0.16) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.28);
}

@media (max-width: 800px) {
  .experience-result-columns {
    grid-template-columns: 1fr;
  }
}
.experience-result-columns > div:last-child {
  margin-top: 0;
}
.experience-result-columns {
  align-items: start !important;
}

.experience-result-columns > div {
  align-self: start !important;
}

.experience-includes {
  margin: 0 !important;
}

.experience-result-columns > div:last-child {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
.nav a.active {
  background: #2f6f44;
  color: #ffffff;
}

.nav a {
  transition: all 0.25s ease;
}
.header-logo {
  height: 56px;
  width: auto;
  display: block;
}
.hero {
  min-height: auto;
  padding: 32px;
}

.hero-content {
  padding: 60px 64px;
}

.hero h1 {
  font-size: clamp(3.2rem, 6vw, 6.5rem);
}

.hero-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-steps span {
  padding: 10px 14px;
  border-radius: 999px;
  background: #f4f0e8;
  color: #2f6f44;
  font-weight: 800;
  font-size: 0.9rem;
}
.nav-book-button {
  background: #2f6f44;
  color: white !important;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.nav-book-button:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}
.stay-finder {
  margin: 40px 0 60px;
  max-width: 1100px;
}

.stay-question {
  margin-bottom: 24px;
}

.stay-question h3 {
  margin-bottom: 16px;
}

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

.stay-options button {
  appearance: none;
  border: 1px solid rgba(32,25,22,0.12);
  border-radius: 999px;
  padding: 12px 20px;
  cursor: pointer;
  background: #f4f0e8;
  color: #2f6f44;
  font-weight: 800;
  font-family: inherit;
  font-size: 1rem;
}

.stay-options button.active {
  background: #2f6f44;
  color: #ffffff;
}

.stay-result {
  margin-top: 16px;
  padding: 20px 24px;
  border-radius: 24px;
  background: #f4f0e8;
  color: #2f6f44;
  font-weight: 800;
}
.stay-card {
  transition: all 0.35s ease;
  position: relative;
}
.stay-showcase {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 24px;
}

.stay-card {
  transition: all 0.35s ease;
  position: relative;
  min-height: 540px;
}

.stay-card.recommended {
  outline: 4px solid #2f6f44;
  transform: translateY(-8px);
  z-index: 2;
}

.stay-card.not-recommended {
  opacity: 0.9;
}

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

  .stay-card {
    min-height: 520px;
  }
}
@media (max-width: 700px) {
  .experience-row article {
    min-height: auto;
    padding: 20px;
    border-radius: 24px;
  }

  .tour-card-image {
    height: 180px;
    margin-bottom: 16px;
  }

  .experience-row article h3 {
    min-height: auto;
    margin-bottom: 12px;
    font-size: 1.6rem;
  }

  .experience-row article p {
    min-height: auto;
    margin-bottom: 16px;
    font-size: 1rem;
  }

  .experience-row article ul {
    margin-top: 0;
    padding-left: 20px;
  }

  .experience-row article li {
    margin-bottom: 6px;
  }
}
.site-footer {
  background: #2f6f44;
  color: white;
  padding: 100px 0;
  margin-top: 120px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
}

.footer-grid h4 {
  margin-bottom: 20px;
}

.footer-grid a {
  color: white;
  text-decoration: none;
  display: block;
  margin-bottom: 12px;
  opacity: 0.9;
}

.footer-grid a:hover {
  opacity: 1;
}

.footer-intro h2 {
  color: white;
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.footer-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #2f6f44;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: 24px;
  transition: all 0.25s ease;
}

.footer-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.footer-grid a {
  color: white;
}
.tour-proof {
  margin-top: 20px;
  font-weight: 600;
  opacity: 0.95;
}

.tour-inspiration-intro {
  text-align: center;
  max-width: 800px;
  margin: 60px auto 40px;
}

.tour-inspiration-intro h3 {
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .quick-actions {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 8px;
  }

  .quick-actions .action-card {
    min-width: 240px;
  }
}
@media (max-width: 768px) {

  .hero h1,
  .hero-actions,
  .hero-steps,
  .hero-media {
    display: none !important;
  }

  .hero {
    padding: 24px;
    min-height: auto;
  }

  .hero-content {
    gap: 12px;
  }

  .hero-content p:not(.eyebrow) {
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.6;
  }
}
@media (max-width: 768px) {

  .section-intro {
    margin-bottom: 1.5rem;
  }

  .section-intro h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
  }

  .section-intro p {
    font-size: 1rem;
  }

}
@media (max-width: 768px) {

  section h2 {
    font-size: 1.75rem;
    line-height: 1.15;
  }

}
/* Desktop */
.tour-accordion-button {
  display: none;
}

.tour-accordion-content {
  display: block;
}

/* Mobile */
@media (max-width: 768px) {
  .tour-mobile-accordion {
    padding: 0;
    background: transparent;
  }

  .tour-accordion-button {
    display: block;
    width: 100%;
    padding: 20px;
    border: 0;
    border-radius: 24px;
    background: #2f6f49;
    color: #fff;
    text-align: left;
    cursor: pointer;
  }

  .tour-accordion-button span {
    display: block;
    margin-bottom: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.8;
  }

  .tour-accordion-button strong {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 1.1rem;
    line-height: 1.25;
  }

  .tour-accordion-button strong::after {
    content: "+";
    font-size: 1.5rem;
  }

  .tour-mobile-accordion.is-open .tour-accordion-button strong::after {
    content: "–";
  }

  .tour-accordion-content {
    display: none;
    margin-top: 18px;
    background: #2f6f49;
    border-radius: 24px;
    padding: 20px;
    color: #fff;
  }

  .tour-mobile-accordion.is-open .tour-accordion-content {
    display: block;
  }
}
