@font-face {
  font-family: "Officina Sans";
  src: url("fonts/lte52475.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Officina Sans";
  src: url("fonts/lte52476.woff") format("woff");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Officina Sans";
  src: url("fonts/lte52477.woff") format("woff");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Officina Sans";
  src: url("fonts/lte52478.woff") format("woff");
  font-style: italic;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Univers 57 Condensed";
  src: url("fonts/14029.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --font-sans: "Officina Sans", Arial, sans-serif;
  --font-display: "Univers 57 Condensed", "Arial Narrow", Arial, sans-serif;
  --ink: #1d1d1b;
  --ink-soft: #7d6e67;
  --forest: #076635;
  --forest-dark: #076635;
  --leaf: #91c020;
  --lime: #91c020;
  --green-soft: #dde8b1;
  --forest-soft: #b2bea2;
  --red: #b02530;
  --red-soft: #fed6ca;
  --orange: #f39214;
  --orange-soft: #fed9a0;
  --sand: #f6f8e6;
  --cream: #ffffff;
  --clay: #f39214;
  --clay-dark: #b02530;
  --line: rgba(29, 29, 27, 0.14);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(29, 29, 27, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  background: var(--green-soft);
  color: var(--ink);
}

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

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

p,
h1,
h2,
h3,
dl,
dd,
figure {
  margin: 0;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 4px;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.statusbar {
  background: var(--forest);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.statusbar-inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.statusbar p {
  display: flex;
  align-items: center;
  gap: 9px;
}

.statusbar a:hover {
  color: var(--green-soft);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(145, 192, 32, 0.2);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(29, 29, 27, 0.1);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand-logo {
  width: 210px;
  height: auto;
  max-height: 72px;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(15px, 2vw, 27px);
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  color: var(--ink);
  font-size: 0.83rem;
  font-weight: 750;
  white-space: nowrap;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--clay);
  transition: right 180ms ease;
}

.desktop-nav a:hover::after {
  right: 0;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--forest-dark);
  box-shadow: 0 12px 28px rgba(7, 102, 53, 0.22);
}

.button span {
  font-size: 1.05rem;
}

.button-small {
  min-height: 44px;
  padding: 11px 17px;
  font-size: 0.8rem;
  white-space: nowrap;
}

.button-accent {
  background: var(--clay);
  color: var(--ink);
}

.button-accent:hover {
  background: var(--clay-dark);
  color: var(--white);
}

.button-dark {
  background: var(--forest-dark);
}

.button-large {
  min-height: 58px;
  padding: 17px 25px;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.38);
  background: transparent;
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav summary {
  width: 45px;
  height: 45px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  list-style: none;
}

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

.mobile-nav summary span {
  height: 2px;
  border-radius: 2px;
  background: var(--forest);
}

.mobile-nav nav {
  position: absolute;
  top: 58px;
  right: 0;
  width: min(330px, calc(100vw - 32px));
  padding: 18px;
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.mobile-nav nav > a:not(.button) {
  padding: 10px 8px;
  font-weight: 750;
}

.mobile-nav nav .button {
  margin-top: 8px;
}

.hero {
  min-height: 720px;
  position: relative;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--forest-dark);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 48%;
  transform: scale(1.015);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 102, 53, 0.92) 0%, rgba(7, 102, 53, 0.7) 45%, rgba(7, 102, 53, 0.22) 73%, rgba(7, 102, 53, 0.08) 100%),
    linear-gradient(0deg, rgba(29, 29, 27, 0.38) 0%, transparent 38%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  align-items: end;
  gap: 70px;
  padding-block: 110px 90px;
}

.hero-copy {
  max-width: 700px;
  color: var(--white);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--clay-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--green-soft);
}

h1 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 0.98;
}

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

h2 {
  font-family: var(--font-sans);
  font-size: clamp(2.25rem, 4.1vw, 4.15rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.03;
}

h3 {
  font-family: var(--font-sans);
  font-size: clamp(1.55rem, 2.3vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.08;
}

.hero-lead {
  max-width: 650px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 34px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid currentColor;
  font-size: 0.88rem;
  font-weight: 800;
}

.light-link {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.45);
}

.quick-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  box-shadow: 0 25px 80px rgba(29, 29, 27, 0.28);
  backdrop-filter: blur(15px);
}

.quick-card h2 {
  max-width: 320px;
  font-size: 2rem;
}

.quick-card dl {
  margin-top: 24px;
}

.quick-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
}

