:root {
  --fg-sage: #6f9387;
  --fg-honey: #d8a21f;
  --fg-forest: #343f3b;
  --fg-cream: #fbf7ea;
  --fg-soft: #f4df9d;
  --fg-muted: #746d5b;
  --fg-line: #e7dfc9;
  --fg-paper: #ffffff;
  --fg-shadow: 0 20px 44px rgba(52, 63, 59, 0.1);
  --fg-cta-radius: 14px;
  --fg-cta-height: 52px;
  --fg-cta-x: 22px;
  --fg-cta-bg: linear-gradient(135deg, var(--fg-honey), var(--fg-soft));
  --fg-cta-shadow: 0 16px 34px rgba(216, 162, 31, .22);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Poppins, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--fg-forest);
  background:
    linear-gradient(90deg, rgba(216, 162, 31, .04) 1px, transparent 1px),
    linear-gradient(180deg, #fbf7ea 0%, #fffdf8 58%, #fbf7ea 100%);
  background-size: 42px 42px, auto;
  line-height: 1.68;
}

a { color: inherit; }

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 16px 0 20px;
}

.brand img {
  display: block;
  height: 68px;
  width: auto;
  filter: drop-shadow(0 12px 18px rgba(52, 63, 59, .14));
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 14px;
}

.nav a {
  color: var(--fg-forest);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: color .15s ease, transform .15s ease;
}

.nav a:hover {
  color: var(--fg-sage);
  transform: translateY(-1px);
}

.nav .cta {
  min-height: 44px;
  align-items: center;
  border-radius: var(--fg-cta-radius);
  background: var(--fg-cta-bg);
  box-shadow: var(--fg-cta-shadow);
  padding: 10px 16px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  gap: 44px;
  align-items: center;
  padding: 56px 0 44px;
}

.kicker {
  color: var(--fg-sage);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 12px 0 16px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  color: var(--fg-muted);
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
}

.actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  min-height: var(--fg-cta-height);
  align-items: center;
  justify-content: center;
  border-radius: var(--fg-cta-radius);
  background: var(--fg-cta-bg);
  color: var(--fg-forest);
  box-shadow: var(--fg-cta-shadow);
  font-weight: 900;
  line-height: 1.15;
  padding: 0 var(--fg-cta-x);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(216, 162, 31, .28);
  filter: saturate(1.04);
}

.button.secondary {
  border: 1px solid var(--fg-line);
  background: var(--fg-paper);
  box-shadow: none;
}

.home-hero {
  padding: 18px 0 48px;
  overflow: hidden;
}

.home-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: clamp(34px, 5vw, 58px);
  align-items: center;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  border: 1px solid rgba(52, 63, 59, .16);
  border-radius: 999px;
  background: var(--fg-sage);
  color: #fff;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 900;
  padding: 8px 13px;
  margin-bottom: 16px;
  box-shadow: 0 12px 28px rgba(111, 147, 135, .24);
}

.hero-highlight {
  position: relative;
  display: inline-block;
  color: #d8a21f;
  text-shadow: 0 10px 28px rgba(216, 162, 31, .16);
  white-space: normal;
}

.hero-highlight::after {
  content: "";
  position: absolute;
  left: .02em;
  right: .02em;
  bottom: .04em;
  z-index: -1;
  height: .22em;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 226, 118, .86), rgba(255, 240, 176, .42));
  transform: rotate(-1deg);
}

.hero-proof,
.joy-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-proof-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.hero-program-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--fg-cta-height);
  border-radius: var(--fg-cta-radius);
  background: var(--fg-cta-bg);
  color: var(--fg-forest);
  font-size: 14px;
  font-weight: 900;
  padding: 0 var(--fg-cta-x);
  text-decoration: none;
  box-shadow: var(--fg-cta-shadow);
  white-space: nowrap;
  transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
}

.hero-program-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(216, 162, 31, .28);
  filter: saturate(1.04);
}

.hero-proof-row small {
  color: var(--fg-muted);
  font-size: 13px;
  font-weight: 700;
}

.trustpilot-mini {
  display: inline-grid;
  grid-template-columns: auto auto;
  gap: 1px 8px;
  align-items: center;
  border: 1px solid rgba(0, 182, 122, .18);
  border-radius: 18px;
  background: rgba(236, 250, 245, .86);
  color: var(--fg-forest);
  padding: 9px 12px;
  box-shadow: 0 12px 28px rgba(52, 63, 59, .08);
}

.trustpilot-mini strong {
  font-size: 13px;
  font-weight: 900;
}

.trustpilot-mini span {
  color: #00b67a;
  font-size: 13px;
  letter-spacing: 1px;
}

.trustpilot-mini small {
  grid-column: 1 / -1;
  font-size: 10.5px;
  font-weight: 800;
}

.hero-usp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 780px;
  margin-top: 20px;
}

.hero-usp-grid article {
  border: 1px solid rgba(231, 223, 201, .78);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 252, .9), rgba(255, 249, 235, .66));
  box-shadow: 0 14px 34px rgba(52, 63, 59, .055);
  padding: 15px;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.hero-usp-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(216, 162, 31, .32);
  box-shadow: 0 20px 44px rgba(52, 63, 59, .09);
}

.hero-usp-grid span {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 11px;
  background: #dff2ef;
  color: var(--fg-sage);
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 10px;
}

.hero-usp-grid article:nth-child(2) span {
  background: #fff0c7;
  color: #a87408;
}

.hero-usp-grid article:nth-child(3) span {
  background: #ffe1d5;
  color: #b35f3b;
}

.hero-usp-grid strong {
  display: block;
  color: var(--fg-forest);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.18;
}

.hero-usp-grid p {
  color: var(--fg-muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  margin: 6px 0 0;
}

.hero-proof span,
.joy-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid rgba(52, 63, 59, .08);
  border-radius: 999px;
  color: var(--fg-forest);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 13px;
  box-shadow: 0 10px 24px rgba(52, 63, 59, .06);
}

.hero-proof span:nth-child(1) {
  background: #dff2ef;
}

