﻿:root {
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: var(--font-sans);
  --font-body: var(--font-sans);
  --display-font: var(--font-sans);
  --body-font: var(--font-sans);
  --ui-font: var(--font-sans);
  --serif-font: "Instrument Serif", Georgia, "Times New Roman", serif;
  --hand-font: "Patrick Hand", "Segoe Print", "Comic Sans MS", cursive;
  --note-hand-font: "Caveat", "Patrick Hand", "Segoe Print", cursive;
  --ink: #17211c;
  --muted: #5e665e;
  --paper: #fbf7ef;
  --cream: #f3eadb;
  --fern: #244f38;
  --moss: #6f8a4a;
  --clay: #b45d38;
  --sun: #e2ad3f;
  --river: #2f6f82;
  --white: #ffffff;
  --line: rgba(23, 33, 28, 0.16);
  --shadow: 0 22px 80px rgba(23, 33, 28, 0.16);
  --radius: 8px;
  font-family: var(--font-sans);
}

/* Booking checkout */
.booking-page {
  background: #f7f6f1;
}

.booking-page .site-header {
  background: rgba(247, 246, 241, 0.9);
  border-bottom: 1px solid rgba(17, 21, 17, 0.08);
  backdrop-filter: blur(18px);
}

.booking-checkout {
  min-height: 100svh;
  background: linear-gradient(90deg, #fbfaf6 0 58%, #efeee8 58% 100%);
}

.booking-shell {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: clamp(96px, 11vw, 132px) clamp(18px, 4vw, 72px) clamp(52px, 7vw, 96px);
}

.booking-checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
}

.booking-form-column {
  max-width: 760px;
}

.booking-breadcrumb,
.booking-kicker,
.booking-summary-label,
.booking-privacy,
.booking-summary-note {
  color: rgba(17, 21, 17, 0.56);
  font-size: 0.82rem;
  font-weight: 700;
}

.booking-breadcrumb {
  margin-bottom: clamp(28px, 5vw, 54px);
}

.booking-kicker,
.booking-summary-label {
  margin: 0 0 10px;
}

.booking-intro {
  margin-bottom: clamp(34px, 5vw, 56px);
}

.booking-intro h1 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(2.8rem, 7vw, 5.7rem);
  font-weight: 520;
  letter-spacing: 0;
  line-height: 0.98;
}

.booking-intro p:last-child {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(17, 21, 17, 0.66);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.55;
}

.booking-checkout-form {
  display: grid;
  gap: 34px;
}

.booking-step {
  display: grid;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(17, 21, 17, 0.12);
}

.booking-step-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2px;
}

.booking-step-heading span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 21, 17, 0.16);
  border-radius: 50%;
  color: rgba(17, 21, 17, 0.62);
  font-size: 0.82rem;
  font-weight: 780;
}

.booking-step-heading h2 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 760;
  line-height: 1.2;
}

.booking-page .field-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.booking-page label {
  gap: 8px;
  color: rgba(17, 21, 17, 0.76);
  font-size: 0.82rem;
  font-weight: 720;
}

.booking-page input,
.booking-page select,
.booking-page textarea {
  min-height: 52px;
  border: 1px solid rgba(17, 21, 17, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.86);
  color: #111511;
  font-size: 0.96rem;
}

.booking-page textarea {
  min-height: 126px;
}

.booking-page input:focus,
.booking-page select:focus,
.booking-page textarea:focus {
  border-color: rgba(17, 21, 17, 0.48);
  box-shadow: 0 0 0 3px rgba(17, 21, 17, 0.08);
}

.booking-submit {
  min-height: 56px;
  width: 100%;
  border: 0;
  border-radius: 6px;
  background: #111511;
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.booking-submit:hover,
.booking-submit:focus-visible {
  background: #244f38;
  transform: translateY(-1px);
}

.booking-submit:disabled {
  cursor: default;
  opacity: 0.62;
  transform: none;
}

.booking-privacy {
  margin: -14px 0 0;
  line-height: 1.45;
}

.booking-summary-column {
  position: sticky;
  top: 106px;
}

.booking-summary-card {
  border-left: 1px solid rgba(17, 21, 17, 0.1);
  padding-left: clamp(28px, 4vw, 54px);
}

.booking-summary-image {
  margin: 0 0 26px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  background: #d7d5cc;
}

.booking-summary-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.booking-summary-body h2 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
  font-weight: 680;
  line-height: 1.08;
}

.booking-summary-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 26px;
}

.booking-summary-meta span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(17, 21, 17, 0.12);
  border-radius: 999px;
  padding: 0 11px;
  color: rgba(17, 21, 17, 0.66);
  font-size: 0.8rem;
  font-weight: 740;
}

.booking-price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid rgba(17, 21, 17, 0.12);
  border-bottom: 1px solid rgba(17, 21, 17, 0.12);
}

.booking-price-row span {
  color: rgba(17, 21, 17, 0.62);
  font-size: 0.88rem;
  font-weight: 760;
}

.booking-page .price {
  color: #111511;
  font-size: clamp(2.1rem, 4vw, 3.35rem);
  font-weight: 680;
  letter-spacing: 0;
}

.booking-page .summary-list {
  gap: 0;
  margin: 20px 0;
}

.booking-page .summary-line {
  padding: 14px 0;
  border-bottom: 1px solid rgba(17, 21, 17, 0.1);
}

.booking-page .summary-line span {
  color: rgba(17, 21, 17, 0.58);
}

.booking-page .summary-line strong {
  color: #111511;
  font-size: 0.92rem;
}

.booking-summary-note {
  margin: 18px 0 0;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .booking-checkout {
    background: #fbfaf6;
  }

  .booking-checkout-grid {
    grid-template-columns: 1fr;
  }

  .booking-summary-column {
    position: static;
    order: -1;
  }

  .booking-summary-card {
    border-left: 0;
    border-bottom: 1px solid rgba(17, 21, 17, 0.1);
    padding: 0 0 30px;
  }

  .booking-summary-image {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 640px) {
  .booking-shell {
    padding-inline: 16px;
  }

  .booking-page .field-grid {
    grid-template-columns: 1fr;
  }

  .booking-intro h1 {
    font-size: clamp(2.55rem, 14vw, 4rem);
  }

  .booking-price-row {
    align-items: start;
    flex-direction: column;
  }
}

@media (min-width: 941px) {
  .site-header .nav-links {
    align-items: start;
    grid-template-columns: repeat(3, minmax(126px, 1fr));
    gap: clamp(34px, 5.4vw, 74px);
  }

  .site-header .nav-group {
    align-content: start;
    justify-items: start;
    gap: clamp(9px, 1vw, 14px);
  }

  .site-header .nav-group strong {
    font-size: clamp(0.94rem, 0.82vw, 1.06rem);
    font-weight: 760;
    line-height: 1.08;
  }

  .site-header .nav-links a {
    font-size: clamp(0.9rem, 0.76vw, 0.98rem);
    font-weight: 650;
    line-height: 1.12;
  }

  .inner-page .site-header .nav-links,
  .inner-page .site-header.scrolled .nav-links {
    grid-column: 1 / -1;
    grid-row: 1;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2.4vw, 34px);
    justify-self: center;
    align-self: center;
    padding: 0;
    opacity: 1;
    transform: none !important;
    pointer-events: auto;
  }

  .inner-page .site-header .nav-group,
  .inner-page .site-header.scrolled .nav-group {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.4vw, 34px);
  }

  .inner-page .site-header .nav-group strong,
  .inner-page .site-header.scrolled .nav-group strong {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .inner-page .site-header .nav-links a,
  .inner-page .site-header.scrolled .nav-links a {
    min-height: 34px;
    color: rgba(17, 21, 17, 0.68);
    font-size: clamp(0.92rem, 0.78vw, 1rem);
    font-weight: 660;
    line-height: 1;
    text-shadow: none;
    transform: none !important;
    transition: color 160ms ease;
    will-change: auto;
  }

  .inner-page .site-header .nav-links a:hover,
  .inner-page .site-header .nav-links a.active,
  .inner-page .site-header.scrolled .nav-links a:hover,
  .inner-page .site-header.scrolled .nav-links a.active {
    color: #111511;
  }
}

/* Booking page checkout polish */
body.booking-page,
.booking-page input,
.booking-page select,
.booking-page textarea,
.booking-page button {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
}

body.booking-page {
  background: #ffffff !important;
  color: #111511 !important;
}

.booking-page .booking-checkout {
  min-height: calc(100vh - 72px) !important;
  padding: 0 !important;
  background: linear-gradient(90deg, #ffffff 0 57%, #f6f6f2 57% 100%) !important;
}

.booking-page .booking-shell {
  width: min(1180px, 100%) !important;
  margin: 0 auto !important;
  padding: clamp(30px, 4vw, 54px) clamp(18px, 4vw, 48px) !important;
}

.booking-page .booking-checkout-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1.14fr) minmax(360px, 0.86fr) !important;
  gap: clamp(44px, 6vw, 86px) !important;
  align-items: start !important;
}

.booking-page .booking-form-column {
  max-width: 650px !important;
  width: 100% !important;
}

.booking-page .booking-breadcrumb {
  margin: 0 0 26px !important;
  color: #6d716b !important;
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
}

.booking-page .booking-intro {
  margin: 0 0 32px !important;
  padding: 0 !important;
  text-align: left !important;
}

.booking-page .booking-intro h1 {
  margin: 0 0 8px !important;
  color: #111511 !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  font-size: clamp(1.68rem, 2.2vw, 2.18rem) !important;
  font-weight: 650 !important;
  line-height: 1.14 !important;
  letter-spacing: 0 !important;
}

.booking-page .booking-intro p,
.booking-page .booking-privacy {
  max-width: 520px !important;
  color: #61665f !important;
  font-size: 0.88rem !important;
  line-height: 1.55 !important;
}

.booking-page .booking-checkout-form,
.booking-page .booking-step {
  display: grid !important;
  gap: 14px !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.booking-page .booking-step {
  padding-bottom: 30px !important;
}

.booking-page .booking-step + .booking-step {
  padding-top: 4px !important;
}

.booking-page .booking-step-heading {
  display: flex !important;
  align-items: baseline !important;
  justify-content: space-between !important;
  gap: 18px !important;
  margin-bottom: 2px !important;
}

.booking-page .booking-step-heading h2 {
  margin: 0 !important;
  color: #111511 !important;
  font-size: 1.03rem !important;
  font-weight: 650 !important;
  line-height: 1.25 !important;
  letter-spacing: 0 !important;
}

.booking-page .booking-step-heading a {
  color: #596058 !important;
  font-size: 0.82rem !important;
  text-decoration: underline !important;
  text-underline-offset: 2px !important;
}

.booking-page .field-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

.booking-page .field-grid-three {
  grid-template-columns: 1fr 1fr 0.9fr !important;
}

.booking-page .checkout-field {
  position: relative !important;
  display: block !important;
  min-width: 0 !important;
}

.booking-page .checkout-field span {
  position: absolute !important;
  top: 8px !important;
  left: 13px !important;
  z-index: 1 !important;
  color: #6c716a !important;
  font-size: 0.66rem !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  pointer-events: none !important;
}

.booking-page .checkout-field input,
.booking-page .checkout-field select,
.booking-page .checkout-field textarea {
  width: 100% !important;
  min-height: 52px !important;
  margin: 0 !important;
  padding: 20px 13px 7px !important;
  color: #111511 !important;
  background: #ffffff !important;
  border: 1px solid #d8ddd5 !important;
  border-radius: 5px !important;
  box-shadow: none !important;
  font-size: 0.92rem !important;
  font-weight: 450 !important;
  line-height: 1.3 !important;
  outline: none !important;
  transition: border-color 150ms ease, box-shadow 150ms ease !important;
}

.booking-page .checkout-field textarea {
  min-height: 118px !important;
  resize: vertical !important;
}

.booking-page .checkout-field input::placeholder,
.booking-page .checkout-field textarea::placeholder {
  color: transparent !important;
}

.booking-page .checkout-field input:focus,
.booking-page .checkout-field select:focus,
.booking-page .checkout-field textarea:focus,
.booking-page .booking-code-row input:focus {
  border-color: #111511 !important;
  box-shadow: 0 0 0 1px #111511 !important;
}

.booking-page .checkout-check {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  color: #343933 !important;
  font-size: 0.86rem !important;
  line-height: 1.4 !important;
}

.booking-page .checkout-check input {
  width: 18px !important;
  height: 18px !important;
  margin: 0 !important;
  accent-color: #111511 !important;
}

.booking-page .booking-submit {
  width: 100% !important;
  min-height: 56px !important;
  margin-top: 4px !important;
  border: 0 !important;
  border-radius: 5px !important;
  background: #111511 !important;
  color: #ffffff !important;
  font-size: 0.98rem !important;
  font-weight: 650 !important;
  letter-spacing: 0 !important;
}

.booking-page .booking-submit:disabled {
  cursor: default !important;
  opacity: 0.72 !important;
}

.booking-page .booking-summary-column {
  position: sticky !important;
  top: 92px !important;
  align-self: start !important;
}

.booking-page .booking-summary-card {
  display: grid !important;
  grid-template-columns: 88px minmax(0, 1fr) !important;
  gap: 18px !important;
  width: 100% !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.booking-page .booking-summary-image {
  position: relative !important;
  width: 88px !important;
  height: 88px !important;
  margin: 0 !important;
  overflow: visible !important;
  border: 1px solid #d7dbd3 !important;
  border-radius: 8px !important;
  background: #ffffff !important;
}

.booking-page .booking-summary-image::after {
  content: "1" !important;
  position: absolute !important;
  top: -10px !important;
  right: -10px !important;
  display: grid !important;
  place-items: center !important;
  width: 22px !important;
  height: 22px !important;
  border-radius: 999px !important;
  background: #666b63 !important;
  color: #ffffff !important;
  font-size: 0.72rem !important;
  font-weight: 650 !important;
}

.booking-page .booking-summary-image img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  border-radius: 8px !important;
  opacity: 1 !important;
  transition: opacity 180ms ease !important;
}

.booking-page .booking-summary-image img.is-switching {
  opacity: 0.45 !important;
}

.booking-page .booking-summary-body {
  min-width: 0 !important;
}

.booking-page .booking-summary-label {
  margin: 0 0 5px !important;
  color: #6f746d !important;
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}

.booking-page .booking-summary-body h2 {
  margin: 0 !important;
  color: #111511 !important;
  font-size: 0.95rem !important;
  font-weight: 650 !important;
  line-height: 1.28 !important;
}

.booking-page .booking-summary-meta {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 6px 11px !important;
  margin: 8px 0 20px !important;
  color: #6b7069 !important;
  font-size: 0.78rem !important;
}

.booking-page .booking-price-row,
.booking-page .summary-line {
  display: flex !important;
  align-items: baseline !important;
  justify-content: space-between !important;
  gap: 20px !important;
  color: #30352f !important;
  font-size: 0.9rem !important;
}

.booking-page .booking-price-row {
  padding-top: 18px !important;
  border-top: 1px solid #dedfd9 !important;
}

.booking-page .booking-price-row .price {
  color: #111511 !important;
  font-size: 1.58rem !important;
  font-weight: 650 !important;
  line-height: 1 !important;
}

.booking-page .booking-code-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 10px !important;
  margin: 20px 0 !important;
  padding-bottom: 20px !important;
  border-bottom: 1px solid #dedfd9 !important;
}

.booking-page .booking-code-row input {
  min-height: 48px !important;
  padding: 0 12px !important;
  border: 1px solid #d8ddd5 !important;
  border-radius: 5px !important;
  background: #ffffff !important;
  color: #111511 !important;
  font-size: 0.9rem !important;
  outline: none !important;
}

.booking-page .booking-code-row button {
  min-height: 48px !important;
  padding: 0 18px !important;
  border: 0 !important;
  border-radius: 5px !important;
  background: #6f746d !important;
  color: #ffffff !important;
  font-size: 0.88rem !important;
  font-weight: 650 !important;
}

.booking-page .summary-list {
  display: grid !important;
  gap: 11px !important;
}

.booking-page .summary-line strong {
  color: #111511 !important;
  font-weight: 600 !important;
  text-align: right !important;
}

.booking-page .booking-summary-note {
  margin: 22px 0 0 !important;
  color: #71766f !important;
  font-size: 0.78rem !important;
  line-height: 1.52 !important;
}

@media (max-width: 940px) {
  .booking-page .booking-checkout {
    background: #ffffff !important;
  }

  .booking-page .booking-shell {
    padding: 22px 16px 36px !important;
  }

  .booking-page .booking-checkout-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .booking-page .booking-summary-column {
    position: static !important;
    order: -1 !important;
    padding: 16px !important;
    background: #f6f6f2 !important;
    border: 1px solid #e1e3dd !important;
    border-radius: 8px !important;
  }

  .booking-page .field-grid,
  .booking-page .field-grid-three {
    grid-template-columns: 1fr !important;
  }
}

/* Kindred-inspired checkout redesign */
body.booking-page {
  --kindred-ink: #201f1a;
  --kindred-muted: #6d675c;
  --kindred-soft: #8c8578;
  --kindred-linen: #f6f0e4;
  --kindred-linen-deep: #eee6d8;
  --kindred-paper: #fffdf8;
  --kindred-border: #d8cfbf;
  --kindred-field: #fffefa;
  --kindred-black: #171713;
  margin: 0 !important;
  background: var(--kindred-linen) !important;
  color: var(--kindred-ink) !important;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  letter-spacing: 0 !important;
}

.booking-page .preloader,
.booking-page .site-header,
.booking-page .footer {
  display: none !important;
}

.booking-page .booking-checkout {
  min-height: 100vh !important;
  padding: 0 !important;
  background: linear-gradient(90deg, var(--kindred-paper) 0 56.4%, var(--kindred-linen) 56.4% 100%) !important;
}

.booking-page .booking-shell {
  width: min(1220px, 100%) !important;
  min-height: 100vh !important;
  margin: 0 auto !important;
  padding: clamp(30px, 4.6vw, 62px) clamp(18px, 4.8vw, 58px) !important;
}

.booking-page .booking-checkout-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.82fr) !important;
  gap: clamp(54px, 7vw, 104px) !important;
  align-items: start !important;
}

.booking-page .booking-form-column {
  max-width: 650px !important;
  width: 100% !important;
}

.booking-page .booking-checkout-brandbar {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  margin: 0 0 28px !important;
  color: var(--kindred-muted) !important;
}

.booking-page .booking-checkout-brandbar a {
  color: var(--kindred-ink) !important;
  font-family: "Instrument Serif", Georgia, serif !important;
  font-size: clamp(1.95rem, 3vw, 3.05rem) !important;
  font-weight: 400 !important;
  line-height: 0.98 !important;
  text-decoration: none !important;
}

.booking-page .booking-checkout-brandbar span {
  color: var(--kindred-muted) !important;
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  white-space: nowrap !important;
}

.booking-page .booking-breadcrumb {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 7px !important;
  margin: 0 0 34px !important;
  color: var(--kindred-soft) !important;
  font-size: 0.72rem !important;
  font-weight: 500 !important;
}

.booking-page .booking-breadcrumb span:not(:last-child)::after {
  content: "/" !important;
  margin-left: 7px !important;
  color: #b4aa9a !important;
}

.booking-page .booking-breadcrumb span:nth-child(2) {
  color: var(--kindred-ink) !important;
}

.booking-page .booking-intro {
  max-width: 530px !important;
  margin: 0 0 34px !important;
  padding: 0 !important;
}

.booking-page .booking-intro h1 {
  margin: 0 0 12px !important;
  color: var(--kindred-ink) !important;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  font-size: clamp(1.48rem, 1.7vw, 1.86rem) !important;
  font-weight: 400 !important;
  line-height: 1.15 !important;
  letter-spacing: 0 !important;
}

.booking-page .booking-intro p {
  max-width: 500px !important;
  color: var(--kindred-muted) !important;
  font-size: 0.92rem !important;
  font-weight: 400 !important;
  line-height: 1.58 !important;
}

.booking-page .booking-checkout-form,
.booking-page .booking-step {
  display: grid !important;
  gap: 13px !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.booking-page .booking-step {
  padding-bottom: 31px !important;
}

.booking-page .booking-step-heading {
  display: flex !important;
  align-items: baseline !important;
  justify-content: space-between !important;
  gap: 20px !important;
  margin: 0 0 2px !important;
}

.booking-page .booking-step-heading h2 {
  margin: 0 !important;
  color: var(--kindred-ink) !important;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  font-size: 1.03rem !important;
  font-weight: 400 !important;
  line-height: 1.28 !important;
}

.booking-page .booking-step-heading a {
  color: var(--kindred-muted) !important;
  font-size: 0.82rem !important;
  font-weight: 400 !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}

.booking-page .field-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 11px !important;
}

.booking-page .field-grid-three {
  grid-template-columns: 1fr 1fr 0.9fr !important;
}

.booking-page .checkout-field {
  position: relative !important;
  display: block !important;
  min-width: 0 !important;
}

.booking-page .checkout-field span {
  position: absolute !important;
  top: 7px !important;
  left: 12px !important;
  z-index: 2 !important;
  color: var(--kindred-soft) !important;
  font-size: 0.64rem !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  pointer-events: none !important;
}

.booking-page .checkout-field input,
.booking-page .checkout-field select,
.booking-page .checkout-field textarea {
  width: 100% !important;
  min-height: 49px !important;
  margin: 0 !important;
  padding: 19px 12px 7px !important;
  color: var(--kindred-ink) !important;
  background: var(--kindred-field) !important;
  border: 1px solid var(--kindred-border) !important;
  border-radius: 2px !important;
  box-shadow: none !important;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  font-size: 0.91rem !important;
  font-weight: 400 !important;
  line-height: 1.34 !important;
  outline: none !important;
  transition: border-color 150ms ease, box-shadow 150ms ease, background-color 150ms ease !important;
}

.booking-page .checkout-field textarea {
  min-height: 112px !important;
  resize: vertical !important;
}

.booking-page .checkout-field input::placeholder,
.booking-page .checkout-field textarea::placeholder {
  color: transparent !important;
}

.booking-page .checkout-field input:focus,
.booking-page .checkout-field select:focus,
.booking-page .checkout-field textarea:focus,
.booking-page .booking-code-row input:focus {
  border-color: var(--kindred-black) !important;
  box-shadow: 0 0 0 1px var(--kindred-black) !important;
}

.booking-page .checkout-check {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  color: var(--kindred-muted) !important;
  font-size: 0.84rem !important;
  line-height: 1.44 !important;
}

.booking-page .checkout-check input {
  width: 17px !important;
  height: 17px !important;
  margin: 0 !important;
  border-radius: 2px !important;
  accent-color: var(--kindred-black) !important;
}

.booking-page .booking-submit {
  width: 100% !important;
  min-height: 54px !important;
  margin: 0 !important;
  padding: 0 22px !important;
  border: 1px solid var(--kindred-black) !important;
  border-radius: 2px !important;
  background: var(--kindred-black) !important;
  color: #fffdf8 !important;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
}

.booking-page .booking-submit:disabled {
  opacity: 0.68 !important;
}

.booking-page .booking-privacy {
  max-width: 520px !important;
  margin: 1px 0 0 !important;
  color: var(--kindred-soft) !important;
  font-size: 0.76rem !important;
  line-height: 1.5 !important;
}

.booking-page .booking-summary-column {
  position: sticky !important;
  top: 46px !important;
  align-self: start !important;
  padding-top: 42px !important;
}

.booking-page .booking-summary-card {
  display: grid !important;
  grid-template-columns: 82px minmax(0, 1fr) !important;
  gap: 16px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: var(--kindred-ink) !important;
}

.booking-page .booking-summary-image {
  position: relative !important;
  width: 82px !important;
  height: 82px !important;
  margin: 0 !important;
  overflow: visible !important;
  border: 1px solid var(--kindred-border) !important;
  border-radius: 2px !important;
  background: var(--kindred-paper) !important;
}

.booking-page .booking-summary-image::after {
  content: "1" !important;
  position: absolute !important;
  top: -9px !important;
  right: -9px !important;
  display: grid !important;
  place-items: center !important;
  width: 21px !important;
  height: 21px !important;
  border-radius: 999px !important;
  background: #716a5f !important;
  color: #fffdf8 !important;
  font-size: 0.7rem !important;
  font-weight: 500 !important;
}

.booking-page .booking-summary-image img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  border-radius: 2px !important;
  opacity: 1 !important;
  transition: opacity 180ms ease !important;
}

.booking-page .booking-summary-image img.is-switching {
  opacity: 0.42 !important;
}

.booking-page .booking-summary-body {
  min-width: 0 !important;
}

.booking-page .booking-summary-label {
  margin: 0 0 4px !important;
  color: var(--kindred-soft) !important;
  font-size: 0.68rem !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

.booking-page .booking-summary-body h2 {
  max-width: 290px !important;
  margin: 0 !important;
  color: var(--kindred-ink) !important;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  font-size: 0.94rem !important;
  font-weight: 400 !important;
  line-height: 1.3 !important;
}

.booking-page .booking-summary-meta {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 6px 10px !important;
  margin: 8px 0 20px !important;
  color: var(--kindred-muted) !important;
  font-size: 0.76rem !important;
}

.booking-page .booking-price-row,
.booking-page .summary-line {
  display: flex !important;
  align-items: baseline !important;
  justify-content: space-between !important;
  gap: 20px !important;
  color: var(--kindred-muted) !important;
  font-size: 0.87rem !important;
  font-weight: 400 !important;
}

.booking-page .booking-price-row {
  grid-column: 1 / -1 !important;
  margin-top: 24px !important;
  padding-top: 21px !important;
  border-top: 1px solid var(--kindred-border) !important;
}

.booking-page .booking-price-row .price {
  color: var(--kindred-ink) !important;
  font-size: 1.45rem !important;
  font-weight: 400 !important;
  line-height: 1 !important;
}

.booking-page .booking-code-row {
  grid-column: 1 / -1 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 9px !important;
  margin: 20px 0 0 !important;
  padding-bottom: 20px !important;
  border-bottom: 1px solid var(--kindred-border) !important;
}

.booking-page .booking-code-row input {
  min-height: 48px !important;
  padding: 0 12px !important;
  color: var(--kindred-ink) !important;
  background: var(--kindred-field) !important;
  border: 1px solid var(--kindred-border) !important;
  border-radius: 2px !important;
  box-shadow: none !important;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
  font-size: 0.86rem !important;
  outline: none !important;
}

.booking-page .booking-code-row button {
  min-height: 48px !important;
  padding: 0 18px !important;
  border: 1px solid #7a7366 !important;
  border-radius: 2px !important;
  background: #7a7366 !important;
  color: #fffdf8 !important;
  font-size: 0.84rem !important;
  font-weight: 500 !important;
}

.booking-page .summary-list {
  grid-column: 1 / -1 !important;
  display: grid !important;
  gap: 11px !important;
  margin-top: 19px !important;
}

.booking-page .summary-line strong {
  color: var(--kindred-ink) !important;
  font-weight: 400 !important;
  text-align: right !important;
}

.booking-page .booking-summary-note {
  grid-column: 1 / -1 !important;
  margin: 22px 0 0 !important;
  color: var(--kindred-soft) !important;
  font-size: 0.75rem !important;
  line-height: 1.54 !important;
}

@media (max-width: 940px) {
  .booking-page .booking-checkout {
    background: var(--kindred-paper) !important;
  }

  .booking-page .booking-shell {
    padding: 24px 16px 38px !important;
  }

  .booking-page .booking-checkout-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .booking-page .booking-summary-column {
    position: static !important;
    order: -1 !important;
    padding: 18px !important;
    background: var(--kindred-linen) !important;
    border: 1px solid var(--kindred-border) !important;
  }

  .booking-page .field-grid,
  .booking-page .field-grid-three {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 560px) {
  .booking-page .booking-checkout-brandbar {
    display: grid !important;
    gap: 8px !important;
  }

  .booking-page .booking-summary-card {
    grid-template-columns: 74px minmax(0, 1fr) !important;
    gap: 14px !important;
  }

  .booking-page .booking-summary-image {
    width: 74px !important;
    height: 74px !important;
  }

  .booking-page .booking-code-row {
    grid-template-columns: 1fr !important;
  }
}

/* Screenshot-matched Shopify checkout layout */
body.booking-page {
  --checkout-text: #000000;
  --checkout-muted: #6f6f6f;
  --checkout-light: #f5f5f5;
  --checkout-field: #ffffff;
  --checkout-border: #d9d9d9;
  --checkout-border-soft: #dedede;
  --checkout-blue: #1773d1;
  --checkout-purple: #5433f5;
  margin: 0 !important;
  background: var(--checkout-light) !important;
  color: var(--checkout-text) !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  font-size: 12px !important;
  letter-spacing: 0 !important;
}

.booking-page .preloader,
.booking-page .site-header,
.booking-page .footer {
  display: none !important;
}

.booking-page .booking-checkout {
  min-height: 100vh !important;
  padding: 0 !important;
  background: linear-gradient(90deg, #ffffff 0 53.4%, var(--checkout-light) 53.4% 100%) !important;
}

.booking-page .booking-shell {
  width: min(100%, 960px) !important;
  min-height: 100vh !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

.booking-page .booking-checkout-grid {
  display: grid !important;
  grid-template-columns: 513px 1fr !important;
  gap: 0 !important;
  min-height: 100vh !important;
  align-items: stretch !important;
}

.booking-page .booking-form-column {
  width: 100% !important;
  max-width: none !important;
  padding: 26px 30px 42px 80px !important;
  background: #ffffff !important;
}

.booking-page .booking-checkout-form {
  display: grid !important;
  gap: 0 !important;
  width: 402px !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow-anchor: none !important;
}

.booking-page .express-checkout p {
  margin: 0 0 13px !important;
  color: #555555 !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  text-align: center !important;
}

.booking-page .express-buttons {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 8px !important;
}

.booking-page .express-buttons button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 38px !important;
  border: 0 !important;
  border-radius: 5px !important;
  color: #ffffff !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
}

.booking-page .shop-pay-button {
  background: var(--checkout-purple) !important;
}

.booking-page .g-pay-button {
  gap: 3px !important;
  background: #000000 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
}

.booking-page .g-pay-button span:first-child {
  color: #4285f4 !important;
  font-weight: 700 !important;
}

.booking-page .checkout-divider {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  gap: 12px !important;
  align-items: center !important;
  margin: 24px 0 21px !important;
  color: #707070 !important;
  font-size: 12px !important;
}

.booking-page .checkout-divider::before,
.booking-page .checkout-divider::after {
  content: "" !important;
  height: 1px !important;
  background: #dedede !important;
}

.booking-page .booking-step {
  display: grid !important;
  gap: 12px !important;
  margin: 0 0 28px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.booking-page .booking-step-heading {
  display: flex !important;
  align-items: baseline !important;
  justify-content: space-between !important;
  margin: 0 0 2px !important;
}

.booking-page .booking-step-heading h2,
.booking-page .shipping-method-step h2,
.booking-page .payment-step h2 {
  margin: 0 !important;
  color: #000000 !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  font-size: 19px !important;
  font-weight: 650 !important;
  line-height: 1.25 !important;
  letter-spacing: 0 !important;
}

.booking-page .booking-step-heading a {
  color: var(--checkout-blue) !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  text-decoration: underline !important;
  text-underline-offset: 2px !important;
}

.booking-page .checkout-field {
  position: relative !important;
  display: block !important;
  min-width: 0 !important;
}

.booking-page .checkout-field input,
.booking-page .checkout-field select,
.booking-page .checkout-field textarea {
  width: 100% !important;
  min-height: 41px !important;
  margin: 0 !important;
  padding: 0 11px !important;
  color: #222222 !important;
  background: var(--checkout-field) !important;
  border: 1px solid var(--checkout-border) !important;
  border-radius: 5px !important;
  box-shadow: none !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1.3 !important;
  outline: none !important;
}

.booking-page .checkout-field textarea {
  min-height: 82px !important;
  padding-top: 12px !important;
  resize: vertical !important;
}

.booking-page .checkout-field input::placeholder,
.booking-page .checkout-field textarea::placeholder {
  color: #707070 !important;
  opacity: 1 !important;
}

.booking-page .checkout-field select {
  appearance: auto !important;
}

.booking-page .checkout-field input:focus,
.booking-page .checkout-field select:focus,
.booking-page .checkout-field textarea:focus,
.booking-page .booking-code-row input:focus {
  border-color: #1773d1 !important;
  box-shadow: 0 0 0 1px #1773d1 !important;
}

.booking-page .field-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px !important;
}

.booking-page .checkout-search-field::after {
  content: "âŒ•" !important;
  position: absolute !important;
  right: 12px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: #6f6f6f !important;
  font-size: 19px !important;
  line-height: 1 !important;
  pointer-events: none !important;
}

.booking-page .checkout-help-field::after {
  content: "?" !important;
  position: absolute !important;
  right: 10px !important;
  top: 50% !important;
  display: grid !important;
  place-items: center !important;
  width: 13px !important;
  height: 13px !important;
  transform: translateY(-50%) !important;
  border: 1px solid #777777 !important;
  border-radius: 50% !important;
  color: #777777 !important;
  font-size: 9px !important;
  font-weight: 600 !important;
  pointer-events: none !important;
}

.booking-page .checkout-check {
  display: flex !important;
  align-items: center !important;
  gap: 9px !important;
  margin: 0 !important;
  color: #000000 !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
}

.booking-page .checkout-check input {
  width: 15px !important;
  height: 15px !important;
  margin: 0 !important;
  accent-color: #0b63ce !important;
}

.booking-page .checkout-alert {
  display: grid !important;
  gap: 8px !important;
  padding: 14px 14px 13px 38px !important;
  color: #8f0000 !important;
  background: #fff6f6 !important;
  border: 1px solid #ffcdcd !important;
  border-radius: 5px !important;
  font-size: 12px !important;
  line-height: 1.35 !important;
}

.booking-page .checkout-alert::before {
  content: "!" !important;
  position: absolute !important;
}

.booking-page .checkout-alert strong {
  color: #8f0000 !important;
  font-weight: 500 !important;
}

.booking-page .checkout-alert span {
  color: #8f0000 !important;
  text-decoration: none !important;
}

.booking-page .delivery-toggle {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 5px !important;
  padding: 4px !important;
  background: #f2f2f2 !important;
  border-radius: 6px !important;
}

.booking-page .delivery-toggle button {
  height: 38px !important;
  border: 1px solid transparent !important;
  border-radius: 5px !important;
  background: transparent !important;
  color: #000000 !important;
  font-size: 12px !important;
  font-weight: 650 !important;
}

.booking-page .delivery-toggle button.active {
  background: #ffffff !important;
  border-color: #d5d5d5 !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.16) !important;
}

.booking-page .shipping-method-step {
  margin-top: -2px !important;
}

.booking-page .shipping-placeholder {
  display: grid !important;
  place-items: center !important;
  min-height: 44px !important;
  padding: 10px !important;
  color: #707070 !important;
  background: #f4f4f4 !important;
  border-radius: 5px !important;
  font-size: 12px !important;
  text-align: center !important;
}

.booking-page .payment-step p {
  margin: 0 !important;
  color: #707070 !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
}

.booking-page .booking-submit {
  width: 100% !important;
  height: 48px !important;
  margin-top: 0 !important;
  border: 0 !important;
  border-radius: 5px !important;
  background: #000000 !important;
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 650 !important;
  letter-spacing: 0 !important;
}

.booking-page .booking-summary-column {
  position: static !important;
  min-height: 100vh !important;
  padding: 26px 0 42px 30px !important;
  background: var(--checkout-light) !important;
  border-left: 1px solid var(--checkout-border-soft) !important;
}

.booking-page .booking-summary-card {
  display: grid !important;
  gap: 19px !important;
  width: 328px !important;
  max-width: calc(100vw - 48px) !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.booking-page .booking-summary-product {
  display: grid !important;
  grid-template-columns: 48px minmax(0, 1fr) auto !important;
  gap: 14px !important;
  align-items: start !important;
}

.booking-page .booking-summary-image {
  position: relative !important;
  width: 48px !important;
  height: 48px !important;
  margin: 0 !important;
  overflow: visible !important;
  border: 1px solid #cfcfcf !important;
  border-radius: 5px !important;
  background: #ffffff !important;
}

.booking-page .booking-summary-image::after {
  content: "1" !important;
  position: absolute !important;
  top: -8px !important;
  right: -8px !important;
  display: grid !important;
  place-items: center !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: 50% !important;
  background: #000000 !important;
  color: #ffffff !important;
  font-size: 11px !important;
  font-weight: 650 !important;
}

.booking-page .booking-summary-image img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  border-radius: 5px !important;
  transition: opacity 160ms ease !important;
}

.booking-page .booking-summary-image img.is-switching {
  opacity: 0.45 !important;
}

.booking-page .booking-summary-product-copy h2 {
  margin: 0 0 2px !important;
  color: #000000 !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1.32 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

.booking-page .booking-summary-product-copy p {
  margin: 0 !important;
  color: #707070 !important;
  font-size: 12px !important;
  line-height: 1.3 !important;
}

.booking-page .booking-product-price {
  color: #000000 !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
  white-space: nowrap !important;
}

.booking-page .booking-code-row {
  display: grid !important;
  grid-template-columns: 1fr 54px !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.booking-page .booking-code-row input {
  min-height: 41px !important;
  padding: 0 11px !important;
  background: #ffffff !important;
  border: 1px solid var(--checkout-border) !important;
  border-radius: 5px !important;
  color: #222222 !important;
  font-size: 12px !important;
}

.booking-page .booking-code-row button {
  min-height: 41px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 5px !important;
  background: #e9e9e9 !important;
  color: #707070 !important;
  font-size: 12px !important;
  font-weight: 650 !important;
}

.booking-page .summary-list {
  display: grid !important;
  gap: 11px !important;
  margin: 6px 0 0 !important;
}

.booking-page .summary-line {
  display: flex !important;
  align-items: baseline !important;
  justify-content: space-between !important;
  gap: 18px !important;
  color: #000000 !important;
  font-size: 12px !important;
  font-weight: 400 !important;
}

.booking-page .summary-line strong {
  color: #000000 !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  text-align: right !important;
}

.booking-page .summary-line small {
  display: inline-grid !important;
  place-items: center !important;
  width: 11px !important;
  height: 11px !important;
  margin-left: 2px !important;
  border: 1px solid #777777 !important;
  border-radius: 50% !important;
  color: #777777 !important;
  font-size: 8px !important;
  line-height: 1 !important;
}

.booking-page .booking-price-row {
  display: flex !important;
  align-items: baseline !important;
  justify-content: space-between !important;
  gap: 18px !important;
  margin: -2px 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  color: #000000 !important;
}

.booking-page .booking-price-row > span {
  color: #000000 !important;
  font-size: 16px !important;
  font-weight: 650 !important;
}

.booking-page .booking-price-row strong {
  display: flex !important;
  align-items: baseline !important;
  gap: 8px !important;
  color: #000000 !important;
  font-weight: 650 !important;
}

.booking-page .booking-price-row small {
  color: #707070 !important;
  font-size: 10px !important;
  font-weight: 400 !important;
}

.booking-page .booking-price-row .price {
  color: #000000 !important;
  font-size: 16px !important;
  font-weight: 650 !important;
  line-height: 1 !important;
}

@media (max-width: 940px) {
  .booking-page .booking-checkout {
    background: #ffffff !important;
  }

  .booking-page .booking-shell {
    width: 100% !important;
  }

  .booking-page .booking-checkout-grid {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }

  .booking-page .booking-form-column {
    padding: 24px 20px 34px !important;
  }

  .booking-page .booking-checkout-form {
    width: 100% !important;
  }

  .booking-page .booking-summary-column {
    order: -1 !important;
    min-height: auto !important;
    padding: 20px !important;
    border-left: 0 !important;
    border-bottom: 1px solid var(--checkout-border-soft) !important;
  }

  .booking-page .booking-summary-card {
    width: 100% !important;
    max-width: none !important;
  }
}

@media (max-width: 560px) {
  .booking-page .express-buttons,
  .booking-page .field-grid {
    grid-template-columns: 1fr !important;
  }

  .booking-page .booking-summary-product {
    grid-template-columns: 48px minmax(0, 1fr) !important;
  }

  .booking-page .booking-product-price {
    grid-column: 2 !important;
  }
}

@media (max-width: 560px) {
  .booking-page .booking-summary-card {
    grid-template-columns: 74px minmax(0, 1fr) !important;
    gap: 14px !important;
  }

  .booking-page .booking-summary-image {
    width: 74px !important;
    height: 74px !important;
  }

  .booking-page .booking-code-row {
    grid-template-columns: 1fr !important;
  }
}

/* Booking checkout final cascade */
.booking-page .booking-checkout {
  min-height: 100svh;
  background: linear-gradient(90deg, #ffffff 0 57%, #f4f4f2 57% 100%) !important;
}

.booking-page .booking-shell {
  width: min(100%, 1440px) !important;
  margin: 0 auto !important;
  padding: clamp(92px, 9vw, 118px) clamp(18px, 4vw, 72px) clamp(52px, 7vw, 96px) !important;
}

.booking-page .booking-checkout-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 0.98fr) minmax(410px, 0.72fr) !important;
  gap: clamp(44px, 6vw, 88px) !important;
  align-items: start !important;
}

.booking-page .booking-form-column {
  max-width: 760px !important;
}

.booking-page .booking-intro h1 {
  margin: 0 !important;
  font-family: var(--font-sans) !important;
  font-size: clamp(2rem, 4.8vw, 3.75rem) !important;
  font-weight: 620 !important;
  letter-spacing: 0 !important;
  line-height: 1.03 !important;
}

.booking-page .booking-step {
  display: grid !important;
  gap: 12px !important;
  padding-top: 24px !important;
  border-top: 1px solid rgba(17, 21, 17, 0.1) !important;
}

.booking-page .booking-step:first-of-type {
  border-top: 0 !important;
  padding-top: 0 !important;
}

.booking-page .field-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

.booking-page .checkout-field {
  position: relative !important;
  display: block !important;
  font-size: 0 !important;
}

.booking-page .checkout-field span {
  position: absolute !important;
  left: 13px !important;
  top: 8px !important;
  z-index: 1 !important;
  color: rgba(17, 21, 17, 0.52) !important;
  font-size: 0.68rem !important;
  font-weight: 720 !important;
  line-height: 1 !important;
  pointer-events: none !important;
}

.booking-page .checkout-field input,
.booking-page .checkout-field select,
.booking-page .checkout-field textarea {
  width: 100% !important;
  min-height: 54px !important;
  padding: 22px 13px 8px !important;
  border: 1px solid rgba(17, 21, 17, 0.18) !important;
  border-radius: 5px !important;
  background: #fff !important;
  color: #111511 !important;
  box-shadow: 0 1px 0 rgba(17, 21, 17, 0.02) !important;
  font-size: 0.94rem !important;
}

.booking-page .checkout-field textarea {
  min-height: 118px !important;
  padding-top: 24px !important;
}

.booking-page .booking-submit {
  min-height: 58px !important;
  width: 100% !important;
  border: 0 !important;
  border-radius: 5px !important;
  background: #111 !important;
  color: #fff !important;
  font: inherit !important;
  font-size: 0.98rem !important;
  font-weight: 800 !important;
}

.booking-page .booking-summary-column {
  position: sticky !important;
  top: 94px !important;
}

.booking-page .booking-summary-card {
  min-height: calc(100svh - 120px) !important;
  border-left: 0 !important;
  padding: 0 0 0 clamp(22px, 3.5vw, 48px) !important;
}

.booking-page .booking-summary-image {
  position: relative !important;
  width: min(132px, 34vw) !important;
  aspect-ratio: 1 / 1 !important;
  margin: 0 0 20px !important;
  overflow: hidden !important;
  border: 1px solid rgba(17, 21, 17, 0.1) !important;
  border-radius: 7px !important;
  background: #ebe9e3 !important;
}

.booking-page .booking-summary-image img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  transition: opacity 180ms ease, transform 260ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.booking-page .booking-summary-image img.is-switching {
  opacity: 0 !important;
  transform: scale(0.985) !important;
}

.booking-page .booking-summary-body h2 {
  margin: 0 !important;
  max-width: 360px !important;
  font-family: var(--font-sans) !important;
  font-size: clamp(1.16rem, 1.4vw, 1.45rem) !important;
  font-weight: 680 !important;
  line-height: 1.22 !important;
}

.booking-page .price {
  color: #111511 !important;
  font-size: clamp(1.7rem, 2.6vw, 2.35rem) !important;
  font-weight: 720 !important;
}

.booking-page .footer {
  display: none !important;
}

@media (max-width: 980px) {
  .booking-page .booking-checkout {
    background: #fff !important;
  }

  .booking-page .booking-checkout-grid {
    grid-template-columns: 1fr !important;
  }

  .booking-page .booking-summary-column {
    position: static !important;
    order: -1 !important;
  }

  .booking-page .booking-summary-card {
    min-height: 0 !important;
    padding: 0 0 26px !important;
  }
}

@media (max-width: 640px) {
  .booking-page .field-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Booking checkout reference refinement */
.booking-page .booking-checkout {
  background:
    linear-gradient(90deg, #ffffff 0 57%, #f4f4f2 57% 100%);
}

.booking-page .booking-shell {
  padding-top: clamp(92px, 9vw, 118px);
}

.booking-page .booking-checkout-grid {
  grid-template-columns: minmax(0, 0.98fr) minmax(410px, 0.72fr);
  gap: clamp(44px, 6vw, 88px);
}

.booking-page .booking-breadcrumb {
  color: rgba(17, 21, 17, 0.46);
  font-size: 0.78rem;
  font-weight: 650;
}

.booking-page .booking-intro {
  margin-bottom: 36px;
}

.booking-page .booking-intro h1 {
  font-size: clamp(2rem, 4.8vw, 3.75rem);
  font-weight: 620;
  line-height: 1.03;
}

.booking-page .booking-intro p:last-child {
  max-width: 520px;
  margin-top: 12px;
  color: rgba(17, 21, 17, 0.58);
  font-size: 0.98rem;
  line-height: 1.5;
}

.booking-page .booking-checkout-form {
  gap: 28px;
}

.booking-page .booking-step {
  gap: 12px;
  padding-top: 24px;
  border-top-color: rgba(17, 21, 17, 0.1);
}

.booking-page .booking-step:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.booking-page .booking-step-heading h2 {
  font-size: 1rem;
  font-weight: 720;
}

.booking-page .checkout-field {
  position: relative;
  display: block;
  font-size: 0;
}

.booking-page .checkout-field span {
  position: absolute;
  left: 13px;
  top: 8px;
  z-index: 1;
  color: rgba(17, 21, 17, 0.52);
  font-size: 0.68rem;
  font-weight: 720;
  line-height: 1;
  pointer-events: none;
}

.booking-page .checkout-field input,
.booking-page .checkout-field select,
.booking-page .checkout-field textarea {
  width: 100%;
  min-height: 54px;
  padding: 22px 13px 8px;
  border-color: rgba(17, 21, 17, 0.18);
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(17, 21, 17, 0.02);
  font-size: 0.94rem;
}

.booking-page .checkout-field select {
  appearance: auto;
}

.booking-page .checkout-field textarea {
  min-height: 118px;
  padding-top: 24px;
}

.booking-page .checkout-field input::placeholder,
.booking-page .checkout-field textarea::placeholder {
  color: rgba(17, 21, 17, 0.35);
}

.booking-page .checkout-field input:focus,
.booking-page .checkout-field select:focus,
.booking-page .checkout-field textarea:focus {
  border-color: #111511;
  box-shadow: 0 0 0 1px #111511;
}

.booking-page .booking-submit {
  min-height: 58px;
  margin-top: 2px;
  border-radius: 5px;
  background: #111;
  font-size: 0.98rem;
}

.booking-page .booking-summary-column {
  top: 94px;
}

.booking-page .booking-summary-card {
  min-height: calc(100svh - 120px);
  border-left: 0;
  padding: 0 0 0 clamp(22px, 3.5vw, 48px);
}

.booking-page .booking-summary-image {
  position: relative;
  aspect-ratio: 1 / 1;
  width: min(132px, 34vw);
  margin: 0 0 20px;
  border: 1px solid rgba(17, 21, 17, 0.1);
  border-radius: 7px;
  background: #ebe9e3;
}

.booking-page .booking-summary-image::after {
  content: "1";
  position: absolute;
  right: -9px;
  top: -9px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(17, 21, 17, 0.76);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 760;
}

.booking-page .booking-summary-image img {
  transition: opacity 180ms ease, transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-page .booking-summary-image img.is-switching {
  opacity: 0;
  transform: scale(0.985);
}

.booking-page .booking-summary-body h2 {
  max-width: 360px;
  font-size: clamp(1.16rem, 1.4vw, 1.45rem);
  font-weight: 680;
  line-height: 1.22;
}

.booking-page .booking-summary-meta {
  margin: 12px 0 18px;
}

.booking-page .booking-summary-meta span {
  min-height: 28px;
  background: rgba(255, 255, 255, 0.58);
}

.booking-page .booking-price-row {
  align-items: center;
  padding: 18px 0;
}

.booking-page .booking-price-row span {
  color: rgba(17, 21, 17, 0.68);
  font-size: 0.92rem;
}

.booking-page .price {
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  font-weight: 720;
}

.booking-page .summary-line {
  font-size: 0.9rem;
}

.booking-page .footer {
  display: none;
}

@media (max-width: 980px) {
  .booking-page .booking-checkout {
    background: #fff;
  }

  .booking-page .booking-summary-card {
    min-height: 0;
    padding: 0 0 26px;
  }

  .booking-page .booking-summary-image {
    width: 104px;
    aspect-ratio: 1 / 1;
  }
}

/* Booking checkout final override */
.booking-page {
  background: #f7f6f1;
}

.booking-page .site-header {
  background: rgba(247, 246, 241, 0.9);
  border-bottom: 1px solid rgba(17, 21, 17, 0.08);
  backdrop-filter: blur(18px);
}

.booking-page .booking-checkout {
  min-height: 100svh;
  background: linear-gradient(90deg, #fbfaf6 0 58%, #efeee8 58% 100%);
}

.booking-page .booking-shell {
  width: min(100%, 1440px);
  margin: 0 auto;
  padding: clamp(96px, 11vw, 132px) clamp(18px, 4vw, 72px) clamp(52px, 7vw, 96px);
}

.booking-page .booking-checkout-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
}

.booking-page .booking-form-column {
  max-width: 760px;
}

.booking-page .booking-breadcrumb,
.booking-page .booking-kicker,
.booking-page .booking-summary-label,
.booking-page .booking-privacy,
.booking-page .booking-summary-note {
  color: rgba(17, 21, 17, 0.56);
  font-size: 0.82rem;
  font-weight: 700;
}

.booking-page .booking-breadcrumb {
  margin-bottom: clamp(28px, 5vw, 54px);
}

.booking-page .booking-kicker,
.booking-page .booking-summary-label {
  margin: 0 0 10px;
}

.booking-page .booking-intro {
  margin-bottom: clamp(34px, 5vw, 56px);
}

.booking-page .booking-intro h1 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(2.8rem, 7vw, 5.7rem);
  font-weight: 520;
  letter-spacing: 0;
  line-height: 0.98;
}

.booking-page .booking-intro p:last-child {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(17, 21, 17, 0.66);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.55;
}

.booking-page .booking-checkout-form {
  display: grid;
  gap: 34px;
}

.booking-page .booking-step {
  display: grid;
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(17, 21, 17, 0.12);
}

.booking-page .booking-step-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2px;
}

.booking-page .booking-step-heading span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 21, 17, 0.16);
  border-radius: 50%;
  color: rgba(17, 21, 17, 0.62);
  font-size: 0.82rem;
  font-weight: 780;
}

.booking-page .booking-step-heading h2 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 760;
  line-height: 1.2;
}

.booking-page .field-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.booking-page label {
  gap: 8px;
  color: rgba(17, 21, 17, 0.76);
  font-size: 0.82rem;
  font-weight: 720;
}

.booking-page input,
.booking-page select,
.booking-page textarea {
  min-height: 52px;
  border: 1px solid rgba(17, 21, 17, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.86);
  color: #111511;
  font-size: 0.96rem;
}

.booking-page textarea {
  min-height: 126px;
}

.booking-page input:focus,
.booking-page select:focus,
.booking-page textarea:focus {
  border-color: rgba(17, 21, 17, 0.48);
  box-shadow: 0 0 0 3px rgba(17, 21, 17, 0.08);
}

.booking-page .booking-submit {
  min-height: 56px;
  width: 100%;
  border: 0;
  border-radius: 6px;
  background: #111511;
  color: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.booking-page .booking-submit:hover,
.booking-page .booking-submit:focus-visible {
  background: #244f38;
  transform: translateY(-1px);
}

.booking-page .booking-submit:disabled {
  cursor: default;
  opacity: 0.62;
  transform: none;
}

.booking-page .booking-privacy {
  margin: -14px 0 0;
  line-height: 1.45;
}

.booking-page .booking-summary-column {
  position: sticky;
  top: 106px;
}

.booking-page .booking-summary-card {
  border-left: 1px solid rgba(17, 21, 17, 0.1);
  padding-left: clamp(28px, 4vw, 54px);
}

.booking-page .booking-summary-image {
  margin: 0 0 26px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  background: #d7d5cc;
}

.booking-page .booking-summary-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.booking-page .booking-summary-body h2 {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.55rem, 2.2vw, 2.25rem);
  font-weight: 680;
  line-height: 1.08;
}

.booking-page .booking-summary-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 26px;
}

.booking-page .booking-summary-meta span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(17, 21, 17, 0.12);
  border-radius: 999px;
  padding: 0 11px;
  color: rgba(17, 21, 17, 0.66);
  font-size: 0.8rem;
  font-weight: 740;
}

.booking-page .booking-price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid rgba(17, 21, 17, 0.12);
  border-bottom: 1px solid rgba(17, 21, 17, 0.12);
}

.booking-page .booking-price-row span {
  color: rgba(17, 21, 17, 0.62);
  font-size: 0.88rem;
  font-weight: 760;
}

.booking-page .price {
  color: #111511;
  font-size: clamp(2.1rem, 4vw, 3.35rem);
  font-weight: 680;
  letter-spacing: 0;
}

.booking-page .summary-list {
  gap: 0;
  margin: 20px 0;
}

.booking-page .summary-line {
  padding: 14px 0;
  border-bottom: 1px solid rgba(17, 21, 17, 0.1);
}

.booking-page .summary-line span {
  color: rgba(17, 21, 17, 0.58);
}

.booking-page .summary-line strong {
  color: #111511;
  font-size: 0.92rem;
}

.booking-page .booking-summary-note {
  margin: 18px 0 0;
  line-height: 1.5;
}

@media (max-width: 980px) {
  .booking-page .booking-checkout {
    background: #fbfaf6;
  }

  .booking-page .booking-checkout-grid {
    grid-template-columns: 1fr;
  }

  .booking-page .booking-summary-column {
    position: static;
    order: -1;
  }

  .booking-page .booking-summary-card {
    border-left: 0;
    border-bottom: 1px solid rgba(17, 21, 17, 0.1);
    padding: 0 0 30px;
  }

  .booking-page .booking-summary-image {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 640px) {
  .booking-page .booking-shell {
    padding-inline: 16px;
  }

  .booking-page .field-grid {
    grid-template-columns: 1fr;
  }

  .booking-page .booking-intro h1 {
    font-size: clamp(2.55rem, 14vw, 4rem);
  }

  .booking-page .booking-price-row {
    align-items: start;
    flex-direction: column;
  }
}

@media (min-width: 941px) {
  body:not(.inner-page) .site-header.scrolled:not(.compact-ready) .nav-links {
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(126px, 1fr)) !important;
    gap: clamp(34px, 5.4vw, 74px) !important;
    align-self: start !important;
    justify-self: stretch !important;
    padding: 7px 0 0 !important;
    opacity: calc(0.38 + (var(--group-nav-opacity) * 0.62)) !important;
    transform: none !important;
    pointer-events: auto !important;
  }

  body:not(.inner-page) .site-header.scrolled:not(.compact-ready) .nav-group {
    display: grid !important;
    align-content: start !important;
    justify-items: start !important;
    gap: var(--pre-group-gap, 12px) !important;
  }

  body:not(.inner-page) .site-header.scrolled:not(.compact-ready) .nav-group strong {
    position: absolute !important;
    width: auto !important;
    height: auto !important;
    overflow: visible !important;
    color: rgba(255, 255, 255, 0.92) !important;
    opacity: var(--group-nav-opacity) !important;
    pointer-events: auto !important;
    transform: var(--header-label-transform, translateY(calc(var(--group-nav-y, 0px) * 0.25))) !important;
    text-shadow: 0 2px 18px rgba(0, 0, 0, var(--header-shadow-alpha)) !important;
  }

  body:not(.inner-page) .site-header.scrolled:not(.compact-ready) .nav-links a {
    min-height: auto !important;
    display: inline-flex !important;
    justify-content: flex-start !important;
    padding: 0 !important;
    color: var(--header-link-color, rgba(255, 255, 255, 0.62)) !important;
    font-size: clamp(0.9rem, 0.76vw, 0.98rem) !important;
    font-weight: 650 !important;
    line-height: 1.12 !important;
    text-shadow: var(--header-link-shadow, 0 2px 18px rgba(0, 0, 0, var(--header-shadow-alpha))) !important;
    transform: var(--header-link-transform, none) !important;
    animation: none !important;
    transition: none !important;
    will-change: transform, color !important;
  }

  body:not(.inner-page) .site-header .nav-floating-label {
    position: fixed;
    z-index: 1001;
    display: none;
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(0.94rem, 0.82vw, 1.06rem);
    font-weight: 760;
    line-height: 1.08;
    white-space: nowrap;
    text-shadow: 0 2px 18px rgba(0, 0, 0, var(--header-shadow-alpha));
    will-change: top, opacity;
  }

  body:not(.inner-page) .site-header.compact-ready .nav-links,
  body.inner-page .site-header .nav-links,
  body.inner-page .site-header.scrolled .nav-links {
    grid-column: 1 / -1 !important;
    grid-row: 1 !important;
    width: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(18px, 2.4vw, 34px) !important;
    justify-self: center !important;
    align-self: center !important;
    padding: 0 !important;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
  }

  body:not(.inner-page) .site-header.compact-ready .nav-group,
  body.inner-page .site-header .nav-group,
  body.inner-page .site-header.scrolled .nav-group {
    display: flex !important;
    align-items: center !important;
    gap: clamp(18px, 2.4vw, 34px) !important;
  }

  body:not(.inner-page) .site-header.compact-ready .nav-group strong,
  body.inner-page .site-header .nav-group strong,
  body.inner-page .site-header.scrolled .nav-group strong {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  body:not(.inner-page) .site-header.compact-ready .nav-links a,
  body.inner-page .site-header .nav-links a,
  body.inner-page .site-header.scrolled .nav-links a {
    min-height: 34px !important;
    color: rgba(17, 21, 17, 0.68) !important;
    font-size: clamp(0.92rem, 0.78vw, 1rem) !important;
    font-weight: 660 !important;
    line-height: 1 !important;
    text-shadow: none !important;
    transform: none !important;
    transition: color 160ms ease !important;
    will-change: auto !important;
  }

  body:not(.inner-page) .site-header .nav[style*="--header-nav-measuring"] .nav-links {
    transform: none !important;
  }

  body:not(.inner-page) .site-header .nav[style*="--header-nav-measuring"] .nav-links a {
    transform: none !important;
  }

  body:not(.inner-page) .site-header .nav[style*="--header-nav-measuring"] .nav-group strong {
    transform: none !important;
  }
}

@media (min-width: 941px) {
  body:not(.inner-page) .site-header.scrolled:not(.compact-ready) .nav-links {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(126px, 1fr));
    gap: clamp(34px, 5.4vw, 74px);
    align-self: start;
    justify-self: stretch;
    padding: 7px 0 0;
    opacity: calc(0.38 + (var(--group-nav-opacity) * 0.62));
    transform: none;
    pointer-events: auto;
  }

  body:not(.inner-page) .site-header.scrolled:not(.compact-ready) .nav-group {
    display: grid;
    align-content: start;
    justify-items: start;
    gap: var(--pre-group-gap, 12px);
  }

  body:not(.inner-page) .site-header.scrolled:not(.compact-ready) .nav-group strong {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    color: rgba(255, 255, 255, 0.92);
    opacity: var(--group-nav-opacity);
    pointer-events: auto;
    transform: translateY(calc(var(--group-nav-y, 0px) * 0.25));
    text-shadow: 0 2px 18px rgba(0, 0, 0, var(--header-shadow-alpha));
  }

  body:not(.inner-page) .site-header.scrolled:not(.compact-ready) .nav-links a {
    min-height: auto;
    display: inline-flex;
    justify-content: flex-start;
    padding: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: clamp(0.9rem, 0.76vw, 0.98rem);
    font-weight: 650;
    line-height: 1.12;
    text-shadow: 0 2px 18px rgba(0, 0, 0, var(--header-shadow-alpha));
    animation: none;
    transition: none;
    will-change: transform, color;
  }

  body:not(.inner-page) .site-header.compact-ready .nav-links,
  body.inner-page .site-header .nav-links,
  body.inner-page .site-header.scrolled .nav-links {
    grid-column: 1 / -1;
    grid-row: 1;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2.4vw, 34px);
    justify-self: center;
    align-self: center;
    padding: 0;
    opacity: 1;
    transform: none !important;
    pointer-events: auto;
  }

  body:not(.inner-page) .site-header.compact-ready .nav-group,
  body.inner-page .site-header .nav-group,
  body.inner-page .site-header.scrolled .nav-group {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.4vw, 34px);
  }

  body:not(.inner-page) .site-header.compact-ready .nav-group strong,
  body.inner-page .site-header .nav-group strong,
  body.inner-page .site-header.scrolled .nav-group strong {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
  }

  body:not(.inner-page) .site-header.compact-ready .nav-links a,
  body.inner-page .site-header .nav-links a,
  body.inner-page .site-header.scrolled .nav-links a {
    min-height: 34px;
    color: rgba(17, 21, 17, 0.68);
    font-size: clamp(0.92rem, 0.78vw, 1rem);
    font-weight: 660;
    line-height: 1;
    text-shadow: none;
    transform: none !important;
    transition: color 160ms ease;
    will-change: auto;
  }
}

@media (min-width: 941px) {
  .site-header.scrolled .nav-links,
  .site-header.compact-ready .nav-links,
  .site-header.compact-ready.scrolled .nav-links,
  .inner-page .site-header .nav-links,
  .inner-page .site-header.scrolled .nav-links {
    grid-column: 1 / -1;
    grid-row: 1;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2.4vw, 34px);
    justify-self: center;
    align-self: center;
    padding: 0;
    opacity: 1;
    transform: none !important;
    pointer-events: auto;
  }

  .site-header.scrolled .nav-group,
  .site-header.compact-ready .nav-group,
  .site-header.compact-ready.scrolled .nav-group,
  .inner-page .site-header .nav-group,
  .inner-page .site-header.scrolled .nav-group {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.4vw, 34px);
  }

  .site-header.scrolled .nav-group strong,
  .site-header.compact-ready .nav-group strong,
  .site-header.compact-ready.scrolled .nav-group strong,
  .inner-page .site-header .nav-group strong,
  .inner-page .site-header.scrolled .nav-group strong {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .site-header.scrolled .nav-links a,
  .site-header.compact-ready .nav-links a,
  .site-header.compact-ready.scrolled .nav-links a,
  .inner-page .site-header .nav-links a,
  .inner-page .site-header.scrolled .nav-links a {
    min-height: 34px;
    color: rgba(17, 21, 17, 0.68);
    font-size: clamp(0.92rem, 0.78vw, 1rem);
    font-weight: 660;
    line-height: 1;
    text-shadow: none;
    transform: none !important;
    transition: color 160ms ease;
    will-change: auto;
  }
}

.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;
}

.contact-page {
  background: #f8f7f3;
}

.faq-page {
  background: var(--paper);
}

.faq-page-shell {
  min-height: 100svh;
  padding-top: 76px;
  background: var(--paper);
  color: var(--ink);
}

.faq-layout {
  min-height: calc(100svh - 76px);
  display: grid;
  grid-template-columns: minmax(300px, 390px) minmax(0, 1fr);
}

.faq-sidebar {
  position: sticky;
  top: 76px;
  height: calc(100svh - 76px);
  display: grid;
  align-content: center;
  justify-items: center;
  padding: clamp(34px, 4.8vw, 70px) clamp(26px, 3.8vw, 54px);
  background: var(--paper);
  z-index: 2;
}

.faq-menu-control {
  position: relative;
  width: min(100%, 330px);
  gap: 12px;
  color: rgb(41, 41, 41);
  font-family: "vinila-variable", "Vinila", var(--font-sans);
  font-size: 0.8889rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-transform: none;
}

.faq-menu-label {
  color: rgba(17, 21, 17, 0.58);
  font-family: "vinila-variable", "Vinila", var(--font-sans);
  font-size: 0.8889rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
  text-transform: none;
}

.faq-menu-trigger {
  min-height: 58px;
  padding-inline: 20px;
  background: #111511;
  color: #fff;
}

.faq-selected {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.faq-category-list {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  max-height: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.faq-category-list button {
  min-height: 40px;
  justify-content: center;
  padding: 7px 14px;
  color: rgba(17, 21, 17, 0.76);
  font-family: "vinila-variable", "Vinila", var(--font-sans);
  font-size: 0.8889rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
  white-space: normal;
  scroll-snap-align: center;
  pointer-events: none;
  cursor: default;
  display: none;
  opacity: 0;
  transform: translateY(-4px);
}

.faq-category-list::-webkit-scrollbar {
  display: none;
}

.faq-category-list button:hover,
.faq-category-list button:focus-visible,
.faq-category-list button[aria-selected="true"] {
  background: transparent;
  color: rgb(41, 41, 41);
}

.faq-category-list button[aria-selected="true"] {
  font-weight: 500;
}

.faq-category-list button[data-wheel-position] {
  display: flex;
  animation: faqWheelItemIn 360ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.faq-category-list button[data-wheel-position="1"] {
  opacity: 0.9;
}

.faq-category-list button[data-wheel-position="2"] {
  opacity: 0.72;
}

.faq-category-list button[data-wheel-position="3"] {
  opacity: 0.54;
}

.faq-category-list button[data-wheel-position="4"] {
  opacity: 0.36;
}

.faq-category-list button[data-wheel-position="5"] {
  opacity: 0.24;
}

@keyframes faqWheelItemIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    transform: translateY(0);
  }
}

.faq-scroll-cursor {
  display: none;
}

@media (min-width: 861px) and (pointer: fine) {
  .faq-scroll-cursor {
    position: fixed;
    top: var(--faq-scroll-cursor-y, -120px);
    left: var(--faq-scroll-cursor-x, -120px);
    z-index: 1200;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    color: #111511;
    background: transparent;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -50%) scale(0.94);
    transition:
      opacity 160ms ease,
      visibility 160ms ease,
      transform 160ms ease;
  }

  .faq-scroll-mouse {
    position: relative;
    display: block;
    width: 26px;
    height: 36px;
    border: 1.5px solid currentColor;
    border-radius: 999px;
    background: transparent;
  }

  .faq-scroll-dot {
    position: absolute;
    left: 50%;
    top: 9px;
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
    transform: translateX(-50%);
    animation: faqScrollCursorDot 1600ms cubic-bezier(0.45, 0, 0.2, 1) infinite;
  }

  html.faq-scroll-cursor-active .faq-scroll-cursor {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
  }

  html.faq-scroll-cursor-active .faq-sidebar,
  html.faq-scroll-cursor-active .faq-menu-control,
  html.faq-scroll-cursor-active .faq-menu-trigger,
  html.faq-scroll-cursor-active .faq-category-list {
    cursor: none;
  }
}

@keyframes faqScrollCursorDot {
  0%,
  100% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 13px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-scroll-dot {
    animation: none;
  }
}

.faq-menu-control.is-open .faq-category-list {
  max-height: 204px;
  overflow: hidden;
  margin-top: 0;
  padding: 0;
  opacity: 1;
  transform: translateY(0) scaleY(1);
}

.faq-menu-control.is-open .faq-menu-trigger {
  border-radius: 999px;
}

.faq-content {
  min-height: calc(100svh - 76px);
  max-height: calc(100svh - 76px);
  overflow-y: auto;
  padding: clamp(40px, 6vw, 94px) clamp(28px, 7vw, 118px);
  scrollbar-width: thin;
  scrollbar-color: rgba(17, 21, 17, 0.24) transparent;
}

.faq-content > * {
  transform-origin: 50% 30%;
}

body.site-ready .faq-content.is-faq-refreshing .faq-item {
  animation: contactPanelIn 1150ms cubic-bezier(0.16, 1, 0.3, 1) var(--faq-delay, 0ms) both;
}

.faq-content::-webkit-scrollbar {
  width: 8px;
}

.faq-content::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(17, 21, 17, 0.24);
}

.faq-item {
  display: grid;
  gap: 0;
  padding-bottom: clamp(18px, 2.4vw, 28px);
  border-bottom: 1px solid rgba(17, 21, 17, 0.1);
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  filter: blur(10px);
  will-change: opacity, transform, filter;
}

.faq-item + .faq-item {
  margin-top: clamp(18px, 2.4vw, 28px);
}

.faq-question {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 42px 0 0;
  border: 0;
  background: transparent;
  color: rgb(41, 41, 41);
  font-family: "Pppangaia", var(--font-sans);
  font-size: clamp(1.35rem, 2vw, 2.05rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.faq-answer {
  max-width: 760px;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  color: rgb(41, 41, 41);
  font-family: "Vinila", var(--font-sans);
  font-size: 0.8889rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translate3d(0, -8px, 0);
  transition:
    max-height 620ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 360ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    margin-top 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-question::after {
  content: "+";
  position: absolute;
  top: 0.04em;
  right: 0;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #111511;
  color: #fff;
  font-family: "vinila-variable", "Vinila", var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  transition:
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    background 260ms ease;
}

@media (max-width: 1180px) {
  .faq-question {
    font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  }
}

.faq-question:hover::after,
.faq-question:focus-visible::after,
.faq-item.is-open .faq-question::after {
  background: #244f38;
}

.faq-question:focus-visible {
  outline: 0;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.12em;
}

.faq-item.is-open .faq-question::after {
  transform: rotate(45deg);
}

.faq-item.is-open .faq-answer {
  margin-top: clamp(14px, 1.8vw, 22px);
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.faq-answer p {
  margin: 0;
}

.faq-answer p + p {
  margin-top: 10px;
}

@media (max-width: 860px) {
  .faq-page-shell {
    padding-top: 76px;
  }

  .faq-layout {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .faq-sidebar {
    position: relative;
    top: auto;
    height: auto;
    align-content: start;
    padding: 28px 20px 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 21, 17, 0.11);
  }

  .faq-menu-control {
    width: 100%;
  }

  .faq-content {
    min-height: 58svh;
    max-height: none;
    overflow: visible;
    padding: 36px 20px 64px;
  }

  .faq-question {
    font-size: clamp(1.86rem, 8.8vw, 3rem);
  }
}

@font-face {
  font-family: "Pppangaia";
  src: url("https://cdn.prod.website-files.com/67dcf622fb3a4dad2507418e/683d881b6a090722b73118f7_PPPangaia-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Vinila";
  src: url("https://cdn.prod.website-files.com/67dcf622fb3a4dad2507418e/68c6eacb627d5f6be46b7c5c_Vinila.otf") format("opentype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "vinila-variable";
  src: url("https://cdn.prod.website-files.com/67dcf622fb3a4dad2507418e/68c6eacb627d5f6be46b7c5c_Vinila.otf") format("opentype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

.contact-split-page {
  min-height: 100svh;
  background: #f8f7f3;
}

.contact-split {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(520px, 1fr);
  background: #f8f7f3;
}

.contact-image-panel {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  background: #dfe5dd;
}

.contact-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-image-panel.contact-animate,
.contact-stagger {
  opacity: 0;
  transform: translate3d(0, 0, 0);
  filter: blur(10px);
  will-change: opacity, transform, filter;
}

.contact-image-panel.contact-animate {
  transform: scale(1.025);
}

body.site-ready .contact-image-panel.contact-animate {
  animation: contactImageIn 1500ms cubic-bezier(0.16, 1, 0.3, 1) 120ms both;
}

body.site-ready .contact-stagger {
  animation: contactPanelIn 1150ms cubic-bezier(0.16, 1, 0.3, 1) var(--contact-delay, 0ms) both;
}

@keyframes contactImageIn {
  from {
    opacity: 0;
    transform: scale(1.025);
    filter: blur(12px);
  }

  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@keyframes contactPanelIn {
  from {
    opacity: 0;
    transform: translate3d(0, 0, 0);
    filter: blur(10px);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

.contact-form-panel {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: clamp(112px, 10vw, 150px) clamp(40px, 6vw, 92px) clamp(52px, 5vw, 84px);
  font-family: "vinila-variable", "Vinila", var(--font-sans);
  letter-spacing: -0.02em;
}

.contact-form-wrap {
  width: min(100%, 560px);
  margin: 0 auto;
}

.contact-form-wrap h1 {
  margin: 0 0 12px;
  color: rgb(41, 41, 41);
  font-family: "Pppangaia", var(--font-sans);
  font-size: clamp(2.05rem, 2.95vw, 3rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.02em;
  white-space: normal;
}

.contact-intro {
  max-width: 520px;
  margin: 0 0 34px;
  color: rgb(41, 41, 41);
  opacity: 0.45;
  font-family: "vinila-variable", "Vinila", var(--font-sans);
  font-size: 0.8889rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.wild-contact-form {
  display: grid;
  gap: 18px;
}

.contact-field {
  display: grid;
  gap: 10px;
  color: rgb(41, 41, 41);
  font-family: "Vinila", var(--font-sans);
  font-size: 0.8889rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 0;
  border-radius: 5px;
  background: #f0ede8;
  color: rgb(41, 41, 41);
  min-height: 52px;
  padding: 0 14px;
  font-family: "vinila-variable", "Vinila", var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: normal;
  outline: none;
  box-shadow: none;
}

.contact-topic-menu {
  width: 100%;
}

.contact-topic-trigger {
  width: 100%;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 0;
  border-radius: 5px;
  padding: 0 14px;
  background: #f0ede8;
  color: rgb(41, 41, 41);
  font-family: "vinila-variable", "Vinila", var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: normal;
  text-align: left;
  cursor: pointer;
  outline: none;
  transition:
    background 260ms ease,
    box-shadow 260ms ease,
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-topic-trigger:hover,
.contact-topic-menu.is-open .contact-topic-trigger {
  background: #ebe6df;
}

.contact-topic-trigger:focus-visible,
.contact-topic-menu.is-open .contact-topic-trigger {
  box-shadow: 0 0 0 2px rgba(17, 21, 17, 0.16);
}

.contact-topic-trigger .is-placeholder {
  color: rgba(41, 41, 41, 0.52);
}

.contact-page .contact-topic-menu .contact-topic-options {
  position: relative;
  width: 100%;
  min-width: 100%;
  top: auto;
  left: auto;
  border-radius: 5px;
  max-height: 0;
  margin-top: 0;
  padding: 0 7px;
  background: #111511;
  overflow: hidden;
  transform-origin: top center;
  transform: translateY(-10px) scaleY(0.96);
  transition:
    max-height 420ms cubic-bezier(0.16, 1, 0.3, 1),
    margin-top 420ms cubic-bezier(0.16, 1, 0.3, 1),
    padding 420ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 260ms ease,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-page .contact-topic-menu.is-open .contact-topic-options {
  max-height: 204px;
  margin-top: 8px;
  padding: 7px;
  transform: translateY(0) scaleY(1);
}

.contact-page .contact-topic-options button {
  width: 100%;
  min-height: 40px;
  border-radius: 4px;
  padding: 8px 10px;
  color: #fff;
  font-family: "vinila-variable", "Vinila", var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: normal;
  text-align: left;
}

.contact-field select {
  appearance: none;
}

.contact-field textarea {
  min-height: 116px;
  padding-block: 16px;
  resize: vertical;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(17, 21, 17, 0.28);
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  box-shadow: 0 0 0 2px rgba(17, 21, 17, 0.16);
}

.wild-contact-submit {
  width: 100%;
  min-height: 58px;
  margin-top: 10px;
  border: 0;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 6px 0 20px;
  background: #111511;
  color: #fff;
  cursor: pointer;
}

.wild-contact-submit-label {
  font-family: "vinila-variable", "Vinila", var(--font-sans);
  font-size: 0.8889rem;
  font-weight: 400;
  letter-spacing: normal;
}

.wild-contact-submit-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff;
  color: #111511;
  font-size: 1.75rem;
  line-height: 1;
}

.contact-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 4px;
  color: #2b2b29;
  font-family: "vinila-variable", "Vinila", var(--font-sans);
  font-size: 0.6667rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.contact-consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin: 0;
  accent-color: #111511;
}

.contact-meta {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
}

.contact-meta-label {
  margin: 0 0 16px;
  color: rgba(17, 21, 17, 0.3);
  font-family: "Vinila", var(--font-sans);
  font-size: 0.7778rem;
  font-weight: 400;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
}

.contact-meta a {
  display: inline-block;
  color: #20201e;
  font-family: "Vinila", var(--font-sans);
  font-size: 0.7778rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.02em;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-meta p:not(.contact-meta-label) {
  margin: 10px 0 0;
  color: rgba(17, 21, 17, 0.42);
  font-family: "Vinila", var(--font-sans);
  font-size: 0.7778rem;
  font-weight: 400;
  line-height: 1.5;
}

.contact-meta .contact-meta-text {
  margin-top: 0;
  color: #20201e;
  font-weight: 520;
}

@media (max-width: 980px) {
  .contact-split {
    grid-template-columns: 1fr;
  }

  .contact-image-panel {
    position: relative;
    height: 46svh;
    min-height: 360px;
  }

  .contact-form-panel {
    min-height: auto;
    padding: 58px 24px 72px;
  }
}

@media (max-width: 760px) {
  .contact-form-wrap h1 {
    font-size: clamp(2.35rem, 12vw, 3.35rem);
    white-space: normal;
  }

  .contact-meta {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: start;
    column-gap: 22px;
    row-gap: 28px;
  }

  .contact-meta a {
    display: block;
    width: fit-content;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .contact-meta a + a {
    margin-top: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-image-panel.contact-animate,
  .contact-stagger {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }
}

* {
  box-sizing: border-box;
}

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

html.manifesto-snapping {
  scroll-behavior: auto !important;
  overscroll-behavior: contain;
}

html.manifesto-snapping body {
  overscroll-behavior: contain;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

html,
body {
  overflow-x: clip;
}


body.menu-open {
  overflow: hidden;
}

body.is-loading {
  overflow: hidden;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
  color: var(--ink);
  opacity: 1;
  transition:
    opacity 950ms cubic-bezier(0.33, 0, 0.16, 1),
    visibility 0s linear 950ms;
}

.preloader::before {
  content: none;
}

.loader-scene {
  width: min(210px, calc(100% - 64px));
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.loader-scene::before {
  content: none;
}

.loader-scene > :not(.loader-logo) {
  display: none !important;
}

.loader-logo {
  width: clamp(92px, 10vw, 128px);
  height: auto;
  aspect-ratio: auto;
  display: block;
  object-fit: contain;
  opacity: 1;
  transform: none;
  animation: none;
  filter: blur(0);
  transition: none;
}

.loader-brand-mark {
  display: none;
}

.loader-kicker,
.loader-copy {
  display: none;
}

.loader-kicker {
  font-size: clamp(2.2rem, 7vw, 5.4rem);
  line-height: 0.88;
}

.loader-copy {
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  font-size: 0.78rem;
}

.loader-route {
  display: none;
}

.route-line {
  width: 100%;
  height: 2px;
  display: block;
  background: linear-gradient(90deg, transparent, var(--sun), transparent);
  opacity: 0.86;
  transform-origin: left;
  animation: routeDraw 1300ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.route-line::after {
  content: "";
  width: 100%;
  height: 18px;
  display: block;
  margin-top: -8px;
  background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.18) 0 12px, transparent 12px 26px);
  mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
}

.loader-jeep {
  width: 96px;
  height: 54px;
  position: absolute;
  left: -8px;
  top: 7px;
  fill: var(--paper);
  filter: drop-shadow(0 15px 18px rgba(0, 0, 0, 0.3));
  animation: jeepDrive 1450ms cubic-bezier(0.65, 0, 0.35, 1) both;
}

body.loader-done .preloader {
  opacity: 0;
  visibility: hidden;
  transform: none;
  pointer-events: none;
}

body.loader-done .preloader::before {
  animation: none;
}

body.is-loading > header,
body.is-loading > main,
body.is-loading > footer {
  opacity: 0;
  transform: translateY(18px);
}

body.site-ready > header,
body.site-ready > main,
body.site-ready > footer {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

html.skip-loader .preloader {
  display: none;
}

html.skip-loader body.is-loading {
  overflow: auto;
}

html.skip-loader body.is-loading > header,
html.skip-loader body.is-loading > main,
html.skip-loader body.is-loading > footer {
  opacity: 1;
  transform: none;
}

@keyframes loaderFrame {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes loaderLogoIn {
  from {
    opacity: 0;
    transform: scale(0.94);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes loaderLogoOut {
  0% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }

  100% {
    opacity: 0;
    transform: scale(0.985);
    filter: blur(2px);
  }
}

@keyframes loaderBadge {
  from {
    opacity: 0;
    transform: translateY(18px) rotate(-10deg) scale(0.85);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotate(-5deg) scale(1);
  }
}

@keyframes routeDraw {
  from {
    transform: scaleX(0);
    opacity: 0;
  }

  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes jeepDrive {
  0% {
    transform: translateX(0) translateY(3px) rotate(-3deg);
  }

  60% {
    transform: translateX(calc(min(380px, 82vw) - 98px)) translateY(-3px) rotate(2deg);
  }

  100% {
    transform: translateX(calc(min(380px, 82vw) - 98px)) translateY(0) rotate(0);
  }
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  transition: background 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: auto;
  bottom: 0;
  width: calc(var(--read-progress, 0) * 100%);
  height: 2px;
  background: linear-gradient(90deg, var(--sun), var(--clay));
  transform-origin: left;
}

.site-header.scrolled {
  background: rgba(251, 247, 239, 0.94);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(23, 33, 28, 0.08);
  backdrop-filter: blur(16px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}

.site-header.scrolled .nav,
.inner-page .nav {
  color: var(--ink);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border: 2px solid currentColor;
  display: grid;
  place-items: center;
  transform: rotate(-5deg);
}

.brand-mark span {
  font-size: 0.72rem;
  font-weight: 900;
  transform: rotate(5deg);
}

.nav-links {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  position: relative;
  z-index: 4;
  padding: 9px 13px;
  border-radius: var(--radius);
  color: inherit;
  font-weight: 750;
  font-size: 0.92rem;
  transition: background 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255, 255, 255, 0.2);
}

.site-header.scrolled .nav-links a:hover,
.site-header.scrolled .nav-links a.active,
.inner-page .nav-links a:hover,
.inner-page .nav-links a.active {
  background: rgba(36, 79, 56, 0.1);
}

.nav-cta,
.button {
  border: 0;
  min-height: 44px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: var(--radius);
  background: var(--sun);
  color: #1f1a12;
  font-weight: 850;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(23, 33, 28, 0.18);
}

.button.dark {
  background: var(--fern);
  color: var(--white);
}

.button.ghost {
  background: transparent;
  color: currentColor;
  border: 1px solid currentColor;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-button span {
  width: 19px;
  height: 2px;
  display: block;
  margin: 4px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .menu-button span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-open .menu-button span:nth-child(2) {
  opacity: 0;
}

.menu-open .menu-button span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  min-height: 96vh;
  position: relative;
  display: flex;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero.compact {
  min-height: 58vh;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(12, 24, 17, 0.86), rgba(12, 24, 17, 0.42) 45%, rgba(12, 24, 17, 0.18)),
    linear-gradient(0deg, rgba(12, 24, 17, 0.9), transparent 42%),
    url("assets/optimized/bg-rikillagaskada.jpg") center / cover;
  transform: translateY(calc(var(--scroll, 0) * 0.12px)) scale(1.04);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 92px;
  z-index: -1;
  background: linear-gradient(0deg, var(--paper), transparent);
}

.hero-content {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 130px 0 62px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--sun);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.kicker::before {
  content: "";
  width: 36px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(3.25rem, 7vw, 7.2rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
  margin-bottom: 18px;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.14;
}

.lead {
  max-width: 700px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: rgba(255, 255, 255, 0.84);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-strip {
  width: min(1180px, calc(100% - 32px));
  margin: -34px auto 0;
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.strip-item {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.strip-item:last-child {
  border-right: 0;
}

.strip-item strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
}

.strip-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 112px 0;
}

.section.tight {
  padding: 72px 0;
}

.band {
  background: var(--cream);
}

.dark-band {
  background: var(--ink);
  color: var(--white);
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.55fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 42px;
}

.section-head p,
.muted {
  color: var(--muted);
}

.dark-band .section-head p,
.dark-band .muted {
  color: rgba(255, 255, 255, 0.68);
}

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

.route-card,
.blog-card,
.team-card,
.value-card,
.date-card,
.contact-card,
.form-panel,
.story-panel,
.quote-panel {
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}

.route-card {
  min-height: 410px;
  position: relative;
  display: flex;
  align-items: end;
  color: var(--white);
  background:
    linear-gradient(0deg, rgba(12, 24, 17, 0.85), rgba(12, 24, 17, 0.08)),
    url("assets/optimized/bg-rikillagaskada.jpg") center / cover;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.route-card:nth-child(2) {
  background-position: 72% center;
}

.route-card:nth-child(3) {
  background-position: 38% center;
}

.route-card:nth-child(4) {
  background-position: 82% center;
}

.route-card:hover,
.blog-card:hover,
.date-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.route-content {
  padding: 24px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  color: inherit;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tag.dark {
  color: var(--fern);
  border-color: rgba(36, 79, 56, 0.3);
  background: rgba(36, 79, 56, 0.08);
}

.route-meta,
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 750;
  font-size: 0.9rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 54px;
  align-items: center;
}

.image-panel {
  min-height: 540px;
  border-radius: var(--radius);
  background:
    linear-gradient(0deg, rgba(23, 33, 28, 0.25), rgba(23, 33, 28, 0)),
    url("assets/optimized/bg-rikillagaskada.jpg") center / cover;
  box-shadow: var(--shadow);
}

.feature-list {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.feature {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 15px;
  align-items: start;
}

.icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--fern);
  color: var(--white);
  font-weight: 900;
}

.journal-strip {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.8fr;
  gap: 18px;
}

.blog-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.blog-card.featured {
  min-height: 430px;
}

.blog-image {
  min-height: 165px;
  background:
    linear-gradient(0deg, rgba(23, 33, 28, 0.26), rgba(23, 33, 28, 0)),
    url("assets/optimized/bg-rikillagaskada.jpg") center / cover;
}

.blog-card.featured .blog-image {
  min-height: 260px;
}

.blog-body,
.team-card,
.value-card,
.date-card,
.contact-card,
.form-panel,
.story-panel,
.quote-panel {
  padding: 24px;
}

.blog-card .post-meta {
  color: var(--muted);
  margin-top: auto;
}

.cta-band {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(23, 33, 28, 0.96), rgba(36, 79, 56, 0.82)),
    url("assets/optimized/bg-rikillagaskada.jpg") center / cover;
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) auto;
  gap: 26px;
  align-items: center;
}

.page-intro {
  max-width: 760px;
}

.booking-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 28px;
  align-items: start;
}

form {
  display: grid;
  gap: 18px;
}

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

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(23, 33, 28, 0.18);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: #fffdf8;
  color: var(--ink);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--fern);
  box-shadow: 0 0 0 4px rgba(36, 79, 56, 0.12);
}

.summary-card {
  position: sticky;
  top: 100px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.summary-list {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding-bottom: 10px;
}

.summary-line span {
  color: rgba(255, 255, 255, 0.68);
}

.price {
  display: block;
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
}

.calendar-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter-btn {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(23, 33, 28, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 850;
  cursor: pointer;
}

.filter-btn.active {
  background: var(--fern);
  color: var(--white);
}

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

.date-card {
  transition: transform 220ms ease, box-shadow 220ms ease, opacity 180ms ease;
}

.date-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 14px;
  margin-bottom: 18px;
}

.date-badge {
  min-width: 68px;
  padding: 10px;
  border-radius: var(--radius);
  background: var(--cream);
  text-align: center;
  font-weight: 900;
}

.date-badge small {
  display: block;
  color: var(--clay);
  text-transform: uppercase;
  font-size: 0.7rem;
}

.hidden-date {
  display: none;
}

.story-panel {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 26px;
  align-items: center;
}

.story-photo {
  min-height: 330px;
  border-radius: var(--radius);
  background: url("assets/optimized/bg-rikillagaskada.jpg") center / cover;
}

.timeline {
  display: grid;
  gap: 18px;
  counter-reset: step;
}

.timeline-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
}

.timeline-item::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--clay);
  color: var(--white);
  font-weight: 900;
}

.team-card,
.value-card,
.contact-card,
.quote-panel {
  background: var(--white);
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: var(--fern);
  color: var(--white);
  font-weight: 900;
  font-size: 1.2rem;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-row {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
}

.map-panel {
  min-height: 430px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(36, 79, 56, 0.9), rgba(47, 111, 130, 0.78)),
    url("assets/optimized/bg-rikillagaskada.jpg") center / cover;
  color: var(--white);
  padding: 28px;
  display: flex;
  align-items: end;
}

.footer {
  padding: 54px 0 34px;
  background: #111a16;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 0.5fr);
  gap: 30px;
}

.footer a,
.footer p {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  margin-top: 36px;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.56);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 650ms ease, transform 650ms ease;
  transition-delay: var(--delay, 0ms);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.float {
  animation: float 5.5s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

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

  .preloader {
    transition-duration: 220ms !important;
  }
}

@media (max-width: 940px) {
  .menu-button {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 76px 16px auto;
    display: grid;
    gap: 6px;
    padding: 14px;
    border-radius: var(--radius);
    background: rgba(251, 247, 239, 0.98);
    color: var(--ink);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-open .nav-links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-cta {
    display: none;
  }

  .hero-strip,
  .route-grid,
  .blog-grid,
  .team-grid,
  .values-grid,
  .date-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-head,
  .split,
  .booking-layout,
  .contact-layout,
  .story-panel,
  .cta-inner,
  .journal-strip {
    grid-template-columns: 1fr;
  }

  .summary-card {
    position: static;
  }
}

@media (max-width: 680px) {
  .loader-brand-mark {
    width: 72px;
    height: 72px;
    border-radius: 14px;
  }

  .nav {
    width: min(100% - 24px, 1180px);
  }

  .brand span:last-child {
    max-width: 140px;
    line-height: 1.05;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    width: min(100% - 24px, 1180px);
    padding-bottom: 48px;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.7rem);
  }

  .section {
    padding: 78px 0;
  }

  .hero-strip,
  .route-grid,
  .blog-grid,
  .team-grid,
  .values-grid,
  .date-grid,
  .footer-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .strip-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .strip-item:last-child {
    border-bottom: 0;
  }

  .route-card,
  .image-panel {
    min-height: 360px;
  }

  .footer-bottom {
    display: grid;
  }
}

/* Cleaner premium header and transparent hero-title treatment inspired by the reference. */
:root {
  --font-display: var(--font-sans);
  --font-body: var(--font-sans);
}

body {
  font-family: var(--font-body);
  letter-spacing: 0;
}

.site-header {
  top: 14px;
  left: 0;
  right: 0;
  inset: 14px 0 auto;
  padding: 0 16px;
}

.nav {
  min-height: 58px;
  width: min(1120px, 100%);
  padding: 0 10px 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(12, 18, 15, 0.26);
  color: var(--white);
  backdrop-filter: blur(22px) saturate(1.25);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.16);
}

.site-header.scrolled .nav,
.inner-page .nav {
  border-color: rgba(23, 33, 28, 0.1);
  background: rgba(251, 247, 239, 0.78);
  color: var(--ink);
}

.site-header.scrolled {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.brand {
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 850;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-width: 1.5px;
  border-radius: 50%;
  transform: none;
}

.brand-mark span {
  font-size: 0.64rem;
  transform: none;
}

.nav-links {
  gap: 0;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-links a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255, 255, 255, 0.18);
}

.site-header.scrolled .nav-links,
.inner-page .nav-links {
  background: rgba(23, 33, 28, 0.06);
}

.site-header.scrolled .nav-links a:hover,
.site-header.scrolled .nav-links a.active,
.inner-page .nav-links a:hover,
.inner-page .nav-links a.active {
  background: rgba(23, 33, 28, 0.1);
}

.nav-cta {
  min-height: 40px;
  padding-inline: 18px;
  background: rgba(251, 247, 239, 0.92);
  color: #101511;
  box-shadow: none;
}

.site-header.scrolled .nav-cta,
.inner-page .nav-cta {
  background: var(--ink);
  color: var(--white);
}

.hero {
  align-items: center;
}

.hero-content {
  text-align: center;
  display: grid;
  justify-items: center;
  padding-top: 152px;
  padding-bottom: 112px;
}

.hero .kicker {
  color: rgba(255, 255, 255, 0.78);
}

.hero .kicker::before {
  display: none;
}

.hero-title {
  max-width: 1160px;
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: clamp(4.4rem, 12vw, 12.6rem);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: 0;
}

.hero-title span {
  display: block;
}

.hero-title span:first-child {
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.hero-title span:last-child {
  color: transparent;
  -webkit-text-stroke: clamp(1px, 0.12vw, 2px) rgba(255, 255, 255, 0.82);
  text-stroke: clamp(1px, 0.12vw, 2px) rgba(255, 255, 255, 0.82);
}

.hero-subtitle {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.12rem, 2vw, 1.6rem);
  font-weight: 850;
}

.hero .lead {
  max-width: 760px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.78);
}

.hero-actions {
  justify-content: center;
}

.hero-photo-stack {
  opacity: 0.52;
  mix-blend-mode: screen;
}

.stack-photo {
  border-radius: 32px;
  filter: saturate(0.95) contrast(1.04);
}

@supports not (-webkit-text-stroke: 1px white) {
  .hero-title span:last-child {
    color: rgba(255, 255, 255, 0.16);
  }
}

@media (max-width: 940px) {
  .site-header {
    padding: 0 12px;
  }

  .nav {
    width: 100%;
    padding-inline: 12px;
  }

  .nav-links {
    border-radius: 22px;
    background: rgba(251, 247, 239, 0.98);
  }
}

@media (max-width: 680px) {
  .site-header {
    top: 10px;
    inset: 10px 0 auto;
  }

  .brand span:last-child {
    max-width: none;
  }

  .hero-content {
    text-align: left;
    justify-items: start;
    padding-top: 128px;
  }

  .hero-title {
    font-size: clamp(4.1rem, 19vw, 6.5rem);
  }

  .hero-actions {
    justify-content: start;
  }
}

/* Minimal reference-style pass: transparent header, single cinematic hero, quieter sections. */
.site-header {
  inset: 0 0 auto;
  padding: 22px 28px 0;
}

.nav,
.site-header.scrolled .nav,
.inner-page .nav {
  width: min(1320px, 100%);
  min-height: 54px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--white);
  box-shadow: none;
  backdrop-filter: none;
}

.site-header.scrolled .nav {
  color: var(--white);
}

.inner-page .site-header.scrolled .nav,
.inner-page .nav {
  color: var(--white);
}

.brand {
  font-size: 0.88rem;
  font-weight: 760;
  letter-spacing: 0;
}

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border-color: currentColor;
  opacity: 0.9;
}

.nav-links,
.site-header.scrolled .nav-links,
.inner-page .nav-links {
  gap: 22px;
  padding: 0;
  background: transparent;
}

.nav-links a {
  min-height: auto;
  padding: 0;
  border-radius: 0;
  font-size: 0.78rem;
  font-weight: 720;
  color: currentColor;
  opacity: 0.78;
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.active,
.site-header.scrolled .nav-links a:hover,
.site-header.scrolled .nav-links a.active,
.inner-page .nav-links a:hover,
.inner-page .nav-links a.active {
  background: transparent;
  opacity: 1;
  transform: translateY(-1px);
}

.nav-cta,
.site-header.scrolled .nav-cta,
.inner-page .nav-cta {
  min-height: 36px;
  padding-inline: 15px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  box-shadow: none;
  font-size: 0.78rem;
}

.hero {
  min-height: 100svh;
}

.hero::before {
  background:
    linear-gradient(180deg, rgba(5, 7, 6, 0.58), rgba(5, 7, 6, 0.16) 36%, rgba(5, 7, 6, 0.66) 100%),
    var(--img-rikillagaskada) center / cover;
  filter: saturate(0.96) contrast(1.02);
}

.hero-content {
  min-height: 100svh;
  width: min(1320px, calc(100% - 56px));
  padding: 112px 0 74px;
  display: grid;
  grid-template-rows: 1fr auto auto auto auto 0.6fr;
  align-content: center;
  text-align: center;
  justify-items: center;
}

.hero .kicker {
  align-self: end;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  font-weight: 760;
  text-transform: none;
}

.hero-title {
  max-width: 1180px;
  margin: 0;
  font-size: clamp(4.4rem, 13.5vw, 14.8rem);
  font-weight: 860;
  line-height: 0.78;
}

.hero-title span:first-child {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: none;
}

.hero-title span:last-child {
  color: rgba(255, 255, 255, 0.08);
  -webkit-text-stroke: clamp(1px, 0.105vw, 2px) rgba(255, 255, 255, 0.78);
}

.hero-subtitle {
  margin: 24px 0 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  font-weight: 720;
}

.hero .lead {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.98rem, 1.4vw, 1.16rem);
}

.hero-actions {
  margin-top: 26px;
}

.hero-photo-stack {
  display: none;
}

.hero-strip {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.strip-item {
  padding: 30px 22px;
  background: transparent;
  border-color: rgba(23, 33, 28, 0.1);
}

.strip-item strong {
  font-size: 1.35rem;
  font-weight: 760;
}

.section {
  padding: 118px 0;
}

.section-head {
  margin-bottom: 54px;
}

.section-head p,
.muted {
  font-size: 0.98rem;
}

.route-card,
.blog-card,
.team-card,
.value-card,
.date-card,
.contact-card,
.form-panel,
.story-panel,
.quote-panel,
.photo-tile,
.cinema-stage,
.image-panel,
.map-panel {
  border-radius: 10px;
}

.route-grid,
.blog-grid,
.team-grid,
.values-grid,
.date-grid {
  gap: 14px;
}

.route-card:hover,
.blog-card:hover,
.date-card:hover {
  transform: translateY(-6px);
}

.button {
  min-height: 44px;
  padding-inline: 18px;
  border-radius: 999px;
}

.button.ghost {
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.54);
}

@media (max-width: 940px) {
  .site-header {
    padding: 14px 16px 0;
  }

  .nav-links {
    gap: 6px;
    padding: 14px;
    border-radius: 10px;
    background: rgba(251, 247, 239, 0.98);
    color: var(--ink);
  }
}

@media (max-width: 680px) {
  .hero-content {
    width: min(100% - 28px, 1180px);
    text-align: left;
    justify-items: start;
    grid-template-rows: 1fr auto auto auto auto 0.3fr;
  }

  .hero-title {
    font-size: clamp(4rem, 18vw, 6.7rem);
  }

  .hero .lead {
    margin-inline: 0;
  }

  .hero-strip {
    width: min(100% - 28px, 1180px);
  }
}

/* Screenshot-matched hero/header composition. */
.site-header {
  z-index: 60;
  padding: 18px 16px 0;
}

.nav,
.site-header.scrolled .nav {
  width: min(900px, 64vw);
  margin: 0 auto 0 0;
  min-height: 128px;
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: start;
  column-gap: 48px;
  color: rgba(255, 255, 255, 0.86);
}

.brand {
  align-items: start;
  gap: 0;
  font-size: clamp(1.35rem, 2.1vw, 1.95rem);
  font-weight: 520;
  line-height: 1;
}

.brand-mark {
  display: none;
}

.nav-links {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(110px, 1fr));
  gap: clamp(24px, 5vw, 72px);
  padding: 6px 0 0;
  background: transparent;
}

.nav-group {
  display: grid;
  gap: 13px;
}

.nav-group strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 720;
}

.nav-links a {
  justify-self: start;
  min-height: auto;
  padding: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.84rem;
  font-weight: 520;
  line-height: 1.1;
}

.nav-links a:hover,
.nav-links a.active {
  color: rgba(255, 255, 255, 0.9);
  opacity: 1;
  transform: none;
}

.hero {
  min-height: 100vh;
  overflow: hidden;
  background: #151914;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(10, 14, 11, 0.3), rgba(10, 14, 11, 0.08) 42%, rgba(10, 14, 11, 0.18)),
    linear-gradient(0deg, rgba(10, 14, 11, 0.24), transparent 42%),
    var(--img-rikillagaskada) center / cover;
  filter: saturate(1.06) contrast(0.98) brightness(1.1);
}

.hero::after {
  height: 160px;
  background: linear-gradient(0deg, rgba(251, 247, 239, 0.95), transparent);
}

.hero-content {
  width: min(1180px, calc(100% - 48px));
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 0 28vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}

.hero-title {
  max-width: 610px;
  font-size: clamp(3.2rem, 5.2vw, 5.7rem);
  font-weight: 420;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-title span:first-child,
.hero-title span:last-child {
  color: rgba(255, 255, 255, 0.94);
  -webkit-text-stroke: 0;
  text-shadow: none;
}

.hero-route-card {
  position: absolute;
  top: 2px;
  right: 3px;
  z-index: 70;
  width: min(468px, calc(100% - 32px));
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.98);
  color: #050505;
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.14);
  overflow: hidden;
}

.route-card-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.route-card-mark {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #050505;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
}

.route-card-order {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background: #050505;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 620;
}

.route-card-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 20px 12px 22px;
}

.route-card-label {
  margin-bottom: 8px;
  color: #050505;
  font-size: 1.28rem;
  font-weight: 520;
  line-height: 1.1;
}

.route-card-copy {
  max-width: 390px;
  margin: 0;
  color: rgba(5, 5, 5, 0.62);
  font-size: 0.88rem;
  line-height: 1.45;
}

.route-card-actions {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.route-card-actions a {
  color: #050505;
  font-size: 0.9rem;
  font-weight: 560;
}

.hero-strip {
  margin-top: 0;
}

@media (max-width: 1080px) {
  .nav,
  .site-header.scrolled .nav {
    width: min(620px, 58vw);
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .nav-links {
    gap: 24px;
  }
}

@media (max-width: 940px) {
  .site-header {
    padding: 12px 14px 0;
  }

  .nav,
  .site-header.scrolled .nav {
    width: calc(100% - 0px);
    min-height: 54px;
    display: flex;
    align-items: center;
    color: var(--white);
  }

  .brand {
    font-size: 1.2rem;
  }

  .nav-links {
    position: fixed;
    inset: 74px 14px auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.98);
    color: #050505;
  }

  .nav-group strong,
  .nav-links a {
    color: #050505;
  }

  .hero-route-card {
    top: auto;
    right: 14px;
    bottom: 18px;
  }

  .hero-content {
    align-items: center;
    padding-bottom: 24vh;
  }
}

@media (max-width: 680px) {
  .hero-content {
    width: min(100% - 28px, 1180px);
    padding-bottom: 310px;
  }

  .hero-title {
    font-size: clamp(3.2rem, 16vw, 5.1rem);
  }

  .hero-route-card {
    left: 14px;
    right: 14px;
    width: auto;
  }

  .route-card-copy {
    font-size: 0.82rem;
  }
}

/* Premium travel-story redesign using the Ceylon Backroads image library. */
:root {
  --img-rikillagaskada: url("assets/optimized/home-hero-rikillagaskada-fast.jpg");
  --img-rikillagaskada-alt: url("assets/optimized/bg-rikillagaskada-alt.jpg");
  --img-kalpitiya: url("assets/optimized/bg-kalpitiya.jpg");
  --img-kalpitiya-alt: url("assets/optimized/bg-kalpitiya-alt.jpg");
  --img-thoppigala: url("assets/optimized/bg-thoppigala.jpg");
  --img-wasgamuwa: url("assets/optimized/bg-wasgamuwa.jpg");
  --img-wasgamuwa-alt: url("assets/optimized/bg-wasgamuwa-alt.jpg");
  --img-devils: url("assets/optimized/route-devils-hero.jpg");
  --img-devils-alt: url("assets/optimized/route-gallery-devils-road.jpg");
  --img-kanthale: url("assets/optimized/bg-kanthale.jpg");
  --img-rathkale: url("assets/optimized/bg-rathkale.jpg");
}

body {
  background: #0c120f;
  text-rendering: geometricPrecision;
}

.section:not(.dark-band):not(.cta-band) {
  background: var(--paper);
}

.site-header {
  mix-blend-mode: normal;
}

.site-header.scrolled {
  background: rgba(251, 247, 239, 0.86);
  border-bottom: 1px solid rgba(23, 33, 28, 0.08);
}

.brand-mark,
.button,
.nav-cta,
.filter-btn,
input,
select,
textarea,
.summary-card,
.icon,
.date-badge,
.map-panel,
.route-card,
.blog-card,
.team-card,
.value-card,
.date-card,
.contact-card,
.form-panel,
.story-panel,
.quote-panel,
.image-panel {
  border-radius: 18px;
}

.button,
.nav-cta {
  border-radius: 999px;
  min-height: 48px;
  padding-inline: 22px;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-3px) scale(1.02);
}

.hero {
  min-height: 100vh;
  align-items: center;
  background: #0c120f;
}

.hero.compact {
  min-height: 68vh;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(7, 10, 8, 0.88), rgba(7, 10, 8, 0.34) 46%, rgba(7, 10, 8, 0.72)),
    linear-gradient(0deg, rgba(7, 10, 8, 0.94), transparent 48%),
    var(--img-rikillagaskada) center / cover;
  transform: translateY(calc(var(--scroll, 0) * 0.1px)) scale(calc(1.04 + (var(--scroll, 0) * 0.000035)));
  filter: saturate(1.04) contrast(1.04);
}

.booking-page .hero::before {
  background:
    linear-gradient(90deg, rgba(7, 10, 8, 0.86), rgba(7, 10, 8, 0.26) 48%, rgba(7, 10, 8, 0.76)),
    linear-gradient(0deg, rgba(7, 10, 8, 0.9), transparent 50%),
    var(--img-devils) center / cover;
}

.calendar-page .hero::before {
  background:
    linear-gradient(90deg, rgba(7, 10, 8, 0.86), rgba(7, 10, 8, 0.26) 48%, rgba(7, 10, 8, 0.76)),
    linear-gradient(0deg, rgba(7, 10, 8, 0.9), transparent 50%),
    var(--img-kanthale) center / cover;
}

.blog-page .hero::before {
  background:
    linear-gradient(90deg, rgba(7, 10, 8, 0.86), rgba(7, 10, 8, 0.26) 48%, rgba(7, 10, 8, 0.76)),
    linear-gradient(0deg, rgba(7, 10, 8, 0.9), transparent 50%),
    var(--img-wasgamuwa-alt) center / cover;
}

.about-page .hero::before {
  background:
    linear-gradient(90deg, rgba(7, 10, 8, 0.86), rgba(7, 10, 8, 0.26) 48%, rgba(7, 10, 8, 0.76)),
    linear-gradient(0deg, rgba(7, 10, 8, 0.9), transparent 50%),
    var(--img-rathkale) center / cover;
}

.contact-page .hero::before {
  background:
    linear-gradient(90deg, rgba(7, 10, 8, 0.86), rgba(7, 10, 8, 0.26) 48%, rgba(7, 10, 8, 0.76)),
    linear-gradient(0deg, rgba(7, 10, 8, 0.9), transparent 50%),
    var(--img-kalpitiya-alt) center / cover;
}

.hero::after {
  background: linear-gradient(0deg, var(--paper), transparent);
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 142px 0 92px;
}

h1 {
  max-width: 1040px;
  font-size: clamp(4.2rem, 10vw, 10.6rem);
  line-height: 0.82;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 5.8rem);
  line-height: 0.9;
}

.lead {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.82);
}

.hero-photo-stack {
  position: absolute;
  inset: auto max(20px, calc((100vw - 1180px) / 2)) 9vh auto;
  width: min(42vw, 520px);
  height: min(56vh, 620px);
  z-index: 2;
  pointer-events: none;
  transform: translate3d(calc(var(--pointer-x, 0) * -10px), calc(var(--pointer-y, 0) * -10px), 0);
  transition: transform 240ms ease-out;
}

.stack-photo {
  position: absolute;
  width: 52%;
  height: 42%;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
  animation: stackFloat 7s ease-in-out infinite;
}

.stack-one {
  right: 0;
  top: 0;
  transform: rotate(5deg);
}

.stack-two {
  left: 0;
  top: 31%;
  transform: rotate(-8deg);
  animation-delay: -1.8s;
}

.stack-three {
  right: 12%;
  bottom: 0;
  transform: rotate(2deg);
  animation-delay: -3.1s;
}

@keyframes stackFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -16px;
  }
}

.hero-strip {
  margin-top: -58px;
  border-radius: 24px;
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.strip-item {
  background: rgba(255, 255, 255, 0.92);
}

.visual-manifest {
  padding-top: 132px;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: 56px;
  align-items: center;
}

.manifesto-copy {
  position: sticky;
  top: 116px;
}

.manifesto-photos {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 16px;
  align-items: end;
}

.photo-tile {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  min-height: 290px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.cinema-stage {
  position: relative;
}

.photo-tile.tall {
  min-height: 640px;
  grid-row: span 2;
}

.photo-tile img,
.cinema-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1), filter 900ms ease;
}

.photo-tile:hover img,
.cinema-stage:hover img {
  transform: scale(1.12);
  filter: saturate(1.08);
}

.photo-tile figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(251, 247, 239, 0.92);
  color: var(--ink);
  font-weight: 900;
  font-size: 0.82rem;
}

.route-card {
  border-radius: 30px;
  min-height: 470px;
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 500ms ease, filter 500ms ease;
}

.route-card:nth-child(1) {
  background:
    linear-gradient(0deg, rgba(7, 10, 8, 0.82), rgba(7, 10, 8, 0.06)),
    var(--img-devils) center / cover;
}

.route-card:nth-child(2) {
  background:
    linear-gradient(0deg, rgba(7, 10, 8, 0.82), rgba(7, 10, 8, 0.06)),
    var(--img-wasgamuwa) center / cover;
}

.route-card:nth-child(3) {
  background:
    linear-gradient(0deg, rgba(7, 10, 8, 0.82), rgba(7, 10, 8, 0.06)),
    var(--img-kalpitiya) center / cover;
}

.route-card:hover,
.blog-card:hover,
.date-card:hover {
  transform: translateY(-12px) scale(1.015);
}

.route-cinema {
  background:
    radial-gradient(circle at 72% 20%, rgba(226, 173, 63, 0.16), transparent 0 30%),
    #0c120f;
}

.cinema-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  gap: 56px;
  align-items: center;
}

.cinema-stage {
  min-height: 760px;
  overflow: hidden;
  border-radius: 36px;
  box-shadow: 0 40px 140px rgba(0, 0, 0, 0.4);
}

.cinema-copy {
  position: sticky;
  top: 112px;
}

.cinema-points {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.cinema-points article {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.cinema-points span {
  color: var(--sun);
  font-weight: 900;
}

.cinema-points h3,
.cinema-points p {
  grid-column: 2;
}

.cinema-points p {
  color: rgba(255, 255, 255, 0.66);
}

.image-panel {
  border-radius: 34px;
  background:
    linear-gradient(0deg, rgba(23, 33, 28, 0.25), rgba(23, 33, 28, 0)),
    var(--img-devils-alt) center / cover;
}

.blog-image {
  background:
    linear-gradient(0deg, rgba(23, 33, 28, 0.26), rgba(23, 33, 28, 0)),
    var(--img-kanthale) center / cover;
}

.blog-card:nth-child(2) .blog-image,
.journal-strip .blog-card:nth-child(2) .blog-image {
  background:
    linear-gradient(0deg, rgba(23, 33, 28, 0.26), rgba(23, 33, 28, 0)),
    var(--img-devils) center / cover;
}

.blog-card:nth-child(3) .blog-image,
.journal-strip .blog-card:nth-child(3) .blog-image {
  background:
    linear-gradient(0deg, rgba(23, 33, 28, 0.26), rgba(23, 33, 28, 0)),
    var(--img-wasgamuwa-alt) center / cover;
}

.blog-card:nth-child(4) .blog-image {
  background:
    linear-gradient(0deg, rgba(23, 33, 28, 0.26), rgba(23, 33, 28, 0)),
    var(--img-rikillagaskada) center / cover;
}

.blog-card:nth-child(5) .blog-image {
  background:
    linear-gradient(0deg, rgba(23, 33, 28, 0.26), rgba(23, 33, 28, 0)),
    var(--img-thoppigala) center / cover;
}

.blog-card:nth-child(6) .blog-image {
  background:
    linear-gradient(0deg, rgba(23, 33, 28, 0.26), rgba(23, 33, 28, 0)),
    var(--img-kalpitiya-alt) center / cover;
}

.journal-strip .blog-card .blog-image {
  background:
    linear-gradient(0deg, rgba(23, 33, 28, 0.26), rgba(23, 33, 28, 0)),
    var(--journal-image, var(--img-kanthale)) center / cover;
}

.story-photo {
  border-radius: 30px;
  background: var(--img-rathkale) center / cover;
}

.map-panel {
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(36, 79, 56, 0.82), rgba(47, 111, 130, 0.52)),
    var(--img-kalpitiya) center / cover;
}

.cta-band {
  background:
    linear-gradient(90deg, rgba(7, 10, 8, 0.94), rgba(36, 79, 56, 0.68)),
    var(--img-thoppigala) center / cover;
}

.reveal {
  transform: translateY(42px) scale(0.985);
  transition: opacity 760ms cubic-bezier(0.16, 1, 0.3, 1), transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  transform: translateY(0) scale(1);
}

.parallax-soft {
  transform: translateY(calc(var(--scroll, 0) * -0.025px));
}

@media (max-width: 940px) {
  .hero-photo-stack {
    opacity: 0.34;
    width: 66vw;
    right: -12vw;
  }

  .manifesto-grid,
  .cinema-grid {
    grid-template-columns: 1fr;
  }

  .manifesto-copy,
  .cinema-copy {
    position: relative;
    top: auto;
  }

  .cinema-stage {
    min-height: 560px;
  }
}

@media (max-width: 680px) {
  h1 {
    font-size: clamp(3.6rem, 18vw, 5.8rem);
  }

  h2 {
    font-size: clamp(2.4rem, 13vw, 4.1rem);
  }

  .hero-content {
    padding-bottom: 58px;
  }

  .hero-photo-stack {
    display: none;
  }

  .manifesto-photos {
    grid-template-columns: 1fr;
  }

  .photo-tile,
  .photo-tile.tall,
  .cinema-stage {
    min-height: 380px;
  }

  .cinema-points article {
    grid-template-columns: 1fr;
  }

  .cinema-points h3,
  .cinema-points p {
    grid-column: auto;
  }
}

/* Final Opal-like polish layer: keep this last so the premium hero/header wins. */
.site-header {
  inset: 14px 0 auto;
  padding: 0 16px;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.site-header.scrolled {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.site-header::after {
  display: none;
}

.nav {
  width: min(1120px, 100%);
  min-height: 58px;
  padding: 0 10px 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(12, 18, 15, 0.28);
  color: var(--white);
  backdrop-filter: blur(24px) saturate(1.25);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.18);
}

.site-header.scrolled .nav,
.inner-page .nav {
  border-color: rgba(23, 33, 28, 0.1);
  background: rgba(251, 247, 239, 0.82);
  color: var(--ink);
}

.brand {
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 850;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-width: 1.5px;
  border-radius: 50%;
  transform: none;
}

.brand-mark span {
  font-size: 0.64rem;
  transform: none;
}

.nav-links {
  gap: 0;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-links a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 760;
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255, 255, 255, 0.18);
}

.site-header.scrolled .nav-links,
.inner-page .nav-links {
  background: rgba(23, 33, 28, 0.06);
}

.site-header.scrolled .nav-links a:hover,
.site-header.scrolled .nav-links a.active,
.inner-page .nav-links a:hover,
.inner-page .nav-links a.active {
  background: rgba(23, 33, 28, 0.1);
}

.nav-cta {
  min-height: 40px;
  padding-inline: 18px;
  background: rgba(251, 247, 239, 0.92);
  color: #101511;
  box-shadow: none;
}

.site-header.scrolled .nav-cta,
.inner-page .nav-cta {
  background: var(--ink);
  color: var(--white);
}

.hero-content {
  text-align: center;
  display: grid;
  justify-items: center;
  padding-top: 152px;
  padding-bottom: 112px;
}

.hero .kicker {
  color: rgba(255, 255, 255, 0.78);
}

.hero .kicker::before {
  display: none;
}

.hero-title {
  max-width: 1160px;
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: clamp(4.4rem, 12vw, 12.6rem);
  font-weight: 900;
  line-height: 0.78;
}

.hero-title span {
  display: block;
}

.hero-title span:first-child {
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.hero-title span:last-child {
  color: transparent;
  -webkit-text-stroke: clamp(1px, 0.12vw, 2px) rgba(255, 255, 255, 0.82);
}

.hero-subtitle {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.12rem, 2vw, 1.6rem);
  font-weight: 850;
}

.hero .lead {
  max-width: 760px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.78);
}

.hero-actions {
  justify-content: center;
}

@media (max-width: 940px) {
  .nav {
    width: 100%;
  }

  .nav-links {
    border-radius: 22px;
    background: rgba(251, 247, 239, 0.98);
  }
}

@media (max-width: 680px) {
  .site-header {
    inset: 10px 0 auto;
    padding: 0 12px;
  }

  .hero-content {
    text-align: left;
    justify-items: start;
    padding-top: 128px;
  }

  .hero-title {
    font-size: clamp(4.1rem, 19vw, 6.5rem);
  }

  .hero .lead {
    margin-inline: 0;
  }

  .hero-actions {
    justify-content: start;
  }
}

/* Requested Opal Tadpole-style hero/header composition. */
.site-header {
  inset: 0 0 auto;
  padding: 18px 16px 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.site-header.scrolled {
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.nav,
.site-header.scrolled .nav,
.inner-page .nav {
  width: min(760px, calc(100% - 548px));
  min-height: 118px;
  margin: 0 auto 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 202px minmax(0, 1fr);
  align-items: start;
  column-gap: clamp(32px, 4vw, 64px);
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.86);
  box-shadow: none;
  backdrop-filter: none;
}

.site-header .brand {
  align-items: start;
  gap: 0;
  font-family: var(--font-sans);
  font-size: clamp(1.08rem, 1.55vw, 1.38rem);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.36);
}

.site-header .brand-mark {
  display: none;
}

.site-header .nav-links,
.site-header.scrolled .nav-links,
.inner-page .site-header .nav-links {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(96px, 1fr));
  gap: clamp(24px, 4.8vw, 62px);
  padding: 7px 0 0;
  border-radius: 0;
  background: transparent;
}

.site-header .nav-group {
  display: grid;
  gap: 12px;
}

.site-header .nav-group strong {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.81rem;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.34);
}

.site-header .nav-links a,
.site-header.scrolled .nav-links a,
.inner-page .site-header .nav-links a {
  justify-self: start;
  min-height: auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.08;
  opacity: 1;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.34);
  transition: color 180ms ease;
}

.site-header .nav-links a:hover,
.site-header .nav-links a.active,
.site-header.scrolled .nav-links a:hover,
.site-header.scrolled .nav-links a.active,
.inner-page .site-header .nav-links a:hover,
.inner-page .site-header .nav-links a.active {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  transform: none;
}

.hero {
  min-height: 100svh;
  align-items: center;
  background: #1c211c;
}

.hero::before {
  background:
    linear-gradient(180deg, rgba(5, 8, 6, 0.28), transparent 24%),
    linear-gradient(90deg, rgba(8, 12, 9, 0.2), rgba(8, 12, 9, 0.06) 46%, rgba(8, 12, 9, 0.16)),
    linear-gradient(0deg, rgba(8, 12, 9, 0.18), transparent 42%),
    var(--img-rikillagaskada) center / cover;
  filter: brightness(1.32) saturate(1.1) contrast(0.92);
}

.hero::after {
  height: 120px;
  background: linear-gradient(0deg, rgba(251, 247, 239, 0.94), transparent);
}

.hero-content {
  width: 100%;
  min-height: 100svh;
  margin: 0 auto;
  padding: 132px 24px 10vh clamp(72px, 9.6vw, 134px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
}

.hero-title {
  max-width: 540px;
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(3.1rem, 4.45vw, 4.75rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-title span,
.hero-title span:first-child,
.hero-title span:last-child {
  display: block;
  color: rgba(255, 255, 255, 0.94);
  -webkit-text-stroke: 0;
  text-stroke: 0;
  text-shadow: none;
}

.hero-route-card {
  position: absolute;
  top: 3px;
  right: 3px;
  z-index: 70;
  width: min(468px, calc(100% - 32px));
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.98);
  color: #050505;
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.14);
  overflow: hidden;
}

.route-card-top {
  display: grid;
  grid-template-columns: 1fr minmax(164px, 214px);
  align-items: center;
  gap: 16px;
  padding: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.route-card-mark {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #050505;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0;
}

.route-card-order {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  background: #050505;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 620;
}

.route-card-body {
  display: grid;
  gap: 18px;
  padding: 20px 12px 22px;
}

.route-card-label {
  margin-bottom: 8px;
  color: #050505;
  font-family: var(--font-sans);
  font-size: 1.28rem;
  font-weight: 500;
  line-height: 1.1;
}

.route-card-copy {
  max-width: 410px;
  margin: 0;
  color: rgba(5, 5, 5, 0.62);
  font-size: 0.88rem;
  line-height: 1.45;
}

.route-card-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.route-card-actions a {
  color: #050505;
  font-size: 0.9rem;
  font-weight: 560;
}

@media (max-width: 1080px) {
  .nav,
  .site-header.scrolled .nav,
  .inner-page .nav {
    width: min(520px, calc(100% - 468px));
    grid-template-columns: 1fr;
    row-gap: 18px;
  }

  .site-header .nav-links {
    gap: 22px;
  }

  .hero-route-card {
    width: min(430px, calc(100% - 28px));
  }
}

@media (max-width: 940px) {
  .site-header {
    padding: 12px 14px 0;
  }

  .nav,
  .site-header.scrolled .nav,
  .inner-page .nav {
    width: 100%;
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
  }

  .site-header .brand {
    font-size: 1.2rem;
  }

  .site-header .menu-button {
    display: block;
  }

  .site-header .nav-links,
  .site-header.scrolled .nav-links,
  .inner-page .site-header .nav-links {
    position: fixed;
    inset: 74px 14px auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.98);
    color: #050505;
    box-shadow: 0 18px 70px rgba(0, 0, 0, 0.14);
  }

  .site-header .nav-group strong,
  .site-header .nav-links a,
  .site-header.scrolled .nav-links a,
  .inner-page .site-header .nav-links a {
    color: #050505;
  }

  .site-header .nav-links a {
    font-size: 0.92rem;
  }

  .hero-route-card {
    top: auto;
    right: 14px;
    bottom: 18px;
  }

  .hero-content {
    padding-bottom: 24vh;
  }
}

@media (max-width: 680px) {
  .hero-content {
    width: min(100% - 28px, 1130px);
    padding: 108px 0 318px;
  }

  .hero-title {
    font-size: clamp(3.05rem, 14vw, 4.9rem);
    line-height: 1.06;
  }

  .hero-route-card {
    left: 14px;
    right: 14px;
    width: auto;
  }

  .route-card-top {
    grid-template-columns: 1fr minmax(142px, 1fr);
  }

  .route-card-copy {
    font-size: 0.82rem;
  }
}

/* Sitewide minimal continuation of the Opal-like hero direction. */
:root {
  --paper: #f6f7f3;
  --cream: #ecefe8;
  --line: rgba(18, 24, 20, 0.12);
  --shadow: none;
  --font-display: var(--font-sans);
  --font-body: var(--font-sans);
}

body {
  background: var(--paper);
  font-family: var(--font-body);
  color: #111511;
}

.inner-page .nav,
.inner-page .site-header.scrolled .nav {
  width: min(820px, calc(100% - 32px));
}

.hero-title em {
  font-style: italic;
  font-weight: 360;
}

.hero:not(.compact) .hero-title {
  width: max-content;
  max-width: none;
  font-size: 4.65rem;
  line-height: 0.88;
  overflow: visible;
  padding: 0.04em 0.09em 0.12em 0.03em;
}

.hero:not(.compact) .hero-title span {
  overflow: visible;
  white-space: nowrap;
}

.hero:not(.compact) .hero-title.reveal,
.hero:not(.compact) .hero-title.reveal.visible {
  clip-path: inset(-0.12em -0.16em -0.18em -0.08em);
}

.hero.compact {
  min-height: 68svh;
}

.hero.compact .hero-content {
  min-height: 68svh;
  padding: 128px clamp(28px, 9.6vw, 134px) 64px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.68fr);
  grid-template-rows: auto auto;
  gap: 12px 48px;
  align-content: end;
  align-items: end;
  text-align: left;
}

.hero.compact .kicker {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
}

.hero.compact h1 {
  grid-column: 1;
  grid-row: 2;
  max-width: 720px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 8.6vw, 8.6rem);
  font-weight: 400;
  line-height: 0.86;
}

.hero.compact .lead {
  grid-column: 2;
  grid-row: 2;
  max-width: 520px;
  margin: 0;
  align-self: center;
  color: rgba(255, 255, 255, 0.78);
}

.hero-route-card {
  width: min(420px, calc(100% - 32px));
  border-radius: 5px;
}

.route-card-top {
  grid-template-columns: 1fr minmax(146px, 190px);
  gap: 12px;
  padding: 10px;
}

.route-card-mark {
  width: 32px;
  height: 32px;
  font-size: 0.62rem;
}

.route-card-order {
  min-height: 36px;
  border-radius: 3px;
  font-size: 0.82rem;
}

.route-card-body {
  gap: 14px;
  padding: 16px 12px 18px;
}

.route-card-label {
  margin-bottom: 7px;
  font-size: 1.14rem;
}

.route-card-copy {
  max-width: 370px;
  font-size: 0.82rem;
  line-height: 1.42;
}

.route-card-actions a {
  font-size: 0.84rem;
}

.section {
  padding: 96px 0;
}

.section.tight {
  padding: 70px 0;
}

.container {
  width: min(1130px, calc(100% - 40px));
}

.section:not(.dark-band):not(.cta-band),
.band {
  background: var(--paper);
}

.band {
  border-block: 1px solid var(--line);
}

.dark-band {
  background: #101411;
}

.section-head {
  align-items: start;
  gap: 42px;
  margin-bottom: 34px;
}

.kicker {
  margin-bottom: 14px;
  color: rgba(17, 21, 17, 0.5);
  font-size: 0.78rem;
  font-weight: 520;
  text-transform: none;
}

.dark-band .kicker,
.cta-band .kicker,
.hero .kicker {
  color: rgba(255, 255, 255, 0.7);
}

.kicker::before {
  display: none;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 420;
  letter-spacing: 0;
}

h2 {
  max-width: 900px;
  font-size: clamp(2.1rem, 4vw, 4.6rem);
  line-height: 0.98;
}

h3 {
  font-size: clamp(1.08rem, 1.5vw, 1.38rem);
  line-height: 1.16;
  font-weight: 500;
}

p,
.muted,
.section-head p {
  color: rgba(17, 21, 17, 0.64);
}

.dark-band p,
.dark-band .muted,
.cta-band p {
  color: rgba(255, 255, 255, 0.64);
}

.hero-strip {
  width: min(1130px, calc(100% - 40px));
  margin-top: -48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: none;
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.strip-item {
  padding: 22px;
  background: transparent;
  border-color: var(--line);
}

.strip-item strong {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 500;
}

.strip-item span {
  color: rgba(17, 21, 17, 0.56);
}

.route-card,
.blog-card,
.team-card,
.value-card,
.date-card,
.contact-card,
.form-panel,
.story-panel,
.quote-panel,
.summary-card,
.photo-tile,
.cinema-stage,
.image-panel,
.map-panel {
  border-radius: 6px;
  box-shadow: none;
}

.blog-card,
.team-card,
.value-card,
.date-card,
.contact-card,
.form-panel,
.story-panel,
.quote-panel {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
}

.route-grid,
.blog-grid,
.team-grid,
.values-grid,
.date-grid,
.journal-strip {
  gap: 12px;
}

.route-card {
  min-height: 370px;
  background:
    linear-gradient(0deg, rgba(8, 12, 9, 0.62), rgba(8, 12, 9, 0.1)),
    var(--img-rikillagaskada) center / cover;
}

.route-card h3,
.route-card p,
.route-card .route-meta,
.route-card .tag {
  color: rgba(255, 255, 255, 0.9);
}

.route-card p {
  color: rgba(255, 255, 255, 0.72);
}

.route-card .tag {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.route-card:hover,
.blog-card:hover,
.date-card:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

.route-content,
.blog-body,
.team-card,
.value-card,
.date-card,
.contact-card,
.form-panel,
.story-panel,
.quote-panel {
  padding: 22px;
}

.tag {
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 560;
  text-transform: none;
}

.tag.dark {
  color: #17211c;
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.button,
.nav-cta,
.filter-btn {
  min-height: 40px;
  padding-inline: 16px;
  border-radius: 4px;
  box-shadow: none;
  font-weight: 560;
}

.button,
.button.dark,
.filter-btn.active {
  background: #111511;
  color: #fff;
}

.button:hover,
.nav-cta:hover,
.filter-btn:hover {
  transform: translateY(-1px);
  box-shadow: none;
}

.button.ghost,
.filter-btn {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: #111511;
}

input,
select,
textarea {
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.82);
  border-color: var(--line);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(17, 21, 17, 0.42);
  box-shadow: 0 0 0 3px rgba(17, 21, 17, 0.08);
}

label {
  font-weight: 560;
}

.summary-card {
  background: #111511;
  color: #fff;
}

.date-badge,
.icon,
.team-avatar {
  border-radius: 5px;
  background: #111511;
  color: #fff;
}

.date-badge small {
  color: rgba(255, 255, 255, 0.58);
}

.visual-manifest {
  padding-top: 112px;
}

.photo-tile,
.cinema-stage,
.image-panel,
.map-panel {
  overflow: hidden;
}

.photo-tile figcaption {
  border-radius: 4px;
}

.cinema-stage img,
.photo-tile img {
  filter: saturate(0.96) contrast(0.98);
}

.cta-band {
  background:
    linear-gradient(90deg, rgba(8, 12, 9, 0.88), rgba(8, 12, 9, 0.38)),
    var(--img-thoppigala) center / cover;
}

.footer {
  background: #101411;
}

.site-header.scrolled {
  background: rgba(246, 247, 243, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.site-header.scrolled .nav,
.inner-page .site-header.scrolled .nav {
  color: #111511;
}

.site-header.scrolled .brand,
.site-header.scrolled .nav-group strong,
.site-header.scrolled .nav-links a,
.inner-page .site-header.scrolled .brand,
.inner-page .site-header.scrolled .nav-group strong,
.inner-page .site-header.scrolled .nav-links a {
  color: #111511;
  text-shadow: none;
}

.site-header.scrolled .nav-links a {
  color: rgba(17, 21, 17, 0.58);
}

.site-header.scrolled .nav-links a:hover,
.site-header.scrolled .nav-links a.active {
  color: #111511;
}

@media (max-width: 1080px) {
  .hero:not(.compact) .hero-title {
    font-size: 4rem;
  }

  .hero-route-card {
    width: min(390px, calc(100% - 28px));
  }
}

@media (max-width: 940px) {
  .hero:not(.compact) .hero-title {
    font-size: 3.55rem;
  }

  .inner-page .nav,
  .inner-page .site-header.scrolled .nav {
    width: 100%;
  }

  .section {
    padding: 82px 0;
  }

  .hero.compact .hero-content {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero.compact .kicker,
  .hero.compact h1,
  .hero.compact .lead {
    grid-column: 1;
    grid-row: auto;
  }

  .hero.compact h1 {
    font-size: clamp(3.4rem, 14vw, 6.2rem);
  }
}

@media (max-width: 680px) {
  .hero:not(.compact) .hero-title {
    font-size: 2.8rem;
  }

  .container,
  .hero-strip {
    width: min(100% - 28px, 1130px);
  }

  .hero-content {
    padding-bottom: 286px;
  }

  .hero-route-card {
    bottom: 14px;
  }

  .route-card-top {
    grid-template-columns: 1fr minmax(132px, 1fr);
  }

  .route-card-order {
    min-height: 34px;
  }

  .section {
    padding: 72px 0;
  }

  .hero.compact .hero-content {
    padding: 116px 18px 54px;
  }
}

@media (max-width: 420px) {
  .hero:not(.compact) .hero-title {
    font-size: 2.48rem;
  }
}

/* Smooth morph from hero column navigation into compact one-line navigation. */
.site-header {
  transition:
    padding 420ms cubic-bezier(0.16, 1, 0.3, 1),
    background 420ms ease,
    border-color 420ms ease,
    backdrop-filter 420ms ease;
}

.site-header .nav {
  transition:
    width 520ms cubic-bezier(0.16, 1, 0.3, 1),
    min-height 520ms cubic-bezier(0.16, 1, 0.3, 1),
    padding 520ms cubic-bezier(0.16, 1, 0.3, 1),
    background 420ms ease,
    border-color 420ms ease,
    border-radius 420ms ease,
    box-shadow 420ms ease;
}

.site-header .brand,
.site-header .nav-links,
.site-header .nav-group,
.site-header .nav-group strong,
.site-header .nav-links a {
  transition:
    color 300ms ease,
    opacity 300ms ease,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    gap 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.scrolled {
  padding: 8px 16px;
  background: rgba(246, 247, 243, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.site-header.scrolled .nav,
.inner-page .site-header.scrolled .nav {
  width: min(1120px, calc(100% - 32px));
  min-height: 50px;
  margin: 0 auto;
  padding: 0 14px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 28px;
  border: 1px solid rgba(18, 24, 20, 0.1);
  border-radius: 6px;
  background: rgba(246, 247, 243, 0.9);
  color: #111511;
  box-shadow: 0 14px 40px rgba(18, 24, 20, 0.06);
  backdrop-filter: blur(18px);
}

.site-header.scrolled .brand,
.inner-page .site-header.scrolled .brand {
  font-size: 0.98rem;
  font-weight: 560;
  color: #111511;
  text-shadow: none;
  transform: translateY(0);
}

.site-header.scrolled .nav-links,
.inner-page .site-header.scrolled .nav-links {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2.2vw, 28px);
  padding: 0;
  background: transparent;
  transform: translateY(0);
}

.site-header.scrolled .nav-group,
.inner-page .site-header.scrolled .nav-group {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 28px);
}

.site-header.scrolled .nav-group strong,
.inner-page .site-header.scrolled .nav-group strong {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
}

.site-header.scrolled .nav-links a,
.inner-page .site-header.scrolled .nav-links a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: rgba(17, 21, 17, 0.62);
  font-size: 0.86rem;
  font-weight: 520;
  line-height: 1;
  white-space: nowrap;
  text-shadow: none;
  animation: compactNavLinkIn 420ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.site-header.scrolled .nav-links a:hover,
.site-header.scrolled .nav-links a.active,
.inner-page .site-header.scrolled .nav-links a:hover,
.inner-page .site-header.scrolled .nav-links a.active {
  color: #111511;
}

.inner-page .site-header {
  padding: 8px 16px;
  background: rgba(246, 247, 243, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.inner-page .site-header .nav {
  width: min(1120px, calc(100% - 32px));
  min-height: 50px;
  margin: 0 auto;
  padding: 0 14px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 28px;
  border: 1px solid rgba(18, 24, 20, 0.1);
  border-radius: 6px;
  background: rgba(246, 247, 243, 0.9);
  color: #111511;
  box-shadow: 0 14px 40px rgba(18, 24, 20, 0.06);
  backdrop-filter: blur(18px);
}

.inner-page .site-header .brand {
  font-size: 0.98rem;
  font-weight: 560;
  color: #111511;
  text-shadow: none;
}

.inner-page .site-header .nav-links {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2.2vw, 28px);
  padding: 0;
  background: transparent;
}

.inner-page .site-header .nav-group {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 28px);
}

.inner-page .site-header .nav-group strong {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
}

.inner-page .site-header .nav-links a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: rgba(17, 21, 17, 0.62);
  font-size: 0.86rem;
  font-weight: 520;
  line-height: 1;
  white-space: nowrap;
  text-shadow: none;
}

.inner-page .site-header .nav-links a:hover,
.inner-page .site-header .nav-links a.active {
  color: #111511;
}

@keyframes compactNavLinkIn {
  from {
    opacity: 0;
    transform: translateY(-7px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 940px) {
  .site-header.scrolled .nav,
  .inner-page .site-header.scrolled .nav,
  .inner-page .site-header .nav {
    width: 100%;
    min-height: 54px;
    display: flex;
  }

  .site-header.scrolled .nav-links,
  .inner-page .site-header.scrolled .nav-links,
  .inner-page .site-header .nav-links {
    position: fixed;
    inset: 74px 14px auto;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 16px;
    padding: 18px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.98);
    color: #050505;
    box-shadow: 0 18px 70px rgba(0, 0, 0, 0.14);
  }

  .site-header.scrolled .nav-group,
  .inner-page .site-header.scrolled .nav-group,
  .inner-page .site-header .nav-group {
    display: grid;
    gap: 12px;
  }

  .site-header.scrolled .nav-group strong,
  .inner-page .site-header.scrolled .nav-group strong,
  .inner-page .site-header .nav-group strong {
    position: static;
    width: auto;
    height: auto;
    color: #050505;
    opacity: 1;
    transform: none;
  }

  .site-header.scrolled .nav-links a,
  .inner-page .site-header.scrolled .nav-links a,
  .inner-page .site-header .nav-links a {
    justify-content: flex-start;
    color: #050505;
  }
}

/* Scroll-progress driven header morph. Keeps the compact state out of a separate white card. */
:root {
  --header-progress: 0;
  --group-nav-opacity: 1;
  --compact-nav-opacity: 0;
  --header-bg-alpha: 0;
  --header-border-alpha: 0;
  --header-blur: 0px;
  --header-pad-top: 18px;
  --header-pad-bottom: 0px;
  --header-brand-color: rgb(255, 255, 255);
  --header-shadow-alpha: 0.36;
  --pre-row-progress: 0;
  --pre-group-gap: 12px;
}

.site-header,
.site-header.scrolled,
.inner-page .site-header {
  padding: var(--header-pad-top) 16px var(--header-pad-bottom);
  background: rgba(246, 247, 243, var(--header-bg-alpha));
  border-bottom: 1px solid rgba(18, 24, 20, var(--header-border-alpha));
  box-shadow: none;
  backdrop-filter: blur(var(--header-blur));
  transition: none;
}

.site-header .nav,
.site-header.scrolled .nav,
.inner-page .site-header .nav,
.inner-page .site-header.scrolled .nav {
  position: relative;
  width: var(--nav-width, min(760px, calc(100% - 548px)));
  min-height: var(--nav-height, 118px);
  margin: 0 auto 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 202px minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(28px, 4vw, 64px);
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--header-brand-color);
  box-shadow: none;
  backdrop-filter: none;
  transition: none;
}

.site-header .brand,
.site-header.scrolled .brand,
.inner-page .site-header .brand,
.inner-page .site-header.scrolled .brand {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  position: relative;
  width: 78px;
  height: 88px;
  display: block;
  overflow: hidden;
  color: var(--header-brand-color);
  font-size: clamp(1.02rem, 1.4vw, 1.34rem);
  font-weight: 520;
  text-shadow: 0 2px 18px rgba(0, 0, 0, var(--header-shadow-alpha));
}

.site-header .brand::before,
.site-header.scrolled .brand::before,
.inner-page .site-header .brand::before,
.inner-page .site-header.scrolled .brand::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/icons/HF-T-01-New-trimmed.png") left center / contain no-repeat;
}

.site-header .brand > .brand-mark,
.site-header .brand > span:not(.brand-mark),
.site-header.scrolled .brand > .brand-mark,
.site-header.scrolled .brand > span:not(.brand-mark),
.inner-page .site-header .brand > .brand-mark,
.inner-page .site-header .brand > span:not(.brand-mark),
.inner-page .site-header.scrolled .brand > .brand-mark,
.inner-page .site-header.scrolled .brand > span:not(.brand-mark) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.site-header .nav-links,
.site-header.scrolled .nav-links,
.inner-page .site-header .nav-links,
.inner-page .site-header.scrolled .nav-links {
  grid-column: 2;
  grid-row: 1;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(96px, 1fr));
  gap: clamp(24px, 4.8vw, 62px);
  align-self: start;
  justify-self: stretch;
  padding: 7px 0 0;
  background: transparent;
  opacity: var(--group-nav-opacity);
  pointer-events: auto;
  transform: translateY(var(--group-nav-y, 0px));
}

.site-header.compact-ready .nav-links,
.inner-page .site-header .nav-links {
  pointer-events: none;
}

.site-header .nav-group,
.site-header.scrolled .nav-group,
.inner-page .site-header .nav-group,
.inner-page .site-header.scrolled .nav-group {
  display: grid;
  gap: var(--pre-group-gap, 12px);
}

.site-header .nav-group strong,
.site-header.scrolled .nav-group strong,
.inner-page .site-header .nav-group strong,
.inner-page .site-header.scrolled .nav-group strong {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  color: rgba(255, 255, 255, 0.92);
  opacity: 1;
  pointer-events: auto;
  transform: none;
  text-shadow: 0 2px 18px rgba(0, 0, 0, var(--header-shadow-alpha));
}

.site-header .nav-links a,
.site-header.scrolled .nav-links a,
.inner-page .site-header .nav-links a,
.inner-page .site-header.scrolled .nav-links a {
  min-height: auto;
  display: inline-flex;
  justify-content: flex-start;
  padding: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  font-weight: 500;
  text-shadow: 0 2px 18px rgba(0, 0, 0, var(--header-shadow-alpha));
  animation: none;
}

.nav-compact-links {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2.2vw, 28px);
  opacity: var(--compact-nav-opacity);
  pointer-events: none;
  transform: translateY(var(--compact-nav-y, 12px));
}

.site-header.compact-ready .nav-compact-links,
.inner-page .site-header .nav-compact-links {
  pointer-events: auto;
}

.nav-compact-links a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  color: rgba(17, 21, 17, 0.64);
  font-size: 0.86rem;
  font-weight: 540;
  line-height: 1;
  white-space: nowrap;
}

.nav-compact-links a:hover,
.nav-compact-links a.active {
  color: #111511;
}

.inner-page .site-header .nav-links,
.inner-page .site-header.scrolled .nav-links {
  opacity: 0;
}

.inner-page .site-header .nav-compact-links {
  opacity: 1;
  transform: none;
}

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

  .site-header,
  .site-header.scrolled,
  .inner-page .site-header {
    padding: 12px 14px 0;
    background: transparent;
    border-bottom: 0;
    backdrop-filter: none;
  }

  .site-header .nav,
  .site-header.scrolled .nav,
  .inner-page .site-header .nav,
  .inner-page .site-header.scrolled .nav {
    width: 100%;
    min-height: 54px;
    display: flex;
    color: var(--white);
  }

  .site-header .nav-links,
  .site-header.scrolled .nav-links,
  .inner-page .site-header .nav-links,
  .inner-page .site-header.scrolled .nav-links {
    position: fixed;
    inset: 74px 14px auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    color: #050505;
    box-shadow: 0 18px 70px rgba(0, 0, 0, 0.14);
    transform: translateY(-18px);
    pointer-events: none;
  }

  .menu-open .site-header .nav-links,
  .menu-open .site-header.scrolled .nav-links,
  .inner-page.menu-open .site-header .nav-links {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-header .nav-group strong,
  .site-header.scrolled .nav-group strong,
  .inner-page .site-header .nav-group strong,
  .inner-page .site-header.scrolled .nav-group strong,
  .site-header .nav-links a,
  .site-header.scrolled .nav-links a,
  .inner-page .site-header .nav-links a,
  .inner-page .site-header.scrolled .nav-links a {
    color: #050505;
    text-shadow: none;
  }
}

/* Same-element header morph: the grouped links themselves become the compact row. */
.nav-compact-links {
  display: none;
}

.site-header .nav-links,
.site-header.scrolled .nav-links,
.inner-page .site-header .nav-links,
.inner-page .site-header.scrolled .nav-links {
  pointer-events: auto;
}

.site-header .nav-links,
.site-header.scrolled .nav-links {
  opacity: calc(0.38 + (var(--group-nav-opacity) * 0.62));
}

.inner-page .site-header .nav-links,
.inner-page .site-header.scrolled .nav-links {
  opacity: 1;
}

.site-header .nav-group strong,
.site-header.scrolled .nav-group strong {
  opacity: var(--group-nav-opacity);
  transform: translateY(calc(var(--group-nav-y, 0px) * 0.25));
}

.site-header.compact-ready .nav-links,
.inner-page .site-header .nav-links,
.inner-page .site-header.scrolled .nav-links {
  grid-column: 1 / -1;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.6vw, 24px);
  justify-self: center;
  padding: 0;
  opacity: calc(0.36 + (var(--compact-nav-opacity) * 0.64));
  transform: translateY(var(--compact-nav-y, 0px));
  pointer-events: auto;
}

.inner-page .site-header .nav-links,
.inner-page .site-header.scrolled .nav-links {
  opacity: 1;
  transform: none;
}

.site-header.compact-ready .nav-group,
.inner-page .site-header .nav-group,
.inner-page .site-header.scrolled .nav-group {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.6vw, 24px);
}

.site-header.compact-ready .nav-group strong,
.inner-page .site-header .nav-group strong,
.inner-page .site-header.scrolled .nav-group strong {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.site-header.compact-ready .nav-links a,
.inner-page .site-header .nav-links a,
.inner-page .site-header.scrolled .nav-links a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(17, 21, 17, 0.64);
  font-size: 0.86rem;
  font-weight: 540;
  line-height: 1.12;
  white-space: normal;
  max-width: clamp(64px, 8.8vw, 138px);
  text-align: center;
  text-shadow: none;
}

html:not([lang="en"]) .site-header.compact-ready .nav-links,
html:not([lang="en"]) .inner-page .site-header .nav-links,
html:not([lang="en"]) .inner-page .site-header.scrolled .nav-links {
  gap: clamp(8px, 1.2vw, 18px);
}

html:not([lang="en"]) .site-header.compact-ready .nav-group,
html:not([lang="en"]) .inner-page .site-header .nav-group,
html:not([lang="en"]) .inner-page .site-header.scrolled .nav-group {
  gap: clamp(8px, 1.2vw, 18px);
}

html:not([lang="en"]) .site-header.compact-ready .nav-links a,
html:not([lang="en"]) .inner-page .site-header .nav-links a,
html:not([lang="en"]) .inner-page .site-header.scrolled .nav-links a {
  font-size: clamp(0.72rem, 0.8vw, 0.84rem);
  max-width: clamp(76px, 9.8vw, 156px);
}

html:not([lang="en"]) :where(.button, .route-card-order, .header-book-route, .booking-submit, .booking-select-trigger, .route-plan-trigger, .price-currency-trigger, .faq-menu-trigger, .blog-category-tabs button, .tag, .route-meta span, .post-meta span, .preference-trigger) {
  min-width: 0;
  white-space: normal;
  overflow-wrap: break-word;
  hyphens: auto;
  line-height: 1.16;
}

html:not([lang="en"]) :where(.route-card h3, .tour-card-3d h3, .blog-card h3, .section-head h2, .route-detail-hero-copy h1, .blog-article-title, .booking-summary-route-name) {
  overflow-wrap: break-word;
  hyphens: auto;
}

.site-header.compact-ready .nav-links a:hover,
.site-header.compact-ready .nav-links a.active,
.inner-page .site-header .nav-links a:hover,
.inner-page .site-header .nav-links a.active,
.inner-page .site-header.scrolled .nav-links a:hover,
.inner-page .site-header.scrolled .nav-links a.active {
  color: #111511;
}

@media (max-width: 940px) {
  .site-header.compact-ready .nav-links,
  .inner-page .site-header .nav-links,
  .inner-page .site-header.scrolled .nav-links {
    position: fixed;
    inset: 74px 14px auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    color: #050505;
    box-shadow: 0 18px 70px rgba(0, 0, 0, 0.14);
    transform: translateY(-18px);
    pointer-events: none;
  }

  .menu-open .site-header.compact-ready .nav-links,
  .inner-page.menu-open .site-header .nav-links,
  .inner-page.menu-open .site-header.scrolled .nav-links {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-header.compact-ready .nav-group,
  .inner-page .site-header .nav-group,
  .inner-page .site-header.scrolled .nav-group {
    display: grid;
    gap: 12px;
  }

  .site-header.compact-ready .nav-group strong,
  .inner-page .site-header .nav-group strong,
  .inner-page .site-header.scrolled .nav-group strong {
    position: static;
    width: auto;
    height: auto;
    color: #050505;
    opacity: 1;
    transform: none;
  }

  .site-header.compact-ready .nav-links a,
  .inner-page .site-header .nav-links a,
  .inner-page .site-header.scrolled .nav-links a {
    justify-content: flex-start;
    color: #050505;
  }
}

@media (min-width: 941px) {
  .site-header .nav-links,
  .inner-page .site-header .nav-links,
  .inner-page .site-header.scrolled .nav-links {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(96px, 1fr));
    gap: clamp(24px, 4.8vw, 62px);
    align-self: start;
    justify-self: stretch;
    padding: 7px 0 0;
    opacity: 1;
    transform: translateY(var(--group-nav-y, 0px));
    pointer-events: auto;
  }

  .site-header.compact-ready .nav-group,
  .inner-page .site-header .nav-group,
  .inner-page .site-header.scrolled .nav-group {
    display: grid;
    gap: var(--pre-group-gap, 12px);
  }

  .site-header.compact-ready .nav-group strong,
  .inner-page .site-header .nav-group strong,
  .inner-page .site-header.scrolled .nav-group strong {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    opacity: var(--group-nav-opacity);
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 2px 18px rgba(0, 0, 0, var(--header-shadow-alpha));
  }

  .site-header.compact-ready .nav-links a,
  .inner-page .site-header .nav-links a,
  .inner-page .site-header.scrolled .nav-links a {
    min-height: auto;
    justify-content: flex-start;
    color: rgba(255, 255, 255, 0.62);
    text-shadow: 0 2px 18px rgba(0, 0, 0, var(--header-shadow-alpha));
    transition: none;
    will-change: transform, color;
  }
}

@media (min-width: 941px) {
  .site-header .nav-links {
    align-items: start;
    grid-template-columns: repeat(3, minmax(126px, 1fr));
    gap: clamp(34px, 5.4vw, 74px);
  }

  .site-header .nav-group {
    align-content: start;
    justify-items: start;
    gap: clamp(9px, 1vw, 14px);
  }

  .site-header .nav-group strong {
    font-size: clamp(0.94rem, 0.82vw, 1.06rem);
    font-weight: 760;
    line-height: 1.08;
  }

  .site-header .nav-links a {
    font-size: clamp(0.9rem, 0.76vw, 0.98rem);
    font-weight: 650;
    line-height: 1.12;
  }

  .inner-page .site-header .nav-links,
  .inner-page .site-header.scrolled .nav-links {
    grid-column: 1 / -1;
    grid-row: 1;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2.4vw, 34px);
    justify-self: center;
    align-self: center;
    padding: 0;
    opacity: 1;
    transform: none !important;
  }

  .inner-page .site-header .nav-group,
  .inner-page .site-header.scrolled .nav-group {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.4vw, 34px);
  }

  .inner-page .site-header .nav-group strong,
  .inner-page .site-header.scrolled .nav-group strong {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .inner-page .site-header .nav-links a,
  .inner-page .site-header.scrolled .nav-links a {
    min-height: 34px;
    color: rgba(17, 21, 17, 0.68);
    font-size: clamp(0.92rem, 0.78vw, 1rem);
    font-weight: 660;
    line-height: 1;
    text-shadow: none;
    transform: none !important;
    transition: color 160ms ease;
    will-change: auto;
  }

  .inner-page .site-header .nav-links a:hover,
  .inner-page .site-header .nav-links a.active,
  .inner-page .site-header.scrolled .nav-links a:hover,
  .inner-page .site-header.scrolled .nav-links a.active {
    color: #111511;
  }
}

body.is-loading > header,
body.site-ready > header {
  transform: none;
}

/* Site-wide premium editorial layer, following the clean Opal-inspired hero language. */
:root {
  --paper: #f6f7f2;
  --paper-soft: #eceee8;
  --paper-card: rgba(255, 255, 255, 0.72);
  --ink: #111511;
  --muted: #6d746c;
  --line: rgba(17, 21, 17, 0.13);
  --line-strong: rgba(17, 21, 17, 0.24);
  --soft-shadow: 0 18px 60px rgba(17, 21, 17, 0.08);
  --display-font: var(--font-sans);
  --serif-font: "Instrument Serif", Georgia, "Times New Roman", serif;
  --radius: 6px;
}

body {
  color: var(--ink);
  background: var(--paper);
  font-family: var(--display-font);
  font-weight: 450;
  letter-spacing: 0;
}

::selection {
  background: rgba(17, 21, 17, 0.14);
}

.container,
.hero-strip {
  width: min(1160px, calc(100% - 48px));
}

.section {
  padding: clamp(92px, 12vw, 156px) 0;
  background: var(--paper);
}

.section.tight {
  padding-top: clamp(44px, 7vw, 86px);
}

.section.band {
  background: var(--paper-soft);
}

.section:not(.dark-band):not(.cta-band) {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 180px),
    var(--paper);
}

.section.band:not(.dark-band):not(.cta-band) {
  background: var(--paper-soft);
}

.section h2,
.hero.compact h1,
.manifesto-copy h2,
.section-head h2,
.cta-inner h2 {
  color: var(--ink);
  font-family: var(--display-font);
  font-weight: 440;
  letter-spacing: 0;
  line-height: 0.95;
}

.section h2,
.section-head h2,
.manifesto-copy h2,
.cta-inner h2 {
  max-width: 860px;
  font-size: clamp(3.1rem, 6.8vw, 7rem);
}

.hero.compact h1 {
  font-size: clamp(4.2rem, 11vw, 9.5rem);
  max-width: 760px;
}

.section h3,
.route-card h3,
.blog-card h3,
.date-card h3,
.feature h3,
.team-card h3,
.timeline-item h3 {
  color: var(--ink);
  font-family: var(--display-font);
  font-weight: 560;
  letter-spacing: 0;
  line-height: 1.06;
}

.blog-card h3 {
  line-height: 1.12;
  padding-bottom: 0.06em;
}

.section p,
.muted,
.lead,
.route-card p,
.blog-card p,
.date-card p,
.feature p,
.timeline-item p,
.team-card p {
  color: var(--muted);
  font-size: clamp(0.98rem, 1.2vw, 1.1rem);
  line-height: 1.62;
}

.dark-band h2,
.dark-band h3,
.cta-band h2,
.footer h3 {
  color: #fff;
}

.dark-band p,
.dark-band .muted,
.cta-band p,
.footer p,
.footer a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.62);
}

.kicker,
.tag,
.tag.dark,
.post-meta,
.date-badge small,
label {
  color: rgba(17, 21, 17, 0.54);
  font-family: var(--display-font);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

.hero.compact {
  min-height: clamp(560px, 74vh, 760px);
  overflow: hidden;
}

.hero.compact .hero-content {
  width: min(1160px, calc(100% - 48px));
  padding-top: clamp(112px, 13vw, 158px);
  padding-bottom: clamp(84px, 11vw, 128px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.62fr);
  align-items: end;
  gap: clamp(32px, 7vw, 96px);
}

.hero.compact .kicker {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.hero.compact h1 {
  margin: 0;
  color: #fff;
  max-width: 980px;
  font-size: clamp(3.8rem, 8.6vw, 7.8rem);
  line-height: 0.94;
}

.hero.compact .lead {
  max-width: 520px;
  margin: 0 0 1.2rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.06rem, 1.5vw, 1.28rem);
}

.hero-strip {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: none;
  backdrop-filter: blur(16px);
}

.strip-item {
  background: transparent;
  border-color: var(--line);
}

.strip-item strong {
  font-family: var(--display-font);
  font-size: clamp(1.92rem, 2.8vw, 2.72rem);
  font-weight: 520;
  letter-spacing: 0;
  line-height: 0.95;
  font-variant-numeric: tabular-nums lining-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
}

.visual-manifest {
  padding-top: 0;
  padding-bottom: 0;
  min-height: clamp(2300px, 430vh, 3600px);
  display: block;
}

.manifesto-grid,
.cinema-grid,
.split,
.story-panel,
.booking-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: clamp(36px, 7vw, 86px);
  align-items: start;
}

.visual-manifest .manifesto-grid {
  position: sticky;
  top: 76px;
  width: 100%;
  display: block;
  min-height: calc(100svh - 76px);
  box-sizing: border-box;
  padding-top: 0;
  padding-bottom: 0;
  pointer-events: none;
}

.visual-manifest {
  pointer-events: none;
}

.manifesto-copy,
.manifesto-photos {
  position: relative;
  top: auto;
}

.manifesto-copy {
  --manifest-copy-opacity: 1;
  --manifest-copy-x: 0px;
  --manifest-copy-y: 0px;
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-height: none;
  min-height: 0;
  padding-top: 0;
  text-align: center;
  opacity: var(--manifest-copy-opacity);
  transform: translate3d(var(--manifest-copy-x), var(--manifest-copy-y), 0);
  pointer-events: none;
  z-index: 2;
  padding-inline: 24px;
}

.cinema-copy {
  position: sticky;
  top: 112px;
}

.manifesto-copy p:last-child {
  max-width: 720px;
  margin-top: clamp(20px, 3svh, 34px);
}

.manifesto-body.scroll-highlight {
  font-size: clamp(0.96rem, 2svh, 1.14rem);
  font-weight: 450;
  line-height: 1.42;
}

.manifesto-copy h2.scroll-highlight,
.manifesto-body.scroll-highlight {
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.scroll-highlight {
  --word-progress: 0;
}

.scroll-highlight .highlight-word {
  --word-progress: 0;
  display: inline-block;
  position: relative;
  margin-right: 0.1em;
  opacity: 1;
  color: rgba(17, 21, 17, calc(0.18 - (var(--word-progress) * 0.18)));
  font-weight: inherit;
  transition: none;
  will-change: opacity;
}

.scroll-highlight .highlight-word:last-child {
  margin-right: 0;
}

.scroll-highlight .highlight-word::after {
  content: attr(data-highlight-text);
  position: absolute;
  inset: 0 auto auto 0;
  color: #111511;
  font-weight: 520;
  opacity: var(--word-progress);
  text-shadow: none;
  pointer-events: none;
  transition: opacity 80ms linear;
  will-change: opacity;
}

.manifesto-copy h2.scroll-highlight {
  max-width: min(100%, 980px);
  font-size: clamp(3.2rem, 11svh, 6.5rem);
  font-weight: 430;
  line-height: 0.96;
}

.manifesto-copy h2.scroll-highlight .highlight-word {
  color: rgba(17, 21, 17, calc(0.16 - (var(--word-progress) * 0.16)));
  font-weight: inherit;
}

.manifesto-copy h2.scroll-highlight .highlight-word::after {
  font-weight: 500;
}

.manifesto-body.scroll-highlight .highlight-word {
  color: rgba(17, 21, 17, calc(0.2 - (var(--word-progress) * 0.2)));
  font-weight: inherit;
}

.manifesto-body.scroll-highlight .highlight-word::after {
  font-weight: 540;
}

.manifesto-copy .scroll-highlight {
  max-width: 980px;
}

.manifesto-photos {
  --manifest-photo-opacity: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 100vw;
  height: calc(100svh - 76px);
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: var(--manifest-photo-opacity);
  transform: translate3d(-50%, -50%, 0);
  isolation: isolate;
  pointer-events: none;
  z-index: 1;
}

.manifesto-photos .photo-tile,
.manifesto-photos .photo-tile.tall {
  --manifest-tile-x: 110%;
  --manifest-tile-y: 0px;
  --manifest-image-y: 0px;
  --manifest-tile-opacity: 0;
  --manifest-tile-scale: 1;
  --manifest-tile-z: 1;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  grid-row: auto;
  border: 0;
  border-radius: 0;
  opacity: var(--manifest-tile-opacity);
  transform: translate3d(var(--manifest-tile-x), 0, 0);
  z-index: var(--manifest-tile-z);
  pointer-events: none;
  filter: none;
  clip-path: inset(0);
  backface-visibility: hidden;
  contain: paint;
  transition: none;
  will-change: transform, opacity;
}

.manifesto-photos .photo-tile.visible {
  opacity: var(--manifest-tile-opacity);
  transform: translate3d(var(--manifest-tile-x), 0, 0);
}

.manifesto-photos .photo-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: none;
  transform: none;
  transition: none;
  will-change: auto;
}

.manifesto-photos .photo-tile:nth-child(1) img {
  object-position: center;
}

.manifesto-photos .photo-tile:nth-child(2) img {
  object-position: center;
}

.manifesto-photos .photo-tile:nth-child(3) img {
  object-position: center;
}

.manifesto-photos .photo-tile:hover img {
  transform: none;
}

.manifesto-photos .photo-tile::after {
  opacity: 1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), transparent 36%, rgba(0, 0, 0, 0.26)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.2), transparent 44%);
}

.manifesto-photos .photo-tile figcaption {
  opacity: 0;
  pointer-events: none;
}

.manifesto-slide-title {
  position: absolute;
  left: clamp(18px, 4.8vw, 88px);
  bottom: clamp(42px, 6.7vw, 124px);
  z-index: 40;
  pointer-events: none;
}

.manifesto-slide-title span {
  --manifest-title-opacity: 0;
  --manifest-title-x: 0px;
  --manifest-title-y: 0px;
  --manifest-title-clip-top: 84%;
  --manifest-title-clip-bottom: 0%;
  position: absolute;
  left: 0;
  bottom: 0;
  min-height: 0;
  padding: 0 0 0.14em;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 5.15vw, 5.25rem);
  font-weight: 420;
  letter-spacing: -0.02em;
  line-height: 0.98;
  text-shadow: 0 4px 42px rgba(0, 0, 0, 0.34);
  backdrop-filter: none;
  opacity: var(--manifest-title-opacity);
  transform: translate3d(var(--manifest-title-x), var(--manifest-title-y), 0);
  clip-path: inset(var(--manifest-title-clip-top) 0 var(--manifest-title-clip-bottom) 0);
  white-space: nowrap;
  transition: none;
  will-change: transform, opacity, clip-path;
}

.photo-tile,
.cinema-stage,
.story-photo,
.image-panel,
.map-panel,
.blog-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.52);
  background-color: #d8ddd4;
  box-shadow: none;
  isolation: isolate;
}

.photo-tile {
  min-height: clamp(260px, 32vw, 420px);
}

.photo-tile.tall {
  min-height: clamp(560px, 65vw, 760px);
}

.photo-tile img,
.cinema-stage img {
  position: absolute;
  inset: -44px 0;
  width: 100%;
  height: calc(100% + 88px);
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.06);
  transition: filter 800ms ease;
  will-change: transform;
}

.photo-tile:hover img,
.cinema-stage:hover img {
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.06);
  filter: saturate(1.04) contrast(1.02);
}

.photo-tile::after,
.cinema-stage::after,
.story-photo::after,
.image-panel::after,
.map-panel::after,
.blog-image::after,
.route-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.24));
  opacity: 0.72;
  z-index: 0;
}

.photo-tile figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  min-height: 34px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  background: rgba(246, 247, 242, 0.92);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 650;
  backdrop-filter: blur(14px);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.42fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: end;
  margin-bottom: clamp(34px, 6vw, 78px);
}

.section-head > p {
  margin-bottom: 0.35rem;
}

.route-grid,
.date-grid,
.blog-grid,
.team-grid,
.journal-strip {
  display: grid;
  gap: 16px;
}

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

.route-card {
  position: relative;
  min-height: clamp(470px, 48vw, 620px);
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.52);
  display: flex;
  align-items: flex-end;
  background-position: center calc(50% + var(--parallax-y, 0px));
  background-size: cover;
  box-shadow: none;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1), filter 700ms ease;
  will-change: transform, background-position;
}

.route-card:nth-child(1) {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.64)),
    var(--img-devils) center calc(50% + var(--parallax-y, 0px)) / cover;
}

.route-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.64)),
    var(--img-wasgamuwa) center calc(50% + var(--parallax-y, 0px)) / cover;
}

.route-card:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.64)),
    var(--img-kalpitiya) center calc(50% + var(--parallax-y, 0px)) / cover;
}

.route-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(22px, 3.4vw, 34px);
}

.route-card h3,
.route-card p,
.route-card .route-meta {
  color: #fff;
}

.route-card p,
.route-meta {
  color: rgba(255, 255, 255, 0.72);
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag,
.tag.dark {
  min-height: 30px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  border-radius: 4px;
  background: rgba(246, 247, 242, 0.78);
  color: rgba(17, 21, 17, 0.72);
}

.route-card .tag {
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
}

.route-meta {
  display: flex;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.86rem;
}

.route-card-hit {
  display: flex;
  align-items: flex-end;
  width: 100%;
  min-height: inherit;
  color: inherit;
  text-decoration: none;
}

.route-card-hit:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.78);
  outline-offset: -10px;
}

.route-card-clickable .route-content {
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.route-card-clickable:hover .route-content {
  transform: translateY(-4px);
}

.route-card:hover,
.blog-card:hover,
.date-card:hover,
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--soft-shadow);
}

.tours-page main {
  min-height: calc(100svh - 108px);
  padding-top: 76px;
}

.tours-page .tours-list-section {
  min-height: calc(100svh - 160px);
  display: flex;
  align-items: center;
  padding: clamp(26px, 4vw, 46px) 0 clamp(42px, 5vw, 74px);
}

.tours-card-grid {
  perspective: 1400px;
}

.tours-page .route-card {
  text-decoration: none;
}

.tour-card-3d {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glare-x: 50%;
  --glare-y: 50%;
  min-height: clamp(460px, 49vw, 620px);
  transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translate3d(0, 0, 0) scale(1);
  transform-style: preserve-3d;
  isolation: isolate;
  backface-visibility: hidden;
  transition:
    transform 460ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 380ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 380ms ease;
  will-change: auto;
}

.tour-card-3d::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle at var(--glare-x) var(--glare-y), rgba(255, 255, 255, 0.26), transparent 34%);
  opacity: 0;
  transition: opacity 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.tour-card-3d:hover,
.tour-card-3d.is-tilting {
  transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translate3d(0, -6px, 0) scale(1.012);
  box-shadow: 0 34px 90px rgba(17, 21, 17, 0.22);
}

.tour-card-3d.is-tilting {
  transition:
    transform 90ms linear,
    box-shadow 320ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 320ms ease;
  will-change: transform;
}

.tour-card-3d:hover::before,
.tour-card-3d.is-tilting::before {
  opacity: 1;
}

.tour-card-3d .route-content {
  z-index: 2;
  pointer-events: none;
  transform: translateZ(28px);
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
  backface-visibility: hidden;
  will-change: transform;
}

.tour-card-3d:hover .route-content,
.tour-card-3d.is-tilting .route-content,
.route-card-clickable.tour-card-3d:hover .route-content {
  transform: translateZ(42px);
}

.tour-card-zone {
  display: none;
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.tour-card-zone.zone-1,
.tour-card-zone.zone-2,
.tour-card-zone.zone-3 {
  top: 0;
  height: 33.333%;
}

.tour-card-zone.zone-6,
.tour-card-zone.zone-7,
.tour-card-zone.zone-8 {
  bottom: 0;
  height: 33.333%;
}

.tour-card-zone.zone-1,
.tour-card-zone.zone-6 {
  left: 0;
  width: 33.333%;
}

.tour-card-zone.zone-2,
.tour-card-zone.zone-7 {
  left: 33.333%;
  width: 33.334%;
}

.tour-card-zone.zone-3,
.tour-card-zone.zone-8 {
  right: 0;
  width: 33.333%;
}

.tour-card-zone.zone-4,
.tour-card-zone.zone-5 {
  top: 33.333%;
  height: 33.334%;
  width: 33.333%;
}

.tour-card-zone.zone-4 {
  left: 0;
}

.tour-card-zone.zone-5 {
  right: 0;
}

.tour-card-3d:has(.zone-1:hover) {
  --tilt-x: 8deg;
  --tilt-y: -8deg;
  --glare-x: 12%;
  --glare-y: 12%;
}

.tour-card-3d:has(.zone-2:hover) {
  --tilt-x: 8deg;
  --tilt-y: 0deg;
  --glare-x: 50%;
  --glare-y: 10%;
}

.tour-card-3d:has(.zone-3:hover) {
  --tilt-x: 8deg;
  --tilt-y: 8deg;
  --glare-x: 88%;
  --glare-y: 12%;
}

.tour-card-3d:has(.zone-4:hover) {
  --tilt-x: 0deg;
  --tilt-y: -8deg;
  --glare-x: 10%;
  --glare-y: 50%;
}

.tour-card-3d:has(.zone-5:hover) {
  --tilt-x: 0deg;
  --tilt-y: 8deg;
  --glare-x: 90%;
  --glare-y: 50%;
}

.tour-card-3d:has(.zone-6:hover) {
  --tilt-x: -8deg;
  --tilt-y: -8deg;
  --glare-x: 12%;
  --glare-y: 88%;
}

.tour-card-3d:has(.zone-7:hover) {
  --tilt-x: -8deg;
  --tilt-y: 0deg;
  --glare-x: 50%;
  --glare-y: 90%;
}

.tour-card-3d:has(.zone-8:hover) {
  --tilt-x: -8deg;
  --tilt-y: 8deg;
  --glare-x: 88%;
  --glare-y: 88%;
}

.tours-page .footer {
  padding: 18px 0;
}

.tours-page .footer-bottom {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.route-cinema {
  background: #111511;
}

.route-detail-page {
  background: var(--paper);
}

.route-detail-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #111511;
}

.route-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 10, 8, 0.56), rgba(7, 10, 8, 0.08) 48%, rgba(7, 10, 8, 0.18)),
    linear-gradient(0deg, rgba(7, 10, 8, 0.76), transparent 54%);
}

.route-detail-hero img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.02) contrast(0.98) brightness(0.92);
}

.route-detail-hero-copy {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 24svh 0 clamp(72px, 12svh, 130px);
}

.route-detail-hero-copy h1 {
  max-width: 1120px;
  margin: 0;
  color: #fff;
  font-family: var(--display-font);
  font-size: clamp(3.8rem, 8.4vw, 8.8rem);
  font-weight: 430;
  letter-spacing: 0;
  line-height: 0.9;
}

.route-detail-hero .kicker,
.route-fullbleed .kicker {
  color: rgba(255, 255, 255, 0.78);
}

.route-detail-hero-copy p:last-child {
  max-width: 760px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.02rem, 1.7vw, 1.34rem);
  line-height: 1.46;
}

.route-detail-index {
  position: absolute;
  right: clamp(18px, 3vw, 46px);
  bottom: clamp(18px, 3vw, 42px);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: min(480px, calc(100% - 36px));
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.route-detail-index span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.route-overview-grid,
.route-editorial-grid,
.route-detail-list-grid,
.route-inclusions-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: start;
}

.route-overview-grid {
  grid-template-columns: minmax(280px, 0.74fr) minmax(360px, 0.86fr);
}

.route-overview-central .route-overview-grid {
  grid-template-columns: minmax(360px, 0.95fr) minmax(360px, 0.78fr);
  gap: clamp(42px, 5vw, 86px);
}

.route-overview-grid > div:first-child {
  position: sticky;
  top: clamp(92px, 13svh, 132px);
}

.route-overview h2,
.route-editorial-copy h2,
.route-detail-list-section h2,
.route-inclusions h2 {
  font-size: clamp(3.3rem, 7.8vw, 8.4rem);
}

.route-overview h2 {
  max-width: 760px;
  font-size: min(clamp(2.6rem, 4.75vw, 5.25rem), 10.2svh);
  line-height: 0.94;
}

.route-overview-balanced-title {
  max-width: min(760px, 100%);
  font-size: min(clamp(1.85rem, 3.1vw, 3.45rem), 5.8svh);
  line-height: 1.02;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.route-overview-copy {
  width: min(100%, 720px);
  justify-self: end;
  padding-top: 10px;
}

.route-overview-copy p {
  margin-top: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.12vw, 1.12rem);
  line-height: 1.64;
}

.route-overview-copy p + p {
  margin-top: 1.1em;
}

.route-at-glance {
  padding: 0 0 112px;
}

.route-glance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.route-glance-card {
  min-height: 230px;
  padding: clamp(22px, 3vw, 34px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.32);
}

.route-glance-card span,
.route-day-card span,
.route-number {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-glance-card strong {
  display: block;
  margin-bottom: 16px;
  color: var(--ink);
  font-family: var(--display-font);
  font-size: clamp(1.9rem, 3vw, 3.2rem);
  font-weight: 520;
  line-height: 0.98;
}

.route-glance-card p {
  margin: 0;
  color: var(--muted);
}

.route-map-itinerary {
  scroll-margin-top: 86px;
  padding: clamp(126px, 10vw, 156px) 0 clamp(96px, 12vw, 146px);
  background: var(--paper);
}

.route-map-heading {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto clamp(22px, 3vw, 34px);
  text-align: center;
}

.route-map-heading h2 {
  max-width: 100%;
  margin: 0;
  color: rgba(17, 21, 17, 0.78);
  font-family: var(--serif-font);
  font-size: clamp(2.35rem, 3.6vw, 4rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0;
}

.route-map-subtitle {
  margin: clamp(10px, 1.4vw, 18px) 0 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.45vw, 1.45rem);
  font-weight: 500;
  line-height: 1.2;
}

.route-map-frame {
  --map-chrome-crop: 62px;
  position: relative;
  width: 100%;
  height: clamp(430px, 58vw, 680px);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #dfe6da;
}

.route-map-frame iframe {
  display: block;
  width: 100%;
  height: calc(100% + var(--map-chrome-crop));
  border: 0;
  filter: saturate(0.96) contrast(0.98);
  transform: translateY(calc(var(--map-chrome-crop) * -1));
}

.route-map-frame:not(.is-map-active) iframe {
  pointer-events: none;
}

.route-map-accordions {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: -68px auto 0;
  display: grid;
  gap: 18px;
}

.route-map-accordions .route-day-accordion.reveal {
  --accordion-delay: 0ms;
  transform: translateY(42px) scale(0.985);
  filter: blur(7px);
  transition-duration: 1020ms;
  transition-delay: calc(var(--delay, 0ms) + var(--accordion-delay));
}

.route-map-accordions .route-day-accordion.reveal.visible {
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.route-map-accordions .route-day-accordion:nth-child(2) {
  --accordion-delay: 90ms;
}

.route-map-accordions .route-day-accordion:nth-child(3) {
  --accordion-delay: 180ms;
}

.route-day-accordion {
  overflow: hidden;
  border: 1px solid rgba(17, 21, 17, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 70px rgba(17, 21, 17, 0.1);
}

.route-day-accordion.is-expanding,
.route-day-accordion.is-collapsing {
  will-change: height;
}

.route-day-accordion summary {
  min-height: clamp(112px, 10vw, 148px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 3vw, 34px);
  padding: clamp(24px, 3vw, 38px);
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

.route-day-accordion summary::-webkit-details-marker {
  display: none;
}

.route-day-accordion summary:focus {
  outline: none;
}

.route-day-accordion summary::after {
  content: "";
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-right: 4px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: rotate(45deg);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.route-day-accordion.is-expanding summary::after,
.route-day-accordion.is-collapsing summary::after {
  transition-duration: 520ms;
}

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

.route-day-accordion summary:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(17, 21, 17, 0.28);
}

.route-day-accordion summary span {
  max-width: 900px;
  min-width: 0;
}

.route-day-accordion strong {
  display: block;
  color: var(--ink);
  font-family: var(--display-font);
  font-size: clamp(1.7rem, 2.9vw, 3rem);
  font-weight: 520;
  line-height: 1.04;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.route-day-accordion small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: clamp(0.92rem, 1.05vw, 1.05rem);
  font-weight: 620;
  line-height: 1.45;
}

.route-day-panel {
  padding: 0 clamp(24px, 3vw, 38px) clamp(28px, 3.6vw, 44px);
  border-top: 1px solid var(--line);
  transform-origin: top;
}

.itinerary-stay-gallery {
  width: min(100%, 780px);
  margin-top: clamp(24px, 3vw, 34px);
  display: grid;
  gap: 12px;
}

@media (min-width: 941px) {
  .itinerary-stay-gallery {
    margin-inline: auto;
  }
}

.itinerary-stay-gallery-header {
  display: grid;
  gap: 4px;
}

.itinerary-stay-gallery-header span,
.itinerary-stay-gallery-header small {
  color: var(--muted);
  font-size: clamp(0.82rem, 0.94vw, 0.94rem);
  font-weight: 660;
  line-height: 1.25;
}

.itinerary-stay-gallery-header span {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.itinerary-stay-gallery-header strong {
  color: var(--ink);
  font-family: var(--display-font);
  font-size: clamp(1.6rem, 2.1vw, 2.2rem);
  font-weight: 560;
  line-height: 1;
  letter-spacing: 0;
}

.itinerary-stay-gallery-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(17, 21, 17, 0.08);
  isolation: isolate;
}

.itinerary-stay-gallery-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.002);
  transition:
    opacity 220ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.itinerary-stay-gallery--portrait-focus .itinerary-stay-gallery-frame {
  aspect-ratio: 4 / 3;
}

.itinerary-stay-gallery--portrait-focus .itinerary-stay-gallery-frame img {
  object-position: center 64%;
}

.itinerary-stay-gallery.is-changing .itinerary-stay-gallery-frame img {
  opacity: 0;
  transform: scale(1.018);
}

.itinerary-stay-gallery-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(17, 21, 17, 0.52);
  color: #fff;
  box-shadow: 0 14px 34px rgba(17, 21, 17, 0.22);
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background 200ms ease,
    transform 200ms ease;
}

.itinerary-stay-gallery-button:hover,
.itinerary-stay-gallery-button:focus-visible {
  background: rgba(17, 21, 17, 0.74);
  transform: translateY(-50%) scale(1.04);
}

.itinerary-stay-gallery-button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.92);
  outline-offset: 2px;
}

.itinerary-stay-gallery-button span {
  display: block;
  font-size: 2rem;
  font-weight: 300;
  line-height: 0.82;
  transform: translateY(-1px);
}

.itinerary-stay-gallery-button-prev {
  left: 14px;
}

.itinerary-stay-gallery-button-next {
  right: 14px;
}

.itinerary-stay-gallery-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: min(calc(100% - 96px), 360px);
  transform: translateX(-50%);
}

.itinerary-stay-gallery-dot {
  flex: 1 1 0;
  max-width: 34px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  box-shadow: 0 1px 10px rgba(17, 21, 17, 0.14);
  transition:
    background 200ms ease,
    transform 200ms ease;
}

.itinerary-stay-gallery-dot.is-active {
  background: #d09435;
  transform: scaleX(1.18);
}

.itinerary-stay-gallery-dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.route-day-accordion.is-expanding .route-day-panel {
  animation: routePanelIn 620ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.route-day-accordion.is-collapsing .route-day-panel {
  animation: routePanelOut 420ms cubic-bezier(0.7, 0, 0.2, 1) both;
}

.route-day-panel p {
  max-width: 870px;
  margin: clamp(22px, 2.4vw, 30px) 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  line-height: 1.66;
}

.route-day-panel ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: clamp(22px, 3vw, 32px) 0 0;
  padding: 0;
  list-style: none;
}

.route-day-panel li {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.45;
}

@keyframes routePanelIn {
  from {
    opacity: 0;
    transform: translateY(-14px);
    filter: blur(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes routePanelOut {
  from {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }

  to {
    opacity: 0;
    transform: translateY(-10px);
    filter: blur(4px);
  }
}

.route-collage-section {
  --gallery-progress: 0;
  --gallery-gap: clamp(4px, 0.45vw, 6px);
  position: relative;
  overflow: clip;
  background: #050605;
  color: #fff;
  padding: var(--gallery-gap) 0;
}

.route-collage-sticky {
  min-height: auto;
  position: relative;
  display: block;
  overflow: visible;
  padding: 0;
}

.route-collage-canvas {
  width: 100%;
}

.route-collage-track {
  width: calc(100% - clamp(20px, 2.3vw, 32px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--gallery-gap);
  line-height: normal;
}

.route-collage-row {
  display: flex;
  gap: var(--gallery-gap);
  align-items: flex-start;
  width: 100%;
}

.route-collage-card {
  --item-progress: 1;
  --gallery-delay: 0ms;
  display: block;
  flex: 1 1 0;
  width: auto;
  height: auto;
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: #050605;
  box-shadow: none;
  cursor: zoom-in;
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  filter: blur(5px);
  min-height: 0;
  line-height: normal;
  transition:
    opacity 920ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 920ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 920ms ease;
  transition-delay: var(--gallery-delay);
}

.route-collage-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgba(5, 6, 5, 0.12);
  opacity: 0;
  transition: opacity 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.route-collage-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transform: none;
  transition:
    transform 820ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 820ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.route-collage-card.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.route-collage-card:hover img,
.route-collage-card:focus-visible img {
  transform: scale(1.025);
  filter: brightness(0.9) contrast(1.04) saturate(1.04);
}

.route-kalpitiya-page .route-collage-card img,
.route-kalpitiya-page .route-collage-track.is-justified .route-collage-card img,
.route-kalpitiya-page .route-collage-card:hover img,
.route-kalpitiya-page .route-collage-card:focus-visible img {
  object-fit: contain;
  transform: none;
}

.route-kalpitiya-page .route-collage-static .route-collage-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.route-kalpitiya-page .route-collage-static .route-collage-card,
.route-kalpitiya-page .route-collage-static .route-collage-card-wide,
.route-kalpitiya-page .route-collage-static .route-collage-card-tall,
.route-kalpitiya-page .route-collage-static .route-collage-card-small,
.route-kalpitiya-page .route-collage-static .route-collage-card-poster,
.route-kalpitiya-page .route-collage-static .route-collage-card-square {
  width: 100%;
  height: auto;
  min-height: 0;
  contain: layout paint;
}

.route-kalpitiya-page .route-collage-static .route-collage-card img {
  width: 100%;
  height: auto;
}

.route-collage-card:hover::after,
.route-collage-card:focus-visible::after {
  opacity: 1;
}

.route-collage-card:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.72);
  outline-offset: -1px;
}

.route-collage-card figcaption {
  display: none;
}

.route-collage-card-wide {
  flex-basis: auto;
}

.route-collage-card-tall {
  flex-basis: auto;
}

.route-collage-card-small {
  flex-basis: auto;
}

.route-collage-card-poster {
  flex-basis: auto;
}

.route-collage-card-square {
  flex-basis: auto;
}

.route-collage-track.is-justified .route-collage-row {
  align-items: stretch;
}

.route-collage-track.is-justified .route-collage-row .route-collage-card {
  flex: 0 0 var(--gallery-item-width);
  flex-basis: var(--gallery-item-width);
  height: var(--gallery-item-height);
}

.route-collage-track.is-justified .route-collage-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(52px, 7vw, 88px) clamp(18px, 5vw, 96px);
  background: rgba(3, 4, 3, 0.82);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 420ms cubic-bezier(0.16, 1, 0.3, 1),
    backdrop-filter 420ms ease;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox.is-active {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox-figure {
  width: 100%;
  height: 100%;
  margin: 0;
  display: grid;
  place-items: center;
}

.gallery-lightbox-image {
  max-width: min(100%, 1620px);
  max-height: calc(100svh - clamp(104px, 13vw, 176px));
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.35);
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 340ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 340ms cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-lightbox-image.is-switching {
  opacity: 0;
  transform: scale(0.985);
}

.gallery-lightbox-button {
  position: fixed;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  background: rgba(5, 6, 5, 0.18);
  color: #fff;
  font-family: var(--font-sans);
  line-height: 1;
  cursor: pointer;
  transition:
    background 260ms ease,
    border-color 260ms ease,
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-lightbox-button:hover,
.gallery-lightbox-button:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.9);
  transform: scale(1.04);
}

.gallery-lightbox-close {
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  font-size: 1.7rem;
}

.gallery-lightbox-nav {
  bottom: 28px;
  width: 50px;
  height: 50px;
  font-size: 1.75rem;
}

.gallery-lightbox-prev {
  right: 92px;
}

.gallery-lightbox-next {
  right: 24px;
}

body.gallery-lightbox-open {
  overflow: hidden;
}

.route-booking-prices {
  padding: clamp(92px, 10vw, 148px) 0;
  background: var(--paper);
}

.route-booking-grid {
  min-height: clamp(760px, 118svh, 1040px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.56fr);
  gap: clamp(36px, 5.6vw, 82px);
  align-items: start;
}

.route-booking-grid > * {
  min-width: 0;
}

.route-price-flow {
  display: grid;
  align-content: start;
  gap: clamp(26px, 5vw, 58px);
  padding-top: clamp(26px, 6vw, 74px);
}

.route-price-card {
  width: 100%;
  min-width: 0;
  max-width: 760px;
  padding-bottom: clamp(34px, 6vw, 72px);
  border-bottom: 1px solid var(--line);
}

.route-price-eyebrow,
.route-price-note span {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.route-price-display {
  margin: 0;
  color: var(--ink);
  font-family: var(--display-font);
  font-weight: 560;
  letter-spacing: 0;
  line-height: 0.94;
}

.route-price-prefix {
  display: block;
  margin-bottom: 0.08em;
  color: rgba(17, 21, 17, 0.72);
  font-size: clamp(2.1rem, 3.2vw, 3.9rem);
  font-weight: 560;
  line-height: 0.95;
}

.route-price-main {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.18em;
  overflow: visible;
  perspective: 900px;
  max-width: 100%;
  white-space: nowrap;
  font-size: clamp(3.45rem, 6.4vw, 8.2rem);
  line-height: 0.9;
}

[data-price-converter][data-active-currency="LKR"] .route-price-main {
  flex-wrap: wrap;
  row-gap: 0.08em;
  white-space: normal;
}

.route-price-value {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  transform-origin: 50% 70%;
}

.route-price-onwards {
  display: inline-block;
  flex: 0 1 auto;
  max-width: 100%;
  color: rgba(17, 21, 17, 0.68);
  font-size: 0.46em;
  font-weight: 560;
  line-height: 1;
  overflow-wrap: anywhere;
  transform-origin: 50% 70%;
}

html:not([lang="en"]) .route-price-main {
  width: 100%;
  row-gap: 0.08em;
  white-space: normal;
}

html:not([lang="en"]) .route-price-value {
  white-space: normal;
  overflow-wrap: anywhere;
}

html:not([lang="en"]) .route-price-onwards {
  flex-basis: 100%;
  margin-left: 0.08em;
  font-size: 0.34em;
  line-height: 1.06;
}

[data-price-converter][data-active-currency="LKR"] .route-price-onwards {
  flex-basis: 100%;
  margin-left: 0.08em;
  font-size: 0.34em;
}

.route-price-main.is-price-changing .route-price-value {
  animation: priceRollPull 620ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.route-price-main.is-price-changing .route-price-onwards {
  animation: priceRollPull 620ms cubic-bezier(0.16, 1, 0.3, 1) 42ms both;
}

@keyframes priceRollPull {
  0% {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
    filter: blur(0);
  }

  42% {
    opacity: 0;
    transform: translateY(-0.42em) rotateX(18deg);
    filter: blur(4px);
  }

  43% {
    opacity: 0;
    transform: translateY(0.46em) rotateX(-16deg);
    filter: blur(4px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0deg);
    filter: blur(0);
  }
}

.route-price-card p,
.route-price-note p {
  max-width: 640px;
  margin: clamp(24px, 3vw, 34px) 0 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.26vw, 1.18rem);
  font-weight: 620;
  line-height: 1.62;
}

.route-price-card p {
  max-width: 620px;
  color: rgb(61, 61, 61);
  font-family: var(--body-font);
  font-size: clamp(0.82rem, 0.86vw, 0.92rem);
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: 0;
}

.route-price-note {
  max-width: 560px;
  padding-top: clamp(18px, 3vw, 30px);
}

.route-price-note p {
  margin-top: 0;
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
}

.route-price-important-note {
  max-width: 760px;
  padding-top: clamp(20px, 3vw, 34px);
}

.route-price-important-note span {
  margin-bottom: 12px;
  color: #111511;
  font-family: "Instrument Serif", "Times New Roman", Georgia, serif;
  font-size: clamp(1.3rem, 2.1vw, 2rem);
  font-style: italic;
  font-weight: 400;
  font-synthesis: none;
  line-height: 1;
  letter-spacing: -0.015em;
  white-space: nowrap;
}

.route-price-important-note ul {
  max-width: 780px;
  margin: 0;
  padding-left: 1.15em;
  list-style: disc;
}

.route-price-important-note li {
  max-width: 780px;
  margin: 0;
  padding-left: 0;
  color: rgba(17, 21, 17, 0.82);
  font-family: var(--font-sans);
  font-size: clamp(0.88rem, 0.92vw, 0.98rem);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0;
}

.route-price-important-note li + li {
  margin-top: 0.35em;
}

.route-booking-panel {
  position: sticky;
  top: clamp(98px, 14svh, 138px);
  width: 100%;
  min-width: 0;
  display: grid;
  justify-items: start;
  gap: clamp(18px, 2.6vw, 28px);
  padding-top: clamp(26px, 6vw, 74px);
}

.route-booking-panel h2 {
  max-width: 560px;
  margin: 0;
  color: rgba(17, 21, 17, 0.78);
  font-family: var(--serif-font);
  font-size: clamp(2.45rem, 4vw, 4.3rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: 0;
}

.price-currency-control {
  position: relative;
  width: min(100%, 360px);
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.currency-control-label {
  display: block;
  padding-left: 2px;
}

.currency-select-trigger,
.currency-option-list button {
  font-family: var(--font-sans);
}

.currency-select-trigger {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px 0 18px;
  background: #3f3e3a;
  color: #fff;
  font-size: 1rem;
  font-weight: 720;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: 0 18px 38px -22px rgba(17, 21, 17, 0.3);
  cursor: pointer;
  transition:
    background 260ms ease,
    border-radius 360ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 360ms ease;
}

.currency-selected,
.currency-option-list button {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  max-width: 100%;
}

.currency-flag {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  font-size: 1.45rem;
  line-height: 1;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

img.currency-flag {
  display: block;
  object-fit: cover;
}

.currency-selected span:last-child,
.currency-option-list button span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.currency-chevron {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.currency-chevron::before {
  content: "";
  position: absolute;
  inset: 2px 2px auto auto;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255, 255, 255, 0.86);
  border-bottom: 2px solid rgba(255, 255, 255, 0.86);
  transform: rotate(45deg);
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.currency-option-list {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  border-radius: 0 0 8px 8px;
  background: #111;
  opacity: 0;
  transform: translateY(-10px) scaleY(0.96);
  transform-origin: top;
  transition:
    max-height 520ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 260ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    margin-top 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.currency-option-list button {
  width: 100%;
  min-height: 62px;
  border: 0;
  padding: 12px 26px;
  background: transparent;
  color: #fff;
  font-size: 1.03rem;
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: 0;
  text-align: left;
  text-transform: none;
  cursor: pointer;
  transition:
    background 220ms ease,
    color 220ms ease,
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.currency-option-list button:hover,
.currency-option-list button:focus-visible,
.currency-option-list button[aria-selected="true"] {
  background: rgba(255, 255, 255, 0.075);
}

.currency-option-list button:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.42);
}

.price-currency-control.is-open .currency-select-trigger {
  border-radius: 28px;
  background: #3f3e3a;
  box-shadow: 0 12px 30px -22px rgba(17, 21, 17, 0.28);
}

.price-currency-control.is-open .currency-chevron::before {
  transform: translateY(4px) rotate(225deg);
}

.price-currency-control.is-open .currency-option-list {
  max-height: 590px;
  margin-top: -2px;
  opacity: 1;
  transform: translateY(0) scaleY(1);
}

.faq-menu-control .faq-menu-trigger {
  min-height: 58px;
  padding-inline: 20px;
  background: #111511;
  color: #fff;
  font-family: "vinila-variable", "Vinila", var(--font-sans);
  font-size: 0.8889rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.price-currency-control.faq-menu-control.is-open .faq-menu-trigger {
  border-radius: 999px;
  background: #111511;
}

.faq-menu-control .faq-category-list {
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.price-currency-control.faq-menu-control.is-open .faq-category-list {
  max-height: 204px;
  overflow: hidden;
  margin-top: 0;
  padding: 0;
  opacity: 1;
  transform: translateY(0) scaleY(1);
}

.faq-menu-control .faq-category-list button {
  min-height: 40px;
  justify-content: center;
  padding: 7px 14px;
  color: rgba(17, 21, 17, 0.76);
  font-family: "vinila-variable", "Vinila", var(--font-sans);
  font-size: 0.8889rem;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
  white-space: normal;
  scroll-snap-align: center;
  pointer-events: none;
  cursor: default;
  display: none;
  opacity: 0;
  transform: translateY(-4px);
}

.faq-menu-control .faq-category-list button[data-wheel-position] {
  display: flex;
  animation: faqWheelItemIn 360ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.faq-menu-control .faq-category-list button[data-wheel-position="1"] {
  opacity: 0.9;
}

.faq-menu-control .faq-category-list button[data-wheel-position="2"] {
  opacity: 0.72;
}

.faq-menu-control .faq-category-list button[data-wheel-position="3"] {
  opacity: 0.54;
}

.faq-menu-control .faq-category-list button[data-wheel-position="4"] {
  opacity: 0.36;
}

.faq-menu-control .faq-category-list button[data-wheel-position="5"] {
  opacity: 0.24;
}

@media (max-width: 860px) {
  .faq-menu-control .faq-category-list {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    max-height: 0;
    margin-top: 0;
    padding: 0 7px;
    border-radius: 5px;
    background: #111511;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-10px) scaleY(0.96);
    transform-origin: top center;
    -webkit-mask-image: none;
    mask-image: none;
    transition:
      max-height 420ms cubic-bezier(0.16, 1, 0.3, 1),
      margin-top 420ms cubic-bezier(0.16, 1, 0.3, 1),
      padding 420ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 260ms ease,
      transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .faq-menu-control.is-open .faq-category-list,
  .price-currency-control.faq-menu-control.is-open .faq-category-list {
    max-height: 420px;
    margin-top: 8px;
    padding: 7px;
    opacity: 1;
    overflow: hidden;
    transform: translateY(0) scaleY(1);
    scrollbar-width: none;
  }

  .faq-menu-control.is-open .faq-category-list::-webkit-scrollbar {
    display: none;
  }

  .faq-menu-control .faq-category-list button,
  .faq-menu-control .faq-category-list button[data-wheel-position] {
    min-height: 40px;
    display: flex;
    justify-content: flex-start;
    padding: 8px 10px;
    border-radius: 4px;
    color: #fff;
    text-align: left;
    pointer-events: auto;
    cursor: pointer;
    opacity: 1;
    transform: none;
    animation: none;
    transition:
      background 220ms ease,
      color 220ms ease,
      transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .faq-menu-control .faq-category-list button:hover,
  .faq-menu-control .faq-category-list button:focus-visible,
  .faq-menu-control .faq-category-list button[aria-selected="true"] {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }

  .faq-menu-control .faq-category-list button:focus-visible {
    outline: none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.46);
  }
}

.route-booking-panel .button {
  min-width: min(100%, 220px);
  justify-content: center;
  box-shadow: none;
  transition:
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    background 260ms ease,
    color 260ms ease,
    border-color 260ms ease;
}

.route-booking-panel .button:hover {
  box-shadow: none;
}

.route-plan-section {
  min-height: 245svh;
  padding: 0;
  display: block;
  background: var(--paper);
  color: var(--ink);
  overflow: visible;
}

.route-plan-inner {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: clamp(30px, 4.5vw, 54px);
  padding-block: clamp(92px, 11vw, 150px);
  text-align: center;
}

.route-detail-page .route-plan-inner {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-inline: clamp(24px, 4vw, 88px);
  box-sizing: border-box;
}

.route-plan-section .route-plan-title {
  width: min(1500px, calc(100vw - clamp(48px, 8vw, 176px)));
  max-width: 100%;
  margin: 0;
  color: rgba(17, 21, 17, 0.38);
  font-family: var(--display-font);
  font-size: clamp(2.8rem, 4.8vw, 5.75rem);
  font-weight: 650;
  line-height: 1.02;
  letter-spacing: 0;
}

.route-plan-line {
  display: block;
  overflow: visible;
  padding-block: 0.06em 0.12em;
}

.route-plan-line-lead {
  white-space: nowrap;
}

.route-plan-word {
  display: inline-block;
  max-width: 100%;
  overflow-wrap: anywhere;
  transform: translate3d(0, 0.62em, 0);
  opacity: 0;
  filter: blur(5px);
  will-change: transform, opacity, filter;
  transition: none;
}

html:not([lang="en"]) .route-plan-section {
  overflow: clip;
}

html:not([lang="en"]) .route-plan-section .route-plan-title {
  width: min(1240px, calc(100vw - clamp(56px, 10vw, 196px)));
  font-size: clamp(2.45rem, 4.2vw, 4.9rem);
  line-height: 1.08;
}

html:not([lang="en"]) .route-plan-line {
  max-width: 100%;
}

html:not([lang="en"]) .route-plan-line-lead {
  white-space: normal;
}

.route-plan-section .route-plan-script {
  color: rgba(17, 21, 17, 0.68);
  font-family: var(--serif-font);
  font-style: italic;
  font-weight: 400;
}

.route-plan-actions {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 0;
  width: min(360px, 88vw);
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(0, 28px, 0);
  overflow: visible;
  isolation: isolate;
  pointer-events: none;
  will-change: opacity, transform, filter;
  transition: none;
}

.route-plan-actions::before {
  content: none;
}

.route-plan-actions.reveal,
.route-plan-actions.reveal.visible {
  clip-path: none;
}

.route-plan-actions.is-scroll-ready {
  pointer-events: auto;
}

.route-plan-trigger,
.route-plan-options a {
  position: relative;
  overflow: hidden;
  border: 1px solid #111511;
  border-radius: 4px;
  background: #111511;
  color: #fff;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    background 420ms cubic-bezier(0.16, 1, 0.3, 1),
    color 420ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 420ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 420ms ease;
}

.route-plan-trigger {
  z-index: 3;
  width: fit-content;
  min-height: 58px;
  padding: 0 34px;
  font: inherit;
  font-size: 1.02rem;
  font-weight: 760;
  letter-spacing: 0;
  cursor: pointer;
}

.route-plan-trigger-label,
.route-plan-option-label {
  position: relative;
  z-index: 2;
}

.route-plan-trigger::before,
.route-plan-options a::before {
  content: none;
}

.route-plan-trigger::after,
.route-plan-options a::after {
  content: none;
}

.route-plan-trigger:hover,
.route-plan-trigger:focus-visible,
.route-plan-options a:hover,
.route-plan-options a:focus-visible {
  color: #111511;
  outline: none;
  background: #fff;
  border-color: #111511;
  box-shadow: none;
  transform: translateY(-2px);
}

.route-plan-options {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  width: min(292px, 100%);
  margin-top: -58px;
  max-height: 58px;
  opacity: 0;
  overflow: visible;
  filter: none;
  visibility: hidden;
  transform: translate3d(0, -4px, 0) scaleX(0.58) scaleY(0.08);
  transform-origin: center center;
  pointer-events: none;
  transition:
    max-height 620ms cubic-bezier(0.22, 1.2, 0.36, 1),
    margin-top 620ms cubic-bezier(0.22, 1.2, 0.36, 1),
    opacity 280ms ease 460ms,
    transform 620ms cubic-bezier(0.22, 1.2, 0.36, 1),
    visibility 0s linear 620ms;
}

.route-plan-options a {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  font-size: 0.92rem;
  font-weight: 760;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, -26px, 0) scaleX(0.52) scaleY(0.08);
  transform-origin: center center;
  transition:
    background 420ms cubic-bezier(0.16, 1, 0.3, 1),
    color 420ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 420ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 280ms ease 360ms,
    transform 620ms cubic-bezier(0.22, 1.2, 0.36, 1),
    visibility 0s linear 620ms;
}

.route-plan-options a:nth-child(1) {
  transition-delay: 0ms, 0ms, 0ms, 0ms, 0ms;
}

.route-plan-options a:nth-child(2) {
  transition-delay: 45ms, 0ms, 0ms, 0ms, 45ms;
}

.route-plan-trigger:focus-visible,
.route-plan-options a:focus-visible {
  box-shadow:
    0 0 0 3px rgba(17, 21, 17, 0.12);
}

.route-plan-actions.is-open .route-plan-options {
  gap: 9px;
  margin-top: 10px;
  max-height: 118px;
  opacity: 1;
  filter: blur(0);
  visibility: visible;
  transform: translate3d(0, 0, 0) scale(1);
  pointer-events: auto;
}

.route-plan-actions.is-open .route-plan-options a {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0) scale(1);
}

.route-plan-actions.is-open .route-plan-options,
.route-plan-actions.is-open .route-plan-options a {
  transition-delay: 0ms;
}

.route-editorial {
  padding-top: 0;
}

.route-detail-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #111511;
}

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

.route-photo-large {
  min-height: min(74svh, 760px);
}

.route-detail-photo figcaption,
.route-gallery figcaption {
  padding: 12px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.route-editorial-copy {
  position: sticky;
  top: 118px;
  padding-top: 18px;
}

.route-editorial-copy p:last-child {
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.36vw, 1.2rem);
}

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

.route-day-card {
  min-height: 500px;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
}

.route-day-card h3 {
  max-width: 600px;
  font-size: clamp(2.3rem, 4vw, 4.5rem);
}

.route-day-card p,
.route-day-card li {
  color: var(--muted);
}

.route-day-card ul,
.route-inclusion-columns ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.route-day-card li,
.route-inclusion-columns li {
  padding: 12px 0;
  border-top: 1px solid rgba(23, 33, 28, 0.14);
}

.route-fullbleed {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: #111511;
}

.route-fullbleed::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 10, 8, 0.5), transparent 58%),
    linear-gradient(0deg, rgba(7, 10, 8, 0.74), transparent 46%);
}

.route-fullbleed img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.route-fullbleed > div {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding-bottom: clamp(46px, 10svh, 110px);
}

.route-fullbleed h2 {
  max-width: 760px;
  margin: 12px 0 0;
  color: #fff;
  font-family: var(--display-font);
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 430;
  line-height: 0.88;
}

.route-detail-list {
  border-top: 1px solid var(--line);
}

.route-detail-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.route-detail-list span {
  color: var(--muted);
  font-weight: 760;
}

.route-detail-list h3 {
  margin: 0 0 8px;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.route-detail-list p {
  margin: 0;
}

.route-gallery-section {
  padding-top: 0;
}

.route-gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 14px;
  align-items: end;
}

.route-gallery figure {
  margin: 0;
}

.route-gallery img {
  width: 100%;
  height: clamp(360px, 48vw, 680px);
  object-fit: cover;
  border-radius: var(--radius);
}

.route-gallery figure:nth-child(2) {
  transform: translateY(64px);
}

.route-inclusions {
  background: #111511;
  overflow: hidden;
}

.route-inclusion-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

.route-inclusion-columns-opposed {
  align-items: stretch;
}

.route-inclusion-columns article,
.route-inclusion-card {
  min-height: clamp(520px, 62vw, 720px);
  padding: clamp(28px, 4.2vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.route-inclusion-card h2,
.route-inclusion-columns h3 {
  max-width: 7ch;
  margin: 0 0 clamp(34px, 5vw, 70px);
  color: #fff;
  font-family: var(--ui-font);
  font-size: clamp(2.75rem, 5vw, 5.8rem);
  font-weight: 760;
  line-height: 0.9;
  letter-spacing: 0;
}

.route-inclusion-card h2 {
  font-size: clamp(2.8rem, 5.35vw, 6.2rem);
}

.route-inclusion-columns li {
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.98rem, 1.08vw, 1.12rem);
  line-height: 1.45;
}

.route-cinema .container {
  width: min(1240px, calc(100% - 48px));
}

.cinema-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.62fr);
  align-items: center;
}

.cinema-stage {
  min-height: clamp(560px, 72vw, 820px);
  background: #050706;
}

.cinema-copy h2 {
  color: #fff;
  font-size: clamp(3rem, 5.8vw, 6.4rem);
}

.cinema-points {
  gap: 0;
  margin-top: 38px;
}

.cinema-points article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 8px 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.cinema-points span {
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--serif-font);
  font-size: 1.42rem;
  font-weight: 400;
}

.cinema-points h3,
.cinema-points p {
  grid-column: 2;
  margin: 0;
}

.split {
  align-items: center;
}

.image-panel {
  min-height: clamp(480px, 52vw, 680px);
  background:
    linear-gradient(180deg, rgba(17, 21, 17, 0.04), rgba(17, 21, 17, 0.22)),
    var(--img-devils-alt) center calc(50% + var(--parallax-y, 0px)) / cover;
  will-change: background-position;
}

.feature-list {
  display: grid;
  gap: 0;
  margin-top: 34px;
}

.feature {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  background: transparent;
}

.feature .icon,
.timeline-item::before,
.date-badge,
.team-avatar,
.contact-row .icon {
  border-radius: 4px;
  background: var(--ink);
  color: #fff;
  box-shadow: none;
}

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

.blog-card {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: none;
}

.blog-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.blog-card.featured {
  grid-column: span 2;
}

.journal-strip {
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
}

.blog-image {
  min-height: 260px;
  background-position: center calc(50% + var(--parallax-y, 0px));
  background-size: cover;
  will-change: background-position;
}

.blog-card.featured .blog-image {
  min-height: 420px;
}

.blog-image-devils-staircase {
  background-image:
    linear-gradient(180deg, rgba(17, 21, 17, 0.02), rgba(17, 21, 17, 0.16)),
    url("assets/blog-optimized/devils-staircase-blog.jpg");
}

.blog-body,
.team-card {
  padding: clamp(22px, 3vw, 32px);
}

.post-meta {
  display: flex;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.blog-article-hero {
  padding: clamp(128px, 15vw, 184px) 0 clamp(48px, 7vw, 88px);
  background: var(--paper);
}

.blog-article-kicker {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-article-title {
  max-width: 1040px;
  margin: 0;
  color: var(--ink);
  font-family: var(--display-font);
  font-size: clamp(4.2rem, 9vw, 9.4rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: clamp(24px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 720;
}

.blog-article-image {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  background: #dfe6da;
}

.blog-article-image img {
  display: block;
  width: 100%;
  height: min(72svh, 760px);
  object-fit: cover;
}

.blog-article-content {
  padding: clamp(56px, 8vw, 104px) 0 clamp(92px, 10vw, 148px);
  background: var(--paper);
}

.blog-article-copy {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
}

.blog-article-copy p {
  margin: 0 0 1.15em;
  color: rgba(17, 21, 17, 0.78);
  font-size: clamp(1.02rem, 1.18vw, 1.18rem);
  font-weight: 500;
  line-height: 1.78;
}

.blog-article-copy p:first-child {
  color: var(--ink);
  font-size: clamp(1.2rem, 1.6vw, 1.55rem);
  line-height: 1.56;
}

.blog-article-copy a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.blog-page,
.blog-page main {
  background: #f4f0e8;
}

.blog-projects-stage {
  --blog-reveal-progress: 0;
  --blog-title-progress: 0;
  --blog-tabs-progress: 0;
  --blog-rail-progress: 0;
  --blog-grid-progress: 0;
  --blog-card-progress: 0;
  --blog-grid-lift: 0;
  --blog-grid-scroll: 0;
  min-height: 400svh;
  background:
    radial-gradient(circle at 50% 34%, rgba(17, 21, 17, 0.045), transparent 34%),
    #f4f0e8;
}

.blog-projects-stage,
.blog-projects-stage * {
  box-sizing: border-box;
}

.blog-projects-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 100svh;
  display: grid;
  grid-template-rows: minmax(250px, 0.98fr) minmax(330px, 1.02fr);
  align-items: start;
  gap: clamp(42px, 5.2vw, 82px);
  overflow: visible;
  padding: clamp(96px, 10vw, 132px) clamp(10px, 1vw, 18px) clamp(18px, 2vw, 26px);
}

.blog-projects-heading {
  width: min(960px, 100%);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: clamp(22px, 3vw, 34px);
  align-self: center;
  text-align: center;
  opacity: calc(1 - var(--blog-grid-progress));
  transform: translate3d(0, calc(var(--blog-grid-progress) * -168px), 0);
  will-change: opacity, transform;
}

.blog-projects-heading h1 {
  margin: 0;
  max-width: 660px;
  color: #111511;
  font-family: var(--font-sans);
  font-size: clamp(2.1rem, 3.8vw, 4.15rem);
  font-weight: 860;
  line-height: 0.94;
  letter-spacing: -0.018em;
  text-transform: uppercase;
  opacity: var(--blog-title-progress);
  transform: translate3d(0, calc((1 - var(--blog-title-progress)) * 0.58em), 0);
  filter: blur(calc((1 - var(--blog-title-progress)) * 4px));
  clip-path: inset(calc((1 - var(--blog-title-progress)) * 100%) 0 0 0);
  will-change: opacity, transform, filter, clip-path;
}

.blog-category-tabs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 50px;
  padding: 6px;
  border: 1px solid rgba(17, 21, 17, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 18px 54px rgba(17, 21, 17, 0.08);
  opacity: var(--blog-tabs-progress);
  transform: translate3d(0, calc((1 - var(--blog-tabs-progress)) * 22px), 0) scale(calc(0.94 + var(--blog-tabs-progress) * 0.06));
  filter: blur(calc((1 - var(--blog-tabs-progress)) * 3px));
  clip-path: inset(calc((1 - var(--blog-tabs-progress)) * 100%) 0 0 0 round 999px);
  will-change: opacity, transform, filter, clip-path;
}

.blog-projects-stage.is-filtered-grid .blog-projects-heading {
  position: fixed;
  top: clamp(76px, 8svh, 96px);
  left: 0;
  right: 0;
  z-index: 40;
  width: min(960px, calc(100% - 32px));
  opacity: 1;
  transform: none;
  pointer-events: none;
}

.blog-projects-stage.is-filtered-grid .blog-projects-heading h1 {
  display: none;
}

.blog-projects-stage.is-filtered-grid .blog-category-tabs {
  opacity: 1;
  transform: none;
  filter: none;
  clip-path: inset(0 0 0 0 round 999px);
  pointer-events: auto;
}

.blog-projects-stage.is-filtered-grid .blog-projects-list {
  position: fixed;
  top: clamp(164px, 18svh, 188px);
  left: 0;
  right: 0;
  z-index: 20;
  max-height: calc(100svh - clamp(164px, 18svh, 188px));
  padding: 0 clamp(10px, 1vw, 18px) 48px;
  overflow-y: auto;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.blog-category-tabs button {
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  min-height: 38px;
  background: transparent;
  color: #111511;
  font: inherit;
  font-size: clamp(0.74rem, 0.78vw, 0.86rem);
  font-weight: 760;
  letter-spacing: 0;
  cursor: pointer;
  transition:
    background 300ms cubic-bezier(0.16, 1, 0.3, 1),
    color 300ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 260ms ease,
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-category-tabs button:hover,
.blog-category-tabs button:focus-visible,
.blog-category-tabs button.is-active {
  background: #111511;
  color: #fff;
  opacity: 1;
  outline: none;
  transform: translateY(-1px);
}

.blog-projects-list {
  width: 100%;
  align-self: start;
  opacity: var(--blog-rail-progress);
  transform: translate3d(0, calc((1 - var(--blog-rail-progress)) * 136px - var(--blog-card-progress) * 20px - var(--blog-grid-lift) * clamp(300px, 29vw, 372px) - var(--blog-grid-scroll) * clamp(380px, 62svh, 560px)), 0);
  pointer-events: none;
  transition: opacity 160ms linear;
  will-change: opacity, transform;
}

.blog-projects-stage.is-cards-ready .blog-projects-list {
  pointer-events: auto;
}

.blog-projects-track {
  display: grid;
  width: calc(100vw - clamp(20px, 2vw, 36px));
  margin: 0 auto;
  grid-template-columns: repeat(6, minmax(136px, 1fr));
  gap: clamp(8px, 0.9vw, 14px);
  align-items: start;
}

.blog-projects-stage.is-grid .blog-projects-track {
  width: calc(100vw - clamp(20px, 2vw, 32px));
  margin-left: auto;
  margin-right: auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(10px, 1.15vw, 18px);
}

.blog-project-card {
  min-width: 0;
  display: grid;
  gap: 14px;
  color: #111511;
  text-decoration: none;
  opacity: var(--card-progress, var(--blog-card-progress));
  transform: translate3d(0, calc((1 - var(--card-progress, var(--blog-card-progress))) * 128px), 0) scale(calc(0.975 + var(--card-progress, var(--blog-card-progress)) * 0.025));
  clip-path: inset(calc((1 - var(--card-progress, var(--blog-card-progress))) * 100%) 0 0 0);
  contain: layout paint style;
  backface-visibility: hidden;
  will-change: opacity, transform, clip-path;
  transition:
    opacity 660ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1200ms cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 1200ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--blog-delay, 0ms);
  transform-origin: top left;
}

.blog-project-card.visible {
  --card-progress: 1;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  clip-path: inset(0 0 0 0);
  transition: none;
  transition-delay: 0ms;
}

.blog-projects-stage.is-filtered-grid {
  --blog-title-progress: 1;
  --blog-tabs-progress: 1;
  --blog-rail-progress: 1;
  --blog-grid-progress: 1;
  --blog-card-progress: 1;
}

.blog-project-card.is-filtered-out {
  display: none;
}

.blog-projects-stage:not(.is-grid) .blog-project-copy {
  display: none;
}

.blog-project-image {
  display: block;
  min-height: clamp(170px, 20vw, 260px);
  background:
    linear-gradient(180deg, rgba(17, 21, 17, 0.02), rgba(17, 21, 17, 0.18)),
    var(--blog-image) center / cover;
  filter: saturate(0.9) contrast(0.96);
  transform: scale(1.035);
  backface-visibility: hidden;
  will-change: transform;
  transition:
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 900ms ease;
}

.blog-projects-stage.is-grid .blog-project-image {
  min-height: clamp(260px, 38svh, 390px);
}

.blog-project-card:hover .blog-project-image {
  filter: saturate(1) contrast(1);
  transform: scale(1);
}

.blog-project-copy {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding-inline: 2px;
  opacity: var(--blog-grid-progress);
  transform: translate3d(0, calc((1 - var(--blog-grid-progress)) * 12px), 0);
  transition:
    opacity 420ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-project-copy strong {
  max-width: 24ch;
  font-family: var(--serif-font, "Instrument Serif", Georgia, serif);
  font-size: clamp(1.22rem, 1.8vw, 2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
  padding-bottom: 0.08em;
}

.blog-project-copy small {
  flex: 0 0 auto;
  color: rgba(17, 21, 17, 0.56);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.02em;
  line-height: 1.1;
  padding-top: 0.18em;
  text-align: right;
}

.cta-band {
  min-height: 520px;
  display: grid;
  align-items: end;
  background:
    linear-gradient(180deg, rgba(17, 21, 17, 0.06), rgba(17, 21, 17, 0.88)),
    var(--img-thoppigala) center calc(50% + var(--parallax-y, 0px)) / cover;
}

.cta-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: clamp(48px, 8vw, 82px);
}

.cta-inner h2 {
  color: #fff;
}

.button,
.button.dark,
.filter-btn.active,
.route-card-order {
  min-height: 44px;
  border-radius: 4px;
  background: #111511;
  color: #fff;
  box-shadow: none;
}

.button.ghost,
.filter-btn {
  min-height: 42px;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
}

.button:hover,
.nav-cta:hover,
.filter-btn:hover,
.route-card-order:hover {
  transform: translateY(-1px);
  box-shadow: none;
}

.site-header .nav,
.site-header.scrolled .nav,
.inner-page .site-header .nav,
.inner-page .site-header.scrolled .nav {
  overflow: visible;
  grid-template-columns: 170px minmax(0, 1fr);
}

.header-preferences {
  grid-column: 1;
  grid-row: 1;
  z-index: 9;
  display: flex;
  align-self: start;
  justify-self: start;
  align-items: center;
  gap: 7px;
  margin-top: 9px;
  transform: translate3d(var(--header-pref-x, 0px), var(--header-pref-y, 104px), 0);
  transition: none;
}

.inner-page .header-preferences,
.inner-page .site-header.scrolled .header-preferences {
  transform: translate3d(96px, 0, 0);
}

.preference-menu {
  position: relative;
  line-height: 1;
}

.preference-trigger {
  min-width: max-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, var(--header-control-border-alpha, 0.18));
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(255, 255, 255, var(--header-control-bg-alpha, 0.14));
  color: var(--header-brand-color);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0;
  text-shadow: 0 2px 18px rgba(0, 0, 0, var(--header-shadow-alpha));
  box-shadow: 0 10px 36px rgba(0, 0, 0, var(--header-control-shadow-alpha, 0.16));
  cursor: pointer;
  transition:
    background 260ms ease,
    border-color 260ms ease,
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.preference-trigger:hover,
.preference-menu.is-open .preference-trigger {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, var(--header-control-bg-hover-alpha, 0.24));
}

.preference-flag,
.preference-option-list button span:first-child,
.preference-option-list button .preference-flag {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  font-size: 0.98rem;
  line-height: 1;
  text-shadow: none;
}

img.preference-flag,
.preference-option-list button img.preference-flag {
  display: block;
  object-fit: cover;
}

.preference-symbol {
  min-width: max-content;
  text-align: left;
  white-space: nowrap;
}

.preference-chevron {
  position: relative;
  width: 9px;
  height: 9px;
}

.preference-chevron::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.preference-menu.is-open .preference-chevron::before {
  transform: translateY(2px) rotate(225deg);
}

.preference-option-list button:disabled,
.preference-option-list button[aria-disabled="true"] {
  opacity: 0.34;
  cursor: not-allowed;
  filter: grayscale(1);
  pointer-events: none;
}

#ceylon-google-translate,
.goog-te-banner-frame,
.goog-te-balloon-frame,
.goog-te-gadget,
.skiptranslate {
  display: none !important;
}

body {
  top: 0 !important;
}

.preference-option-list {
  position: absolute;
  top: calc(100% + 7px);
  left: 0;
  z-index: 110;
  min-width: max(76px, max-content);
  display: grid;
  gap: 2px;
  overflow: hidden;
  border-radius: 12px;
  padding: 6px;
  background: rgba(17, 21, 17, 0.96);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.96);
  transform-origin: top left;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  transition:
    opacity 220ms ease,
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.preference-menu.is-open .preference-option-list {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.preference-option-list button {
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 8px;
  padding: 6px 8px;
  background: transparent;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 720;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background 200ms ease,
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.preference-option-list button:hover,
.preference-option-list button:focus-visible,
.preference-option-list button[aria-selected="true"] {
  background: rgba(255, 255, 255, 0.12);
}

.preference-option-list button:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.46);
}

.hero .hero-route-card {
  width: auto;
  min-width: 220px;
  padding: 0;
  border-radius: 6px;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  pointer-events: auto;
}

.hero .route-card-top {
  display: block;
  padding: 0;
  border-bottom: 0;
}

.hero .route-card-order {
  width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid #111511;
  border-radius: 4px;
  background: #111511;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 720;
  line-height: 1;
  text-decoration: none;
  box-shadow: none;
  cursor: pointer;
  pointer-events: auto;
  position: relative;
  z-index: 5;
  transition:
    background 420ms cubic-bezier(0.16, 1, 0.3, 1),
    color 420ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 420ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero .route-card-order:hover {
  border-color: #111511;
  background: #fff;
  color: #111511;
  transform: translateY(-1px);
}

@media (min-width: 941px) {
  .hero .route-card-order {
    opacity: 0;
  }
}

.hero .route-card-body,
.hero .route-card-mark {
  display: none;
}

.header-book-route {
  position: fixed;
  top: 12px;
  right: 16px;
  z-index: 9;
  --header-book-x: 0px;
  --header-book-y: 0px;
  --header-book-scale-x: 1;
  --header-book-scale-y: 1;
  --header-book-fill: 0;
  --header-book-fill-percent: 0%;
  min-width: 168px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #111511;
  border-radius: 4px;
  padding: 0 22px;
  background: linear-gradient(to top, #111511 0 var(--header-book-fill-percent), #fff var(--header-book-fill-percent) 100%);
  color: color-mix(in srgb, #fff var(--header-book-fill-percent), #111511);
  font-size: 0.84rem;
  font-weight: 720;
  line-height: 1;
  opacity: 1;
  overflow: hidden;
  pointer-events: auto;
  transform: translate3d(var(--header-book-x), var(--header-book-y), 0);
  transform-origin: center;
  box-shadow: none;
  transition:
    border-color 220ms ease,
  opacity 420ms ease;
}

.header-phone-menu {
  position: fixed;
  top: 12px;
  right: 194px;
  z-index: 10;
  --header-book-fill: 0;
  --header-book-fill-percent: 0%;
  width: 48px;
  min-height: 42px;
}

.header-phone-trigger {
  position: relative;
  width: 48px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #111511;
  border-radius: 4px;
  padding: 0;
  overflow: hidden;
  background: #fff;
  color: #fff;
  cursor: pointer;
  box-shadow: none;
  transition:
    border-color 220ms ease,
    transform 220ms ease;
}

.header-phone-trigger::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #111511;
  transform: scaleY(var(--header-book-fill, 0));
  transform-origin: bottom;
  will-change: transform;
}

.header-phone-icon {
  position: relative;
  z-index: 1;
  width: 17px;
  height: 17px;
  display: block;
  fill: currentColor;
  mix-blend-mode: difference;
}

.inner-page .site-header .header-phone-menu {
  --header-book-fill: 1;
  --header-book-fill-percent: 100%;
}

.header-phone-trigger:hover,
.header-phone-trigger:focus-visible {
  outline: none;
  border-color: #111511;
}

.header-phone-options {
  position: absolute;
  top: calc(100% + 9px);
  left: 0;
  z-index: 11;
  display: grid;
  gap: 8px;
  width: 190px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, -8px, 0) scale(0.96);
  transform-origin: top left;
  transition:
    opacity 220ms ease,
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s linear 260ms;
}

.header-phone-options a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #111511;
  border-radius: 4px;
  padding: 0 18px;
  background: #111511;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 760;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.header-phone-options a:hover,
.header-phone-options a:focus-visible {
  background: #fff;
  color: #111511;
  outline: none;
  transform: translateY(-1px);
}

.header-phone-menu.is-open .header-phone-options {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
  transition-delay: 0ms;
}

.header-book-route::before {
  content: none;
}

.site-header.scrolled .header-book-route,
.inner-page .site-header .header-book-route {
  pointer-events: auto;
}

.inner-page .site-header .header-book-route {
  --header-book-fill: 1;
  --header-book-fill-percent: 100%;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.header-book-route:hover {
  border-color: #111511;
  transform: translate3d(var(--header-book-x), var(--header-book-y), 0);
}

@media (max-width: 940px) {
  .site-header .nav,
  .site-header.scrolled .nav,
  .inner-page .site-header .nav,
  .inner-page .site-header.scrolled .nav {
    grid-template-columns: 1fr auto;
  }

  .header-preferences,
  .inner-page .header-preferences,
  .inner-page .site-header.scrolled .header-preferences {
    position: absolute;
    top: 46px;
    left: 0;
    transform: none;
  }

  .preference-trigger {
    min-width: 62px;
    min-height: 32px;
    background: rgba(255, 255, 255, 0.92);
    color: #111511;
    text-shadow: none;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.14);
  }

  .hero .hero-route-card {
    top: 92px;
    right: 14px;
    min-width: 172px;
  }

  .header-book-route {
    right: 48px;
    min-width: 132px;
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.78rem;
  }

  .header-phone-menu {
    right: 188px;
    width: 38px;
    min-height: 38px;
  }

  .header-phone-trigger {
    width: 38px;
    min-height: 38px;
  }

  .header-phone-options {
    width: 176px;
  }

  .blog-projects-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .blog-projects-stage.is-grid .blog-projects-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .blog-projects-heading h1 {
    font-size: clamp(3.05rem, 10vw, 5.8rem);
  }
}

.calendar-controls {
  gap: 8px;
  justify-content: center;
  margin-bottom: 34px;
}

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

.date-card,
.form-panel,
.summary-card,
.contact-card,
.team-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: none;
}

.date-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 3vw, 30px);
}

.date-card .button {
  margin-top: auto;
}

.date-top {
  align-items: flex-start;
}

.date-badge {
  width: 58px;
  height: 68px;
  font-family: var(--serif-font);
  font-size: 2rem;
  font-weight: 400;
}

.date-badge small {
  font-family: var(--display-font);
  font-size: 0.72rem;
}

.form-panel,
.summary-card,
.contact-card {
  padding: clamp(24px, 4vw, 44px);
}

input,
select,
textarea {
  border-radius: 4px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(17, 21, 17, 0.42);
  box-shadow: 0 0 0 3px rgba(17, 21, 17, 0.08);
}

.summary-card {
  background: #111511;
  color: #fff;
}

.summary-card p,
.summary-card .muted {
  color: rgba(255, 255, 255, 0.62);
}

.story-panel {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  align-items: center;
}

.story-photo {
  min-height: clamp(460px, 56vw, 680px);
  background: var(--img-rathkale) center calc(50% + var(--parallax-y, 0px)) / cover;
  will-change: background-position;
}

.timeline {
  border-top: 1px solid var(--line);
}

.timeline-item {
  position: relative;
  padding: 28px 0 28px 56px;
  border-bottom: 1px solid var(--line);
}

.timeline-item::before {
  top: 32px;
  width: 28px;
  height: 28px;
}

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

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

.team-avatar {
  width: 54px;
  height: 54px;
}

.contact-layout,
.booking-layout {
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 20px;
  margin-top: 28px;
}

.contact-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.map-panel {
  min-height: 460px;
  padding: clamp(28px, 5vw, 56px);
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(180deg, rgba(17, 21, 17, 0.08), rgba(17, 21, 17, 0.74)),
    var(--img-kalpitiya) center calc(50% + var(--parallax-y, 0px)) / cover;
  will-change: background-position;
}

.map-panel h2,
.map-panel .kicker {
  color: #fff;
}

.footer {
  background: #101411;
  padding: 72px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(140px, 0.6fr));
  gap: 34px;
}

.footer-bottom {
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  clip-path: inset(0 0 10% 0);
  transition:
    opacity 940ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 940ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 940ms ease,
    clip-path 940ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0ms);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  clip-path: inset(0);
}

.section h2.reveal,
.hero.compact h1.reveal,
.manifesto-copy h2.reveal {
  transform: translateY(38px);
  transition-duration: 940ms;
}

.section h2.reveal.visible,
.hero.compact h1.reveal.visible,
.manifesto-copy h2.reveal.visible {
  transform: translateY(0);
}

.scroll-highlight.reveal,
.scroll-highlight.reveal.visible,
.manifesto-copy h2.scroll-highlight.reveal,
.manifesto-copy h2.scroll-highlight.reveal.visible,
.manifesto-body.scroll-highlight.reveal,
.manifesto-body.scroll-highlight.reveal.visible {
  opacity: 1;
  transform: none;
  filter: none;
  clip-path: inset(0);
  transition: none;
}

.visual-manifest .reveal,
.visual-manifest .reveal.visible {
  opacity: 1;
  transform: none;
  filter: none;
  clip-path: inset(0);
  transition: none;
}

.manifesto-photos .photo-tile.reveal,
.manifesto-photos .photo-tile.reveal.visible {
  opacity: var(--manifest-tile-opacity);
  transform: translate3d(var(--manifest-tile-x), 0, 0);
  filter: none;
  clip-path: inset(0);
  transition: none;
}

.route-inclusion-card.inclusion-reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  filter: blur(5px);
  will-change: opacity, transform, filter;
  transition:
    opacity 920ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 920ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 920ms ease;
  transition-delay: var(--inclusion-delay, 0ms);
}

.route-inclusion-card.inclusion-reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.tour-card-3d.reveal.visible {
  transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translate3d(0, 0, 0) scale(1);
  clip-path: inset(0);
}

.tour-card-3d.reveal.visible:hover,
.tour-card-3d.reveal.visible.is-tilting {
  transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translate3d(0, -6px, 0) scale(1.012);
  box-shadow: 0 34px 90px rgba(17, 21, 17, 0.22);
}

.tour-card-3d.reveal.visible.is-tilting {
  transition:
    transform 90ms linear,
    box-shadow 320ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 320ms ease;
}

.blog-project-card.reveal {
  opacity: 0;
  transform: translate3d(0, 90px, 0);
  filter: none;
  clip-path: inset(100% 0 0 0);
  transition:
    opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1050ms cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 1050ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--blog-delay, 0ms);
}

.blog-project-card.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: none;
  clip-path: inset(0);
}

.parallax-target {
  --parallax-y: 0px;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.visible,
  .route-inclusion-card.inclusion-reveal,
  .route-inclusion-card.inclusion-reveal.is-visible,
  .tour-card-3d,
  .tour-card-3d:hover,
  .tour-card-3d .route-content,
  .tour-card-3d:hover .route-content,
  .route-plan-word,
  .route-plan-trigger,
  .route-plan-options,
  .photo-tile img,
  .cinema-stage img {
    transition: none;
    transform: none;
    filter: none;
    clip-path: none;
  }

  .route-plan-word {
    opacity: 1;
  }

  .scroll-highlight .highlight-word {
    color: var(--ink);
    transform: none;
    filter: none;
  }

  .manifesto-photos {
    display: grid;
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }

  .manifesto-photos .photo-tile,
  .manifesto-photos .photo-tile.tall {
    position: relative;
    min-height: 360px;
    opacity: 1;
    transform: none;
  }

  .manifesto-slide-title {
    display: none;
  }

  .manifesto-photos .photo-tile figcaption {
    opacity: 1;
  }

  .route-collage-card,
  .route-collage-card.is-visible,
  .route-collage-card img,
  .route-collage-card:hover img,
  .route-collage-card:focus-visible img,
  .gallery-lightbox,
  .gallery-lightbox-image,
  .gallery-lightbox-button {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  .gallery-lightbox {
    backdrop-filter: none;
  }
}

@media (min-width: 1081px) and (max-height: 700px) {
  .visual-manifest .manifesto-grid {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .manifesto-copy h2.scroll-highlight {
    font-size: clamp(2.7rem, 9.2svh, 4.6rem);
    line-height: 0.94;
  }

  .manifesto-copy p:last-child {
    margin-top: 18px;
  }

  .manifesto-body.scroll-highlight {
    font-size: 0.92rem;
    line-height: 1.34;
  }

  .manifesto-photos {
    height: clamp(320px, 58svh, 480px);
  }
}

@media (min-width: 1081px) and (max-height: 560px) {
  .manifesto-copy .kicker {
    margin-bottom: 8px;
    font-size: 0.72rem;
  }

  .manifesto-copy h2.scroll-highlight {
    font-size: clamp(2.2rem, 8.6svh, 3.55rem);
  }

  .manifesto-body.scroll-highlight {
    font-size: 0.82rem;
    line-height: 1.3;
  }

  .manifesto-photos {
    height: clamp(260px, 54svh, 380px);
  }
}

@media (max-width: 1080px) {
  .manifesto-grid,
  .cinema-grid,
  .split,
  .story-panel,
  .booking-layout,
  .contact-layout,
  .section-head,
  .route-overview-grid,
  .route-editorial-grid,
  .route-booking-grid,
  .route-detail-list-grid,
  .route-inclusions-grid {
    grid-template-columns: 1fr;
  }

  .route-editorial-copy,
  .route-booking-panel {
    position: static;
  }

  .route-booking-grid {
    min-height: auto;
  }

  .route-booking-panel {
    order: -1;
    padding-top: 0;
  }

  .route-price-flow {
    padding-top: 0;
  }

  .route-overview-grid > div:first-child {
    position: static;
  }

  .route-overview-copy {
    width: 100%;
    justify-self: stretch;
  }

  .route-overview-central .route-overview-grid {
    grid-template-columns: 1fr;
    gap: clamp(36px, 7vw, 58px);
  }

  .route-glance-grid,
  .route-day-grid,
  .route-day-panel ul,
  .route-inclusion-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .route-gallery {
    grid-template-columns: 1fr;
  }

  .route-collage-track {
    width: calc(100% - 24px);
    gap: var(--gallery-gap);
  }

  .route-kalpitiya-page .route-collage-static .route-collage-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .route-collage-card,
  .route-collage-card-wide,
  .route-collage-card-tall,
  .route-collage-card-small,
  .route-collage-card-poster,
  .route-collage-card-square {
    flex-basis: auto;
    width: 100%;
    margin-bottom: 0;
  }

  .route-gallery figure:nth-child(2) {
    transform: none;
  }

  .route-gallery img {
    height: clamp(360px, 74vw, 620px);
  }

  .manifesto-copy,
  .cinema-copy {
    position: static;
  }

  .visual-manifest {
    min-height: auto;
  }

  .visual-manifest .manifesto-grid {
    position: static;
    width: min(100% - 28px, 1160px);
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  .manifesto-copy {
    position: static;
    align-items: flex-start;
    text-align: left;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .manifesto-photos {
    position: relative;
    top: auto;
    left: auto;
    justify-self: stretch;
    width: 100%;
    height: clamp(420px, 74vw, 620px);
    min-height: 420px;
    margin-top: 24px;
    opacity: 1;
    transform: none;
  }

  .route-grid,
  .date-grid,
  .blog-grid,
  .journal-strip,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-card.featured {
    grid-column: span 2;
  }
}

@media (max-width: 1080px) {
  .visual-manifest {
    min-height: clamp(2200px, 430svh, 3400px);
    padding: 0;
    background: #111511;
  }

  .visual-manifest .manifesto-grid {
    position: sticky;
    top: 0;
    width: 100%;
    min-height: 100svh;
    min-height: 100dvh;
    min-height: 100lvh;
    display: block;
    padding: 0;
  }

  .manifesto-copy {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: clamp(72px, 14svh, 132px) 22px clamp(54px, 10svh, 92px);
    opacity: var(--manifest-copy-opacity);
    transform: translate3d(var(--manifest-copy-x), var(--manifest-copy-y), 0);
    pointer-events: none;
    z-index: 2;
  }

  .manifesto-copy h2.scroll-highlight {
    max-width: min(100%, 760px);
    font-size: clamp(3rem, 15vw, 5.8rem);
    line-height: 0.96;
  }

  .manifesto-body.scroll-highlight {
    max-width: min(100%, 620px);
    font-size: clamp(0.94rem, 3.6vw, 1.08rem);
  }

  .manifesto-photos {
    position: absolute;
    inset: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    height: 100lvh;
    min-height: 100lvh;
    margin: 0;
    opacity: var(--manifest-photo-opacity);
    transform: none;
    background: transparent;
    overflow: hidden;
    z-index: 1;
  }

  html.manifesto-photo-stage-active,
  html.manifesto-photo-stage-active body {
    background: #111511;
  }

  .manifesto-photos .photo-tile,
  .manifesto-photos .photo-tile.tall {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    border-radius: 0;
    opacity: var(--manifest-tile-opacity);
    transform: translate3d(var(--manifest-tile-x), 0, 0);
  }

  .manifesto-slide-title {
    left: 20px;
    bottom: max(28px, env(safe-area-inset-bottom));
  }

  .manifesto-slide-title span {
    font-size: clamp(1.8rem, 11vw, 4.6rem);
    white-space: normal;
  }
}

@media (max-width: 760px) {
  .container,
  .hero-strip,
  .route-cinema .container,
  .hero.compact .hero-content {
    width: min(100% - 28px, 1160px);
  }

  .section {
    padding: 78px 0;
  }

  .section h2,
  .section-head h2,
  .manifesto-copy h2,
  .cta-inner h2 {
    font-size: clamp(2.6rem, 14vw, 4.6rem);
  }

  .blog-article-title {
    font-size: clamp(3.35rem, 13.6vw, 5.2rem);
  }

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

  .manifesto-photos,
  .route-grid,
  .date-grid,
  .blog-grid,
  .journal-strip,
  .team-grid,
  .route-glance-grid,
  .route-day-grid,
  .route-day-panel ul,
  .route-inclusion-columns {
    grid-template-columns: 1fr;
  }

  .route-detail-hero {
    min-height: 88svh;
  }

  .route-detail-hero-copy {
    width: min(100% - 28px, 1180px);
    padding-bottom: 122px;
  }

  .route-detail-hero-copy h1 {
    font-size: clamp(3.4rem, 18vw, 6.2rem);
    line-height: 0.9;
  }

  .route-detail-index {
    left: 14px;
    right: 14px;
    justify-content: flex-start;
  }

  .route-at-glance {
    padding-bottom: 78px;
  }

  .route-map-itinerary {
    padding: 116px 0 86px;
  }

  .route-map-heading,
  .route-map-accordions {
    width: min(1180px, calc(100% - 28px));
  }

  .route-map-heading {
    text-align: center;
  }

  .route-map-heading h2 {
    font-size: clamp(2.25rem, 11vw, 3.7rem);
  }

  .route-map-frame {
    height: 520px;
  }

  .route-map-accordions {
    margin-top: 16px;
    gap: 12px;
  }

  .route-day-accordion {
    box-shadow: 0 16px 50px rgba(17, 21, 17, 0.08);
  }

  .route-day-accordion summary {
    align-items: flex-start;
    min-height: auto;
    padding: 22px;
  }

  .route-day-accordion strong {
    font-size: clamp(1.45rem, 9vw, 2.35rem);
  }

  .route-day-panel {
    padding: 0 22px 26px;
  }

  .itinerary-stay-gallery {
    width: 100%;
    margin-top: 22px;
  }

  .itinerary-stay-gallery-frame {
    aspect-ratio: 4 / 3;
  }

  .itinerary-stay-gallery-button {
    width: 38px;
    height: 38px;
  }

  .itinerary-stay-gallery-button-prev {
    left: 10px;
  }

  .itinerary-stay-gallery-button-next {
    right: 10px;
  }

  .itinerary-stay-gallery-dots {
    bottom: 12px;
    gap: 6px;
    width: min(calc(100% - 82px), 310px);
  }

  .itinerary-stay-gallery-dot {
    max-width: 28px;
  }

  .route-booking-prices {
    padding: 78px 0;
  }

  .route-booking-grid {
    gap: 34px;
  }

  .route-price-card h2 {
    font-size: 1rem;
  }

  .route-price-prefix {
    font-size: clamp(1.9rem, 10vw, 2.9rem);
  }

  .route-price-main {
    font-size: clamp(2.9rem, 14.6vw, 5rem);
  }

  .route-booking-panel h2 {
    font-size: clamp(2.3rem, 12vw, 3.35rem);
  }

  .route-plan-section {
    min-height: 230svh;
  }

  .route-plan-inner {
    padding-block: 84px;
  }

  .route-plan-section .route-plan-title {
    max-width: 100%;
    font-size: clamp(2.18rem, 10.8vw, 3.9rem);
    line-height: 1.08;
  }

  .route-plan-line-lead {
    white-space: normal;
  }

  .route-plan-trigger {
    min-height: 54px;
    padding-inline: 28px;
  }

  .price-currency-control,
  .route-booking-panel .button {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .currency-select-trigger {
    min-width: 0;
    padding-inline: 16px;
    gap: 10px;
  }

  .currency-selected {
    flex: 1 1 auto;
    min-width: 0;
    gap: 10px;
  }

  .route-collage-section {
    --gallery-gap: 4px;
    padding: var(--gallery-gap) 0;
  }

  .route-collage-track {
    width: calc(100% - 20px);
    gap: var(--gallery-gap);
  }

  .route-kalpitiya-page .route-collage-static .route-collage-track {
    grid-template-columns: 1fr;
  }

  .route-collage-card,
  .route-collage-card-wide,
  .route-collage-card-tall,
  .route-collage-card-small,
  .route-collage-card-poster,
  .route-collage-card-square {
    flex-basis: auto;
    aspect-ratio: auto;
    width: 100%;
    min-height: auto;
    margin-bottom: 0;
  }

  .route-collage-card img {
    height: auto;
    object-fit: contain;
  }

  .gallery-lightbox {
    padding: 64px 14px 78px;
  }

  .gallery-lightbox-image {
    max-height: calc(100svh - 150px);
  }

  .gallery-lightbox-close {
    top: 16px;
    right: 16px;
    width: 42px;
    height: 42px;
  }

  .gallery-lightbox-nav {
    bottom: 18px;
    width: 46px;
    height: 46px;
  }

  .gallery-lightbox-prev {
    right: 78px;
  }

  .gallery-lightbox-next {
    right: 16px;
  }

  .route-photo-large,
  .route-fullbleed {
    min-height: 72svh;
  }

  .route-detail-list article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .blog-card.featured {
    grid-column: span 1;
  }

  .blog-projects-hero {
    min-height: 76svh;
    padding: 118px 14px 56px;
  }

  .blog-projects-stage {
    min-height: auto;
    padding: 108px 0 72px;
  }

  .blog-projects-sticky {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    display: grid;
    grid-template-rows: none;
    gap: 34px;
    padding: 0;
    overflow: visible;
  }

  .blog-projects-heading {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    gap: 28px;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
  }

  .blog-projects-heading h1 {
    font-size: clamp(2.72rem, 13.4vw, 4.4rem);
    line-height: 0.88;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
  }

  .blog-category-tabs {
    width: 100%;
    min-height: auto;
    justify-content: flex-start;
    gap: 6px;
    padding: 6px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
  }

  .blog-category-tabs::-webkit-scrollbar {
    display: none;
  }

  .blog-category-tabs button {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0 14px;
    white-space: nowrap;
  }

  .blog-projects-stage.is-filtered-grid .blog-projects-heading {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: min(420px, calc(100% - 20px));
    pointer-events: auto;
  }

  .blog-projects-stage.is-filtered-grid .blog-category-tabs {
    border-radius: 999px;
    clip-path: inset(0 0 0 0 round 999px);
  }

  .blog-projects-stage.is-filtered-grid .blog-projects-list {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    max-height: none;
    padding: 0 0 36px;
    overflow: visible;
    overscroll-behavior: auto;
  }

  .blog-projects-list {
    width: min(420px, calc(100vw - 28px));
    max-width: calc(100vw - 28px);
    margin-inline: auto;
    padding-inline: 0;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto;
    will-change: auto;
  }

  .blog-projects-track {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .blog-projects-stage.is-grid .blog-projects-track {
    width: 100% !important;
    margin-inline: auto !important;
    grid-template-columns: 1fr;
  }

  .blog-project-card,
  .blog-project-card.visible {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    transition: opacity 220ms ease;
  }

  .blog-projects-stage.is-mobile-reveal .blog-project-card {
    opacity: 0 !important;
    transform: translate3d(0, 18px, 0) !important;
    transition:
      opacity 520ms ease,
      transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
  }

  .blog-projects-stage.is-mobile-reveal .blog-project-card.is-mobile-card-visible {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) !important;
  }

  .blog-project-image {
    min-height: clamp(260px, 62svh, 340px);
  }

  .blog-projects-stage.is-grid .blog-project-image {
    min-height: clamp(240px, 58svh, 320px);
  }

  .blog-projects-stage .blog-project-copy {
    display: grid !important;
    gap: 6px;
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    overflow: visible;
  }

  .blog-projects-stage .blog-project-copy strong,
  .blog-projects-stage .blog-project-copy small {
    max-width: 100%;
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    overflow: visible;
  }

  .blog-projects-stage .blog-project-copy small {
    text-align: left;
  }

  .photo-tile.tall,
  .cinema-stage,
  .image-panel,
  .story-photo,
  .map-panel {
    min-height: 420px;
  }

  .cta-inner,
  .footer-bottom {
    display: grid;
    gap: 20px;
  }

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

/* About page reference-style hero. */
.about-page {
  --img-hulu-ganga-home: url("assets/optimized/about-hero-hulu-fast.jpg");
}

.about-page .hero.about-hero {
  min-height: 100svh;
  align-items: center;
  background: #111511;
  color: #fff;
}

.about-page .hero.about-hero::before {
  background: var(--img-hulu-ganga-home) center / cover;
  filter: none;
  transform: none;
}

.about-page .hero.about-hero::after {
  display: none;
}

.about-page .about-hero .hero-content {
  width: min(1600px, calc(100% - 56px));
  min-height: 100svh;
  padding: clamp(118px, 15vh, 172px) 0 clamp(76px, 11vh, 126px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 4.5vh, 54px);
  text-align: center;
  transform: translateY(clamp(56px, 9vh, 96px));
}

.about-page .about-hero h1 {
  max-width: none;
  margin: 0;
  color: #fff;
  font-family: var(--serif-font);
  font-size: clamp(1.15rem, 5.55vw, 7rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
  text-shadow: 0 22px 90px rgba(0, 0, 0, 0.24);
  white-space: nowrap;
  overflow: visible;
}

html:not([lang="en"]) .about-page .about-hero h1 {
  width: min(100%, 13.6em);
  font-size: clamp(2.25rem, 5vw, 6.25rem);
  line-height: 1.08;
  white-space: normal;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.about-page .about-hero-copy {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 1.45vw, 1.38rem);
  font-weight: 440;
  line-height: 1.35;
  text-wrap: balance;
}

@media (min-width: 941px) {
  .about-page .site-header .nav-links,
  .about-page .site-header.scrolled .nav-links {
    grid-column: 1 / -1;
    width: min(560px, calc(100vw - 620px));
    display: flex;
    align-items: center;
    align-self: center;
    justify-content: center;
    justify-self: center;
    gap: clamp(14px, 2vw, 24px);
    height: auto;
    padding: 0;
    overflow: visible;
    transform: none !important;
  }

  .about-page .site-header .nav-group,
  .about-page .site-header.scrolled .nav-group {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 24px);
  }

  .about-page .site-header .nav-group strong,
  .about-page .site-header.scrolled .nav-group strong {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: none !important;
  }

  .about-page .site-header .nav-links a,
  .about-page .site-header.scrolled .nav-links a {
    transform: none !important;
  }
}

@media (max-width: 940px) {
  .about-page .about-hero .hero-content {
    width: min(100% - 32px, 1160px);
    padding-top: 132px;
    transform: translateY(clamp(38px, 7vh, 68px));
  }

  .about-page .about-hero h1 {
    font-size: clamp(1.15rem, 5.55vw, 4.7rem);
  }

  html:not([lang="en"]) .about-page .about-hero h1 {
    width: min(100%, 12em);
    font-size: clamp(2rem, 8.2vw, 4.7rem);
  }
}

@media (max-width: 620px) {
  .about-page .hero.about-hero {
    min-height: 92svh;
  }

  .about-page .about-hero .hero-content {
    min-height: 92svh;
    gap: 26px;
    transform: translateY(34px);
  }

  .about-page .about-hero h1 {
    font-size: clamp(1.15rem, 5.55vw, 3.1rem);
    line-height: 1.12;
  }

  html:not([lang="en"]) .about-page .about-hero h1 {
    width: 100%;
    font-size: clamp(1.85rem, 10.6vw, 3.15rem);
    line-height: 1.08;
  }

  .about-page .about-hero-copy {
    max-width: 34rem;
    font-size: 1rem;
    line-height: 1.42;
  }
}

.about-page .about-story-section {
  padding: clamp(84px, 10vw, 142px) 0;
  background: var(--paper);
}

.about-story-grid {
  width: min(1520px, calc(100% - 56px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(380px, 1fr);
  gap: clamp(32px, 3vw, 48px);
  align-items: start;
}

.about-story-grid > * {
  min-width: 0;
}

.about-story-media {
  position: sticky;
  top: 112px;
  min-height: 720px;
  margin: 0;
  border-radius: 0;
  background: transparent;
  overflow: visible;
}

.founder-collage {
  width: 760px;
  max-width: 100%;
  min-height: 720px;
  margin-inline: auto;
  isolation: isolate;
}

.founder-collage.reveal,
.founder-collage.reveal.visible {
  clip-path: none;
}

.founder-polaroid {
  position: absolute;
  width: 320px;
  margin: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  transform-origin: center;
}

.founder-polaroid img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 22px 34px rgba(17, 21, 17, 0.14));
}

.founder-anura {
  left: 58px;
  top: 118px;
  z-index: 2;
  transform: rotate(-5deg);
}

.founder-madura {
  left: 350px;
  top: 122px;
  z-index: 1;
  transform: rotate(6deg);
}

.about-page .founder-note {
  position: absolute;
  z-index: 4;
  margin: 0;
  color: #171717;
  font-family: var(--note-hand-font);
  font-size: clamp(1.08rem, 1.18vw, 1.3rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.about-page .founder-note span {
  position: relative;
  z-index: 2;
  display: inline-block;
  white-space: nowrap;
}

.about-page .founder-arrow {
  position: absolute;
  z-index: 1;
  display: block;
  height: auto;
  overflow: visible;
  pointer-events: none;
}

.founder-note-anura {
  left: 274px;
  top: 528px;
  max-width: 330px;
  padding-left: 0;
}

.founder-arrow-left {
  width: 80px;
  left: -82px;
  top: -42px;
  transform: rotate(-2deg);
}

.founder-note-madura {
  left: 246px;
  top: 58px;
  max-width: 260px;
  padding-right: 0;
}

.founder-arrow-right {
  width: 142px;
  right: -148px;
  top: -10px;
  transform: rotate(-4deg);
}

.about-story-copy {
  width: 100%;
  min-width: 0;
  padding-top: clamp(8px, 2vw, 28px);
}

.story-scroll-reveal {
  opacity: 1;
  transform: none;
  filter: none;
}

.story-scroll-reveal .story-panel-reveal {
  --story-panel-y: 42px;
  opacity: 0;
  transform: translate3d(0, var(--story-panel-y), 0);
  filter: blur(10px);
  transition:
    opacity 720ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 820ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 720ms ease;
  will-change: opacity, transform, filter;
}

.story-scroll-reveal .story-panel-reveal.is-story-panel-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.story-scroll-reveal .story-panel-reveal.is-story-panel-hidden-up {
  --story-panel-y: -38px;
}

.story-scroll-reveal .story-panel-reveal.is-story-panel-hidden-down {
  --story-panel-y: 42px;
}

.story-scroll-reveal .story-panel-reveal:nth-child(2) {
  transition-delay: 90ms;
}

.about-story-copy h2 {
  max-width: 620px;
  margin: 0 0 clamp(26px, 4vw, 46px);
  color: #080a08;
  font-family: var(--serif-font);
  font-size: clamp(3.8rem, 6.1vw, 7rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.about-story-body {
  width: 100%;
  min-width: 0;
  max-width: 620px;
  display: grid;
  gap: 18px;
}

.about-story-body-secondary {
  margin-top: clamp(52px, 7vw, 88px);
}

.about-story-body h3 {
  margin: 0 0 clamp(8px, 1.3vw, 14px);
  color: #080a08;
  font-family: var(--serif-font);
  font-size: clamp(2.8rem, 4.2vw, 4.8rem);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.about-story-copy h2,
.about-story-body h3,
.about-story-body p {
  overflow-wrap: anywhere;
}

html:not([lang="en"]) .about-story-copy h2,
html:not([lang="en"]) .about-story-body h3 {
  max-width: 100%;
  white-space: normal;
  text-wrap: balance;
}

html:not([lang="en"]) .about-story-copy h2 {
  font-size: clamp(3.05rem, 5.2vw, 6.1rem);
  line-height: 1.03;
}

html:not([lang="en"]) .about-story-body h3 {
  font-size: clamp(2.35rem, 3.65vw, 4.15rem);
  line-height: 1.04;
}

.about-story-body p {
  margin: 0;
  color: rgba(17, 21, 17, 0.72);
  font-size: clamp(1rem, 1.08vw, 1.13rem);
  line-height: 1.72;
}

.who-we-are-section {
  position: relative;
  --who-progress: 0;
  min-height: clamp(820px, 108svh, 1040px);
  padding: clamp(104px, 12vw, 150px) 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--paper);
}

.who-photo-stage {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.who-photo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--who-w);
  aspect-ratio: var(--who-ratio, 4 / 3);
  object-fit: cover;
  border: 2px solid rgba(17, 21, 17, 0.82);
  border-radius: 8px;
  box-shadow: 0 22px 42px rgba(17, 21, 17, 0.16);
  opacity: 1;
  transform:
    translate(
      calc(-50% + (var(--who-x, 0px) * var(--who-progress))),
      calc(-50% + (var(--who-y, 0px) * var(--who-progress)))
    )
    rotate(calc((var(--who-stack-rotate, 0deg) * (1 - var(--who-progress))) + (var(--who-rotate, 0deg) * var(--who-progress))))
    scale(calc(0.78 + (0.22 * var(--who-progress))));
  transition: none;
  will-change: transform, opacity;
}

.who-we-are-section:not(.is-spread) .who-photo {
  z-index: 12;
  transition-delay: 0ms;
}

.who-we-are-section:not(.is-spread) .who-we-are-copy {
  z-index: 6;
}

.who-we-are-section.is-spread {
  --who-progress: 1;
}

.who-photo-1 {
  --who-w: clamp(190px, 18.5vw, 315px);
  --who-ratio: 4 / 3;
  --who-x: clamp(-560px, -39vw, -405px);
  --who-y: clamp(-270px, -27vh, -170px);
  --who-rotate: -4deg;
  --who-stack-rotate: -8deg;
  --who-delay: 30ms;
  z-index: 4;
}

.who-photo-2 {
  --who-w: clamp(170px, 16vw, 270px);
  --who-ratio: 3 / 4;
  --who-x: clamp(-590px, -41vw, -470px);
  --who-y: clamp(-58px, -6vh, -36px);
  --who-rotate: 3deg;
  --who-stack-rotate: 5deg;
  --who-delay: 90ms;
  z-index: 3;
}

.who-photo-3 {
  --who-w: clamp(180px, 15.5vw, 260px);
  --who-ratio: 16 / 10;
  --who-x: clamp(-300px, -24vw, -210px);
  --who-y: clamp(208px, 31vh, 270px);
  --who-rotate: -2deg;
  --who-stack-rotate: 9deg;
  --who-delay: 150ms;
  z-index: 5;
}

.who-photo-4 {
  --who-w: clamp(205px, 19.5vw, 330px);
  --who-ratio: 3 / 2;
  --who-x: clamp(-560px, -40vw, -420px);
  --who-y: clamp(120px, 17vh, 190px);
  --who-rotate: 1deg;
  --who-stack-rotate: -3deg;
  --who-delay: 210ms;
  z-index: 10;
}

.who-we-are-section:not(.is-spread) .who-photo-4 {
  z-index: 16;
}

.who-photo-5 {
  --who-w: clamp(146px, 14vw, 235px);
  --who-ratio: 4 / 3;
  --who-x: clamp(0px, 2vw, 34px);
  --who-y: clamp(-300px, -34vh, -210px);
  --who-rotate: 2deg;
  --who-stack-rotate: 4deg;
  --who-delay: 270ms;
  z-index: 4;
}

.who-photo-6 {
  --who-w: clamp(210px, 22vw, 360px);
  --who-ratio: 16 / 10;
  --who-x: clamp(455px, 37vw, 610px);
  --who-y: clamp(-200px, -22vh, -112px);
  --who-rotate: -1deg;
  --who-stack-rotate: -7deg;
  --who-delay: 330ms;
  z-index: 3;
}

.who-photo-7 {
  --who-w: clamp(150px, 13vw, 210px);
  --who-ratio: 3 / 4;
  --who-x: clamp(500px, 39vw, 650px);
  --who-y: clamp(112px, 16vh, 174px);
  --who-rotate: 3deg;
  --who-stack-rotate: 8deg;
  --who-delay: 390ms;
  z-index: 2;
}

.who-photo-8 {
  --who-w: clamp(134px, 10.8vw, 205px);
  --who-ratio: 3 / 4;
  --who-x: clamp(250px, 24vw, 360px);
  --who-y: clamp(202px, 30vh, 260px);
  --who-rotate: -2deg;
  --who-stack-rotate: -5deg;
  --who-delay: 450ms;
  z-index: 5;
}

.who-we-are-copy {
  position: relative;
  z-index: 8;
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
  color: #111511;
}

.who-we-are-copy h2 {
  margin: 0;
  color: #111511;
  font-family: var(--serif-font);
  font-size: clamp(3.6rem, 7.4vw, 7.6rem);
  font-style: italic;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
  white-space: nowrap;
}

.who-we-are-copy p {
  max-width: 680px;
  margin: clamp(18px, 2.2vw, 28px) auto 0;
  color: rgba(17, 21, 17, 0.78);
  font-size: clamp(0.98rem, 1.15vw, 1.2rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
}

.who-we-are-copy p + p {
  margin-top: 12px;
}

@media (min-width: 1440px) {
  .who-we-are-section {
    min-height: calc(100svh - 76px);
    padding: clamp(54px, 7svh, 88px) 0;
  }

  .who-photo {
    box-shadow: 0 18px 48px rgba(17, 21, 17, 0.14);
  }

  .who-photo-1 {
    --who-w: clamp(260px, 16.5vw, 360px);
    --who-x: clamp(-860px, -42vw, -650px);
    --who-y: clamp(-245px, -22svh, -150px);
  }

  .who-photo-2 {
    --who-w: clamp(220px, 13.8vw, 310px);
    --who-x: clamp(-900px, -45vw, -710px);
    --who-y: clamp(-60px, -5svh, -32px);
  }

  .who-photo-3 {
    --who-w: clamp(220px, 13.5vw, 300px);
    --who-x: clamp(-430px, -24vw, -310px);
    --who-y: clamp(210px, 25svh, 285px);
  }

  .who-photo-4 {
    --who-w: clamp(275px, 17.2vw, 380px);
    --who-x: clamp(-850px, -43vw, -660px);
    --who-y: clamp(120px, 16svh, 205px);
  }

  .who-photo-5 {
    --who-w: clamp(170px, 10.8vw, 245px);
    --who-x: clamp(-70px, -3vw, -24px);
    --who-y: clamp(-280px, -27svh, -190px);
  }

  .who-photo-6 {
    --who-w: clamp(280px, 18.2vw, 395px);
    --who-x: clamp(650px, 42vw, 900px);
    --who-y: clamp(-205px, -19svh, -118px);
  }

  .who-photo-7 {
    --who-w: clamp(180px, 11.2vw, 250px);
    --who-x: clamp(670px, 43vw, 920px);
    --who-y: clamp(115px, 15svh, 200px);
  }

  .who-photo-8 {
    --who-w: clamp(160px, 10vw, 230px);
    --who-x: clamp(390px, 24vw, 530px);
    --who-y: clamp(205px, 25svh, 285px);
  }
}

.about-experience-plan.route-plan-section {
  min-height: 245svh;
  background: var(--paper);
}

.about-experience-plan .route-plan-inner {
  width: min(1680px, calc(100% - 42px));
}

.about-experience-plan .about-experience-title {
  max-width: min(1500px, 94vw);
  color: rgba(17, 21, 17, 0.58);
  font-family: var(--serif-font);
  font-size: clamp(3rem, 5.8vw, 7rem);
  font-style: italic;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
}

.about-experience-plan .route-plan-script {
  color: inherit;
  font-family: var(--serif-font);
  font-style: italic;
  font-weight: 400;
}

@media (max-width: 1240px) {
  .about-story-grid {
    grid-template-columns: 1fr;
  }

  .about-story-media {
    position: relative;
    top: auto;
    min-height: clamp(420px, 58vw, 640px);
  }

  .founder-collage {
    min-height: clamp(560px, 78vw, 720px);
  }

  .about-story-copy h2,
  .about-story-body {
    max-width: 900px;
  }
}

@media (max-width: 1080px) {
  .who-we-are-section {
    min-height: 860px;
  }

  .who-photo-1 {
    --who-x: clamp(-360px, -35vw, -240px);
    --who-y: clamp(-270px, -30vh, -190px);
  }

  .who-photo-2 {
    --who-x: clamp(-420px, -42vw, -280px);
    --who-y: clamp(-72px, -8vh, -40px);
  }

  .who-photo-3 {
    --who-x: clamp(-255px, -25vw, -190px);
    --who-y: clamp(218px, 31vh, 270px);
  }

  .who-photo-4 {
    --who-x: clamp(-430px, -42vw, -290px);
    --who-y: clamp(132px, 19vh, 190px);
  }

  .who-photo-5 {
    --who-x: 0px;
    --who-y: -300px;
  }

  .who-photo-6 {
    --who-x: clamp(270px, 34vw, 410px);
    --who-y: clamp(-170px, -20vh, -120px);
  }

  .who-photo-7 {
    --who-x: clamp(290px, 38vw, 430px);
    --who-y: clamp(130px, 18vh, 210px);
  }

  .who-photo-8 {
    --who-x: clamp(210px, 27vw, 320px);
    --who-y: clamp(212px, 31vh, 265px);
  }

  .about-experience-plan .about-experience-title {
    max-width: min(920px, 92vw);
    font-size: clamp(2.7rem, 8.2vw, 5.9rem);
    line-height: 1;
  }
}

@media (max-width: 760px) {
  .founder-collage {
    width: 100%;
  }

  .founder-polaroid {
    width: min(54vw, 246px);
  }

  .founder-anura {
    left: 8px;
    top: 226px;
  }

  .founder-madura {
    left: auto;
    right: 6px;
    top: 72px;
  }

  .about-page .founder-note {
    font-size: clamp(0.72rem, 3.9vw, 0.92rem);
  }

  .founder-note-anura {
    left: 84px;
    top: auto;
    bottom: 38px;
    max-width: 280px;
  }

  .founder-arrow-left {
    width: 58px;
    left: -72px;
    top: -18px;
  }

  .founder-note-madura {
    left: auto;
    right: 176px;
    top: 14px;
    max-width: 260px;
  }

  .founder-arrow-right {
    width: 84px;
    right: -76px;
    top: -8px;
  }
}

@media (max-width: 680px) {
  .about-page .about-story-section {
    padding: 72px 0;
  }

  .about-story-grid {
    width: min(100% - 28px, 1520px);
    gap: 34px;
  }

  .about-story-media {
    min-height: 560px;
  }

  .founder-collage {
    min-height: 560px;
  }

  .founder-polaroid {
    width: min(54vw, 246px);
    padding-bottom: 48px;
  }

  .founder-anura {
    left: 8px;
    top: 226px;
  }

  .founder-madura {
    right: 6px;
    top: 72px;
  }

  .about-page .founder-note {
    font-size: clamp(0.72rem, 3.9vw, 0.92rem);
  }

  .founder-note-anura {
    left: 84px;
    bottom: 38px;
    max-width: 280px;
    padding-left: 0;
  }

  .founder-arrow-left {
    width: 58px;
    left: -72px;
    top: -18px;
  }

  .founder-note-madura {
    right: 176px;
    top: 14px;
    max-width: 260px;
    padding-right: 0;
  }

  .founder-arrow-right {
    width: 84px;
    right: -76px;
    top: -8px;
  }

  .about-story-copy h2 {
    font-size: clamp(3.4rem, 15vw, 5.8rem);
  }

  html:not([lang="en"]) .about-story-copy h2 {
    font-size: clamp(2.75rem, 13vw, 4.7rem);
  }

  html:not([lang="en"]) .about-story-body h3 {
    font-size: clamp(2.15rem, 10vw, 3.45rem);
  }

  .who-we-are-section {
    min-height: 780px;
    padding: 84px 0;
  }

  .who-photo {
    border-width: 1px;
    border-radius: 7px;
  }

  .who-photo-1 {
    --who-w: 142px;
    --who-x: -30vw;
    --who-y: -250px;
  }

  .who-photo-2 {
    --who-w: 112px;
    --who-x: -38vw;
    --who-y: -90px;
  }

  .who-photo-3 {
    --who-w: 128px;
    --who-x: -18vw;
    --who-y: 260px;
  }

  .who-photo-4 {
    --who-w: 158px;
    --who-x: -36vw;
    --who-y: 184px;
  }

  .who-photo-5 {
    --who-w: 118px;
    --who-x: 8px;
    --who-y: -285px;
  }

  .who-photo-6 {
    --who-w: 160px;
    --who-x: 36vw;
    --who-y: -126px;
  }

  .who-photo-7 {
    --who-w: 122px;
    --who-x: 34vw;
    --who-y: 248px;
  }

  .who-photo-8 {
    --who-w: 104px;
    --who-x: 24vw;
    --who-y: 260px;
  }

  .who-we-are-copy {
    width: min(100% - 36px, 760px);
  }

  .who-we-are-copy h2 {
    font-size: clamp(2.85rem, 13vw, 4.7rem);
  }

  .who-we-are-copy p {
    max-width: 330px;
    font-size: clamp(0.86rem, 3.6vw, 1.02rem);
    line-height: 1.38;
  }

  .about-experience-plan.route-plan-section {
    min-height: 225svh;
  }

  .about-experience-plan .route-plan-inner {
    width: min(100% - 28px, 760px);
  }

  .about-experience-plan .about-experience-title {
    max-width: 100%;
    font-size: clamp(2.3rem, 10.8vw, 3.9rem);
    line-height: 1.04;
  }

  .about-story-body p {
    font-size: 1rem;
    line-height: 1.64;
  }
}

@media (min-width: 941px) {
  .site-header.compact-ready .nav-links,
  .site-header.compact-ready.scrolled .nav-links {
    grid-column: 1 / -1;
    grid-row: 1;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2.4vw, 34px);
    justify-self: center;
    align-self: center;
    padding: 0;
    opacity: 1;
    transform: none !important;
    pointer-events: auto;
  }

  .site-header.compact-ready .nav-group,
  .site-header.compact-ready.scrolled .nav-group {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.4vw, 34px);
  }

  .site-header.compact-ready .nav-group strong,
  .site-header.compact-ready.scrolled .nav-group strong {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .site-header.compact-ready .nav-links a,
  .site-header.compact-ready.scrolled .nav-links a {
    min-height: 34px;
    color: rgba(17, 21, 17, 0.68);
    font-size: clamp(0.92rem, 0.78vw, 1rem);
    font-weight: 660;
    line-height: 1;
    text-shadow: none;
    transform: none !important;
    transition: color 160ms ease;
    will-change: auto;
  }

  .site-header.compact-ready .nav-links a:hover,
  .site-header.compact-ready .nav-links a.active,
  .site-header.compact-ready.scrolled .nav-links a:hover,
  .site-header.compact-ready.scrolled .nav-links a.active {
    color: #111511;
  }
}

@media (min-width: 941px) {
  .site-header .nav-links {
    align-items: start;
    grid-template-columns: repeat(3, minmax(126px, 1fr));
    gap: clamp(34px, 5.4vw, 74px);
  }

  .site-header .nav-group {
    align-content: start;
    justify-items: start;
    gap: clamp(9px, 1vw, 14px);
  }

  .site-header .nav-group strong {
    font-size: clamp(0.94rem, 0.82vw, 1.06rem);
    font-weight: 760;
    line-height: 1.08;
  }

  .site-header .nav-links a {
    font-size: clamp(0.9rem, 0.76vw, 0.98rem);
    font-weight: 650;
    line-height: 1.12;
  }

  .inner-page .site-header .nav-links,
  .inner-page .site-header.scrolled .nav-links {
    grid-column: 1 / -1;
    grid-row: 1;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2.4vw, 34px);
    justify-self: center;
    align-self: center;
    padding: 0;
    opacity: 1;
    transform: none !important;
    pointer-events: auto;
  }

  .inner-page .site-header .nav-group,
  .inner-page .site-header.scrolled .nav-group {
    display: flex;
    align-items: center;
    gap: clamp(18px, 2.4vw, 34px);
  }

  .inner-page .site-header .nav-group strong,
  .inner-page .site-header.scrolled .nav-group strong {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .inner-page .site-header .nav-links a,
  .inner-page .site-header.scrolled .nav-links a {
    min-height: 34px;
    color: rgba(17, 21, 17, 0.68);
    font-size: clamp(0.92rem, 0.78vw, 1rem);
    font-weight: 660;
    line-height: 1;
    text-shadow: none;
    transform: none !important;
    transition: color 160ms ease;
    will-change: auto;
  }

  .inner-page .site-header .nav-links a:hover,
  .inner-page .site-header .nav-links a.active,
  .inner-page .site-header.scrolled .nav-links a:hover,
  .inner-page .site-header.scrolled .nav-links a.active {
    color: #111511;
  }
}

/* Booking checkout EOF cascade guard */
.booking-page,
.booking-page .booking-checkout,
.booking-page .booking-checkout-form,
.booking-page .booking-summary-card {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
}

.booking-page .booking-checkout {
  padding: 0 !important;
  background: linear-gradient(90deg, #ffffff 0 57%, #f6f6f2 57% 100%) !important;
}

.booking-page .booking-checkout-grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1.14fr) minmax(360px, 0.86fr) !important;
  gap: clamp(44px, 6vw, 86px) !important;
  align-items: start !important;
}

.booking-page .booking-intro h1,
.booking-page .booking-step-heading h2,
.booking-page .booking-summary-body h2 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  letter-spacing: 0 !important;
}

.booking-page .checkout-field input,
.booking-page .checkout-field select,
.booking-page .checkout-field textarea,
.booking-page .booking-code-row input {
  min-height: 52px !important;
  padding: 20px 13px 7px !important;
  border-radius: 5px !important;
  border: 1px solid #d8ddd5 !important;
  background: #ffffff !important;
  box-shadow: none !important;
  color: #111511 !important;
  font-size: 0.92rem !important;
}

.booking-page .checkout-field textarea {
  min-height: 118px !important;
}

.booking-page .checkout-field span {
  top: 8px !important;
  left: 13px !important;
  color: #6c716a !important;
  font-size: 0.66rem !important;
}

.booking-page .booking-intro h1 {
  font-size: clamp(1.68rem, 2.2vw, 2.18rem) !important;
  font-weight: 650 !important;
  line-height: 1.14 !important;
}

.booking-page .booking-step-heading h2 {
  font-size: 1.03rem !important;
  font-weight: 650 !important;
}

.booking-page .field-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

.booking-page .field-grid-three {
  grid-template-columns: 1fr 1fr 0.9fr !important;
}

.booking-page .booking-summary-card {
  display: grid !important;
  grid-template-columns: 88px minmax(0, 1fr) !important;
  gap: 18px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.booking-page .booking-summary-image {
  width: 88px !important;
  height: 88px !important;
  border-radius: 8px !important;
}

.booking-page .booking-price-row .price {
  font-size: 1.58rem !important;
  font-weight: 650 !important;
}

.booking-page .booking-code-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 10px !important;
}

.booking-page .booking-code-row input {
  padding: 0 12px !important;
}

.booking-page .booking-code-row button {
  min-height: 48px !important;
  border-radius: 5px !important;
  background: #6f746d !important;
  color: #ffffff !important;
}

@media (max-width: 940px) {
  .booking-page .booking-checkout {
    background: #ffffff !important;
  }

  .booking-page .booking-checkout-grid {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .booking-page .field-grid,
  .booking-page .field-grid-three {
    grid-template-columns: 1fr !important;
  }
}

/* Screenshot checkout EOF override */
body.booking-page {
  background: #f5f5f5 !important;
  color: #000000 !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  font-size: 12px !important;
}

.booking-page .preloader,
.booking-page .site-header,
.booking-page .footer {
  display: none !important;
}

.booking-page .booking-checkout {
  min-height: 100vh !important;
  padding: 0 !important;
  background: linear-gradient(90deg, #ffffff 0 53.4%, #f5f5f5 53.4% 100%) !important;
}

.booking-page .booking-shell {
  width: min(100%, 960px) !important;
  min-height: 100vh !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

.booking-page .booking-checkout-grid {
  display: grid !important;
  grid-template-columns: 513px 1fr !important;
  gap: 0 !important;
  min-height: 100vh !important;
  align-items: stretch !important;
}

.booking-page .booking-form-column {
  width: 100% !important;
  max-width: none !important;
  padding: 26px 30px 42px 80px !important;
  background: #ffffff !important;
}

.booking-page .booking-checkout-form {
  width: 402px !important;
  max-width: 100% !important;
  gap: 0 !important;
}

.booking-page .express-checkout p {
  margin: 0 0 13px !important;
  color: #555555 !important;
  font-size: 12px !important;
  text-align: center !important;
}

.booking-page .express-buttons {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 8px !important;
}

.booking-page .express-buttons button {
  height: 38px !important;
  border: 0 !important;
  border-radius: 5px !important;
  color: #ffffff !important;
  font-size: 17px !important;
  font-weight: 700 !important;
}

.booking-page .shop-pay-button {
  background: #5433f5 !important;
}

.booking-page .g-pay-button {
  background: #000000 !important;
}

.booking-page .checkout-divider {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  gap: 12px !important;
  align-items: center !important;
  margin: 24px 0 21px !important;
  color: #707070 !important;
  font-size: 12px !important;
}

.booking-page .checkout-divider::before,
.booking-page .checkout-divider::after {
  content: "" !important;
  height: 1px !important;
  background: #dedede !important;
}

.booking-page .booking-step {
  gap: 12px !important;
  margin: 0 0 28px !important;
  padding: 0 !important;
}

.booking-page .booking-step-heading h2,
.booking-page .shipping-method-step h2,
.booking-page .payment-step h2 {
  color: #000000 !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  font-size: 19px !important;
  font-weight: 650 !important;
}

.booking-page .booking-step-heading a {
  color: #1773d1 !important;
  font-size: 12px !important;
}

.booking-page .checkout-field input,
.booking-page .checkout-field select,
.booking-page .checkout-field textarea {
  min-height: 41px !important;
  padding: 0 11px !important;
  border: 1px solid #d9d9d9 !important;
  border-radius: 5px !important;
  background: #ffffff !important;
  color: #222222 !important;
  font-size: 12px !important;
}

.booking-page .checkout-field textarea {
  min-height: 82px !important;
  padding-top: 12px !important;
}

.booking-page .checkout-field input::placeholder,
.booking-page .checkout-field textarea::placeholder {
  color: #707070 !important;
  opacity: 1 !important;
}

.booking-page .field-grid {
  grid-template-columns: 1fr 1fr !important;
  gap: 12px !important;
}

.booking-page .checkout-alert {
  position: relative !important;
  display: grid !important;
  gap: 8px !important;
  padding: 14px 14px 13px 38px !important;
  color: #8f0000 !important;
  background: #fff6f6 !important;
  border: 1px solid #ffcdcd !important;
  border-radius: 5px !important;
  font-size: 12px !important;
}

.booking-page .checkout-alert::before {
  content: "!" !important;
  position: absolute !important;
  top: 15px !important;
  left: 14px !important;
  display: grid !important;
  place-items: center !important;
  width: 12px !important;
  height: 12px !important;
  border: 1px solid #d60000 !important;
  border-radius: 50% !important;
  color: #d60000 !important;
  font-size: 8px !important;
  font-weight: 700 !important;
}

.booking-page .delivery-toggle {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 5px !important;
  padding: 4px !important;
  background: #f2f2f2 !important;
  border-radius: 6px !important;
}

.booking-page .delivery-toggle button {
  height: 38px !important;
  border: 1px solid transparent !important;
  border-radius: 5px !important;
  background: transparent !important;
  color: #000000 !important;
  font-size: 12px !important;
  font-weight: 650 !important;
}

.booking-page .delivery-toggle button.active {
  background: #ffffff !important;
  border-color: #d5d5d5 !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.16) !important;
}

.booking-page .shipping-placeholder {
  min-height: 44px !important;
  display: grid !important;
  place-items: center !important;
  background: #f4f4f4 !important;
  border-radius: 5px !important;
  color: #707070 !important;
  font-size: 12px !important;
}

.booking-page .booking-submit {
  height: 48px !important;
  border: 0 !important;
  border-radius: 5px !important;
  background: #000000 !important;
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 650 !important;
}

.booking-page .booking-summary-column {
  position: static !important;
  min-height: 100vh !important;
  padding: 26px 0 42px 30px !important;
  background: #f5f5f5 !important;
  border-left: 1px solid #dedede !important;
}

.booking-page .booking-summary-card {
  display: grid !important;
  gap: 19px !important;
  grid-template-columns: none !important;
  width: 328px !important;
  max-width: calc(100vw - 48px) !important;
}

.booking-page .booking-summary-product {
  display: grid !important;
  grid-template-columns: 48px minmax(0, 1fr) auto !important;
  gap: 14px !important;
  align-items: start !important;
}

.booking-page .booking-summary-image {
  width: 48px !important;
  height: 48px !important;
  border: 1px solid #cfcfcf !important;
  border-radius: 5px !important;
}

.booking-page .booking-summary-image::after {
  background: #000000 !important;
  color: #ffffff !important;
  width: 18px !important;
  height: 18px !important;
  top: -8px !important;
  right: -8px !important;
  font-size: 11px !important;
}

.booking-page .booking-summary-product-copy h2,
.booking-page .booking-product-price,
.booking-page .summary-line,
.booking-page .summary-line strong {
  color: #000000 !important;
  font-size: 12px !important;
  font-weight: 400 !important;
}

.booking-page .booking-summary-product-copy h2 {
  margin: 0 0 2px !important;
  text-transform: uppercase !important;
  line-height: 1.32 !important;
}

.booking-page .booking-summary-product-copy p {
  margin: 0 !important;
  color: #707070 !important;
  font-size: 12px !important;
}

.booking-page .booking-code-row {
  display: grid !important;
  grid-template-columns: 1fr 54px !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.booking-page .booking-code-row input {
  min-height: 41px !important;
  padding: 0 11px !important;
  border: 1px solid #d9d9d9 !important;
  border-radius: 5px !important;
  font-size: 12px !important;
}

.booking-page .booking-code-row button {
  min-height: 41px !important;
  border: 0 !important;
  border-radius: 5px !important;
  background: #e9e9e9 !important;
  color: #707070 !important;
  font-size: 12px !important;
}

.booking-page .booking-price-row {
  display: flex !important;
  align-items: baseline !important;
  justify-content: space-between !important;
  margin: -2px 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.booking-page .booking-price-row > span,
.booking-page .booking-price-row .price {
  color: #000000 !important;
  font-size: 16px !important;
  font-weight: 650 !important;
}

.booking-page .booking-price-row small {
  color: #707070 !important;
  font-size: 10px !important;
  font-weight: 400 !important;
}

@media (max-width: 940px) {
  .booking-page .booking-checkout {
    background: #ffffff !important;
  }

  .booking-page .booking-checkout-grid {
    grid-template-columns: 1fr !important;
  }

  .booking-page .booking-form-column {
    padding: 24px 20px 34px !important;
  }

  .booking-page .booking-checkout-form {
    width: 100% !important;
  }

  .booking-page .booking-summary-column {
    order: -1 !important;
    min-height: auto !important;
    padding: 20px !important;
    border-left: 0 !important;
    border-bottom: 1px solid #dedede !important;
  }

  .booking-page .booking-summary-card {
    width: 100% !important;
  }
}

/* Kindred checkout final style pass */
body.booking-page {
  --kindred-checkout-text: #000;
  --kindred-checkout-muted: #666;
  --kindred-checkout-panel: #f5f5f5;
  --kindred-checkout-border: #d9d9d9;
  --kindred-checkout-border-soft: #dedede;
  --kindred-checkout-focus: #1773d1;
  --kindred-checkout-purple: #5433f5;
  margin: 0 !important;
  background: var(--kindred-checkout-panel) !important;
  color: var(--kindred-checkout-text) !important;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
  font-size: 12px !important;
  line-height: 1.35 !important;
  letter-spacing: 0 !important;
}

.booking-page *,
.booking-page *::before,
.booking-page *::after {
  box-sizing: border-box !important;
  overflow-anchor: none !important;
}

html:has(body.booking-page),
body.booking-page,
.booking-page .booking-checkout,
.booking-page .booking-shell,
.booking-page .booking-checkout-grid {
  overflow-anchor: none !important;
}

html:has(body.booking-page) {
  overflow-x: hidden !important;
}

body.booking-page,
.booking-page .booking-checkout,
.booking-page .booking-shell {
  max-width: 100vw !important;
  overflow-x: clip !important;
}

@media (min-width: 941px) {
  html:has(body.booking-page) {
    overflow-y: scroll !important;
    scrollbar-gutter: stable !important;
  }
}

.booking-page .preloader,
.booking-page .site-header,
.booking-page .footer {
  display: none !important;
}

.booking-page .booking-checkout {
  min-height: 100vh !important;
  padding: 0 !important;
  background: linear-gradient(90deg, #fff 0 calc(50% + 33px), var(--kindred-checkout-panel) calc(50% + 33px) 100%) !important;
}

.booking-page .booking-shell {
  width: min(100%, 960px) !important;
  min-height: 100vh !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

.booking-page .booking-checkout-grid {
  display: grid !important;
  grid-template-columns: 513px 447px !important;
  gap: 0 !important;
  min-height: 100vh !important;
  align-items: stretch !important;
}

.booking-page .booking-form-column {
  width: 100% !important;
  max-width: none !important;
  padding: 26px 30px 44px 80px !important;
  background: #fff !important;
}

.booking-page .booking-checkout-form {
  display: grid !important;
  gap: 0 !important;
  width: 402px !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.booking-page .express-checkout {
  margin: 0 !important;
}

.booking-page .express-checkout p {
  margin: 0 0 13px !important;
  color: #555 !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  text-align: center !important;
}

.booking-page .express-buttons {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 8px !important;
}

.booking-page .express-buttons button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 38px !important;
  min-height: 38px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 5px !important;
  color: #fff !important;
  cursor: pointer !important;
  font-family: inherit !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
}

.booking-page .shop-pay-button {
  background: var(--kindred-checkout-purple) !important;
}

.booking-page .g-pay-button {
  gap: 3px !important;
  background: #000 !important;
  font-size: 18px !important;
  font-weight: 500 !important;
}

.booking-page .g-pay-button span:first-child {
  color: #4285f4 !important;
  font-weight: 700 !important;
}

.booking-page .checkout-divider {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr !important;
  gap: 12px !important;
  align-items: center !important;
  margin: 24px 0 21px !important;
  color: #707070 !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  text-align: center !important;
}

.booking-page .checkout-divider::before,
.booking-page .checkout-divider::after {
  content: "" !important;
  height: 1px !important;
  background: var(--kindred-checkout-border-soft) !important;
}

.booking-page .booking-step {
  display: grid !important;
  gap: 12px !important;
  margin: 0 0 28px !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.booking-page .booking-step-heading {
  display: flex !important;
  align-items: baseline !important;
  justify-content: space-between !important;
  gap: 16px !important;
  margin: 0 0 2px !important;
}

.booking-page .booking-step-heading h2,
.booking-page .shipping-method-step h2,
.booking-page .payment-step h2 {
  margin: 0 !important;
  color: #000 !important;
  font-family: inherit !important;
  font-size: 19px !important;
  font-weight: 650 !important;
  line-height: 1.25 !important;
  letter-spacing: 0 !important;
}

.booking-page .booking-step-heading a {
  color: var(--kindred-checkout-focus) !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  text-decoration: underline !important;
  text-underline-offset: 2px !important;
}

.booking-page .field-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 12px !important;
}

.booking-page .checkout-field {
  position: relative !important;
  display: block !important;
  min-width: 0 !important;
  margin: 0 !important;
}

.booking-page .checkout-field input,
.booking-page .checkout-field select,
.booking-page .checkout-field textarea,
.booking-page .booking-code-row input {
  width: 100% !important;
  min-height: 41px !important;
  margin: 0 !important;
  padding: 0 11px !important;
  color: #222 !important;
  background: #fff !important;
  border: 1px solid var(--kindred-checkout-border) !important;
  border-radius: 5px !important;
  box-shadow: none !important;
  font-family: inherit !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1.3 !important;
  outline: none !important;
}

.booking-page .checkout-field textarea {
  min-height: 82px !important;
  padding-top: 12px !important;
  resize: vertical !important;
}

.booking-page .checkout-field input::placeholder,
.booking-page .checkout-field textarea::placeholder,
.booking-page .booking-code-row input::placeholder {
  color: #707070 !important;
  opacity: 1 !important;
}

.booking-page .checkout-field select {
  appearance: auto !important;
}

.booking-page .checkout-field input:focus,
.booking-page .checkout-field select:focus,
.booking-page .checkout-field textarea:focus,
.booking-page .booking-code-row input:focus {
  border-color: var(--kindred-checkout-focus) !important;
  box-shadow: 0 0 0 1px var(--kindred-checkout-focus) !important;
}

.booking-page .checkout-search-field::after {
  content: "" !important;
  position: absolute !important;
  right: 13px !important;
  top: 50% !important;
  width: 10px !important;
  height: 10px !important;
  border: 1.5px solid #707070 !important;
  border-radius: 50% !important;
  transform: translateY(-58%) !important;
  pointer-events: none !important;
}

.booking-page .checkout-search-field::before {
  content: "" !important;
  position: absolute !important;
  right: 11px !important;
  top: 50% !important;
  width: 6px !important;
  height: 1.5px !important;
  background: #707070 !important;
  transform: translateY(5px) rotate(45deg) !important;
  transform-origin: center !important;
  pointer-events: none !important;
}

.booking-page .checkout-help-field::after {
  content: "?" !important;
  position: absolute !important;
  right: 10px !important;
  top: 50% !important;
  display: grid !important;
  place-items: center !important;
  width: 13px !important;
  height: 13px !important;
  transform: translateY(-50%) !important;
  border: 1px solid #777 !important;
  border-radius: 50% !important;
  color: #777 !important;
  font-size: 9px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  pointer-events: none !important;
}

.booking-page .checkout-check {
  display: flex !important;
  align-items: center !important;
  gap: 9px !important;
  margin: 0 !important;
  color: #000 !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
}

.booking-page .checkout-check input {
  width: 15px !important;
  height: 15px !important;
  min-height: 15px !important;
  margin: 0 !important;
  accent-color: #0b63ce !important;
}

.booking-page .checkout-alert {
  position: relative !important;
  display: grid !important;
  gap: 8px !important;
  padding: 14px 14px 13px 38px !important;
  color: #8f0000 !important;
  background: #fff6f6 !important;
  border: 1px solid #ffcdcd !important;
  border-radius: 5px !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
}

.booking-page .checkout-alert::before {
  content: "!" !important;
  position: absolute !important;
  top: 15px !important;
  left: 14px !important;
  display: grid !important;
  place-items: center !important;
  width: 12px !important;
  height: 12px !important;
  border: 1px solid #d60000 !important;
  border-radius: 50% !important;
  color: #d60000 !important;
  font-size: 8px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

.booking-page .checkout-alert strong,
.booking-page .checkout-alert span {
  color: #8f0000 !important;
  font-size: inherit !important;
  line-height: inherit !important;
}

.booking-page .checkout-alert strong {
  font-weight: 500 !important;
}

.booking-page .delivery-toggle {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 5px !important;
  padding: 4px !important;
  background: #f2f2f2 !important;
  border-radius: 6px !important;
}

.booking-page .delivery-toggle button {
  height: 38px !important;
  min-height: 38px !important;
  border: 1px solid transparent !important;
  border-radius: 5px !important;
  background: transparent !important;
  color: #000 !important;
  cursor: pointer !important;
  font-family: inherit !important;
  font-size: 12px !important;
  font-weight: 650 !important;
}

.booking-page .delivery-toggle button.active {
  background: #fff !important;
  border-color: #d5d5d5 !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.16) !important;
}

.booking-page .shipping-method-step {
  margin-top: -2px !important;
}

.booking-page .shipping-placeholder {
  display: grid !important;
  place-items: center !important;
  min-height: 44px !important;
  padding: 10px !important;
  color: #707070 !important;
  background: #f4f4f4 !important;
  border-radius: 5px !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
  text-align: center !important;
}

.booking-page .payment-step p {
  margin: 0 !important;
  color: #707070 !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
}

.booking-page .booking-submit {
  width: 100% !important;
  height: 48px !important;
  min-height: 48px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 5px !important;
  background: #000 !important;
  color: #fff !important;
  cursor: pointer !important;
  font-family: inherit !important;
  font-size: 14px !important;
  font-weight: 650 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
}

.booking-page .booking-submit:hover,
.booking-page .booking-submit:focus-visible {
  background: #1b1b1b !important;
  transform: none !important;
}

.booking-page .booking-summary-column {
  position: static !important;
  min-height: 100vh !important;
  padding: 26px 0 42px 30px !important;
  background: var(--kindred-checkout-panel) !important;
  border-left: 1px solid var(--kindred-checkout-border-soft) !important;
}

.booking-page .booking-summary-card {
  display: grid !important;
  gap: 19px !important;
  grid-template-columns: none !important;
  grid-auto-rows: max-content !important;
  align-content: start !important;
  width: 328px !important;
  min-height: 0 !important;
  height: auto !important;
  max-width: calc(100vw - 48px) !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.booking-page .booking-summary-product {
  display: grid !important;
  grid-template-columns: 48px minmax(0, 1fr) auto !important;
  gap: 14px !important;
  align-items: start !important;
}

.booking-page .booking-summary-image {
  position: relative !important;
  width: 48px !important;
  height: 48px !important;
  margin: 0 !important;
  overflow: visible !important;
  border: 1px solid #cfcfcf !important;
  border-radius: 5px !important;
  background: #fff !important;
}

.booking-page .booking-summary-image::after {
  content: "1" !important;
  position: absolute !important;
  top: -8px !important;
  right: -8px !important;
  display: grid !important;
  place-items: center !important;
  width: 18px !important;
  height: 18px !important;
  border-radius: 50% !important;
  background: #000 !important;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 650 !important;
  line-height: 1 !important;
}

.booking-page .booking-summary-image img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 5px !important;
  transition: opacity 160ms ease !important;
}

.booking-page .booking-summary-image img.is-switching {
  opacity: 0.45 !important;
}

.booking-page .booking-summary-product-copy h2 {
  margin: 0 0 2px !important;
  color: #000 !important;
  font-family: inherit !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  line-height: 1.32 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
}

.booking-page .booking-summary-product-copy p {
  margin: 0 !important;
  color: #707070 !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1.3 !important;
}

.booking-page .booking-product-price {
  color: #000 !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
  white-space: nowrap !important;
}

.booking-page .booking-code-row {
  display: grid !important;
  grid-template-columns: 1fr 54px !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.booking-page .booking-code-row button {
  min-height: 41px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 5px !important;
  background: #e9e9e9 !important;
  color: #707070 !important;
  cursor: pointer !important;
  font-family: inherit !important;
  font-size: 12px !important;
  font-weight: 650 !important;
}

.booking-page .summary-list {
  display: grid !important;
  gap: 11px !important;
  margin: 6px 0 0 !important;
}

.booking-page .summary-line {
  display: flex !important;
  align-items: baseline !important;
  justify-content: space-between !important;
  gap: 18px !important;
  color: #000 !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
}

.booking-page .summary-line strong {
  color: #000 !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
  text-align: right !important;
}

.booking-page .summary-line small {
  display: inline-grid !important;
  place-items: center !important;
  width: 11px !important;
  height: 11px !important;
  margin-left: 2px !important;
  border: 1px solid #777 !important;
  border-radius: 50% !important;
  color: #777 !important;
  font-size: 8px !important;
  line-height: 1 !important;
}

.booking-page .booking-price-row {
  display: flex !important;
  align-items: baseline !important;
  justify-content: space-between !important;
  gap: 18px !important;
  margin: -2px 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  color: #000 !important;
}

.booking-page .booking-price-row > span {
  color: #000 !important;
  font-size: 16px !important;
  font-weight: 650 !important;
  line-height: 1.2 !important;
}

.booking-page .booking-price-row strong {
  display: flex !important;
  align-items: baseline !important;
  gap: 8px !important;
  color: #000 !important;
  font-weight: 650 !important;
  line-height: 1.2 !important;
}

.booking-page .booking-price-row small {
  color: #707070 !important;
  font-size: 10px !important;
  font-weight: 400 !important;
}

.booking-page .booking-price-row .price {
  color: #000 !important;
  font-size: 16px !important;
  font-weight: 650 !important;
  line-height: 1 !important;
}

@media (max-width: 940px) {
  .booking-page .booking-checkout {
    background: #fff !important;
  }

  .booking-page .booking-shell {
    width: 100% !important;
  }

  .booking-page .booking-checkout-grid {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }

  .booking-page .booking-form-column {
    padding: 24px 20px 34px !important;
  }

  .booking-page .booking-checkout-form {
    width: 100% !important;
  }

  .booking-page .booking-summary-column {
    order: -1 !important;
    min-height: auto !important;
    padding: 20px !important;
    border: 0 !important;
    border-bottom: 1px solid var(--kindred-checkout-border-soft) !important;
    border-radius: 0 !important;
  }

  .booking-page .booking-summary-card {
    width: 100% !important;
    max-width: none !important;
  }
}

@media (max-width: 560px) {
  .booking-page .express-buttons,
  .booking-page .field-grid,
  .booking-page .booking-code-row {
    grid-template-columns: 1fr !important;
  }

  .booking-page .booking-summary-product {
    grid-template-columns: 48px minmax(0, 1fr) auto !important;
  }

  .booking-page .booking-product-price {
    grid-column: auto !important;
  }
}

/* Kindred checkout size refinement */
body.booking-page {
  font-size: 14px !important;
  line-height: 1.4 !important;
}

.booking-page .express-checkout p,
.booking-page .checkout-divider,
.booking-page .booking-step-heading a,
.booking-page .checkout-check,
.booking-page .checkout-alert,
.booking-page .shipping-placeholder,
.booking-page .payment-step p,
.booking-page .booking-summary-product-copy h2,
.booking-page .booking-summary-product-copy p,
.booking-page .booking-product-price,
.booking-page .booking-code-row input,
.booking-page .booking-code-row button,
.booking-page .summary-line,
.booking-page .summary-line strong {
  font-size: 13px !important;
}

.booking-page .booking-step-heading h2,
.booking-page .shipping-method-step h2,
.booking-page .payment-step h2 {
  font-size: 21px !important;
  line-height: 1.24 !important;
}

.booking-page .checkout-field input,
.booking-page .checkout-field select,
.booking-page .checkout-field textarea,
.booking-page .booking-code-row input {
  min-height: 46px !important;
  padding-inline: 12px !important;
  font-size: 14px !important;
  line-height: 1.35 !important;
}

.booking-page .checkout-field textarea {
  min-height: 92px !important;
  padding-top: 13px !important;
}

.booking-page .express-buttons button {
  height: 42px !important;
  min-height: 42px !important;
  font-size: 18px !important;
}

.booking-page .g-pay-button {
  font-size: 19px !important;
}

.booking-page .delivery-toggle button {
  height: 42px !important;
  min-height: 42px !important;
  font-size: 13px !important;
}

.booking-page .booking-submit {
  height: 52px !important;
  min-height: 52px !important;
  font-size: 15px !important;
}

.booking-page .booking-code-row button {
  min-height: 46px !important;
}

.booking-page .booking-summary-product-copy h2 {
  line-height: 1.34 !important;
}

.booking-page .booking-price-row > span,
.booking-page .booking-price-row .price {
  font-size: 18px !important;
}

.booking-page .booking-price-row small {
  font-size: 11px !important;
}

/* Booking custom select menus */
.booking-page .checkout-field select.booking-select-native {
  position: absolute !important;
  inset: 0 auto auto 0 !important;
  width: 1px !important;
  height: 1px !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.booking-page .booking-select-menu {
  position: relative !important;
  display: grid !important;
  width: 100% !important;
  min-width: 0 !important;
  overflow-anchor: none !important;
  backface-visibility: hidden !important;
}

.booking-page .booking-select-trigger,
.booking-page .booking-select-option {
  font-family: inherit !important;
  letter-spacing: 0 !important;
}

.booking-page .booking-select-trigger {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
  width: 100% !important;
  min-height: 46px !important;
  padding: 0 12px !important;
  border: 1px solid var(--kindred-checkout-border) !important;
  border-radius: 5px !important;
  background: #fff !important;
  color: #222 !important;
  cursor: pointer !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
  text-align: left !important;
  transition:
    border-color 220ms ease,
    border-radius 360ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 260ms ease,
    background-color 260ms ease !important;
}

.booking-page .booking-select-trigger:focus-visible {
  border-color: var(--kindred-checkout-focus) !important;
  box-shadow: 0 0 0 1px var(--kindred-checkout-focus) !important;
  outline: none !important;
}

.booking-page .checkout-field .booking-select-value {
  position: static !important;
  min-width: 0 !important;
  flex: 1 1 auto !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  color: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}

.booking-page .checkout-field .booking-select-chevron {
  position: relative !important;
  flex: 0 0 auto !important;
  width: 14px !important;
  height: 14px !important;
  inset: auto !important;
  color: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
}

.booking-page .booking-select-chevron::before {
  content: "" !important;
  position: absolute !important;
  top: 2px !important;
  right: 2px !important;
  width: 8px !important;
  height: 8px !important;
  border-right: 2px solid #222 !important;
  border-bottom: 2px solid #222 !important;
  transform: rotate(45deg) !important;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.booking-page .booking-select-options {
  display: grid !important;
  width: 100% !important;
  max-height: 0 !important;
  margin-top: 0 !important;
  overflow: hidden !important;
  border: 0 solid var(--kindred-checkout-focus) !important;
  border-radius: 0 0 5px 5px !important;
  background: #fff !important;
  opacity: 0 !important;
  transform: translate3d(0, -8px, 0) scaleY(0.98) !important;
  transform-origin: top !important;
  will-change: max-height, opacity, transform !important;
  transition:
    max-height 520ms cubic-bezier(0.16, 1, 0.3, 1),
    margin-top 520ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 260ms ease,
    box-shadow 180ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.booking-page .booking-select-option {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  width: 100% !important;
  min-height: 44px !important;
  padding: 10px 12px !important;
  border: 0 !important;
  background: transparent !important;
  color: #222 !important;
  cursor: pointer !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.25 !important;
  text-align: left !important;
  transition:
    background-color 200ms ease,
    color 200ms ease,
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.booking-page .checkout-field .booking-select-option span {
  position: relative !important;
  inset: auto !important;
  z-index: 2 !important;
  flex: 0 1 auto !important;
  display: inline-block !important;
  color: #222 !important;
  -webkit-text-fill-color: #222 !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  opacity: 1 !important;
  overflow: visible !important;
  pointer-events: auto !important;
  white-space: nowrap !important;
}

.booking-page .checkout-field .booking-select-option .booking-select-label {
  font-size: 0 !important;
}

.booking-page .checkout-field .booking-select-option .booking-select-label::before {
  content: attr(data-option-label) !important;
  display: inline-block !important;
  color: #222 !important;
  -webkit-text-fill-color: #222 !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.25 !important;
  white-space: nowrap !important;
}

.booking-page .checkout-phone-field .booking-select-option .booking-select-label {
  display: none !important;
}

.booking-page .checkout-phone-field .booking-select-option::after {
  content: attr(data-option-label) !important;
  display: inline-block !important;
  color: #222 !important;
  -webkit-text-fill-color: #222 !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.25 !important;
  white-space: nowrap !important;
}

.booking-page .checkout-field .booking-country-flag {
  position: static !important;
  inset: auto !important;
  flex: 0 0 auto !important;
  width: 22px !important;
  height: 16px !important;
  display: inline-grid !important;
  place-items: center !important;
  border-radius: 2px !important;
  color: transparent !important;
  font-size: 0 !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.12) !important;
}

.booking-page .checkout-field .booking-country-flag[data-country="lk"] { background: linear-gradient(90deg, #00534e 0 22%, #f7a800 22% 31%, #8d153a 31% 100%) !important; }
.booking-page .checkout-field .booking-country-flag[data-country="in"] { background: linear-gradient(#ff9933 0 33%, #fff 33% 66%, #138808 66% 100%) !important; }
.booking-page .checkout-field .booking-country-flag[data-country="gb"] { background: linear-gradient(90deg, transparent 0 42%, #fff 42% 58%, transparent 58%), linear-gradient(transparent 0 38%, #fff 38% 62%, transparent 62%), linear-gradient(90deg, transparent 0 46%, #c8102e 46% 54%, transparent 54%), linear-gradient(transparent 0 43%, #c8102e 43% 57%, transparent 57%), #012169 !important; }
.booking-page .checkout-field .booking-country-flag[data-country="us"] { background: repeating-linear-gradient(#b22234 0 1.23px, #fff 1.23px 2.46px) !important; }
.booking-page .checkout-field .booking-country-flag[data-country="au"] { background: #012169 !important; }
.booking-page .checkout-field .booking-country-flag[data-country="de"] { background: linear-gradient(#000 0 33%, #dd0000 33% 66%, #ffce00 66% 100%) !important; }
.booking-page .checkout-field .booking-country-flag[data-country="fr"] { background: linear-gradient(90deg, #0055a4 0 33%, #fff 33% 66%, #ef4135 66% 100%) !important; }
.booking-page .checkout-field .booking-country-flag[data-country="nl"] { background: linear-gradient(#ae1c28 0 33%, #fff 33% 66%, #21468b 66% 100%) !important; }
.booking-page .checkout-field .booking-country-flag[data-country="it"] { background: linear-gradient(90deg, #009246 0 33%, #fff 33% 66%, #ce2b37 66% 100%) !important; }
.booking-page .checkout-field .booking-country-flag[data-country="es"] { background: linear-gradient(#aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75% 100%) !important; }
.booking-page .checkout-field .booking-country-flag[data-country="ch"] { background: linear-gradient(90deg, transparent 0 39%, #fff 39% 61%, transparent 61%), linear-gradient(transparent 0 36%, #fff 36% 64%, transparent 64%), #d52b1e !important; }
.booking-page .checkout-field .booking-country-flag[data-country="se"] { background: linear-gradient(90deg, transparent 0 30%, #fecc00 30% 44%, transparent 44%), linear-gradient(transparent 0 39%, #fecc00 39% 61%, transparent 61%), #006aa7 !important; }
.booking-page .checkout-field .booking-country-flag[data-country="no"] { background: linear-gradient(90deg, transparent 0 28%, #fff 28% 46%, transparent 46%), linear-gradient(transparent 0 35%, #fff 35% 65%, transparent 65%), linear-gradient(90deg, transparent 0 33%, #00205b 33% 41%, transparent 41%), linear-gradient(transparent 0 43%, #00205b 43% 57%, transparent 57%), #ba0c2f !important; }
.booking-page .checkout-field .booking-country-flag[data-country="dk"] { background: linear-gradient(90deg, transparent 0 30%, #fff 30% 42%, transparent 42%), linear-gradient(transparent 0 42%, #fff 42% 58%, transparent 58%), #c60c30 !important; }
.booking-page .checkout-field .booking-country-flag[data-country="ru"] { background: linear-gradient(#fff 0 33%, #0039a6 33% 66%, #d52b1e 66% 100%) !important; }
.booking-page .checkout-field .booking-country-flag[data-country="cn"] { background: #de2910 !important; }
.booking-page .checkout-field .booking-country-flag[data-country="jp"] { background: radial-gradient(circle at 50% 50%, #bc002d 0 28%, transparent 29%), #fff !important; }
.booking-page .checkout-field .booking-country-flag[data-country="sg"] { background: linear-gradient(#ef3340 0 50%, #fff 50% 100%) !important; }
.booking-page .checkout-field .booking-country-flag[data-country="my"] { background: repeating-linear-gradient(#cc0001 0 1.15px, #fff 1.15px 2.3px) !important; }
.booking-page .checkout-field .booking-country-flag[data-country="ae"] { background: linear-gradient(90deg, #ff0000 0 27%, transparent 27%), linear-gradient(#009739 0 33%, #fff 33% 66%, #000 66% 100%) !important; }
.booking-page .checkout-field .booking-country-flag[data-country="qa"] { background: linear-gradient(90deg, #fff 0 28%, #8a1538 28% 100%) !important; }
.booking-page .checkout-field .booking-country-flag[data-country="sa"] { background: #006c35 !important; }
.booking-page .checkout-field .booking-country-flag[data-country="om"] { background: linear-gradient(90deg, #c8102e 0 26%, transparent 26%), linear-gradient(#fff 0 33%, #c8102e 33% 66%, #007a3d 66% 100%) !important; }
.booking-page .checkout-field .booking-country-flag[data-country="mv"] { background: radial-gradient(circle at 52% 50%, #fff 0 16%, transparent 17%), radial-gradient(circle at 58% 50%, #007e3a 0 18%, transparent 19%), linear-gradient(#d21034 0 100%) !important; }
.booking-page .checkout-field .booking-country-flag[data-country="pk"] { background: linear-gradient(90deg, #fff 0 25%, #01411c 25% 100%) !important; }
.booking-page .checkout-field .booking-country-flag[data-country="bd"] { background: radial-gradient(circle at 45% 50%, #f42a41 0 27%, transparent 28%), #006a4e !important; }
.booking-page .checkout-field .booking-country-flag[data-country="np"] { background: linear-gradient(135deg, #dc143c 0 48%, transparent 49%), #003893 !important; }
.booking-page .checkout-field .booking-country-flag[data-country="za"] { background: linear-gradient(#de3831 0 33%, #fff 33% 43%, #007a4d 43% 57%, #fff 57% 67%, #002395 67% 100%) !important; }
.booking-page .checkout-field .booking-country-flag[data-country="nz"] { background: #012169 !important; }

.booking-page .checkout-field .booking-country-flag:not([data-country]) {
  background: #f2f2f2 !important;
  color: #222 !important;
  font-size: 8px !important;
}

.booking-page .checkout-field .booking-select-label {
  position: static !important;
  inset: auto !important;
  min-width: 0 !important;
  flex: 1 1 auto !important;
  color: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.booking-page .booking-select-option:hover,
.booking-page .booking-select-option:focus-visible,
.booking-page .booking-select-option[aria-selected="true"] {
  background: #f2f2f2 !important;
}

.booking-page .booking-select-option:focus-visible {
  outline: none !important;
  box-shadow: inset 0 0 0 2px rgba(23, 115, 209, 0.32) !important;
}

.booking-page .booking-select-menu.is-open .booking-select-trigger {
  border-color: var(--kindred-checkout-focus) !important;
  border-radius: 5px 5px 3px 3px !important;
  box-shadow: 0 0 0 1px var(--kindred-checkout-focus) !important;
}

.booking-page .booking-select-menu.is-open .booking-select-chevron::before {
  transform: translateY(4px) rotate(225deg) !important;
}

.booking-page .booking-select-menu.is-open .booking-select-options {
  max-height: 224px !important;
  margin-top: 0 !important;
  border-width: 0 !important;
  box-shadow:
    inset 1px 0 0 var(--kindred-checkout-border),
    inset -1px 0 0 var(--kindred-checkout-border),
    inset 0 -1px 0 var(--kindred-checkout-border) !important;
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) scaleY(1) !important;
}

.booking-page .booking-select-menu.is-open .booking-select-options {
  overflow-y: auto !important;
  overscroll-behavior: contain !important;
}

.booking-page .checkout-phone-field {
  position: relative !important;
  display: grid !important;
  grid-template-columns: 132px minmax(0, 1fr) !important;
  gap: 10px !important;
  align-items: start !important;
  z-index: 30 !important;
}

.booking-page .checkout-phone-field:has(.booking-select-menu.is-open) {
  z-index: 7000 !important;
}

.booking-page .booking-step:has(.checkout-phone-field .booking-select-menu.is-open) {
  position: relative !important;
  z-index: 7000 !important;
}

.booking-page .checkout-phone-field .booking-select-menu,
.booking-page .checkout-phone-field input {
  min-width: 0 !important;
}

.booking-page .checkout-phone-field .booking-select-trigger {
  min-height: 46px !important;
}

.booking-page .checkout-phone-field input {
  min-height: 46px !important;
}

.booking-page .checkout-phone-field .booking-select-menu {
  position: relative !important;
}

.booking-page .checkout-phone-field .booking-select-menu.is-open {
  z-index: 7001 !important;
}

.booking-page .checkout-phone-field .booking-select-menu.is-open .booking-select-options {
  position: relative !important;
  z-index: 1 !important;
  top: auto !important;
  left: auto !important;
  width: min(350px, calc(100vw - 40px)) !important;
  max-height: 224px !important;
  border: 1px solid var(--kindred-checkout-border) !important;
  border-top: 0 !important;
  background: #ffffff !important;
  box-shadow:
    inset 1px 0 0 var(--kindred-checkout-border),
    inset -1px 0 0 var(--kindred-checkout-border),
    inset 0 -1px 0 var(--kindred-checkout-border) !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
}

.booking-page .checkout-phone-field .booking-select-option {
  white-space: nowrap !important;
}

.booking-page .site-header {
  display: block !important;
}

.booking-page .booking-checkout {
  padding-top: 86px !important;
  min-height: 100vh !important;
}

.booking-page .booking-shell,
.booking-page .booking-checkout-grid {
  min-height: calc(100vh - 86px) !important;
}

@media (max-width: 420px) {
  .booking-page .checkout-phone-field {
    grid-template-columns: 118px minmax(0, 1fr) !important;
    gap: 8px !important;
  }
}

@media (max-width: 940px) {
  .booking-page .booking-checkout {
    padding-top: 78px !important;
  }

  .booking-page .booking-shell,
  .booking-page .booking-checkout-grid {
    min-height: auto !important;
  }
}

/* Booking summary and country-code picker refinement */
.booking-page .checkout-field .booking-select-value {
  display: inline-flex !important;
  align-items: center !important;
  gap: 9px !important;
}

.booking-page .checkout-field .booking-country-flag {
  width: 22px !important;
  height: 16px !important;
  object-fit: cover !important;
  overflow: hidden !important;
  background-color: #f4f4f4 !important;
  vertical-align: middle !important;
}

.booking-page .checkout-field .booking-country-flag[data-country="ca"] {
  background: linear-gradient(90deg, #d52b1e 0 24%, #fff 24% 76%, #d52b1e 76% 100%) !important;
}

.booking-page .checkout-phone-field {
  grid-template-columns: 142px minmax(0, 1fr) !important;
  align-items: start !important;
}

.booking-page .checkout-phone-field .booking-select-trigger {
  padding-inline: 10px !important;
  gap: 8px !important;
}

.booking-page .checkout-phone-field .booking-select-value {
  justify-content: flex-start !important;
}

.booking-page .checkout-phone-field .booking-select-option {
  min-width: max-content !important;
  padding-right: 18px !important;
}

.booking-page .checkout-phone-field .booking-select-menu.is-open .booking-select-options {
  width: min(374px, calc(100vw - 40px)) !important;
}

.booking-page .booking-date-field {
  position: relative !important;
  z-index: 2 !important;
}

.booking-page .booking-step.has-open-calendar {
  position: relative !important;
  z-index: 6000 !important;
}

.booking-page .booking-date-field.is-open {
  isolation: isolate !important;
  z-index: 5000 !important;
}

.booking-page .booking-date-field input[data-booking-date-display] {
  padding-right: 48px !important;
  cursor: pointer !important;
  caret-color: transparent !important;
  font-size: 0.88rem !important;
  text-overflow: ellipsis !important;
}

.booking-page .checkout-field .booking-date-icon {
  position: absolute !important;
  left: auto !important;
  right: 15px !important;
  top: 18px !important;
  width: 18px !important;
  height: 18px !important;
  border: 1.6px solid rgba(17, 21, 17, 0.64) !important;
  border-radius: 4px !important;
  pointer-events: none !important;
}

.booking-page .checkout-field .booking-date-icon::before,
.booking-page .checkout-field .booking-date-icon::after {
  content: "" !important;
  position: absolute !important;
  left: 3px !important;
  right: 3px !important;
  background: rgba(17, 21, 17, 0.64) !important;
}

.booking-page .checkout-field .booking-date-icon::before {
  top: 4px !important;
  height: 1.5px !important;
}

.booking-page .checkout-field .booking-date-icon::after {
  top: -3px !important;
  height: 5px !important;
  border-left: 1.5px solid rgba(17, 21, 17, 0.64) !important;
  border-right: 1.5px solid rgba(17, 21, 17, 0.64) !important;
  background: transparent !important;
}

.booking-page .booking-calendar-popover {
  position: absolute !important;
  z-index: 5001 !important;
  top: calc(100% + 12px) !important;
  left: 0 !important;
  width: min(430px, calc(100vw - 42px)) !important;
  padding: 18px !important;
  border: 1px solid rgba(17, 21, 17, 0.14) !important;
  border-radius: 10px !important;
  background: #ffffff !important;
  box-shadow: 0 24px 70px rgba(17, 21, 17, 0.18) !important;
  -webkit-backdrop-filter: blur(18px) saturate(1.18) !important;
  backdrop-filter: blur(18px) saturate(1.18) !important;
  color: #111511 !important;
  font-family: "Inter", var(--font-sans) !important;
  letter-spacing: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(-8px) scale(0.985) !important;
  transform-origin: top left !important;
  transition: opacity 230ms ease, transform 230ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.booking-page .checkout-field .booking-calendar-popover span {
  position: static !important;
  inset: auto !important;
  z-index: auto !important;
  pointer-events: auto !important;
}

.booking-page .booking-date-field.is-open .booking-calendar-popover {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) scale(1) !important;
}

.booking-page .booking-calendar-head {
  display: grid !important;
  grid-template-columns: 42px 1fr 42px !important;
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 18px !important;
}

.booking-page .booking-calendar-head strong {
  text-align: center !important;
  font-size: 16px !important;
  font-weight: 760 !important;
  line-height: 1.2 !important;
}

.booking-page .booking-calendar-head button {
  width: 42px !important;
  height: 42px !important;
  border: 1px solid rgba(17, 21, 17, 0.12) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.62) !important;
  cursor: pointer !important;
  position: relative !important;
}

.booking-page .booking-calendar-head button::before {
  content: "" !important;
  position: absolute !important;
  inset: 14px 13px !important;
  border-top: 2px solid rgba(17, 21, 17, 0.76) !important;
  border-left: 2px solid rgba(17, 21, 17, 0.76) !important;
  transform: rotate(-45deg) !important;
}

.booking-page .booking-calendar-head [data-calendar-next]::before {
  transform: rotate(135deg) !important;
}

.booking-page .booking-calendar-head button:disabled {
  cursor: default !important;
  opacity: 0.35 !important;
}

.booking-page .booking-calendar-weekdays,
.booking-page .booking-calendar-grid {
  display: grid !important;
  grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  gap: 7px !important;
}

.booking-page .booking-calendar-weekdays {
  margin-bottom: 8px !important;
}

.booking-page .booking-calendar-weekdays span {
  color: rgba(17, 21, 17, 0.5) !important;
  font-size: 11px !important;
  font-weight: 760 !important;
  text-align: center !important;
}

.booking-page .booking-calendar-day {
  width: 100% !important;
  min-width: 0 !important;
  aspect-ratio: 1 !important;
  border: 1px solid rgba(17, 21, 17, 0.12) !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: #111511 !important;
  font: 720 14px/1 "Inter", var(--font-sans) !important;
  cursor: pointer !important;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease !important;
}

.booking-page .booking-calendar-day:hover,
.booking-page .booking-calendar-day:focus-visible {
  border-color: rgba(17, 21, 17, 0.28) !important;
  background: #ffffff !important;
  transform: translateY(-1px) !important;
}

.booking-page .booking-calendar-day.is-start {
  background: #111511 !important;
  border-color: #111511 !important;
  color: #fff !important;
}

.booking-page .booking-calendar-day.is-in-range:not(.is-start) {
  background: rgba(17, 21, 17, 0.11) !important;
  border-color: rgba(17, 21, 17, 0.05) !important;
  color: rgba(17, 21, 17, 0.62) !important;
}

.booking-page .booking-calendar-day.is-end:not(.is-start) {
  background: rgba(17, 21, 17, 0.18) !important;
  color: rgba(17, 21, 17, 0.82) !important;
}

.booking-page .booking-calendar-day:disabled {
  cursor: default !important;
  opacity: 0.28 !important;
  transform: none !important;
}

.booking-page .booking-calendar-blank {
  aspect-ratio: 1 !important;
}

.booking-page .booking-summary-card {
  width: 416px !important;
  max-width: calc(100vw - 48px) !important;
  gap: 24px !important;
}

.booking-page .booking-summary-product {
  grid-template-columns: 142px minmax(0, 1fr) !important;
  gap: 12px 14px !important;
  align-items: start !important;
}

.booking-page .booking-summary-image {
  width: 142px !important;
  height: 150px !important;
}

.booking-page .booking-summary-product-copy h2 {
  margin: 0 0 10px !important;
  font-size: 17px !important;
  line-height: 1.18 !important;
}

.booking-page .booking-summary-route-description {
  margin: 0 !important;
  color: #5f625d !important;
  font-size: 16.5px !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
}

.booking-page .booking-product-price {
  grid-column: 2 !important;
  justify-self: end !important;
  margin-top: -2px !important;
  font-size: 14px !important;
}

.booking-page .summary-list {
  gap: 12px !important;
  margin-top: 2px !important;
}

.booking-page .summary-line {
  align-items: start !important;
}

.booking-page .summary-line strong {
  max-width: 190px !important;
  overflow-wrap: anywhere !important;
}

.booking-page .booking-pp-price-row {
  justify-content: flex-end !important;
  margin-top: -8px !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
  border-bottom: 0 !important;
  color: #707070 !important;
  font-size: 12px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
}

.booking-page .booking-pp-price-row strong {
  display: inline-flex !important;
  align-items: baseline !important;
  justify-content: flex-end !important;
  gap: 7px !important;
  max-width: none !important;
  white-space: nowrap !important;
}

.booking-page .booking-pp-price-row small {
  display: inline-block !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: #707070 !important;
  font-size: 12px !important;
  font-weight: 400 !important;
  font-style: normal !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.booking-page .booking-pp-price-row span {
  white-space: nowrap !important;
  color: #707070 !important;
  font-size: 12px !important;
  font-style: normal !important;
  font-weight: 400 !important;
}

.booking-page .booking-estimate-note {
  margin: -14px 0 0 !important;
  color: #707070 !important;
  font-size: 11.6px !important;
  font-style: italic !important;
  font-weight: 400 !important;
  line-height: 1.45 !important;
  text-align: justify !important;
  text-align-last: left !important;
}

.booking-page .booking-price-row {
  margin-top: -12px !important;
}

.booking-page .booking-price-row > span {
  font-size: 22px !important;
}

.booking-page .booking-price-row strong {
  gap: 9px !important;
}

.booking-page .booking-price-row small {
  font-size: 12px !important;
}

.booking-page .booking-price-row .price {
  font-size: 31px !important;
  letter-spacing: 0 !important;
}

.booking-page .booking-stagger {
  opacity: 0;
  transform: translate3d(0, 0, 0);
  filter: blur(10px);
  will-change: opacity, transform, filter;
}

body.site-ready.booking-page .booking-stagger {
  animation: contactPanelIn 1450ms cubic-bezier(0.16, 1, 0.3, 1) var(--booking-delay, 0ms) both;
}

body.site-ready.booking-page .booking-summary-card.is-route-refreshing .booking-summary-product,
body.site-ready.booking-page .booking-summary-card.is-route-refreshing .summary-list,
body.site-ready.booking-page .booking-summary-card.is-route-refreshing .booking-price-row,
body.site-ready.booking-page .booking-summary-card.is-route-refreshing .booking-pp-price-row,
body.site-ready.booking-page .booking-summary-card.is-route-refreshing .booking-estimate-note {
  animation: bookingRouteRefreshIn 1350ms cubic-bezier(0.16, 1, 0.3, 1) var(--route-refresh-delay, 0ms) both;
  will-change: opacity, transform, filter;
}

@keyframes bookingRouteRefreshIn {
  from {
    opacity: 0;
    transform: translate3d(0, 0, 0);
    filter: blur(10px);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

body.site-ready.booking-page .booking-summary-card.is-route-refreshing .booking-summary-product {
  --route-refresh-delay: 0ms;
}

body.site-ready.booking-page .booking-summary-card.is-route-refreshing .summary-list {
  --route-refresh-delay: 180ms;
}

body.site-ready.booking-page .booking-summary-card.is-route-refreshing .booking-price-row {
  --route-refresh-delay: 360ms;
}

body.site-ready.booking-page .booking-summary-card.is-route-refreshing .booking-pp-price-row {
  --route-refresh-delay: 520ms;
}

body.site-ready.booking-page .booking-summary-card.is-route-refreshing .booking-estimate-note {
  --route-refresh-delay: 680ms;
}

body.site-ready.booking-page .booking-summary-card.is-route-refresh-complete .booking-summary-product,
body.site-ready.booking-page .booking-summary-card.is-route-refresh-complete .summary-list,
body.site-ready.booking-page .booking-summary-card.is-route-refresh-complete .booking-price-row,
body.site-ready.booking-page .booking-summary-card.is-route-refresh-complete .booking-pp-price-row,
body.site-ready.booking-page .booking-summary-card.is-route-refresh-complete .booking-estimate-note {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) !important;
  filter: none !important;
  animation: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .booking-page .booking-stagger,
  .booking-page .booking-summary-card.is-route-refreshing .booking-summary-product,
  .booking-page .booking-summary-card.is-route-refreshing .summary-list,
  .booking-page .booking-summary-card.is-route-refreshing .booking-price-row,
  .booking-page .booking-summary-card.is-route-refreshing .booking-pp-price-row,
  .booking-page .booking-summary-card.is-route-refreshing .booking-estimate-note {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
  }
}

@media (max-width: 560px) {
  .booking-page .booking-summary-product {
    grid-template-columns: 112px minmax(0, 1fr) !important;
    gap: 12px 10px !important;
  }

  .booking-page .booking-summary-image {
    width: 112px !important;
    height: 122px !important;
  }

  .booking-page .booking-summary-route-description {
    font-size: 15px !important;
  }

  .booking-page .booking-price-row .price {
    font-size: 28px !important;
  }
}

@media (max-width: 420px) {
  .booking-page .checkout-phone-field {
    grid-template-columns: 126px minmax(0, 1fr) !important;
  }
}

/* Booking passenger mix menu */
.booking-page .booking-passenger-field {
  display: grid !important;
  position: relative !important;
  z-index: 30 !important;
  width: 100% !important;
  min-width: 0 !important;
  overflow-anchor: none !important;
}

.booking-page .booking-passenger-field.is-open {
  z-index: 7000 !important;
}

.booking-page .booking-passenger-trigger {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
  width: 100% !important;
  min-height: 46px !important;
  padding: 0 12px !important;
  border: 1px solid var(--kindred-checkout-border) !important;
  border-radius: 5px !important;
  background: #fff !important;
  color: #222 !important;
  cursor: pointer !important;
  font-family: inherit !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
  text-align: left !important;
  transition:
    border-color 220ms ease,
    border-radius 360ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 260ms ease,
    background-color 260ms ease !important;
}

.booking-page .booking-passenger-trigger:focus-visible,
.booking-page .booking-passenger-field.is-open .booking-passenger-trigger {
  border-color: var(--kindred-checkout-focus) !important;
  box-shadow: 0 0 0 1px var(--kindred-checkout-focus) !important;
  outline: none !important;
}

.booking-page .booking-passenger-field.is-open .booking-passenger-trigger {
  border-radius: 5px 5px 3px 3px !important;
}

.booking-page .checkout-field .booking-passenger-trigger [data-passenger-label] {
  position: static !important;
  inset: auto !important;
  min-width: 0 !important;
  flex: 1 1 auto !important;
  overflow: hidden !important;
  color: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.booking-page .booking-passenger-panel {
  display: grid !important;
  width: 100% !important;
  max-height: 0 !important;
  margin-top: 0 !important;
  overflow: hidden !important;
  border-radius: 0 0 5px 5px !important;
  background: #fff !important;
  opacity: 0 !important;
  transform: translate3d(0, -8px, 0) scaleY(0.98) !important;
  transform-origin: top !important;
  will-change: max-height, opacity, transform !important;
  transition:
    max-height 520ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 260ms ease,
    box-shadow 180ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.booking-page .booking-passenger-field.is-open .booking-passenger-panel {
  max-height: 132px !important;
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) scaleY(1) !important;
  box-shadow:
    inset 1px 0 0 var(--kindred-checkout-border),
    inset -1px 0 0 var(--kindred-checkout-border),
    inset 0 -1px 0 var(--kindred-checkout-border) !important;
}

.booking-page .booking-passenger-row {
  display: grid !important;
  grid-template-columns: 34px minmax(0, 1fr) 28px 34px !important;
  align-items: center !important;
  gap: 10px !important;
  min-height: 58px !important;
  padding: 10px 12px !important;
  color: #222 !important;
  font-size: 14px !important;
  line-height: 1.25 !important;
}

.booking-page .booking-passenger-row + .booking-passenger-row {
  border-top: 1px solid #ededed !important;
}

.booking-page .checkout-field .booking-passenger-row span,
.booking-page .checkout-field .booking-passenger-row strong {
  position: static !important;
  inset: auto !important;
  color: inherit !important;
  font-size: inherit !important;
  line-height: inherit !important;
}

.booking-page .booking-passenger-row strong {
  text-align: center !important;
  font-weight: 600 !important;
}

.booking-page .booking-passenger-row button {
  display: inline-grid !important;
  place-items: center !important;
  width: 34px !important;
  height: 34px !important;
  border: 1px solid #d4d4d4 !important;
  border-radius: 50% !important;
  background: #fff !important;
  color: #111 !important;
  cursor: pointer !important;
  font-family: inherit !important;
  font-size: 18px !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease !important;
}

.booking-page .booking-passenger-row button:hover,
.booking-page .booking-passenger-row button:focus-visible {
  border-color: #111 !important;
  outline: none !important;
}

.booking-page .booking-passenger-row button:disabled {
  border-color: #e3e3e3 !important;
  color: #b9b9b9 !important;
  cursor: not-allowed !important;
}

.booking-page .booking-passenger-field.is-open .booking-select-chevron::before {
  transform: translateY(4px) rotate(225deg) !important;
}

.booking-page .booking-summary-product-copy #summaryRouteDescription.booking-summary-route-description {
  font-size: 16.5px !important;
  line-height: 1.5 !important;
}

@media (max-width: 560px) {
  .booking-page .booking-summary-product-copy #summaryRouteDescription.booking-summary-route-description {
    font-size: 15px !important;
  }
}

/* Mobile booking total disclosure */
.booking-page .booking-mobile-total {
  display: none !important;
}

@media (max-width: 940px) {
  .booking-page .booking-summary-column {
    display: none !important;
  }

  .booking-page .booking-mobile-total {
    display: grid !important;
    width: 100% !important;
    margin: 2px 0 0 !important;
    box-sizing: border-box !important;
    padding-inline: clamp(16px, 4vw, 26px) !important;
    overflow: hidden !important;
    border-top: 1px solid var(--kindred-checkout-border-soft) !important;
    border-bottom: 1px solid var(--kindred-checkout-border-soft) !important;
    background: #f5f5f5 !important;
  }

  .booking-page .booking-mobile-total-toggle {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    gap: 14px !important;
    width: 100% !important;
    min-height: 62px !important;
    padding: 12px 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: #000 !important;
    cursor: pointer !important;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
    text-align: left !important;
  }

  .booking-page .booking-mobile-total-label {
    color: #000 !important;
    font-size: 16px !important;
    font-weight: 650 !important;
    line-height: 1.2 !important;
  }

  .booking-page .booking-mobile-total-price {
    display: inline-flex !important;
    align-items: baseline !important;
    justify-content: flex-end !important;
    gap: 7px !important;
    min-width: 0 !important;
    color: #000 !important;
    white-space: nowrap !important;
  }

  .booking-page .booking-mobile-total-price small {
    color: #707070 !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
  }

  .booking-page .booking-mobile-total-price strong {
    color: #000 !important;
    font-size: 24px !important;
    font-weight: 650 !important;
    line-height: 1 !important;
  }

  .booking-page .booking-mobile-total-chevron {
    display: inline-block !important;
    width: 9px !important;
    height: 9px !important;
    margin-left: 2px !important;
    border-right: 1.5px solid #555 !important;
    border-bottom: 1.5px solid #555 !important;
    transform: translateY(-3px) rotate(45deg) !important;
    transition: transform 260ms cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  .booking-page .booking-mobile-total.is-open .booking-mobile-total-chevron {
    transform: translateY(2px) rotate(225deg) !important;
  }

  .booking-page .booking-mobile-summary-panel {
    max-height: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    transform: translate3d(0, -8px, 0) !important;
    transition:
      max-height 520ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 260ms ease,
      transform 520ms cubic-bezier(0.16, 1, 0.3, 1) !important;
  }

  .booking-page .booking-mobile-total.is-open .booking-mobile-summary-panel {
    max-height: 760px !important;
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) !important;
  }

  .booking-page .booking-mobile-summary-inner {
    display: grid !important;
    gap: 18px !important;
    padding: 0 0 20px !important;
  }

  .booking-page .booking-mobile-total .booking-summary-product {
    display: grid !important;
    grid-template-columns: 112px minmax(0, 1fr) !important;
    gap: 8px 10px !important;
    align-items: start !important;
  }

  .booking-page .booking-mobile-total .booking-summary-image {
    width: 112px !important;
    height: 122px !important;
    margin: 0 !important;
  }

  .booking-page .booking-mobile-total .booking-summary-product-copy h2 {
    margin: 0 0 8px !important;
    color: #000 !important;
    font-size: 17px !important;
    font-weight: 650 !important;
    line-height: 1.18 !important;
    text-transform: uppercase !important;
  }

  .booking-page .booking-mobile-total .booking-summary-route-description {
    color: #707070 !important;
    font-size: 15px !important;
    line-height: 1.5 !important;
  }

  .booking-page .booking-mobile-total .booking-product-price {
    grid-column: 2 !important;
    justify-self: end !important;
    color: #000 !important;
    font-size: 13px !important;
    font-weight: 400 !important;
  }

  .booking-page .booking-mobile-total .summary-list {
    gap: 0 !important;
    margin: 0 !important;
  }

  .booking-page .booking-mobile-total .summary-line {
    min-height: 43px !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid var(--kindred-checkout-border-soft) !important;
    font-size: 13px !important;
  }

  .booking-page .booking-mobile-total .booking-price-row {
    margin: -2px 0 0 !important;
    padding: 0 !important;
    border: 0 !important;
  }

  .booking-page .booking-mobile-total .booking-price-row > span {
    font-size: 22px !important;
  }

  .booking-page .booking-mobile-total .booking-price-row .price {
    font-size: 31px !important;
  }

  .booking-page .booking-mobile-total .booking-pp-price-row {
    margin-top: -10px !important;
    padding: 0 !important;
    border-bottom: 0 !important;
  }

  .booking-page .booking-mobile-total .booking-estimate-note {
    margin: -2px 0 0 !important;
  }
}

/* Final mobile header layout override */
@media (max-width: 940px) {
  html,
  body {
    max-width: 100%;
    overflow-x: clip;
  }

  .site-header,
  .site-header.scrolled,
  .inner-page .site-header,
  .inner-page .site-header.scrolled {
    inset: 0 0 auto !important;
    padding: 0 !important;
    background: rgba(255, 255, 255, 0.97) !important;
    border-bottom: 1px solid rgba(17, 21, 17, 0.1) !important;
    box-shadow: 0 8px 28px rgba(17, 21, 17, 0.08) !important;
    backdrop-filter: blur(18px) saturate(1.08) !important;
    transform: translate3d(0, calc(var(--mobile-header-y, 0px) + var(--mobile-header-overscroll-y, 0px)), 0) !important;
    transition: box-shadow 260ms ease, background-color 260ms ease !important;
    will-change: transform !important;
  }

  .site-header.header-hidden,
  .inner-page .site-header.header-hidden,
  .inner-page .site-header.scrolled.header-hidden {
    transform: translate3d(0, calc(var(--mobile-header-y, 0px) + var(--mobile-header-overscroll-y, 0px)), 0) !important;
  }

  body.menu-open .site-header {
    transform: translate3d(0, 0, 0) !important;
  }

  html.manifesto-snapping body:not(.menu-open) .site-header {
    transform: translate3d(0, calc(-100% - 8px), 0) !important;
  }

  .site-header .nav,
  .site-header.scrolled .nav,
  .site-header.compact-ready .nav,
  .inner-page .site-header .nav {
    width: 100% !important;
    min-height: 64px !important;
    margin: 0 !important;
    padding: 0 12px 0 14px !important;
    display: grid !important;
    grid-template-columns: auto minmax(0, 1fr) auto auto auto !important;
    gap: 8px !important;
    align-items: center !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #fff !important;
    color: #111511 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    overflow: visible !important;
  }

  .site-header .nav > .header-preferences {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }

  body:not(.inner-page) .hero .hero-route-card {
    display: none !important;
  }

	  .site-header .brand,
	  .site-header.scrolled .brand,
	  .site-header.compact-ready .brand,
	  .inner-page .site-header .brand {
	    grid-column: 1 !important;
	    align-self: center !important;
	    position: relative !important;
	    width: 44px !important;
	    height: 50px !important;
	    display: grid !important;
	    place-items: center !important;
	    color: #111511 !important;
	    overflow: hidden !important;
	    text-shadow: none !important;
	    opacity: 1 !important;
	  }

	  .site-header .brand::before {
	    content: "" !important;
	    position: absolute !important;
	    top: 50% !important;
	    left: 0 !important;
	    width: 44px !important;
	    height: 50px !important;
	    transform: translateY(-50%) !important;
	    background: url("assets/icons/HF-T-01-New-trimmed.png") left center / contain no-repeat !important;
	  }

  .site-header .brand > .brand-mark,
  .site-header .brand > span:not(.brand-mark) {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
  }

  .header-book-route,
  .site-header.scrolled .header-book-route,
  .site-header.compact-ready .header-book-route,
  .inner-page .site-header .header-book-route {
    grid-column: 4 !important;
    position: static !important;
    min-width: 0 !important;
    width: auto !important;
    min-height: 34px !important;
    padding: 0 11px !important;
    border: 1px solid #111511 !important;
    border-radius: 3px !important;
    background: #fff !important;
    color: #111511 !important;
    font-size: 0.75rem !important;
    font-weight: 720 !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    transform: none !important;
    box-shadow: none !important;
    white-space: nowrap !important;
  }

  .header-book-route:hover {
    background: #111511 !important;
    color: #fff !important;
    transform: none !important;
  }

  .header-phone-menu,
  .site-header.scrolled .header-phone-menu,
  .site-header.compact-ready .header-phone-menu,
  .inner-page .site-header .header-phone-menu {
    grid-column: 3 !important;
    position: relative !important;
    top: auto !important;
    right: auto !important;
    z-index: 8 !important;
    width: 34px !important;
    min-height: 34px !important;
    transform: none !important;
  }

  .header-phone-trigger,
  .site-header.scrolled .header-phone-trigger,
  .site-header.compact-ready .header-phone-trigger,
  .inner-page .site-header .header-phone-trigger {
    width: 34px !important;
    min-height: 34px !important;
    border: 1px solid #111511 !important;
    border-radius: 3px !important;
    background: #111511 !important;
    color: #fff !important;
    transform: none !important;
    box-shadow: none !important;
  }

  .header-phone-icon {
    width: 15px !important;
    height: 15px !important;
  }

  .header-phone-options {
    top: calc(100% + 8px) !important;
    right: 0 !important;
    width: 174px !important;
  }

  .menu-button,
  .site-header.scrolled .menu-button,
  .site-header.compact-ready .menu-button,
  .inner-page .site-header .menu-button {
    grid-column: 5 !important;
    position: static !important;
    display: grid !important;
    place-items: center !important;
    width: 40px !important;
    height: 40px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #111511 !important;
    box-shadow: none !important;
  }

  .menu-button span {
    width: 22px !important;
    height: 2px !important;
    margin: 3px auto !important;
    background: currentColor !important;
    border-radius: 999px !important;
  }

  .site-header .nav-links,
  .site-header.scrolled .nav-links,
  .site-header.compact-ready .nav-links,
  .inner-page .site-header .nav-links {
    position: fixed !important;
    inset: 64px 0 auto auto !important;
    width: min(100vw, 430px) !important;
    min-height: calc(100svh - 64px) !important;
    max-height: calc(100svh - 64px) !important;
    overflow-y: auto !important;
    display: grid !important;
    align-content: start !important;
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    padding: 24px 22px 36px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #fff !important;
    color: #111511 !important;
    box-shadow: -20px 0 60px rgba(17, 21, 17, 0.12) !important;
    opacity: 0 !important;
    transform: translate3d(100%, 0, 0) !important;
    transition: opacity 280ms ease, transform 420ms cubic-bezier(0.16, 1, 0.3, 1) !important;
    pointer-events: none !important;
    z-index: 31 !important;
  }

  body.menu-open .site-header .nav-links {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) !important;
    pointer-events: auto !important;
  }

  .site-header .nav-group,
  .site-header.scrolled .nav-group,
  .site-header.compact-ready .nav-group,
  .inner-page .site-header .nav-group {
    display: grid !important;
    gap: 10px !important;
    padding: 0 0 18px !important;
    border-bottom: 1px solid rgba(17, 21, 17, 0.1) !important;
  }

  .site-header .nav-group strong,
  .site-header.scrolled .nav-group strong,
  .site-header.compact-ready .nav-group strong,
  .inner-page .site-header .nav-group strong {
    position: static !important;
    width: auto !important;
    height: auto !important;
    color: rgba(17, 21, 17, 0.58) !important;
    opacity: 1 !important;
    overflow: visible !important;
    font-size: 0.72rem !important;
    font-weight: 760 !important;
    line-height: 1.2 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    transform: none !important;
    text-shadow: none !important;
  }

  .site-header .nav-links a,
  .site-header.scrolled .nav-links a,
  .site-header.compact-ready .nav-links a,
  .inner-page .site-header .nav-links a {
    min-height: 38px !important;
    justify-content: flex-start !important;
    padding: 0 !important;
    color: #111511 !important;
    font-size: 1rem !important;
    font-weight: 650 !important;
    line-height: 1.25 !important;
    text-shadow: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .site-header .nav-links .header-preferences,
  .site-header.scrolled .nav-links .header-preferences,
  .site-header.compact-ready .nav-links .header-preferences,
  .inner-page .site-header .nav-links .header-preferences {
    position: static !important;
    order: 10 !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    padding-top: 2px !important;
    transform: none !important;
  }

  .site-header .nav-links .preference-menu {
    position: relative !important;
    width: 100% !important;
  }

  .site-header .nav-links .preference-trigger {
    width: 100% !important;
    min-height: 42px !important;
    justify-content: center !important;
    background: #f7f7f4 !important;
    color: #111511 !important;
    border: 1px solid rgba(17, 21, 17, 0.12) !important;
    box-shadow: none !important;
  }

  .site-header .nav-links .preference-option-list {
    left: 0 !important;
    right: 0 !important;
    min-width: 0 !important;
    width: 100% !important;
  }
}

@media (max-width: 760px) {
  .booking-page .booking-date-field:not(.is-open) {
    z-index: 1 !important;
  }

  .booking-page .booking-people-field,
  .booking-page .booking-passenger-field {
    position: relative !important;
    z-index: 80 !important;
  }

  .booking-page .booking-passenger-field.is-open {
    z-index: 7000 !important;
  }

  input,
  select,
  textarea,
  .contact-field input,
  .contact-field textarea,
  .booking-page .checkout-field input,
  .booking-page .checkout-field select,
  .booking-page .checkout-field textarea,
  .booking-page .booking-date-field input[data-booking-date-display],
  .booking-page .booking-passenger-trigger,
  .booking-page .booking-select-trigger,
  .booking-page .booking-code-row input {
    font-size: max(16px, 1rem) !important;
  }

  .booking-page .checkout-check input {
    font-size: 16px !important;
  }
}

/* 2026-06-28 logo refresh */
.site-header .brand::before,
.site-header.scrolled .brand::before,
.site-header.compact-ready .brand::before,
.inner-page .site-header .brand::before,
.inner-page .site-header.scrolled .brand::before {
  background-image: url("assets/icons/HF-T-01-New-trimmed.png") !important;
  background-position: left center !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
}

.site-header .brand,
.site-header.scrolled .brand,
.site-header.compact-ready .brand,
.inner-page .site-header .brand,
.inner-page .site-header.scrolled .brand {
  width: 44px !important;
  height: 50px !important;
}

.site-header .brand::before,
.site-header.scrolled .brand::before,
.site-header.compact-ready .brand::before,
.inner-page .site-header .brand::before,
.inner-page .site-header.scrolled .brand::before {
  width: 44px !important;
  height: 50px !important;
}

.loader-logo {
  content: url("assets/icons/HF-T-01-New-loader-transparent.png");
}


@media (max-width: 680px) {
  .site-header .brand,
  .site-header.scrolled .brand,
  .site-header.compact-ready .brand,
  .inner-page .site-header .brand {
    width: 50px !important;
    height: 44px !important;
  }

  .site-header .brand::before {
    width: 50px !important;
    height: 44px !important;
  }
}

/* 2026-06-28 black logo footer */
.site-footer.footer,
.booking-page .site-footer.footer,
.tours-page .site-footer.footer {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 6vw, 84px) 0 22px !important;
  background: #101411 !important;
  color: rgba(239, 245, 236, 0.78) !important;
}

.site-footer-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(46px, 6vw, 84px);
  min-width: 0;
}

.site-footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 390px) minmax(0, 1fr);
  gap: clamp(38px, 7vw, 92px);
  align-items: start;
  min-width: 0;
}

.site-footer-brand-block {
  display: grid;
  align-content: start;
  gap: 24px;
  min-width: 0;
}

.site-footer-logo-link {
  display: inline-flex;
  width: min(330px, 100%);
  aspect-ratio: 5725 / 2342;
  align-items: center;
}

.site-footer-logo,
.site-footer-large-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer-logo {
  filter: brightness(0) invert(1);
  opacity: 0.86;
}

.site-footer p {
  max-width: 390px;
  margin: 0;
  color: rgba(239, 245, 236, 0.68) !important;
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
  line-height: 1.65;
}

.site-footer-contact {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid rgba(239, 245, 236, 0.34);
  color: rgba(239, 245, 236, 0.86) !important;
  font-size: 0.84rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

.site-footer-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(136px, 1fr));
  gap: clamp(24px, 4vw, 58px);
  min-width: 0;
}

.site-footer-nav-group {
  display: grid;
  align-content: start;
  gap: 13px;
}

.site-footer-nav-group h2 {
  margin: 0 0 8px;
  color: rgba(239, 245, 236, 0.92) !important;
  font-family: var(--body-font);
  font-size: 0.75rem;
  font-weight: 780;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
}

.site-footer a:not(.site-footer-logo-link) {
  color: rgba(239, 245, 236, 0.62) !important;
  font-size: clamp(0.95rem, 1vw, 1.06rem);
  line-height: 1.35;
  letter-spacing: 0.025em;
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.site-footer a:not(.site-footer-logo-link):hover {
  color: rgba(255, 255, 255, 0.96) !important;
  transform: translateX(2px);
}

.site-footer-large-logo {
  width: min(100%, 1160px);
  margin: clamp(10px, 2vw, 24px) auto 0;
  aspect-ratio: 5725 / 2342;
  opacity: 0.1;
  pointer-events: none;
}

.site-footer-large-logo img {
  filter: brightness(0) saturate(100%) invert(89%) sepia(13%) saturate(275%) hue-rotate(76deg) brightness(92%) contrast(85%);
}

.site-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  margin-top: -12px !important;
  padding-top: 22px !important;
  border-top: 1px solid rgba(239, 245, 236, 0.12) !important;
  color: rgba(239, 245, 236, 0.44) !important;
  font-size: 0.78rem;
  line-height: 1.5;
}

@media (max-width: 940px) {
  .site-footer-main {
    grid-template-columns: 1fr;
  }

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

  .site-footer-logo-link {
    width: min(300px, 100%);
  }
}

@media (max-width: 680px) {
  .site-footer.footer,
  .booking-page .site-footer.footer,
  .tours-page .site-footer.footer {
    padding: 46px 0 34px !important;
  }

  .site-footer-nav {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer-logo-link {
    width: min(260px, 100%);
  }

  .site-footer-large-logo {
    width: min(100%, 560px);
    margin-inline: auto;
    opacity: 0.09;
  }

  .site-footer-bottom {
    display: grid;
    margin-top: -6px !important;
  }
}

/* 2026-06-28 footer same-row placement */
.site-footer .site-footer-logo-link {
  display: none !important;
}

.site-footer.footer,
.booking-page .site-footer.footer,
.tours-page .site-footer.footer {
  margin-bottom: -1px;
}


.site-footer-inner {
  gap: clamp(12px, 1.7vw, 24px);
}

.site-footer-main {
  grid-template-columns: minmax(0, 820px) minmax(280px, 420px) !important;
  gap: clamp(36px, 5vw, 76px) !important;
  align-items: start;
}

@media (min-width: 941px) {
  .site-footer-main {
    transform: translateY(-16px);
  }
}


.site-footer-brand-block {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  width: min(420px, 100%);
  margin-bottom: 0;
}

.site-footer-nav {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  margin-left: 0;
  grid-template-columns: repeat(4, minmax(112px, 1fr));
  gap: clamp(22px, 3vw, 42px);
}

.site-footer-large-logo {
  margin-top: clamp(-36px, -2.2vw, -12px);
}

@media (max-width: 940px) {
  .site-footer-main {
    grid-template-columns: 1fr !important;
    gap: clamp(34px, 7vw, 56px) !important;
  }

  .site-footer-brand-block {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    width: min(420px, 100%);
  }

  .site-footer-nav {
    grid-column: 1;
    grid-row: 2;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer-large-logo {
    margin-top: 0;
  }
}

@media (max-width: 680px) {
  .site-footer-brand-block {
    justify-items: start;
  }

  .site-footer-contact {
    justify-self: center;
  }

  .site-footer-nav {
    width: min(100%, 390px);
    justify-self: center;
    grid-template-columns: repeat(2, minmax(128px, 1fr));
    justify-items: center;
    gap: 30px clamp(18px, 6vw, 28px);
  }

  .site-footer-nav-group {
    width: min(150px, 100%);
    max-width: 100%;
    justify-self: center;
  }

  .site-footer-large-logo {
    width: min(100%, 560px);
    margin-inline: auto;
    margin-top: -4px;
  }

  .site-footer-bottom {
    margin-top: -8px !important;
    justify-items: center;
    text-align: center;
    row-gap: 12px;
  }

  .site-footer.footer,
  .booking-page .site-footer.footer,
  .tours-page .site-footer.footer {
    margin-bottom: -1px;
  }
}

/* Terms page */
.terms-page {
  background: #f7f6f1;
}

.terms-main {
  min-height: calc(100svh - 108px);
  padding-top: 76px;
}

.terms-hero {
  min-height: clamp(260px, 38svh, 420px);
  display: flex;
  align-items: center;
  padding: clamp(60px, 8vw, 112px) 0 clamp(42px, 6vw, 86px);
  text-align: center;
}

.terms-hero-inner {
  display: grid;
  width: min(100% - clamp(40px, 8vw, 150px), 1540px);
  justify-items: center;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(14px, 1.7vw, 22px) clamp(58px, 9vw, 160px);
  margin: 0 auto;
}

.terms-hero h1,
.terms-updated {
  grid-column: 1 / -1;
}

.terms-hero h1 {
  justify-self: center;
}

.terms-updated {
  grid-column: 2;
  justify-self: start;
  text-align: left;
}

.terms-hero h1 {
  max-width: 100%;
  margin: 0;
  color: #111511;
  font-family: var(--body-font);
  font-size: clamp(3.25rem, 8vw, 8.5rem);
  font-weight: 820;
  line-height: 0.92;
  letter-spacing: 0;
  white-space: nowrap;
}

.terms-updated {
  margin: 0;
  color: rgba(17, 21, 17, 0.58);
  font-size: clamp(1rem, 1.45vw, 1.35rem);
  font-weight: 520;
  letter-spacing: 0;
  text-transform: none;
}

.terms-document {
  width: min(100% - clamp(40px, 8vw, 150px), 1540px);
  margin: 0 auto;
  padding: 0 0 clamp(82px, 11vw, 150px);
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(58px, 9vw, 160px);
  align-items: start;
  color: var(--ink);
}

.terms-document-header {
  display: grid;
  gap: clamp(16px, 2vw, 22px);
  padding-bottom: clamp(34px, 5vw, 58px);
}

.terms-page .terms-index.reveal,
.terms-page .terms-document-header.reveal,
.terms-page .terms-section.reveal {
  transform: translateY(30px);
  filter: blur(10px);
}

.terms-page .terms-index.reveal.visible,
.terms-page .terms-document-header.reveal.visible,
.terms-page .terms-section.reveal.visible {
  transform: translateY(0);
  filter: blur(0);
}

.terms-page .terms-hero h1.reveal {
  --delay: 80ms;
}

.terms-page .terms-updated.reveal {
  --delay: 180ms;
}

.terms-page .terms-index.reveal {
  --delay: 260ms;
}

.terms-page .terms-document-header.reveal {
  --delay: 360ms;
}

.terms-page .terms-content .terms-section.reveal:nth-of-type(4n + 1) {
  --delay: 80ms;
}

.terms-page .terms-content .terms-section.reveal:nth-of-type(4n + 2) {
  --delay: 180ms;
}

.terms-page .terms-content .terms-section.reveal:nth-of-type(4n + 3) {
  --delay: 280ms;
}

.terms-page .terms-content .terms-section.reveal:nth-of-type(4n + 4) {
  --delay: 380ms;
}

.terms-document p,
.terms-document li,
.terms-document address {
  color: rgba(17, 21, 17, 0.72);
  font-family: var(--font-display);
  font-size: clamp(0.98rem, 1vw, 1.05rem);
  font-style: normal;
  font-weight: 430;
  line-height: 1.72;
}

.terms-document p {
  margin: 0;
}

.terms-document-header p:last-child {
  color: #111511;
  font-weight: 820;
}

.terms-index {
  position: sticky;
  top: 92px;
  max-height: calc(100svh - 112px);
  overflow: hidden;
  padding-top: 0;
}

.terms-index ol {
  display: grid;
  gap: clamp(5px, 0.7vw, 10px);
  list-style: none;
  margin: 0;
  padding: 0;
  transform: translateY(calc(var(--terms-index-shift, 0px) * -1));
  transition: transform 260ms ease;
}

.terms-index li {
  line-height: 1;
}

.terms-index a,
.terms-document address a {
  font-size: inherit;
  text-decoration-color: rgba(17, 21, 17, 0.22);
  text-underline-offset: 0.18em;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

.terms-index a {
  display: block;
  color: rgba(17, 21, 17, 0.26);
  font-family: var(--body-font);
  font-size: clamp(1.35rem, 1.9vw, 2.35rem);
  font-weight: 760;
  line-height: 1.08;
  text-decoration: none;
}

.terms-index a.is-active,
.terms-index li.is-active a {
  color: rgba(17, 21, 17, 0.68);
}

.terms-index a:hover,
.terms-document address a:hover {
  color: rgba(17, 21, 17, 0.68);
  text-decoration-color: rgba(17, 21, 17, 0.48);
}

.terms-document address a {
  color: rgba(17, 21, 17, 0.68);
  font-family: inherit;
  font-weight: 820;
  text-decoration-line: underline;
  text-decoration-thickness: 0.08em;
}

.terms-section {
  display: grid;
  gap: 15px;
  padding: clamp(28px, 4vw, 50px) 0;
  border-top: 1px solid rgba(17, 21, 17, 0.12);
  scroll-margin-top: 112px;
}

.terms-section h2 {
  margin: 0 0 4px;
  color: #111511;
  font-family: var(--body-font);
  font-size: clamp(1.6rem, 2.3vw, 3rem);
  font-weight: 820;
  line-height: 1.15;
  letter-spacing: 0;
}

.terms-section strong {
  color: rgba(17, 21, 17, 0.68);
  font-family: inherit;
  font-weight: 820;
}

.terms-section address {
  margin: 0;
}

@media (max-width: 940px) {
  .terms-document {
    grid-template-columns: 1fr;
    gap: clamp(28px, 6vw, 46px);
  }

  .terms-index {
    display: none;
  }

  .terms-index ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px clamp(20px, 5vw, 36px);
  }

  .terms-index a {
    font-size: clamp(1.2rem, 4vw, 1.7rem);
  }
}

@media (max-width: 720px) {
  .terms-main {
    padding-top: 76px;
  }

  .terms-hero {
    min-height: auto;
    padding-top: clamp(44px, 12vw, 72px);
  }

  .terms-hero h1 {
    font-size: clamp(2.05rem, 8.4vw, 3.4rem);
  }

  .terms-hero-inner {
    width: min(100% - 36px, 1280px);
    grid-template-columns: 1fr;
  }

  .terms-updated {
    grid-column: 1;
    justify-self: center;
    text-align: center;
  }

  .terms-document {
    width: min(100% - 36px, 1280px);
  }

  .terms-index ol {
    grid-template-columns: 1fr;
  }
}