.quick-card dt {
  color: var(--ink-soft);
}

.quick-card dd {
  text-align: right;
  font-weight: 800;
}

.quick-note {
  margin-top: 17px;
  padding-left: 13px;
  border-left: 3px solid var(--clay);
  color: var(--clay-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.alert-section {
  overflow: hidden;
  background: var(--red);
  color: var(--white);
}

.alert-track {
  width: max-content;
  display: flex;
  align-items: center;
  animation: alert-marquee 24s linear infinite;
}

.alert-message {
  min-height: 62px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 48px 12px 0;
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.4;
  white-space: nowrap;
}

.alert-label {
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--ink);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.alert-message small {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 600;
  white-space: nowrap;
}

@keyframes alert-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section {
  padding-block: 120px;
}

.intro-section {
  background: var(--cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
}

.intro-copy {
  display: grid;
  gap: 20px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr 0.7fr;
  gap: 18px;
  margin-top: 72px;
}

.feature-card {
  min-height: 270px;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: var(--sand);
}

.feature-card-large {
  min-height: 470px;
  color: var(--white);
}

.feature-card-large::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 102, 53, 0.92), rgba(7, 102, 53, 0.02) 68%);
}

.feature-card-large img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}

.feature-card-large > div {
  position: absolute;
  z-index: 1;
  left: 34px;
  right: 34px;
  bottom: 32px;
}

.feature-card-large h3 {
  max-width: 540px;
}

.feature-card-large p:last-child {
  max-width: 580px;
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
}

.compact-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.compact-card h3 {
  margin-top: 20px;
  font-size: 1.65rem;
}

.compact-card p {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.mini-feature-card {
  min-height: 470px;
  padding: 0;
  color: var(--white);
}

.mini-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 102, 53, 0.94), rgba(7, 102, 53, 0.05) 75%);
}

.mini-feature-card > img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.mini-feature-overlay {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 25px;
  left: 24px;
}

.mini-feature-card .mini-feature-overlay h3 {
  margin: 0;
  font-size: 1.65rem;
}

.mini-feature-card .mini-feature-overlay p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.8);
}

.feature-number {
  color: var(--leaf);
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 1;
}

.accent-card {
  background: var(--orange-soft);
  color: var(--ink);
}

.accent-card .feature-number,
.accent-card p {
  color: var(--ink);
}

.stays-section {
  background: var(--green-soft);
}

.section-heading {
  margin-bottom: 52px;
}

.split-heading {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 80px;
  align-items: end;
}

.split-heading > p {
  color: var(--ink-soft);
}

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

.stay-card {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 390px;
  overflow: hidden;
  border-radius: 24px;
  background: var(--cream);
  box-shadow: 0 10px 30px rgba(29, 29, 27, 0.06);
}

.stay-image-wrap {
  min-height: 100%;
  overflow: hidden;
}

.stay-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

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

.stay-card-2 .stay-image-wrap img,
.stay-card-3 .stay-image-wrap img {
  image-rendering: auto;
}

.stay-body {
  display: flex;
  flex-direction: column;
  padding: 31px 28px;
}

.stay-body h3 {
  font-size: 2rem;
}

.stay-body > p:not(.eyebrow) {
  margin-top: 15px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.65;
}

.stay-body ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: auto 0 0;
  padding: 24px 0 0;
  list-style: none;
}

.stay-body li {
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.65rem;
  font-weight: 800;
}

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

.stay-combination {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 22px;
  padding: 23px 27px;
  border: 1px solid rgba(7, 102, 53, 0.18);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink-soft);
}

.stay-combination > span {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--leaf);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1;
}

.stay-combination strong {
  color: var(--ink);
}

.amenities-section {
  background: var(--sand);
}

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

.experience-card {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 18px 44px rgba(29, 29, 27, 0.1);
}