.hero-proof span:nth-child(2) {
  background: #fff0c7;
}

.hero-proof span:nth-child(3) {
  background: #ffe1d5;
}

.joy-tags span:nth-child(1) {
  background: #dff2ef;
}

.joy-tags span:nth-child(2) {
  background: #fff0c7;
}

.joy-tags span:nth-child(3) {
  background: #eadff6;
}

.joy-tags span:nth-child(4) {
  background: #ffe1d5;
}

.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(40px, 4.25vw, 56px);
  line-height: 1.06;
  margin: 10px 0 18px;
  text-wrap: balance;
}

.hero-copy {
  display: contents;
}

.hero-intro {
  grid-column: 1;
  grid-row: 1;
}

.hero-search {
  display: none;
}

/*
.hero-search {
  display: grid;
  grid-column: 1 / -1;
  grid-row: 2;
  grid-template-columns: minmax(260px, 1.4fr) minmax(130px, .58fr) minmax(190px, .78fr) max-content;
  gap: 12px;
  align-items: end;
  border: 1px solid var(--fg-line);
  border-radius: 24px;
  background: rgba(255, 253, 248, .94);
  box-shadow: 0 26px 70px rgba(52, 63, 59, .14);
  margin-top: 28px;
  padding: 16px;
  width: 100%;
}
*/

.hero-search label {
  position: relative;
  display: grid;
  gap: 6px;
  border: 1px solid var(--fg-line);
  border-radius: 16px;
  background: #fffdf8;
  padding: 10px 12px;
  transition: background .15s ease, border-color .15s ease;
}

.hero-search label:first-child {
  grid-column: auto;
}

.hero-search label:hover,
.hero-search label:focus-within {
  border-color: rgba(111, 147, 135, .55);
  background: #fff;
}

.hero-search span {
  color: var(--fg-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.hero-search input,
.hero-search select {
  min-height: 34px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--fg-forest);
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  padding: 0;
  width: 100%;
  min-width: 0;
}

.hero-search input::placeholder {
  color: #938b78;
}

.hero-search select {
  text-overflow: ellipsis;
}

.hero-search select {
  cursor: pointer;
}

.hero-search input:focus,
.hero-search select:focus {
  outline: 0;
}

.hero-search button {
  min-height: var(--fg-cta-height);
  border: 0;
  border-radius: var(--fg-cta-radius);
  background: var(--fg-cta-bg);
  color: var(--fg-forest);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  margin-left: 0;
  min-width: 210px;
  padding: 0 var(--fg-cta-x);
  white-space: nowrap;
  box-shadow: var(--fg-cta-shadow);
}

.home-suggestions {
  position: absolute;
  z-index: 60;
  top: calc(100% + 10px);
  left: 0;
  width: min(430px, calc(100vw - 42px));
  max-height: 316px;
  overflow: auto;
  display: grid;
  gap: 6px;
  border: 1px solid var(--fg-line);
  border-radius: 18px;
  background: rgba(255, 253, 248, .99);
  box-shadow: 0 26px 62px rgba(52, 63, 59, .18);
  padding: 10px;
  backdrop-filter: blur(12px);
}

.home-suggestions[hidden] {
  display: none;
}

.home-suggestion {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: var(--fg-forest);
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  padding: 9px 10px;
  text-align: left;
}

.home-suggestion:hover {
  background: linear-gradient(135deg, #fff8df, #fffdf8);
  box-shadow: inset 0 0 0 1px rgba(216, 162, 31, .18);
}

.home-suggestion .flag {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff7df;
  box-shadow: inset 0 0 0 1px rgba(231, 223, 201, .9);
  font-size: 18px;
}

.home-suggestion .city {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-suggestion small {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  max-width: 145px;
  overflow: hidden;
  border: 1px solid rgba(111, 147, 135, .18);
  border-radius: 999px;
  background: rgba(111, 147, 135, .08);
  color: var(--fg-muted);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-gallery {
  position: relative;
  display: grid;
  grid-column: 2;
  grid-row: 1;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-self: center;
  margin-top: 0;
}

.expert-card {
  grid-column: 1 / -1;
  border: 1px solid rgba(231, 223, 201, .92);
  border-radius: 24px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 230, 145, .24), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 252, .94), rgba(255, 249, 236, .86));
  box-shadow: 0 22px 58px rgba(52, 63, 59, .1);
  padding: 18px;
}

.expert-card span {
  display: block;
  color: var(--fg-sage);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.expert-card strong {
  display: block;
  max-width: 360px;
  color: var(--fg-forest);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.18;
}

.expert-card p {
  max-width: 360px;
  color: var(--fg-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
  margin: 8px 0 0;
}

.gallery-card {
  position: relative;
  height: 166px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 24px;
  background: #fffaf0;
  box-shadow: 0 24px 64px rgba(52, 63, 59, .14);
  margin: 0;
  transform: translateZ(0);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.gallery-card.large {
  grid-row: span 2;
  height: 344px;
}

.hero-gallery .gallery-card.large {
  height: 310px;
}

.hero-gallery .gallery-card:not(.large) {
  height: 149px;
}

.gallery-card img,
.feature-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.gallery-card:hover {
  transform: translateY(-5px) rotate(.4deg);
  border-color: rgba(255, 246, 217, .94);
  box-shadow: 0 30px 72px rgba(52, 63, 59, .18);
}

.gallery-card:hover img {
  transform: scale(1.045);
}

.gallery-card::after,
.feature-card::after {
  content: "";
  position: absolute;
  inset: 44% 0 0;
  background: linear-gradient(180deg, transparent, rgba(31, 41, 37, .58));
}

.gallery-card figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.gallery-program-cta {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 62px;
  margin-top: 4px;
  border: 1px solid rgba(231, 223, 201, .9);
  border-radius: 20px;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 230, 145, .34), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 252, .96), rgba(255, 249, 236, .9));
  color: var(--fg-forest);
  box-shadow: 0 16px 42px rgba(52, 63, 59, .08);
  padding: 10px 12px 10px 16px;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.gallery-program-cta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  background: rgba(111, 147, 135, .11);
  color: var(--fg-sage);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .01em;
  padding: 5px 10px;
  white-space: nowrap;
}

.gallery-program-cta strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: var(--fg-cta-radius);
  background: var(--fg-cta-bg);
  color: var(--fg-forest);
  box-shadow: var(--fg-cta-shadow);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  padding: 0 18px;
  text-align: center;
  white-space: nowrap;
}