.experience-image-wrap {
  height: 265px;
  overflow: hidden;
}

.experience-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.experience-body {
  padding: clamp(30px, 4vw, 48px);
}

.rail-card {
  background:
    radial-gradient(circle at 105% -5%, rgba(145, 192, 32, 0.28), transparent 34%),
    var(--forest);
  color: var(--white);
}

.rail-card .experience-body h3 {
  max-width: 590px;
  margin-top: 7px;
  font-size: clamp(2.2rem, 3.6vw, 3.35rem);
}

.rail-card .experience-body > p:not(.eyebrow):not(.rail-date-label):not(.rail-note) {
  max-width: 600px;
  margin-top: 17px;
  color: rgba(255, 255, 255, 0.72);
}

.rail-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.rail-facts div {
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
}

.rail-facts dt {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
}

.rail-facts dd {
  margin-top: 3px;
  font-weight: 800;
}

.rail-date-label {
  margin-top: 28px;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.rail-dates {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.rail-dates li {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 800;
}

.rail-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
}

.rail-card .button,
.playground-card .button {
  margin-top: 22px;
}

.playground-card {
  border: 1px solid var(--line);
  background: var(--white);
}

.playground-card .experience-body > p:not(.eyebrow) {
  margin-top: 17px;
  color: var(--ink-soft);
}

.playground-facts {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.playground-facts div {
  padding: 15px 16px;
  border-radius: 14px;
  background: var(--orange-soft);
}

.playground-facts dt {
  color: var(--clay-dark);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.playground-facts dd {
  margin-top: 3px;
  font-weight: 800;
}

.region-section {
  background: var(--cream);
}

.region-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(60px, 9vw, 130px);
  align-items: center;
}

.region-image-wrap {
  min-height: 570px;
  position: relative;
  overflow: hidden;
  border-radius: 160px 22px 22px 22px;
}

.region-image-wrap img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
}

.region-stamp {
  width: 155px;
  height: 155px;
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: grid;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(7, 102, 53, 0.9);
  color: var(--white);
  text-align: center;
  backdrop-filter: blur(10px);
}

.region-stamp strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.region-stamp span {
  color: var(--green-soft);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.region-copy > p:not(.eyebrow) {
  margin-top: 25px;
  color: var(--ink-soft);
}

.region-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 32px;
}

.region-tags span {
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--sand);
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 800;
}

.tourguide-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  margin-top: 34px;
  padding: 15px;
  border-radius: 20px;
  background: var(--sand);
}

.tourguide-card img {
  width: 150px;
  height: 150px;
  border-radius: 14px;
  object-fit: cover;
}

.tourguide-card > div {
  align-self: center;
}

.tourguide-card h3 {
  font-size: 1.4rem;
}

.tourguide-card p {
  margin-top: 9px;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

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

.region-photo-grid figure {
  min-width: 0;
}

.region-photo-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  object-fit: cover;
}

.region-photo-grid figcaption {
  margin-top: 9px;
  color: var(--ink-soft);
  font-size: 0.65rem;
  line-height: 1.4;
}

.service-section {
  overflow: hidden;
  position: relative;
  background: var(--forest);
  color: var(--white);
}

.service-section::before {
  content: "";
  width: 620px;
  height: 620px;
  position: absolute;
  left: -280px;
  bottom: -360px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, 0.025), 0 0 0 140px rgba(255, 255, 255, 0.018);
}

.service-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: center;
}

.service-grid > div:first-child > p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 27px;
  color: rgba(255, 255, 255, 0.7);
}

.hours-card {
  padding: 36px;
  border-radius: 24px;
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 30px 70px rgba(29, 29, 27, 0.22);
}

.hours-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
}

.hours-card dl div:last-child {
  border-bottom: 0;
}

.hours-card dd {
  font-weight: 800;
}

.gallery-section {
  background: var(--cream);
}

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

.gallery-grid figure {
  overflow: hidden;
  border-radius: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.035);
}

.gallery-grid .gallery-main {
  grid-column: span 7;
  grid-row: span 2;
}

.gallery-grid figure:nth-child(2) {
  grid-column: span 5;
}

.gallery-grid figure:nth-child(3),
.gallery-grid figure:nth-child(4) {
  grid-column: span 2;
}

.gallery-grid figure:nth-child(4) {
  grid-column: span 3;
}

.booking-section {
  padding-top: 20px;
  background: var(--cream);
}

.booking-panel {
  min-height: 400px;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 70px;
  align-items: center;
  padding: clamp(38px, 7vw, 80px);
  border-radius: 32px;
  background:
    radial-gradient(circle at 92% 10%, rgba(221, 232, 177, 0.28), transparent 30%),
    var(--forest-dark);
  color: var(--white);
}

.booking-embed-panel {
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 34px;
}

.booking-embed {
  overflow: hidden;
  min-height: 800px;
  border-radius: 22px;
  background: var(--white);
}

.booking-embed iframe {
  display: block;
  width: 100%;
  min-height: 800px;
  border: 0;
  background: var(--white);
}

.booking-copy p:not(.eyebrow) {
  max-width: 660px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.7);
}

.booking-actions {
  display: grid;
  gap: 12px;
}

.booking-actions small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.68rem;
  text-align: center;
}

.contact-section {
  background: var(--cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
}

.contact-grid > div > p:not(.eyebrow) {
  max-width: 630px;
  margin: 24px 0 30px;
  color: var(--ink-soft);
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  font-style: normal;
  box-shadow: var(--shadow);
}

.contact-card > div {
  min-height: 150px;
  padding: 25px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-card > div:nth-child(2n) {
  border-right: 0;
}

.contact-card > div:nth-child(n+3) {
  border-bottom: 0;
}

.contact-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--clay-dark);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-card strong,
.contact-card a {
  font-weight: 800;
}

.contact-card p,
.contact-card a {
  font-size: 0.84rem;
  line-height: 1.65;
}

.contact-card a:hover {
  color: var(--clay-dark);
}

.site-footer {
  padding-block: 56px 28px;
  background: var(--forest);
  color: rgba(255, 255, 255, 0.76);
}

.site-footer .brand {
  padding: 0;
  background: transparent;
}

.site-footer .brand-logo {
  width: 220px;
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 0.75rem;
  font-weight: 750;
}

.footer-links a:hover,
.footer-bottom a:hover {
  color: var(--green-soft);
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.68rem;
}

.legal-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.legal-page-header {
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.legal-page-header-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-page-main {
  flex: 1;
  padding-block: clamp(56px, 8vw, 105px);
  background: var(--sand);
}

.legal-page-shell {
  max-width: 880px;
}

.legal-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 54px;
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 800;
}

.legal-back-link:hover {
  color: var(--clay-dark);
}

.legal-page h1 {
  max-width: 800px;
  font-size: clamp(3.4rem, 7vw, 6.2rem);
}

.legal-page-intro {
  max-width: 720px;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 2vw, 1.25rem);
}

.legal-page-content {
  max-width: 760px;
  display: grid;
  gap: 42px;
  margin-top: 62px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
}

.legal-page-content section {
  display: grid;
  gap: 13px;
}

.legal-page-content ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
}

.legal-page-content h2 {
  color: var(--ink);
  font-size: clamp(1.45rem, 3vw, 2.05rem);
  letter-spacing: -0.015em;
}

.legal-page-content a:not(.button) {
  color: var(--forest);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.legal-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.legal-page-footer {
  margin-top: auto;
}

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

  .mobile-nav {
    display: block;
    order: 3;
  }

  .header-inner > .button-small {
    margin-left: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr 340px;
    gap: 40px;
  }

  .feature-grid {
    grid-template-columns: 1.5fr 0.75fr;
  }

  .feature-card-large {
    grid-row: span 2;
  }

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

  .stay-image-wrap {
    min-height: 280px;
  }
}