.gallery-program-cta:hover {
  border-color: rgba(111, 147, 135, .28);
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(52, 63, 59, .12);
}

.play-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: -16px;
  margin-bottom: 28px;
}

.play-panel article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 6px 12px;
  align-items: start;
  border: 1px solid rgba(231, 223, 201, .92);
  border-radius: 22px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 42px rgba(52, 63, 59, .08);
  padding: 16px;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.play-panel article:hover {
  transform: translateY(-3px);
  border-color: rgba(216, 162, 31, .38);
  box-shadow: 0 24px 54px rgba(52, 63, 59, .12);
}

.play-panel span {
  grid-row: span 2;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background: linear-gradient(135deg, #fff6d9, #f4df9d);
  color: var(--fg-forest);
  font-size: 13px;
  font-weight: 900;
}

.play-panel strong {
  font-size: 16px;
  line-height: 1.3;
}

.play-panel p {
  color: var(--fg-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
  margin: 0;
}

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

@keyframes fgSoftFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes fgHighlightSweep {
  from {
    transform: scaleX(0) rotate(-1deg);
    transform-origin: left center;
  }
  to {
    transform: scaleX(1) rotate(-1deg);
    transform-origin: left center;
  }
}

.home-hero .trust-pill,
.home-hero h1,
.home-hero .lead,
.hero-proof-row,
.hero-gallery,
.play-panel article,
.destination-row a,
.category-grid a,
.feature-card {
  animation: fgFadeUp .72s ease both;
}

.home-hero h1 {
  animation-delay: .06s;
}

.home-hero .lead {
  animation-delay: .12s;
}

.hero-proof-row {
  animation-delay: .18s;
}

.hero-gallery {
  animation-delay: .22s;
}

.hero-highlight::after {
  animation: fgHighlightSweep .72s .35s ease both;
}

.gallery-card.large {
  animation: fgSoftFloat 7s ease-in-out infinite;
}

.gallery-card:not(.large):nth-child(2) {
  animation: fgSoftFloat 8s 1s ease-in-out infinite;
}

.gallery-card:not(.large):nth-child(3) {
  animation: fgSoftFloat 8.5s 1.6s ease-in-out infinite;
}

.play-panel article:nth-child(1) {
  animation-delay: .12s;
}

.play-panel article:nth-child(2) {
  animation-delay: .18s;
}

.play-panel article:nth-child(3) {
  animation-delay: .24s;
}

.destination-row a:nth-child(1),
.category-grid a:nth-child(1),
.feature-card:nth-child(1) {
  animation-delay: .04s;
}

.destination-row a:nth-child(2),
.category-grid a:nth-child(2),
.feature-card:nth-child(2) {
  animation-delay: .08s;
}

.destination-row a:nth-child(3),
.category-grid a:nth-child(3),
.feature-card:nth-child(3) {
  animation-delay: .12s;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

.programme-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--fg-line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 0%, rgba(216, 162, 31, .18), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(255, 250, 240, .92));
  box-shadow: 0 28px 70px rgba(52, 63, 59, .12);
  margin-top: 22px;
  padding: 32px;
}

.programme-copy h2 {
  max-width: 720px;
  margin: 8px 0 12px;
  text-wrap: balance;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
}

.programme-copy p {
  max-width: 760px;
  color: var(--fg-muted);
  font-size: 17px;
  line-height: 1.76;
  margin: 0;
}

.programme-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.programme-points span {
  border: 1px solid rgba(52, 63, 59, .08);
  border-radius: 999px;
  color: var(--fg-forest);
  font-size: 13px;
  font-weight: 900;
  padding: 8px 12px;
}

.programme-points span:nth-child(1) { background: #dff2ef; }
.programme-points span:nth-child(2) { background: #fff0c7; }
.programme-points span:nth-child(3) { background: #ffe1d5; }

.programme-card {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(231, 223, 201, .9);
  border-radius: 24px;
  background: rgba(255, 253, 248, .96);
  box-shadow: 0 20px 52px rgba(52, 63, 59, .1);
  padding: 18px;
}

.programme-card label {
  display: grid;
  gap: 6px;
}

.programme-card span {
  color: var(--fg-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.programme-card input,
.programme-card select {
  min-height: 50px;
  border: 1px solid var(--fg-line);
  border-radius: 14px;
  background: #fffdf8;
  color: var(--fg-forest);
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  padding: 11px 13px;
}

.programme-card button {
  min-height: var(--fg-cta-height);
  border: 0;
  border-radius: var(--fg-cta-radius);
  background: var(--fg-cta-bg);
  color: var(--fg-forest);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 0 var(--fg-cta-x);
  box-shadow: var(--fg-cta-shadow);
}

.programme-card small {
  color: var(--fg-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.split-head {
  display: block;
  max-width: 860px;
}

.split-head > p {
  max-width: 820px;
  white-space: normal;
}

.destination-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.destination-row a {
  display: grid;
  gap: 10px;
  overflow: hidden;
  border: 1px solid var(--fg-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(52, 63, 59, .08);
  padding: 10px 10px 16px;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.destination-row a:hover {
  transform: translateY(-3px);
  border-color: rgba(216, 162, 31, .5);
  box-shadow: 0 24px 52px rgba(52, 63, 59, .12);
}

.destination-row img {
  display: block;
  width: 100%;
  height: 132px;
  border-radius: 13px;
  object-fit: cover;
  transition: transform .55s ease;
}

.destination-row a:hover img {
  transform: scale(1.045);
}

.destination-row strong,
.destination-row span {
  display: block;
  padding: 0 6px;
}

.destination-row strong {
  font-size: 20px;
  line-height: 1.22;
}

.destination-row span {
  color: var(--fg-muted);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.55;
}

.category-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.category-grid a,
.trust-grid article,
.testimonial-grid article {
  border: 1px solid var(--fg-line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 20px 48px rgba(52, 63, 59, .09);
  padding: 20px;
  text-decoration: none;
}

.category-grid a {
  position: relative;
  display: grid;
  gap: 10px;
  overflow: hidden;
  padding: 10px 10px 18px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.category-grid a:hover {
  transform: translateY(-3px);
  border-color: rgba(111, 147, 135, .45);
  box-shadow: 0 26px 56px rgba(52, 63, 59, .13);
}

.category-grid img {
  display: block;
  width: 100%;
  height: 154px;
  border-radius: 15px;
  object-fit: cover;
}

.category-grid span,
.trust-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff6d9, #f4df9d);
  font-weight: 900;
  margin-bottom: 12px;
}

.category-grid span {
  margin: 0 0 0 10px;
  border: 3px solid #fff;
  box-shadow: 0 10px 26px rgba(52, 63, 59, .12);
}

.category-grid strong,
.category-grid small,
.testimonial-grid strong,
.testimonial-grid span {
  display: block;
}

.category-grid strong,
.trust-grid h3 {
  font-size: 19px;
  line-height: 1.3;
}

.category-grid strong,
.category-grid small {
  padding: 0 10px;
}

.category-grid small,
.trust-grid p,
.testimonial-grid p {
  color: var(--fg-muted);
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  position: relative;
  height: 360px;
  overflow: hidden;
  border-radius: 24px;
  background: #fffaf0;
  box-shadow: 0 24px 62px rgba(52, 63, 59, .13);
}

.feature-card img {
  position: absolute;
  inset: 0;
}

.feature-card div {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
  color: #fff;
}

.feature-card span {
  display: inline-block;
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  color: var(--fg-forest);
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
  margin-bottom: 10px;
}

.feature-card h3 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.2;
}

.feature-card p {
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-weight: 600;
  line-height: 1.55;
}

.home-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 4vw, 44px);
  margin-top: 26px;
  margin-bottom: 22px;
  border: 1px solid rgba(231, 223, 201, .92);
  border-radius: 28px;
  background:
    radial-gradient(circle at 84% 44%, rgba(212, 179, 16, .32), transparent 28%),
    radial-gradient(circle at 8% 0%, rgba(111, 147, 135, .2), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 252, .98), rgba(249, 244, 229, .94));
  box-shadow: 0 30px 82px rgba(52, 63, 59, .14);
  padding: clamp(26px, 4vw, 46px);
  position: relative;
  overflow: hidden;
}

.home-cta-panel::after {
  content: "";
  position: absolute;
  right: clamp(18px, 3vw, 36px);
  top: 50%;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(245, 227, 139, .28);
  filter: blur(2px);
  transform: translateY(-50%);
  z-index: 0;
}

.home-cta-panel > * {
  position: relative;
  z-index: 1;
}

.home-cta-panel span {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: #e5f6f2;
  color: var(--fg-sage);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 8px 12px;
  margin-bottom: 14px;
}

.home-cta-panel h2 {
  max-width: 660px;
  margin: 0;
  color: var(--fg-forest);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
}

.home-cta-panel p {
  max-width: 720px;
  margin: 14px 0 0;
  color: var(--fg-muted);
  font-size: 17px;
  line-height: 1.7;
}

.home-cta-panel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--fg-cta-height);
  border-radius: var(--fg-cta-radius);
  background: var(--fg-cta-bg);
  color: var(--fg-forest);
  font-weight: 900;
  font-size: 15px;
  white-space: nowrap;
  box-shadow: var(--fg-cta-shadow);
  padding: 0 var(--fg-cta-x);
  transition: transform .18s ease, box-shadow .18s ease;
}

.home-cta-panel a:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(216, 162, 31, .28);
}

.trust-section {
  background: var(--fg-forest);
  color: #fff;
  margin: 28px 0;
  padding: 54px 0;
}

.trust-section .kicker,
.trust-section .section-head p,
.trust-grid p {
  color: rgba(255, 255, 255, .78);
}

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

.trust-grid article {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .16);
  min-height: 210px;
}

.trust-grid article,
.testimonial-grid article,
.card {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.testimonial-grid article:hover,
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(216, 162, 31, .42);
  box-shadow: 0 24px 54px rgba(52, 63, 59, .12);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.stats-row strong {
  display: block;
  border-radius: 18px;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-size: 30px;
  padding: 18px;
}

.stats-row span {
  display: block;
  color: rgba(255, 255, 255, .74);
  font-size: 13px;
  margin-top: 3px;
}

.testimonial-grid span {
  color: var(--fg-honey);
  font-weight: 900;
  margin: 6px 0;
}

.parent-needs-section {
  margin-top: clamp(42px, 6vw, 82px);
}

.parent-needs-grid {
  gap: 18px;
}

.parent-needs-grid article {
  position: relative;
  min-height: 214px;
  overflow: hidden;
  border-color: rgba(216, 162, 31, .24);
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 215, 104, .38), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(255, 250, 238, .9));
  padding: 24px 24px 26px;
}

.parent-needs-grid article:nth-child(2) {
  background:
    radial-gradient(circle at 92% 10%, rgba(218, 242, 236, .72), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(246, 255, 252, .9));
}

.parent-needs-grid article:nth-child(3) {
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 219, 204, .76), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(255, 248, 244, .9));
}

.parent-needs-grid i {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 16px;
  background: #fff2c8;
  box-shadow: 0 14px 30px rgba(52, 63, 59, .11);
  font-style: normal;
  font-size: 20px;
  margin-bottom: 18px;
}

.parent-needs-grid article:nth-child(2) i {
  background: #dcf7ee;
}

.parent-needs-grid article:nth-child(3) i {
  background: #ffe1d4;
}

.parent-needs-grid small {
  display: block;
  color: var(--fg-sage);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.parent-needs-grid strong {
  font-size: 21px;
  line-height: 1.25;
}

.parent-needs-grid p {
  margin-top: 12px;
  font-size: 14px;
}

.faq-block {
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 16px;
}

.faq-block details {
  border: 1px solid var(--fg-line);
  border-radius: 18px;
  background: #fff;
  padding: 18px;
}

.faq-block summary {
  cursor: pointer;
  font-weight: 900;
}

.faq-block p {
  color: var(--fg-muted);
  margin: 10px 0 0;
}

.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0;
}

.hero-photo {
  position: relative;
  height: 180px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(231, 223, 201, .8);
  border-radius: 22px;
  background: #fffaf0;
  box-shadow: 0 24px 58px rgba(52, 63, 59, .13);
}

.hero-photo-large {
  grid-row: span 2;
  height: 374px;
}