@media (max-width: 820px) {
  .shell {
    width: min(100% - 32px, 680px);
  }

  .legal-page-header-inner {
    min-height: 82px;
  }

  .legal-page-header .brand-logo {
    width: 174px;
    max-height: 64px;
  }

  .legal-page-header .button-small {
    display: inline-flex;
    min-height: 40px;
    padding: 10px 14px;
    font-size: 0.73rem;
  }

  .legal-back-link {
    margin-bottom: 38px;
  }

  .legal-page-content {
    gap: 34px;
    margin-top: 44px;
    padding-top: 36px;
  }

  .header-inner {
    min-height: 76px;
  }

  .header-inner > .button-small {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-image {
    object-position: 60% center;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(7, 102, 53, 0.96), rgba(7, 102, 53, 0.34));
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-items: end;
    gap: 40px;
    padding-block: 120px 45px;
  }

  .quick-card {
    max-width: 520px;
  }

  .section {
    padding-block: 88px;
  }

  .intro-grid,
  .split-heading,
  .experience-grid,
  .region-grid,
  .service-grid,
  .booking-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .split-heading,
  .region-grid,
  .service-grid,
  .booking-panel,
  .contact-grid {
    gap: 42px;
  }

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

  .feature-card-large {
    grid-column: span 2;
    grid-row: auto;
  }

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

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

  .stay-card {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .region-image-wrap {
    min-height: 470px;
  }

  .gallery-grid {
    grid-template-rows: 360px 190px;
  }

  .gallery-grid .gallery-main {
    grid-column: span 12;
    grid-row: auto;
  }

  .gallery-grid figure:nth-child(2),
  .gallery-grid figure:nth-child(3),
  .gallery-grid figure:nth-child(4) {
    grid-column: span 4;
  }

  .booking-section {
    padding-top: 0;
  }
}

@media (max-width: 580px) {
  html {
    scroll-padding-top: 78px;
  }

  .shell {
    width: min(100% - 24px, 520px);
  }

  .stay-combination {
    align-items: flex-start;
  }

  .statusbar-inner {
    min-height: 38px;
  }

  .statusbar a {
    display: none;
  }

  .brand-logo {
    width: 174px;
    max-height: 64px;
  }

  .mobile-nav nav {
    position: fixed;
    top: 121px;
    right: 12px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2.2rem, 11vw, 3.3rem);
  }

  .hero-inner {
    padding-block: 96px 30px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .quick-card {
    padding: 24px 21px;
  }

  .quick-card dl div {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .quick-card dd {
    text-align: left;
  }

  .alert-message {
    min-height: 60px;
    gap: 12px;
    padding-right: 34px;
    font-size: 0.88rem;
  }

  .alert-message small {
    display: inline;
  }

  .section {
    padding-block: 72px;
  }

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

  .feature-card-large {
    grid-column: auto;
    min-height: 500px;
  }

  .feature-card-large > div {
    left: 24px;
    right: 24px;
    bottom: 25px;
  }

  .compact-card {
    min-height: 235px;
  }

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

  .experience-image-wrap {
    height: 230px;
  }

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

  .tourguide-card img {
    width: 100%;
    height: 190px;
  }

  .rail-facts {
    grid-template-columns: 1fr;
  }

  .stay-image-wrap {
    min-height: 270px;
  }

  .region-image-wrap {
    min-height: 430px;
    border-radius: 100px 20px 20px 20px;
  }

  .region-stamp {
    width: 125px;
    height: 125px;
  }

  .hours-card {
    padding: 27px 22px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 300px repeat(2, 170px);
  }

  .gallery-grid .gallery-main {
    grid-column: span 2;
  }

  .gallery-grid figure:nth-child(2),
  .gallery-grid figure:nth-child(3) {
    grid-column: span 1;
  }

  .gallery-grid figure:nth-child(4) {
    grid-column: span 2;
  }

  .region-photo-grid {
    grid-template-columns: 1fr;
  }

  .booking-panel {
    width: 100%;
    padding: 40px 24px;
    border-radius: 0;
  }

  .booking-section .shell {
    width: 100%;
  }

  .booking-actions .button {
    width: 100%;
  }

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

  .contact-card > div,
  .contact-card > div:nth-child(2n),
  .contact-card > div:nth-child(n+3) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-card > div:last-child {
    border-bottom: 0;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    gap: 15px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }

  .alert-track {
    width: auto;
    animation: none;
  }

  .alert-message[aria-hidden="true"] {
    display: none;
  }
}