.hero-photo img,
.visual-strip img,
.story-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo::after,
.story-card::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(180deg, transparent, rgba(31, 41, 37, .64));
}

.hero-photo figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.hero-badge {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 2;
  width: min(250px, 80%);
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 18px;
  background: rgba(255, 253, 248, .92);
  box-shadow: 0 18px 46px rgba(52, 63, 59, .2);
  padding: 14px 16px;
  backdrop-filter: blur(12px);
}

.hero-badge strong,
.hero-badge span {
  display: block;
}

.hero-badge strong {
  font-size: 15px;
}

.hero-badge span {
  color: var(--fg-muted);
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}

.visual-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 4px 0 38px;
}

.visual-strip article {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  border: 1px solid var(--fg-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 40px rgba(52, 63, 59, .08);
  padding: 10px;
}

.visual-strip img {
  aspect-ratio: 1.18;
  border-radius: 14px;
}

.visual-strip strong,
.visual-strip span {
  display: block;
}

.visual-strip strong {
  font-size: 16px;
  line-height: 1.3;
}

.visual-strip span {
  color: var(--fg-muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
  margin-top: 3px;
}

.section {
  padding: 42px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 22px;
}

.section-head h2 {
  margin: 0 0 10px;
  max-width: 720px;
  text-wrap: balance;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.16;
}

.section-head p {
  color: var(--fg-muted);
  line-height: 1.7;
  margin: 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card {
  border: 1px solid var(--fg-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .9);
  padding: 22px;
  box-shadow: var(--fg-shadow);
}

.icon-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff6d9, #f4df9d);
  color: var(--fg-forest);
  font-weight: 900;
  margin-bottom: 14px;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.34;
}

.card p {
  color: var(--fg-muted);
  line-height: 1.78;
  margin: 0;
}

.band {
  border-radius: 24px;
  background: linear-gradient(135deg, var(--fg-forest), #49635b);
  color: #fff;
  margin: 36px 0 54px;
  padding: 32px;
  box-shadow: 0 26px 58px rgba(52, 63, 59, .18);
}

.band p {
  color: rgba(255, 255, 255, 0.82);
  margin: 8px 0 20px;
  line-height: 1.65;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  grid-template-rows: repeat(2, minmax(220px, 250px));
  gap: 18px;
}

.story-card {
  position: relative;
  height: 240px;
  overflow: hidden;
  border-radius: 22px;
  background: #fffaf0;
  box-shadow: 0 24px 60px rgba(52, 63, 59, .12);
}

.story-card img {
  position: absolute;
  inset: 0;
}

.story-card.tall {
  grid-row: span 2;
  height: 518px;
}

.story-card div {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  z-index: 1;
  color: #fff;
}

.story-card span {
  display: inline-block;
  border-radius: 999px;
  background: rgba(255, 255, 255, .9);
  color: var(--fg-forest);
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
  margin-bottom: 10px;
}

.story-card h3 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.18;
}

.site-footer {
  margin-top: 64px;
  padding: 40px 0 48px;
  border-top: 1px solid rgba(231, 223, 201, .72);
  color: rgba(48, 60, 55, .72);
}

.footer-shell {
  border: 1px solid rgba(231, 223, 201, .92);
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 231, 143, .2), transparent 34%),
    radial-gradient(circle at 96% 18%, rgba(218, 242, 236, .28), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 252, .94), rgba(255, 250, 239, .82));
  box-shadow: 0 26px 80px rgba(52, 63, 59, .09);
  padding: clamp(24px, 3.3vw, 38px);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(270px, 1.35fr) repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}

.footer-grid > div:not(:first-child) {
  padding-left: clamp(0px, 1.4vw, 18px);
  border-left: 1px solid rgba(231, 223, 201, .58);
}

.footer-brand-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  border: 1px solid rgba(231, 223, 201, .76);
  border-radius: 22px;
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 231, 143, .42), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(255, 247, 225, .88));
  box-shadow: 0 18px 42px rgba(52, 63, 59, .11);
  padding: 12px 18px 12px 14px;
}

.footer-brand-line img {
  width: 208px;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(52, 63, 59, .12));
}

.footer-note {
  max-width: 390px;
  margin: 0;
  color: rgba(48, 60, 55, .74);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.72;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.site-footer .footer-social-link {
  display: inline-flex;
  width: auto;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 0;
  border: 1px solid rgba(231, 223, 201, .78);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 12px 28px rgba(52, 63, 59, .08);
  color: var(--fg-forest);
  font-size: 12px;
  font-weight: 900;
  margin: 0;
  padding: 8px;
}

.site-footer .footer-social-link::after {
  display: none;
}

.footer-social-link svg {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.footer-social-link.instagram svg {
  padding: 5px;
  background: linear-gradient(135deg, #feda75, #fa7e1e 34%, #d62976 68%, #4f5bd5);
  stroke: #fff;
  stroke-width: 1.8;
  fill: none;
}

.footer-social-link.linkedin svg {
  padding: 5px;
  background: #0a66c2;
  fill: #fff;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer .footer-social-link:hover {
  border-color: rgba(111, 147, 135, .38);
  background: #fff;
  transform: translateY(-2px);
}

.site-footer strong {
  display: block;
  color: var(--fg-forest);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.site-footer a {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 7px;
  color: rgba(48, 60, 55, .68);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  margin: 10px 0;
  text-decoration: none;
  transition: color .18s ease, transform .18s ease;
}

.site-footer a::after {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1.7px solid currentColor;
  border-right: 1.7px solid currentColor;
  opacity: 0;
  transform: rotate(45deg) translateX(-3px);
  transition: opacity .18s ease, transform .18s ease;
}

.site-footer a:hover {
  color: var(--fg-forest);
  transform: translateX(2px);
}

.site-footer a:hover::after {
  opacity: .72;
  transform: rotate(45deg) translateX(0);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(231, 223, 201, .82);
  color: rgba(48, 60, 55, .58);
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.55;
}

.footer-bottom span:first-child {
  color: rgba(48, 60, 55, .72);
}

.cookie-consent {
  position: fixed;
  z-index: 9999;
  inset: auto clamp(14px, 3vw, 34px) clamp(14px, 3vw, 28px) auto;
  width: min(620px, calc(100vw - 28px));
}

.cookie-consent-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  border: 1px solid rgba(231, 223, 201, .95);
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 230, 145, .28), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 252, .98), rgba(255, 249, 236, .94));
  box-shadow: 0 24px 80px rgba(40, 52, 47, .18);
  padding: clamp(18px, 2.5vw, 26px);
}

.cookie-kicker {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  border-radius: 999px;
  background: #dff4f0;
  color: var(--fg-sage);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  padding: 6px 10px;
  text-transform: uppercase;
}

.cookie-consent h2 {
  max-width: 420px;
  margin: 12px 0 8px;
  color: var(--fg-forest);
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.08;
}

.cookie-consent p {
  max-width: 430px;
  margin: 0;
  color: rgba(48, 60, 55, .72);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
}

.cookie-consent a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--fg-sage);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.cookie-consent-actions {
  display: grid;
  align-content: center;
  gap: 9px;
  min-width: 160px;
}

.cookie-consent-actions.compact {
  grid-template-columns: 1fr auto;
  margin-top: 14px;
}

.cookie-btn {
  min-height: 46px;
  border: 1px solid rgba(216, 162, 31, .28);
  border-radius: 16px;
  background: rgba(255, 255, 252, .78);
  color: var(--fg-forest);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  padding: 10px 15px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.cookie-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(52, 63, 59, .1);
}

.cookie-btn.primary {
  border-color: transparent;
  background: var(--fg-gradient-accent);
}

.cookie-btn.ghost {
  background: #eef8f5;
  border-color: rgba(111, 147, 135, .22);
}

.cookie-btn.text {
  background: transparent;
  border-color: transparent;
  color: rgba(48, 60, 55, .64);
  box-shadow: none;
}

.cookie-preferences {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(231, 223, 201, .74);
  margin-top: 2px;
  padding-top: 16px;
}

.cookie-pref-title {
  margin-bottom: 10px !important;
  color: var(--fg-forest) !important;
  font-weight: 900 !important;
}

.cookie-toggle {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(231, 223, 201, .78);
  border-radius: 18px;
  background: rgba(255, 255, 252, .64);
  margin: 9px 0;
  padding: 12px 14px;
}

.cookie-toggle strong {
  display: block;
  color: var(--fg-forest);
  font-size: 14px;
}

.cookie-toggle small {
  display: block;
  color: rgba(48, 60, 55, .62);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  margin-top: 2px;
}

.cookie-toggle input {
  width: 22px;
  height: 22px;
  accent-color: var(--fg-sage);
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-radius: 999px;
  background: var(--fg-gradient-accent);
  color: var(--fg-forest);
  font-weight: 900;
  padding: 10px 18px;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(216, 162, 31, .18);
}

.legal-page {
  max-width: 980px;
}

.legal-card {
  border: 1px solid var(--fg-line);
  border-radius: 26px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 24px 70px rgba(52, 63, 59, .08);
  padding: clamp(22px, 4vw, 40px);
}

.legal-card h1 {
  max-width: 820px;
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  text-wrap: balance;
}

.legal-card h2 {
  margin: 30px 0 10px;
  font-size: 22px;
  line-height: 1.25;
}

.legal-card p,
.legal-card li {
  color: var(--fg-muted);
  line-height: 1.72;
}

.legal-card ul {
  padding-left: 20px;
}

.legal-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0 4px;
}

.legal-meta div {
  border: 1px solid rgba(231, 223, 201, .9);
  border-radius: 16px;
  background: rgba(255, 250, 240, .74);
  padding: 12px;
}

.legal-meta strong {
  display: block;
  color: var(--fg-forest);
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

@media (max-width: 900px) {
  .site-header,
  .hero {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .site-header {
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .grid,
  .visual-strip,
  .story-grid,
  .home-hero-inner,
  .programme-section,
  .split-head,
  .destination-row,
  .category-grid,
  .feature-grid,
  .play-panel,
  .stats-row,
  .testimonial-grid,
  .faq-block,
  .home-cta-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .home-cta-panel a {
    width: 100%;
  }

  .footer-bottom {
    display: grid;
  }

  .footer-grid > div:not(:first-child) {
    padding-left: 0;
    border-left: 0;
    padding-top: 18px;
    border-top: 1px solid rgba(231, 223, 201, .62);
  }

  .cookie-consent {
    inset: auto 12px 12px;
    width: auto;
  }

  .cookie-consent-card {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .cookie-consent-actions,
  .cookie-consent-actions.compact {
    grid-template-columns: 1fr;
  }

  .legal-meta {
    grid-template-columns: 1fr;
  }

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

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

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

  .hero-usp-grid {
    grid-template-columns: 1fr;
  }

  .hero-search label:first-child {
    grid-column: 1 / -1;
  }

  .hero-search label:nth-of-type(2),
  .hero-search label:nth-of-type(3) {
    grid-column: span 1;
  }

  .hero-search button {
    grid-column: 1 / -1;
  }

  .hero-search button {
    min-height: 56px;
  }

  .home-hero {
    padding-top: 12px;
  }

  .hero-intro,
  .hero-search,
  .hero-gallery {
    grid-column: 1;
    grid-row: auto;
  }

  .split-head > p {
    white-space: normal;
  }

  .hero-gallery {
    margin-top: 4px;
  }

  .play-panel {
    margin-top: 0;
  }

  .hero-copy h1 {
    max-width: 760px;
    font-size: clamp(34px, 6.4vw, 48px);
    line-height: 1.1;
  }

  .story-grid {
    grid-template-rows: none;
  }

  .story-card,
  .story-card.tall {
    height: 280px;
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 24px, 1120px);
  }

  .site-header {
    align-items: center;
    gap: 12px;
    padding: 12px 0 14px;
    text-align: center;
  }

  .brand img {
    height: 48px;
    margin: 0 auto;
  }

  .nav {
    justify-content: center;
    gap: 8px 14px;
    width: 100%;
  }

  .nav a {
    font-size: 12px;
  }

  .nav .cta {
    width: auto;
    text-align: center;
    padding: 10px 16px;
    border-radius: var(--fg-cta-radius);
  }

  .home-hero {
    padding: 6px 0 38px;
  }

  .trust-pill {
    justify-content: center;
    width: 100%;
    border-radius: 18px;
    font-size: 12px;
    margin-bottom: 14px;
    padding: 9px 12px;
    text-align: center;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(30px, 8.9vw, 38px);
    line-height: 1.12;
    margin: 8px 0 14px;
  }

  .hero-copy .lead {
    font-size: 15.5px;
    line-height: 1.62;
  }

  .hero-highlight::after {
    bottom: .03em;
    height: .22em;
  }

  .button {
    width: 100%;
    text-align: center;
  }

  .hero-visual {
    grid-template-columns: 1fr;
  }

  .hero-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
  }

  .expert-card {
    border-radius: 20px;
    padding: 16px;
  }

  .expert-card strong {
    font-size: 18px;
  }

  .gallery-card {
    height: 132px;
    border-radius: 18px;
  }

  .gallery-card.large {
    grid-column: 1 / -1;
    height: 210px;
    grid-row: auto;
  }

  .hero-gallery .gallery-card.large,
  .hero-gallery .gallery-card:not(.large) {
    height: 150px;
  }

  .gallery-card figcaption {
    left: 12px;
    bottom: 12px;
    font-size: 12px;
  }

  .gallery-program-cta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    min-height: auto;
    border-radius: 18px;
    padding: 12px;
  }

  .gallery-program-cta strong {
    flex: 1;
    min-width: 180px;
  }

  .feature-card {
    height: 300px;
    grid-row: auto;
  }

  .destination-row img {
    height: 148px;
  }

  .category-grid img {
    height: 138px;
  }

  .hero-search {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 12px;
    border-radius: 18px;
    gap: 10px;
  }

  .hero-search label:first-child,
  .hero-search button {
    grid-column: 1 / -1;
  }

  .hero-search label:nth-of-type(2),
  .hero-search label:nth-of-type(3) {
    grid-column: span 1;
  }

  .hero-search label {
    border: 1px solid var(--fg-line);
    border-radius: 14px;
    padding: 10px 12px;
  }

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

  .trust-section .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-search button {
    margin-left: 0;
    min-height: 54px;
    grid-column: 1 / -1;
  }

  .joy-tags span {
    font-size: 12px;
  }

  .hero-usp-grid article {
    border-radius: 18px;
  }

  .play-panel article {
    grid-template-columns: 38px minmax(0, 1fr);
    padding: 14px;
  }

  .programme-section {
    padding: 20px;
    border-radius: 22px;
  }

  .play-panel span {
    width: 38px;
    height: 38px;
  }

  .hero-photo,
  .hero-photo-large {
    height: 210px;
    grid-row: auto;
  }

  .hero-badge {
    position: static;
    width: 100%;
    transform: none;
    margin-top: 12px;
  }

  .visual-strip article {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .story-card,
  .story-card.tall {
    height: 240px;
  }

  .story-card div {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .story-card h3 {
    font-size: 22px;
  }
}

.seo-page {
  padding-bottom: 48px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 10px 0 18px;
  color: var(--fg-muted);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumbs a {
  color: var(--fg-sage);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--fg-forest);
  text-decoration: underline;
}

.breadcrumbs span {
  color: rgba(52, 63, 59, .42);
}

.card h3 a,
.seo-content-card a {
  color: var(--fg-forest);
  text-decoration: none;
}

.card h3 a:hover,
.seo-content-card a:hover {
  color: var(--fg-sage);
  text-decoration: underline;
}

.seo-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .54fr);
  gap: 20px;
  align-items: start;
  margin-top: 16px;
}

.seo-hero-copy,
.seo-side-card,
.seo-content-card,
.seo-cta-panel {
  border: 1px solid var(--fg-line);
  border-radius: 26px;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 24px 70px rgba(52, 63, 59, .09);
}

.seo-hero-copy {
  padding: clamp(24px, 3vw, 36px);
}

.seo-hero-copy h1 {
  max-width: 820px;
  margin: 6px 0 14px;
  font-size: clamp(34px, 4.15vw, 52px);
  line-height: 1.06;
  letter-spacing: 0;
  text-wrap: balance;
}

.seo-hero-copy p {
  max-width: 760px;
  margin: 0;
  color: var(--fg-muted);
  font-size: clamp(16px, 1.32vw, 18px);
  line-height: 1.65;
}

.seo-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.seo-keywords span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(216, 162, 31, .24);
  background: #fff7d7;
  color: var(--fg-forest);
  font-size: 11px;
  font-weight: 900;
  padding: 7px 11px;
}

.seo-keywords span:nth-child(2n) {
  background: #e5f6f2;
  border-color: rgba(111, 147, 135, .24);
}

.seo-keywords span:nth-child(3n) {
  background: #fde5d8;
  border-color: rgba(231, 142, 103, .24);
}

.seo-side-card {
  display: grid;
  gap: 11px;
  align-self: start;
  padding: 16px;
}

.seo-side-card img {
  display: block;
  width: 100%;
  height: 158px;
  object-fit: cover;
  border-radius: 16px;
}

.seo-side-card strong {
  font-size: 20px;
  line-height: 1.2;
}

.seo-side-card p {
  margin: 0;
  color: var(--fg-muted);
  font-size: 14px;
  line-height: 1.55;
}

.seo-checklist {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-checklist li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  color: var(--fg-forest);
  font-weight: 800;
  font-size: 14px;
  line-height: 1.4;
}

.seo-checklist li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--fg-sage);
  color: #fff;
  font-size: 12px;
}

.seo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.seo-actions a,
.seo-cta-panel a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--fg-cta-height);
  border-radius: var(--fg-cta-radius);
  font-weight: 900;
  font-size: 13px;
  line-height: 1.1;
  padding: 0 var(--fg-cta-x);
  text-decoration: none;
  white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease;
}

.seo-actions a:first-child,
.seo-cta-panel a:first-of-type {
  background: var(--fg-cta-bg);
  color: var(--fg-forest);
  box-shadow: var(--fg-cta-shadow);
}

.seo-actions a:last-child,
.seo-cta-panel a:last-of-type {
  border: 1px solid var(--fg-line);
  background: #fff;
  color: var(--fg-forest);
}

.seo-actions a:hover,
.seo-cta-panel a:hover {
  transform: translateY(-2px);
}

.seo-content-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.seo-content-card {
  padding: 20px;
}

.seo-content-card h2,
.seo-content-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.2;
  text-wrap: balance;
}

.seo-content-card p,
.seo-content-card li {
  color: var(--fg-muted);
  line-height: 1.62;
}

.seo-content-card ul {
  margin: 0;
  padding-left: 18px;
}

.seo-decision-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, .44fr);
  gap: 14px;
  margin-top: 22px;
}

.seo-decision-main,
.seo-mini-cta {
  border: 1px solid var(--fg-line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .86);
  padding: 20px;
}

.seo-decision-main h2,
.seo-mini-cta h2 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.2;
  text-wrap: balance;
}

.seo-decision-main p,
.seo-mini-cta p {
  color: var(--fg-muted);
  line-height: 1.62;
}

.seo-decision-main ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 18px;
}

.seo-mini-cta {
  background: linear-gradient(145deg, #fff7d7, rgba(229, 246, 242, .85));
}

.seo-mini-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--fg-cta-height);
  border-radius: var(--fg-cta-radius);
  background: var(--fg-cta-bg);
  color: var(--fg-forest);
  box-shadow: var(--fg-cta-shadow);
  font-size: 13px;
  font-weight: 900;
  padding: 0 var(--fg-cta-x);
  text-decoration: none;
}

.seo-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) repeat(2, minmax(142px, auto));
  gap: 10px;
  align-items: center;
  margin-top: 22px;
  padding: 18px;
}

.seo-cta-panel h2 {
  margin: 0 0 6px;
  font-size: 22px;
  line-height: 1.2;
  text-wrap: balance;
}

.seo-cta-panel p {
  margin: 0;
  color: var(--fg-muted);
  line-height: 1.5;
}

.seo-related {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.seo-related a {
  border: 1px solid var(--fg-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  color: var(--fg-forest);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 12px;
  text-decoration: none;
}

.share-box {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--fg-line);
}

.share-box strong {
  color: var(--fg-forest);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.share-box a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(111, 147, 135, .22);
  background: #fff;
  color: var(--fg-forest);
  font-size: 12px;
  font-weight: 900;
  padding: 7px 11px;
  text-decoration: none;
}

.share-box a:hover {
  background: var(--fg-forest);
  color: #fff;
}

.programme-builder {
  border: 1px solid var(--fg-line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 96% 0%, rgba(255, 232, 155, .34), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 252, .94), rgba(255, 250, 238, .9));
  box-shadow: 0 28px 76px rgba(52, 63, 59, .1);
  padding: clamp(22px, 4vw, 34px);
}

.family-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

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

.family-form span {
  color: rgba(52, 63, 59, .72);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.family-form input,
.family-form select,
.family-form textarea {
  width: 100%;
  min-height: 56px;
  border: 1px solid var(--fg-line);
  border-radius: 16px;
  background: rgba(255, 253, 247, .96);
  color: var(--fg-forest);
  font: inherit;
  font-weight: 700;
  padding: 12px 14px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
}

.family-form textarea {
  min-height: 112px;
  resize: vertical;
}

.family-form input:focus,
.family-form select:focus,
.family-form textarea:focus {
  border-color: var(--fg-sage);
  box-shadow: 0 0 0 4px rgba(111, 147, 135, .14);
}

.family-form .form-wide {
  grid-column: span 2;
}

.family-form button {
  align-self: end;
  min-height: var(--fg-cta-height);
  border: 0;
  border-radius: var(--fg-cta-radius);
  background: var(--fg-cta-bg);
  color: var(--fg-forest);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  padding: 0 var(--fg-cta-x);
  box-shadow: var(--fg-cta-shadow);
}

.family-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(216, 162, 31, .28);
}

.form-note {
  grid-column: span 2;
  align-self: center;
  margin: 0;
  color: var(--fg-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .seo-hero,
  .seo-content-grid,
  .seo-cta-panel,
  .seo-decision-band,
  .family-form {
    grid-template-columns: 1fr;
  }

  .seo-actions {
    display: flex;
  }

  .family-form .form-wide {
    grid-column: auto;
  }

  .form-note {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .seo-hero-copy,
  .seo-side-card,
  .seo-content-card,
  .seo-cta-panel {
    border-radius: 20px;
    padding: 18px;
  }

  .seo-hero-copy h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .seo-side-card img {
    height: 190px;
  }

  .seo-cta-panel a,
  .seo-actions a {
    width: 100%;
  }
}
