/*
Theme Name: Sacred Travels
Theme URI: https://linen-rhinoceros-412665.hostingersite.com
Author: Sacred Travels
Description: Bespoke theme for Sacred Travels — high-quality tourist transportation for sightseeing tours, business trips, airport transfers, excursions and events. Built to the Sacred Travels brand book.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: safe-travels
*/

/* ==========================================================================
   Brand tokens — Sacred Travels brand book
   Antique Bronze #B7833F · Champagne Gold #F7EB9B · Key Black #231F20
   ========================================================================== */

:root {
  /* Core brand */
  --key-black:   #231f20;
  --bronze:      #b7833f;
  --champagne:   #f7eb9b;

  /* Bronze tints, per the 25/50/75/100 ramp in the brand book */
  --bronze-75:   #c69f6f;
  --bronze-50:   #dbc19f;
  --bronze-25:   #ede0cf;

  /* Champagne tints */
  --champagne-50: #fbf5cd;
  --champagne-25: #fdfae6;

  /* Working neutrals derived from Key Black + Champagne */
  --ink:         var(--key-black);
  --ink-2:       #3c3537;
  --muted:       #7b6f64;
  --white:       #ffffff;
  --paper:       #fbf8f1;   /* warm ivory ground */
  --paper-2:     #f4ecdd;   /* deeper warm tint */
  --hairline:    rgba(35, 31, 32, .12);

  /* The signature gold sweep, taken from the logo's gradient */
  --gold-sweep:  linear-gradient(115deg, #a2702f 0%, var(--bronze) 22%, var(--champagne) 52%, var(--bronze) 78%, #a2702f 100%);

  --font-display: "Mont", "Montserrat", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-ui:      "Mont", "Montserrat", "Segoe UI", system-ui, -apple-system, sans-serif;

  --gutter:      clamp(22px, 5.6vw, 76px);
  --pill-gutter: clamp(14px, 4.3vw, 58px);
  --pill-top:    clamp(12px, 1.8vw, 22px);

  --glass:       rgba(255, 255, 255, .13);
  --glass-line:  rgba(255, 255, 255, .22);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { margin: 0; padding: 0; list-style: none; }

:where(a, button):focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 3px;
  border-radius: 6px;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--key-black);
  color: var(--champagne);
  font-weight: 700;
  transition: top .2s ease;
}
.skip-link:focus-visible { top: 12px; }

/* Gold text used sparingly for emphasis */
.gold-text {
  background: var(--gold-sweep);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


/* ==========================================================================
   Brandmark ornament — the Taj mark used as a quiet watermark
   ========================================================================== */

.mark-watermark {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  will-change: transform;
}
.mark-watermark img { width: 100%; height: auto; }

/* ==========================================================================
   Hero — full bleed
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr;
  overflow: hidden;
  isolation: isolate;
  background: var(--key-black);
}

body.admin-bar .hero { min-height: calc(100svh - 32px); }
@media screen and (max-width: 782px) {
  body.admin-bar .hero { min-height: calc(100svh - 46px); }
}

.hero__photo {
  position: absolute;
  /* Overscan must exceed the parallax cap at every viewport height, or the
     drift pulls the image edge into view. 25% of a 480px-tall hero is 120px,
     which matches the cap set on the element in front-page.php. */
  inset: -25% 0;
  z-index: -2;
  width: 100%;
  height: 150%;
  object-fit: cover;
  object-position: 50% 42%;
  will-change: transform;
}

/* Warm scrim, keyed to Key Black rather than the old teal */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top,    rgba(23, 20, 21, .70) 0%, rgba(23, 20, 21, .18) 44%, transparent 70%),
    linear-gradient(to right,  rgba(23, 20, 21, .46) 0%, transparent 62%),
    linear-gradient(to bottom, rgba(23, 20, 21, .30) 0%, transparent 24%);
}

/* Oversized brandmark, barely there, drifting behind the copy */
.hero__mark {
  right: -6%;
  bottom: -14%;
  width: clamp(280px, 42vw, 620px);
  opacity: .07;
}

/* --- Floating nav pill --- */
.nav {
  position: absolute;
  z-index: 5;
  top: var(--pill-top);
  left: var(--pill-gutter);
  right: var(--pill-gutter);
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  min-height: clamp(68px, 5.4vw, 84px);
  padding: 8px 8px 8px clamp(20px, 2.2vw, 32px);
  border-radius: 999px;
  background: rgba(23, 20, 21, .34);
  backdrop-filter: blur(7px) saturate(1.08);
  -webkit-backdrop-filter: blur(7px) saturate(1.08);
  border: 1px solid rgba(255, 255, 255, .10);
  box-shadow: 0 10px 34px -18px rgba(0, 0, 0, .55);
  color: var(--white);
}
body.admin-bar .nav { top: calc(var(--pill-top) + 6px); }

.brand {
  display: inline-flex;
  align-items: center;
  flex: none;
  /* Breathing room on every side so the mark never touches the pill edge */
  padding: 4px 10px 4px 0;
}
.brand__logo {
  height: clamp(40px, 3.8vw, 56px);
  width: auto;
  max-width: none;   /* the global img{max-width:100%} was clipping the wordmark */
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(13px, 1.8vw, 26px);
  margin-inline: auto;
}
.nav__links a {
  position: relative;
  display: inline-block;
  font-size: clamp(14px, 1.05vw, 15.5px);
  font-weight: 600;
  letter-spacing: .01em;
  color: rgba(255, 255, 255, .90);
  transition: color .22s ease;
}
/* No underline — the link warms to champagne and an airliner glides across.
   Top-down silhouette: swept wings, engine nacelles, tailplane. Nose leads
   right, matching the direction of travel. */
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -13px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cpath fill='%23f7eb9b' d='M61.4 32c0 1.35-1.05 2.2-2.7 2.62l-12.85 3.2-7.9 13.5c-.36.62-.9.93-1.62.93h-3.1l3.9-14.2-9.55 2.05-3.2 5.35c-.28.47-.72.7-1.3.7h-2.3l1.45-6.6-2.35-.75-1.6 2.6h-1.6l.9-3.2-2.6-.95c-.66-.24-.66-1.16 0-1.4l2.6-.95-.9-3.2h1.6l1.6 2.6 2.35-.75-1.45-6.6h2.3c.58 0 1.02.23 1.3.7l3.2 5.35 9.55 2.05-3.9-14.2h3.1c.72 0 1.26.31 1.62.93l7.9 13.5 12.85 3.2c1.65.42 2.7 1.27 2.7 2.62z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 17px 17px;
  background-position: -24px center;
  opacity: 0;
  transition: background-position 1.6s cubic-bezier(.34, .02, .2, 1), opacity .45s ease;
  pointer-events: none;
}
.nav__links a:hover { color: var(--champagne); }
.nav__links a:hover::after { opacity: 1; background-position: calc(100% + 24px) center; }

@media (prefers-reduced-motion: reduce) {
  .nav__links a::after { transition: opacity .2s ease; }
  .nav__links a:hover::after { background-position: center; }
}

/* --- Dropdowns ---------------------------------------------------------- */

.nav__item { position: relative; display: flex; align-items: center; gap: 2px; }

.nav__dropToggle {
  display: inline-grid;
  place-items: center;
  width: 20px; height: 20px;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  cursor: pointer;
  opacity: .7;
  transition: transform .22s ease, opacity .18s ease;
}
.nav__item:hover .nav__dropToggle,
.nav__dropToggle[aria-expanded="true"] { opacity: 1; }
.nav__dropToggle[aria-expanded="true"] { transform: rotate(180deg); }

.nav__drop {
  position: absolute;
  top: calc(100% + 14px);
  left: -14px;
  z-index: 20;
  min-width: 214px;
  padding: 8px;
  border-radius: 16px;
  background: rgba(24, 21, 22, .97);
  border: 1px solid rgba(247, 235, 155, .16);
  box-shadow: 0 24px 50px -26px rgba(0, 0, 0, .7);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.nav__item:hover .nav__drop,
.nav__item:focus-within .nav__drop,
.nav__drop.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Bridge the gap so the pointer can travel into the panel */
.nav__item--has-drop::after {
  content: "";
  position: absolute;
  top: 100%; left: 0; right: 0;
  height: 16px;
}

.nav__drop a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 13px;
  border-radius: 10px;
  font-size: 1rem;
  white-space: nowrap;
  transition: background-color .16s ease;
}
.nav__drop a::after { display: none; }
.nav__drop a:hover { background: rgba(255, 255, 255, .08); }
.nav__drop small { font-weight: 500; opacity: .5; }
.nav__drop-all { margin-top: 4px; border-top: 1px solid rgba(255, 255, 255, .10); padding-top: 4px; }
.nav__drop-all a { color: var(--champagne); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

/* Primary action carries the brand gold */
.btn--light {
  flex: none;
  padding: clamp(15px, 1.35vw, 19px) clamp(26px, 2.3vw, 36px);
  font-size: clamp(15px, 1.15vw, 17px);
  background: var(--gold-sweep);
  color: var(--key-black);
  box-shadow: 0 6px 22px -10px rgba(183, 131, 63, .8);
}
.btn--light:hover { transform: translateY(-1px); filter: brightness(1.06); }

.nav__toggle {
  display: none;
  flex: none;
  width: 42px;
  height: 42px;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid var(--glass-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .10);
  cursor: pointer;
}
.nav__toggle-bar {
  width: 16px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--champagne);
  transition: transform .22s ease;
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:first-child { transform: translateY(3.75px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:last-child  { transform: translateY(-3.75px) rotate(-45deg); }

/* --- Hero copy --- */
.hero__content {
  position: relative;
  z-index: 2;
  align-self: end;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .8fr);
  align-items: end;
  gap: clamp(18px, 4vw, 60px);
  padding: var(--gutter);
  padding-right: calc(var(--gutter) + clamp(0px, 5vw, 70px));
  padding-bottom: clamp(92px, 12vh, 136px);
  color: var(--white);
}

.hero__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 4.5vw, 3.95rem);
  font-weight: 700;              /* Mont Heavy */
  line-height: 1.03;
  letter-spacing: -.03em;
  text-shadow: 0 2px 30px rgba(23, 20, 21, .45);
}
.hero__title em {
  font-style: normal;
  background: var(--gold-sweep);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lede {
  margin: 0 0 .35em;
  max-width: 46ch;
  font-size: clamp(1rem, 1.05vw, 1.06rem);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, .90);
  text-shadow: 0 1px 16px rgba(23, 20, 21, .5);
}

.hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: var(--gutter);
  z-index: 4;
  display: grid;
  place-items: center;
  width: clamp(46px, 4.2vw, 58px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(247, 235, 155, .45);
  background: rgba(23, 20, 21, .35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--champagne);
  transition: background-color .2s ease, transform .2s ease;
}
.hero__scroll:hover { background: rgba(183, 131, 63, .45); transform: translateY(2px); }
.hero__scroll svg   { animation: nudge 2.4s ease-in-out infinite; }

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


/* ==========================================================================
   Services
   ========================================================================== */

.services {
  position: relative;
  background: var(--paper);
  padding-block: clamp(56px, 8vw, 116px);
  overflow: hidden;
}

.services__inner {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4.4vw, 60px);
}

.services__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .82fr);
  align-items: start;
  gap: clamp(22px, 5vw, 72px);
  margin-bottom: clamp(34px, 4.6vw, 62px);
}

.services__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -.032em;
  color: var(--ink);
}

.services__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(18px, 2.2vw, 28px);
  padding-top: clamp(4px, 1vw, 14px);
}

.services__text {
  margin: 0;
  max-width: 42ch;
  font-size: clamp(1rem, 1.05vw, 1.08rem);
  line-height: 1.65;
  color: var(--muted);
}

.btn--accent {
  padding: 8px 8px 8px 28px;
  font-size: clamp(15px, 1.15vw, 17px);
  background: var(--key-black);
  color: var(--champagne);
}
.btn--accent:hover { transform: translateY(-1px); }

.btn__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold-sweep);
  color: var(--key-black);
  transition: transform .22s ease;
}
.btn--accent:hover .btn__icon { transform: rotate(45deg); }

/* --- Service cards --- */
.cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(10px, 1.1vw, 16px);
}

.card {
  position: relative;
  aspect-ratio: 10 / 17;
  border-radius: clamp(12px, 1.1vw, 18px);
  overflow: hidden;
  background-image: var(--card-img), linear-gradient(160deg, var(--card-tint), #1b1617);
  background-size: cover;
  background-position: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 44px -22px rgba(35, 31, 32, .55);
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23, 20, 21, .82) 0%, rgba(23, 20, 21, .20) 38%, transparent 64%);
}

/* A gold hairline appears along the card edge on hover */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  border: 1px solid transparent;
  background: var(--gold-sweep) border-box;
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.card:hover::before { opacity: 1; }

.card__link {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding: clamp(13px, 1.2vw, 20px);
  color: var(--white);
}

.card__label {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -.015em;
  text-wrap: balance;
}

.card__arrow {
  position: absolute;
  top: clamp(11px, 1vw, 16px);
  right: clamp(11px, 1vw, 16px);
  display: grid;
  place-items: center;
  width: clamp(28px, 2.4vw, 34px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(247, 235, 155, .5);
  background: rgba(23, 20, 21, .35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--champagne);
  transition: background-color .22s ease, transform .22s ease, color .22s ease;
}
.card:hover .card__arrow {
  background: var(--gold-sweep);
  color: var(--key-black);
  transform: rotate(45deg);
}


/* === SECTIONS === */
/* ==========================================================================
   Most Booked Experiences
   ========================================================================== */

.experiences {
  position: relative;
  background: var(--paper);
  padding-block: clamp(48px, 7vw, 104px);
  overflow: hidden;
}

.experiences__inner {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4.4vw, 60px);
}

.experiences__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(18px, 4vw, 48px);
  margin-bottom: clamp(26px, 3.4vw, 46px);
}

.experiences__title {
  margin: 0 0 .35em;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -.032em;
  color: var(--ink);
}

.experiences__sub {
  margin: 0;
  max-width: 46ch;
  font-size: clamp(1rem, 1vw, 1.06rem);
  line-height: 1.6;
  color: var(--muted);
}

.btn--dark {
  flex: none;
  padding: clamp(15px, 1.35vw, 19px) clamp(26px, 2.3vw, 36px);
  font-size: clamp(15px, 1.15vw, 17px);
  background: var(--key-black);
  color: var(--champagne);
}
.btn--dark:hover { transform: translateY(-1px); filter: brightness(1.15); }

.exp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 20px);
}

.exp-card {
  position: relative;
  display: block;
  border-radius: clamp(14px, 1.2vw, 20px);
  overflow: hidden;
  background: var(--key-black);
  isolation: isolate;
}
.exp-card--featured {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 6.2;
}
.exp-card--small { aspect-ratio: 4 / 3.4; }

.exp-card__media {
  position: absolute;
  /* Overscan > parallax cap; the smallest card is ~370px tall, so 15%
     gives ~56px against a 30px cap. */
  inset: -15% 0;
  z-index: -1;
  width: 100%;
  height: 130%;
  object-fit: cover;
  will-change: transform;
  transition: transform .55s cubic-bezier(.2, .7, .3, 1);
}

.exp-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23, 20, 21, .86) 0%, rgba(23, 20, 21, .32) 40%, rgba(23, 20, 21, .05) 72%);
}

/* Rank numeral, set in brand gold */
.exp-card__rank {
  position: absolute;
  top: clamp(12px, 1.2vw, 20px);
  left: clamp(14px, 1.5vw, 26px);
  z-index: 2;
  font-family: var(--font-display);
  font-size: clamp(.72rem, .85vw, .86rem);
  font-weight: 700;
  letter-spacing: .18em;
  background: var(--gold-sweep);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.exp-card__body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(10px, 1.4vw, 22px);
  padding: clamp(14px, 1.6vw, 28px);
  color: var(--white);
}

.exp-card__text { min-width: 0; }

.exp-card__title {
  display: block;
  margin: 0 0 .5em;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.9vw, 1.85rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.028em;
  text-wrap: balance;
}
.exp-card--small .exp-card__title { font-size: clamp(1rem, 1.25vw, 1.2rem); }

.exp-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(8px, 1vw, 16px);
  font-size: clamp(.9rem, .95vw, .95rem);
  font-weight: 500;
  color: rgba(255, 255, 255, .86);
}
.exp-card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.exp-card__meta svg { flex: none; color: var(--champagne); }

.exp-card__rule {
  width: 1px;
  height: 12px;
  background: rgba(247, 235, 155, .4);
}

/* The price IS the button, and it carries the brand gold */
.exp-card__price {
  flex: none;
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  padding: clamp(9px, .95vw, 13px) clamp(16px, 1.4vw, 24px);
  border-radius: 999px;
  background: var(--gold-sweep);
  color: var(--key-black);
  transition: transform .2s ease, filter .2s ease;
}
.exp-card:hover .exp-card__price { transform: translateY(-2px); filter: brightness(1.07); }

.exp-card__from {
  font-size: clamp(.68rem, .78vw, .76rem);
  font-weight: 600;
  opacity: .72;
}
.exp-card__amount {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -.028em;
}


/* ==========================================================================
   Booked in 3 simple steps
   ========================================================================== */

.steps {
  position: relative;
  background: var(--key-black);
  color: var(--white);
  padding-block: clamp(52px, 7.5vw, 110px);
  overflow: hidden;
}

/* Oversized brandmark drifting behind the accordion */
.steps__mark {
  left: -8%;
  top: 6%;
  width: clamp(320px, 46vw, 720px);
  opacity: .05;
}

.steps__inner {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4.4vw, 60px);
}

.steps__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .86fr);
  align-items: start;
  gap: clamp(18px, 4vw, 64px);
  margin-bottom: clamp(28px, 3.6vw, 52px);
}

.steps__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -.032em;
}

.steps__text {
  margin: 0;
  max-width: 48ch;
  padding-top: clamp(2px, .8vw, 10px);
  font-size: clamp(1rem, 1vw, 1.08rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, .70);
}

.steps__accordion {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(8px, .9vw, 14px);
}

@media (min-width: 901px) {
  /* Flex, not grid — grid tracks would size every panel identically and
     crush the open one. Closed rails stay slim; the open panel takes the rest. */
  .steps__accordion {
    display: flex;
    align-items: stretch;
    /* Definite height, not min-height: the panel image is flex:1 and would
       otherwise resolve to its own aspect ratio and blow the section open. */
    height: clamp(430px, 42vw, 540px);
  }
  .step {
    flex: 0 0 96px;
    transition: flex-basis .45s cubic-bezier(.2, .7, .3, 1), background-color .3s ease;
  }
  .step.is-open { flex: 1 1 auto; }
}

.step {
  position: relative;
  display: flex;
  overflow: hidden;
  border-radius: clamp(14px, 1.4vw, 22px);
  border: 1px solid rgba(247, 235, 155, .16);
  background: rgba(255, 255, 255, .04);
  transition: background-color .3s ease, border-color .3s ease;
}
.step.is-open {
  background: var(--paper);
  border-color: transparent;
  color: var(--ink);
}

.step__spine {
  display: flex;
  flex: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: clamp(14px, 1.4vw, 22px);
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.step__num {
  font-family: var(--font-display);
  font-size: clamp(.95rem, 1.35vw, 1.3rem);
  font-weight: 700;
  letter-spacing: .1em;
  background: var(--gold-sweep);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.step__label {
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.55vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -.02em;
}

.step__panel {
  display: none;
  flex: 1;
  min-width: 0;
  padding: clamp(18px, 1.9vw, 34px);
  padding-left: 0;
}
.step.is-open .step__panel { display: flex; flex-direction: column; gap: clamp(12px, 1.4vw, 20px); }

.step__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.7vw, 2.45rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.032em;
}

.step__text {
  margin: 0;
  max-width: 52ch;
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.65;
  color: var(--muted);
}

.step__media {
  flex: 1;
  min-height: 0;
  width: 100%;
  border-radius: clamp(10px, 1vw, 16px);
  object-fit: cover;
}

@media (min-width: 901px) {
  .step:not(.is-open) .step__spine {
    flex-direction: column;
    justify-content: flex-start;
    padding-block: clamp(16px, 1.6vw, 24px);
  }
  .step:not(.is-open) .step__label {
    writing-mode: vertical-rl;
    margin-top: 20px;
    white-space: nowrap;
  }
  .step.is-open .step__spine {
    flex: none;
    width: 96px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .step.is-open .step__label { display: none; }
}


/* ==========================================================================
   Proof — stats + places mosaic
   ========================================================================== */

.proof {
  position: relative;
  background: var(--paper);
  padding-block: clamp(48px, 7vw, 104px);
  overflow: hidden;
}

.proof__inner {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4.4vw, 60px);
}

/* Three columns, exactly as the reference: a short stat tile above a taller
   photo on the left, one full-height photo in the middle, and a shorter photo
   above a taller stat tile on the right. */
.proof__grid {
  display: grid;
  grid-template-columns: 1fr 1.12fr 1fr;
  grid-template-rows: .85fr 1fr;
  gap: clamp(10px, 1.2vw, 18px);
  aspect-ratio: 16 / 8;
}

.proof__cell {
  position: relative;
  border-radius: clamp(12px, 1.2vw, 20px);
  overflow: hidden;
  min-height: 0;
}

.proof__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Photo cells drift, so they need overscan of their own — the shortest cell is
   ~270px, giving ~32px against a 28px cap. */
.proof__cell--photo img {
  height: 124%;
  margin-top: -12%;
  will-change: transform;
}

.proof__cell--stat-a  { grid-column: 1; grid-row: 1; }
.proof__cell--landmark{ grid-column: 1; grid-row: 2; }
.proof__cell--skyline { grid-column: 2; grid-row: 1 / span 2; }
.proof__cell--alpine  { grid-column: 3; grid-row: 1; }
.proof__cell--stat-b  { grid-column: 3; grid-row: 2; }

/* Stat tiles carry the champagne tint from the brand ramp */
.proof__stat {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  height: 100%;
  padding: clamp(14px, 1.8vw, 30px);
  background: var(--champagne-50);
  color: var(--key-black);
  overflow: hidden;
}
.proof__stat::after {
  content: "";
  position: absolute;
  inset: auto -12% -18% auto;
  width: 46%;
  aspect-ratio: 1;
  background: var(--gold-sweep);
  opacity: .10;
  border-radius: 50%;
}

/* Brandmark tucked into the stat tile corner */
.proof__stat-mark {
  position: absolute;
  right: clamp(10px, 1.1vw, 18px);
  top: clamp(10px, 1.1vw, 18px);
  width: clamp(22px, 2vw, 30px);
  opacity: .05;
}

.proof__num {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.9rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.04em;
}

.proof__label {
  font-size: clamp(1rem, 1vw, 1.06rem);
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink-2);
}


/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1080px) {
  .cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .card  { aspect-ratio: 10 / 13; }
}

@media (max-width: 900px) {
  .nav__links {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    margin: 0;
    padding: 10px 22px 16px;
    border-radius: 22px;
    background: rgba(23, 20, 21, .94);
    backdrop-filter: blur(18px) saturate(1.3);
    -webkit-backdrop-filter: blur(18px) saturate(1.3);
    border: 1px solid rgba(247, 235, 155, .22);
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { display: block; padding: 12px 0; font-size: 15px; }

  .nav__toggle { display: flex; }
  .nav__cta    { margin-left: auto; }

  .hero__content {
    grid-template-columns: 1fr;
    align-items: start;
    gap: clamp(14px, 2.4vw, 22px);
  }
  .hero__lede { max-width: 54ch; }

  .services__head   { grid-template-columns: 1fr; gap: clamp(18px, 3vw, 28px); }
  .experiences__head { flex-direction: column; align-items: flex-start; }
  .exp-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .exp-card--featured { aspect-ratio: 16 / 8.5; }
  .exp-card--small    { aspect-ratio: 4 / 3.2; }

  .steps__head { grid-template-columns: 1fr; gap: clamp(14px, 2.6vw, 22px); }
  .step { flex-direction: column; }
  .step__spine { justify-content: flex-start; gap: 14px; }
  .step__panel { padding: 0 clamp(16px, 3vw, 22px) clamp(18px, 3vw, 24px); }
  .step__media { aspect-ratio: 16 / 9; flex: none; }

  .proof__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    aspect-ratio: auto;
    grid-auto-rows: minmax(130px, auto);
  }
  .proof__cell--stat-a  { grid-column: 1; grid-row: 1; }
  .proof__cell--landmark{ grid-column: 2; grid-row: 1; }
  .proof__cell--skyline { grid-column: 1 / span 2; grid-row: 2; min-height: 220px; }
  .proof__cell--alpine  { grid-column: 1; grid-row: 3; }
  .proof__cell--stat-b  { grid-column: 2; grid-row: 3; }
  .proof__stat { align-items: flex-start; }
}

@media (max-width: 620px) {
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .card  { aspect-ratio: 10 / 12; }
  .hero__content { padding-bottom: clamp(78px, 14vh, 106px); }
  .hero__title   { font-size: clamp(2rem, 8.6vw, 2.85rem); }
  .hero__lede    { font-size: .925rem; }

  .exp-grid { grid-template-columns: 1fr; }
  .exp-card--featured { aspect-ratio: 4 / 3.2; }
  .exp-card--small    { aspect-ratio: 4 / 3; }
  .exp-card__body { flex-direction: column; align-items: flex-start; }
  .exp-card__price { align-self: stretch; justify-content: center; }
}

@media (max-width: 340px) {
  .cards { grid-template-columns: 1fr; }
  .card  { aspect-ratio: 16 / 9; }
}

/* Motion is decorative here — switch it all off on request */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .hero__photo,
  .exp-card__media,
  .mark-watermark,
  .proof__cell--photo img { transform: none !important; }
}


/* ==========================================================================
   Scroll reveal — paired with the parallax engine
   ========================================================================== */

[data-reveal].is-pending {
  opacity: 0;
  transform: translateY(26px);
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
  transition: opacity .75s cubic-bezier(.2, .7, .3, 1),
              transform .75s cubic-bezier(.2, .7, .3, 1);
}
[data-reveal][data-reveal-delay="1"].is-revealed { transition-delay: .09s; }
[data-reveal][data-reveal-delay="2"].is-revealed { transition-delay: .18s; }
[data-reveal][data-reveal-delay="3"].is-revealed { transition-delay: .27s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal].is-pending { opacity: 1; transform: none; }
}


/* === SECTIONS 2 === */
/* ==========================================================================
   Shared section head + circular arrow controls
   ========================================================================== */

.sec-inner {
  position: relative;
  z-index: 1;
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4.4vw, 60px);
}

.sec-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -.032em;
}

.sec-text {
  margin: 0;
  max-width: 46ch;
  font-size: clamp(1rem, 1vw, 1.06rem);
  line-height: 1.62;
  color: var(--muted);
}

.arrows {
  display: flex;
  gap: 10px;
  flex: none;
}
.arrows button {
  display: grid;
  place-items: center;
  width: clamp(44px, 3.4vw, 52px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, opacity .2s ease;
}
.arrows button:hover:not(:disabled) { background: var(--key-black); color: var(--champagne); border-color: transparent; }
.arrows button:disabled { opacity: .32; cursor: default; }
.arrows--onDark button { border-color: rgba(255, 255, 255, .28); color: var(--white); }
.arrows--onDark button:hover:not(:disabled) { background: var(--gold-sweep); color: var(--key-black); }


/* ==========================================================================
   Partners
   ========================================================================== */

.partners {
  background: var(--paper-2);
  padding-block: clamp(44px, 6vw, 84px);
}

.partners__title {
  margin: 0 0 clamp(26px, 3.4vw, 46px);
  max-width: 26ch;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -.02em;
  color: var(--ink);
}

.partners__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 18px);
}

.partners__cell {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  padding: clamp(12px, 1.6vw, 24px);
  border-radius: clamp(10px, 1vw, 14px);
  background: var(--white);
  box-shadow: 0 2px 10px -6px rgba(35, 31, 32, .22);
  transition: transform .25s ease, box-shadow .25s ease;
}
.partners__cell:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px -16px rgba(35, 31, 32, .38);
}
.partners__cell img {
  width: 100%;
  max-height: 34px;
  object-fit: contain;
  opacity: .82;
}


/* ==========================================================================
   Reviews
   ========================================================================== */

.reviews {
  position: relative;
  background: var(--key-black);
  color: var(--white);
  padding-block: clamp(52px, 7.5vw, 110px);
  overflow: hidden;
}

.reviews__layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.35fr);
  gap: clamp(26px, 4vw, 64px);
  align-items: start;
}

.reviews__title { color: var(--white); }
.reviews__text  { color: rgba(255, 255, 255, .72); margin-top: clamp(12px, 1.6vw, 20px); }

/* Overlapping avatar stack with a count chip */
.reviews__stack {
  display: flex;
  align-items: center;
  margin-top: clamp(20px, 2.6vw, 32px);
}
.reviews__stack img,
.reviews__count {
  width: clamp(42px, 3.6vw, 52px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid var(--key-black);
  object-fit: cover;
}
.reviews__stack img:not(:first-child),
.reviews__count { margin-left: -14px; }
.reviews__count {
  display: grid;
  place-items: center;
  background: var(--gold-sweep);
  color: var(--key-black);
  font-size: clamp(.82rem, .95vw, .92rem);
  font-weight: 700;
}

.reviews__track {
  display: flex;
  gap: clamp(12px, 1.4vw, 20px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 4px;
  padding-inline-end: clamp(14px, 2.4vw, 34px);
  scroll-padding-inline-end: clamp(14px, 2.4vw, 34px);
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}
.reviews__track > *:last-child { scroll-snap-align: end; }
.reviews__track::-webkit-scrollbar { display: none; }

.review {
  flex: 0 0 clamp(238px, 39%, 308px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.8vw, 22px);
  padding: clamp(18px, 2vw, 28px);
  border-radius: clamp(14px, 1.4vw, 20px);
  background: var(--paper);
  color: var(--ink);
}

.review__quote {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  font-weight: 700;
  line-height: .8;
  background: var(--gold-sweep);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.review__text {
  margin: 0;
  flex: 1;
  font-size: clamp(1rem, 1vw, 1.06rem);
  line-height: 1.6;
  color: var(--ink-2);
}

.review__person { display: flex; align-items: center; gap: 12px; }
.review__person img {
  width: 44px;
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
}
.review__name {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1vw, 1.06rem);
  font-weight: 600;
  letter-spacing: -.01em;
}
.review__rating {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: clamp(.9rem, .95vw, .95rem);
  font-weight: 600;
  color: var(--bronze);
}

/* A photo behaves as one more card in the track */
.review--photo {
  padding: 0;
  overflow: hidden;
  background: var(--ink-2);
}
.review--photo img { width: 100%; height: 100%; object-fit: cover; }

.reviews__foot {
  display: flex;
  justify-content: flex-end;
  margin-top: clamp(18px, 2.2vw, 28px);
}


/* ==========================================================================
   FAQ — horizontal accordion
   ========================================================================== */

.faq {
  background: var(--paper);
  padding-block: clamp(52px, 7.5vw, 110px);
}

.faq__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .8fr);
  align-items: start;
  gap: clamp(18px, 4vw, 64px);
  margin-bottom: clamp(28px, 3.6vw, 52px);
}
.faq__intro { display: flex; flex-direction: column; gap: clamp(14px, 2vw, 22px); align-items: flex-start; }

.faq__accordion {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(8px, .9vw, 14px);
}

@media (min-width: 901px) {
  .faq__accordion {
    display: flex;
    align-items: stretch;
    height: clamp(330px, 30vw, 400px);
  }
  .faq__item {
    flex: 0 0 clamp(180px, 17vw, 240px);
    transition: flex-basis .45s cubic-bezier(.2, .7, .3, 1), background-color .35s ease;
  }
  .faq__item.is-open { flex: 1 1 auto; }
}

.faq__item {
  position: relative;
  overflow: hidden;
  border-radius: clamp(14px, 1.4vw, 22px);
  background: var(--paper-2);
  color: var(--ink);
  transition: background-color .35s ease, color .35s ease;
}
.faq__item.is-open {
  background: var(--key-black);
  color: var(--white);
}

.faq__q {
  display: block;
  width: 100%;
  padding: clamp(20px, 2.2vw, 34px);
  border: 0;
  background: none;
  color: inherit;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.55vw, 1.5rem);
  font-weight: 600;
  line-height: 1.24;
  letter-spacing: -.02em;
  text-align: left;
  cursor: pointer;
}
.faq__item:not(.is-open) .faq__q { color: var(--muted); }

.faq__a {
  display: none;
  margin: 0;
  padding: 0 clamp(20px, 2.2vw, 34px) clamp(22px, 2.4vw, 34px);
  max-width: 56ch;
  font-size: clamp(1rem, 1vw, 1.06rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, .74);
}
.faq__item.is-open .faq__a { display: block; }


/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  position: relative;
  background: var(--key-black);
  color: var(--white);
  padding-top: clamp(48px, 6.5vw, 92px);
  overflow: hidden;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, .55fr) minmax(0, .55fr);
  gap: clamp(28px, 4vw, 64px);
  padding-bottom: clamp(40px, 5vw, 72px);
}

.site-footer__logo { height: clamp(38px, 3.4vw, 50px); width: auto; max-width: none; }

.site-footer__blurb {
  margin: clamp(18px, 2.2vw, 28px) 0 0;
  max-width: 42ch;
  font-size: clamp(1rem, 1vw, 1.06rem);
  line-height: 1.62;
  color: rgba(255, 255, 255, .70);
}

.site-footer__social {
  display: flex;
  gap: 14px;
  margin-top: clamp(20px, 2.4vw, 30px);
}
.site-footer__social a {
  display: grid;
  place-items: center;
  width: 40px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: rgba(255, 255, 255, .82);
  transition: color .2s ease, background-color .2s ease;
}
.site-footer__social a:hover { color: var(--key-black); background: var(--champagne); }

.site-footer__top {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: clamp(22px, 2.6vw, 34px);
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, .30);
  border-radius: 10px;
  font-size: clamp(.86rem, .92vw, .95rem);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
.site-footer__top:hover { background: var(--champagne); color: var(--key-black); border-color: transparent; }

.site-footer__colTitle {
  margin: 0 0 clamp(14px, 1.8vw, 22px);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.05vw, 1.1rem);
  font-weight: 600;
  letter-spacing: -.01em;
}
.site-footer__links li + li { margin-top: 12px; }
.site-footer__links a {
  font-size: clamp(1rem, 1vw, 1.04rem);
  color: rgba(255, 255, 255, .72);
  transition: color .18s ease;
}
.site-footer__links a:hover { color: var(--champagne); }
.site-footer__links a.is-current { color: var(--white); text-decoration: underline; text-underline-offset: 4px; }

.site-footer__bar {
  background: var(--gold-sweep);
  color: var(--key-black);
  text-align: center;
  padding: 14px 20px;
  font-size: clamp(.86rem, .92vw, .95rem);
  font-weight: 600;
}


/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1080px) {
  .partners__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .reviews__layout { grid-template-columns: 1fr; }
  .faq__head { grid-template-columns: 1fr; gap: clamp(14px, 2.6vw, 22px); }
  .faq__item { }
  .faq__q { font-size: clamp(1.1rem, 3.4vw, 1.3rem); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }
  .review { flex-basis: clamp(240px, 76%, 320px); }
}

@media (max-width: 620px) {
  .partners__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer__grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Mobile type floor — nothing in body copy drops below 16px
   ========================================================================== */

@media (max-width: 620px) {
  .hero__lede,
  .services__text,
  .experiences__sub,
  .steps__text,
  .step__text,
  .proof__label,
  .sec-text,
  .review__text,
  .faq__a,
  .site-footer__blurb,
  .site-footer__links a,
  .nav__links a          { font-size: 1rem; }

  .exp-card__meta,
  .review__rating,
  .site-footer__top,
  .site-footer__bar      { font-size: .95rem; }

  .card__label           { font-size: 1rem; }
  .exp-card__amount      { font-size: 1.15rem; }
  .exp-card__from        { font-size: .9rem; }

  /* CTAs stay large and thumb-friendly */
  .btn--light,
  .btn--accent,
  .btn--dark             { font-size: 1rem; padding-block: 16px; }
  .btn--light            { padding-inline: 26px; }
  .btn--dark             { padding-inline: 28px; }
}


/* ── TripAdvisor widget ─────────────────────────────────────────────── */

.ta-widget {
  padding: clamp(18px, 2.2vw, 30px);
  border-radius: clamp(14px, 1.4vw, 22px);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(247, 235, 155, .18);
}
.ta-widget__stats {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(14px, 1.8vw, 22px);
}
.ta-widget__score {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 700;
  letter-spacing: -.03em;
  background: var(--gold-sweep);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ta-widget__count { font-size: 1rem; color: rgba(255, 255, 255, .72); }

/* TripAdvisor injects its own markup; keep it legible on the dark band */
.ta-widget .TA_selfserveprop { min-height: 120px; }
.ta-widget .TA_links a { color: var(--champagne); }
.ta-widget iframe { max-width: 100%; border-radius: 10px; background: #fff; }


/* Widget sits under the intro in the left column */
.reviews__layout .ta-widget { margin-top: clamp(20px, 2.6vw, 32px); }

.reviews__empty {
  padding: clamp(26px, 3.4vw, 44px);
  border-radius: clamp(14px, 1.4vw, 20px);
  border: 1px dashed rgba(247, 235, 155, .28);
  background: rgba(255, 255, 255, .04);
}
.reviews__empty p { margin: 0; font-size: 1rem; line-height: 1.6; color: rgba(255, 255, 255, .72); }

.review__name small,
.review__rating small {
  display: block;
  font-weight: 500;
  font-size: .88rem;
  opacity: .62;
}


/* === PAGES === */
/* ==========================================================================
   Nav on inner pages
   The pill is translucent-dark for the photographic homepage hero. Inner pages
   sit on warm paper, so it goes solid or the white type loses its ground.
   ========================================================================== */

body:not(.home) .nav {
  background: rgba(28, 24, 25, .96);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-color: rgba(247, 235, 155, .18);
  box-shadow: 0 12px 30px -20px rgba(35, 31, 32, .55);
}

/* Current page marker in the menu */
.nav__links .current-menu-item > a,
.nav__links .current_page_item > a { color: var(--champagne); }


/* ==========================================================================
   Page head — editorial, on paper, no photo band
   ========================================================================== */

.page-head {
  position: relative;
  background: var(--paper);
  padding-top: clamp(132px, 16vh, 186px);
  padding-bottom: clamp(24px, 3.2vw, 44px);
  overflow: hidden;
}

.page-head__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  align-items: end;
  gap: clamp(18px, 4vw, 64px);
}

.page-head__title {
  margin: 0;
  max-width: 15ch;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5.2vw, 4.3rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -.038em;
  color: var(--ink);
  text-wrap: balance;
}
.page-head__title em {
  font-style: normal;
  background: var(--gold-sweep);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-head__aside { padding-bottom: .35em; }

.page-head__lede {
  margin: 0;
  max-width: 44ch;
  font-size: clamp(1rem, 1.1vw, 1.14rem);
  line-height: 1.62;
  color: var(--muted);
}

/* Feature checklist — reads as specification, not tags */
.page-head__points {
  display: grid;
  gap: 11px;
  margin: clamp(18px, 2.2vw, 26px) 0 0;
  padding: 0;
  list-style: none;
}
.point {
  display: flex;
  align-items: baseline;
  gap: 11px;
}
.point__tick {
  position: relative;
  top: 2px;
  display: grid;
  place-items: center;
  flex: none;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: rgba(183, 131, 63, .12);
  border: 1px solid var(--bronze-50);
  color: var(--bronze);
}
.point__body {
  font-size: clamp(1rem, 1.02vw, 1.06rem);
  line-height: 1.5;
  color: var(--muted);
}
.point__body b {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.015em;
  background: var(--gold-sweep);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Two columns once there is room */
@media (min-width: 901px) {
  .page-head__points { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px 22px; }
  .page-head__points .point:nth-child(3):last-child { grid-column: 1 / -1; }
}


/* ==========================================================================
   Generic page section
   ========================================================================== */

.psec { padding-block: clamp(48px, 7vw, 100px); }
.psec--paper { background: var(--paper); }
.psec--tint  { background: var(--paper-2); }
.psec--dark  { background: var(--key-black); color: var(--white); }
.psec--dark .sec-text { color: rgba(255, 255, 255, .72); }

.psec__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .82fr);
  align-items: start;
  gap: clamp(18px, 4vw, 64px);
  margin-bottom: clamp(28px, 3.6vw, 52px);
}


/* ==========================================================================
   Closing CTA band — every page ends pointing somewhere
   ========================================================================== */

.cta-band {
  position: relative;
  background: var(--key-black);
  color: var(--white);
  padding-block: clamp(44px, 6vw, 84px);
  overflow: hidden;
}
.cta-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 44px);
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4.4vw, 60px);
}
.cta-band__title {
  margin: 0;
  max-width: 20ch;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -.03em;
}
.cta-band__text {
  margin: .7em 0 0;
  max-width: 48ch;
  font-size: clamp(1rem, 1vw, 1.06rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, .70);
}
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.btn--ghost {
  padding: clamp(15px, 1.35vw, 19px) clamp(26px, 2.3vw, 36px);
  font-size: clamp(15px, 1.15vw, 17px);
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .32);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .10); transform: translateY(-1px); }


/* ==========================================================================
   About — story + values
   ========================================================================== */

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
}
.about-split__media {
  border-radius: clamp(14px, 1.4vw, 22px);
  overflow: hidden;
  aspect-ratio: 4 / 3.2;
}
.about-split__media img { width: 100%; height: 100%; object-fit: cover; }

.about-split p {
  margin: 0 0 1em;
  font-size: clamp(1rem, 1.05vw, 1.08rem);
  line-height: 1.7;
  color: var(--muted);
}
.psec--dark .about-split p { color: rgba(255, 255, 255, .74); }

.values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 22px);
}
.value {
  padding: clamp(20px, 2.4vw, 34px);
  border-radius: clamp(14px, 1.4vw, 20px);
  background: var(--white);
  border: 1px solid var(--hairline);
}
.value__n {
  display: block;
  margin-bottom: .8em;
  font-family: var(--font-display);
  font-size: clamp(.86rem, .95vw, .95rem);
  font-weight: 700;
  letter-spacing: .16em;
  background: var(--gold-sweep);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.value h3 {
  margin: 0 0 .5em;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  font-weight: 600;
  letter-spacing: -.02em;
}
.value p {
  margin: 0;
  font-size: clamp(1rem, 1vw, 1.05rem);
  line-height: 1.62;
  color: var(--muted);
}


/* ==========================================================================
   Tour types + available tours
   ========================================================================== */

.types {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 22px);
}
.type {
  position: relative;
  display: block;
  min-height: clamp(230px, 24vw, 300px);
  border-radius: clamp(14px, 1.4vw, 20px);
  overflow: hidden;
  background: var(--key-black);
  isolation: isolate;
}
.type img {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2, .7, .3, 1);
}
.type:hover img { transform: scale(1.05); }
.type::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23, 20, 21, .88) 0%, rgba(23, 20, 21, .30) 50%, transparent 78%);
}
.type__body {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: clamp(16px, 1.8vw, 26px);
  color: var(--white);
}
.type__body h3 {
  margin: 0 0 .35em;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
  font-weight: 600;
  letter-spacing: -.02em;
}
.type__body p {
  margin: 0;
  font-size: clamp(1rem, 1vw, 1.04rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, .82);
}

.tours-list { display: grid; gap: clamp(10px, 1.2vw, 16px); }

.tour-row {
  display: grid;
  grid-template-columns: clamp(120px, 15vw, 200px) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  padding: clamp(12px, 1.2vw, 16px);
  border-radius: clamp(12px, 1.2vw, 18px);
  background: var(--white);
  border: 1px solid var(--hairline);
  transition: transform .25s ease, box-shadow .25s ease;
}
.tour-row:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -20px rgba(35, 31, 32, .4); }

.tour-row__media {
  border-radius: clamp(8px, .9vw, 12px);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.tour-row__media img { width: 100%; height: 100%; object-fit: cover; }

.tour-row h3 {
  margin: 0 0 .4em;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.4vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -.02em;
}
.tour-row__meta {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(8px, 1.2vw, 18px);
  font-size: clamp(1rem, 1vw, 1.04rem);
  color: var(--muted);
}
.tour-row__meta span { display: inline-flex; align-items: center; gap: 6px; }
.tour-row__meta svg { color: var(--bronze); flex: none; }

.tour-row__cta {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  padding: clamp(13px, 1.2vw, 16px) clamp(20px, 1.8vw, 28px);
  border-radius: 999px;
  background: var(--gold-sweep);
  color: var(--key-black);
  white-space: nowrap;
  transition: filter .2s ease, transform .2s ease;
}
.tour-row:hover .tour-row__cta { filter: brightness(1.07); transform: translateY(-1px); }
.tour-row__cta b { font-family: var(--font-display); font-size: clamp(1.05rem, 1.2vw, 1.2rem); font-weight: 700; }
.tour-row__cta i { font-style: normal; font-size: .9rem; font-weight: 600; opacity: .72; }


/* ==========================================================================
   Team
   ========================================================================== */

.team {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 22px);
}
.member__photo {
  border-radius: clamp(14px, 1.4vw, 20px);
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
  background: var(--paper-2);
  margin-bottom: clamp(12px, 1.4vw, 18px);
}
.member__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.7,.3,1); }
.member:hover .member__photo img { transform: scale(1.04); }
.member h3 {
  margin: 0 0 .25em;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.3vw, 1.3rem);
  font-weight: 600;
  letter-spacing: -.02em;
}
.member__role {
  margin: 0 0 .6em;
  font-size: clamp(1rem, 1vw, 1.04rem);
  font-weight: 600;
  color: var(--bronze);
}
.member p {
  margin: 0;
  font-size: clamp(1rem, 1vw, 1.04rem);
  line-height: 1.6;
  color: var(--muted);
}


/* ==========================================================================
   Contact + booking form
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
}

.contact-card { display: grid; gap: clamp(18px, 2.2vw, 28px); }
.contact-item h3 {
  margin: 0 0 .35em;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.05vw, 1.1rem);
  font-weight: 600;
  letter-spacing: -.01em;
}
.contact-item p, .contact-item a {
  margin: 0;
  font-size: clamp(1rem, 1vw, 1.06rem);
  line-height: 1.62;
  color: var(--muted);
}
.contact-item a:hover { color: var(--bronze); }

.form {
  padding: clamp(22px, 2.8vw, 40px);
  border-radius: clamp(16px, 1.6vw, 24px);
  background: var(--white);
  border: 1px solid var(--hairline);
}
.form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--wide { grid-column: 1 / -1; }

.field label {
  font-size: clamp(1rem, 1vw, 1.04rem);
  font-weight: 600;
  color: var(--ink);
}
.field .hint { font-weight: 400; color: var(--muted); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.4;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--bronze);
  box-shadow: 0 0 0 3px rgba(183, 131, 63, .16);
}
.field input::placeholder,
.field textarea::placeholder { color: #a2988c; }

.form__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 2vw, 22px);
  margin-top: clamp(18px, 2.2vw, 28px);
}
.form__note {
  margin: 0;
  max-width: 44ch;
  font-size: clamp(1rem, 1vw, 1.04rem);
  line-height: 1.55;
  color: var(--muted);
}

.btn--submit {
  padding: clamp(16px, 1.4vw, 20px) clamp(30px, 2.6vw, 42px);
  font-size: clamp(1rem, 1.15vw, 1.06rem);
  background: var(--gold-sweep);
  color: var(--key-black);
  border-radius: 999px;
}
.btn--submit:hover { filter: brightness(1.07); transform: translateY(-1px); }

.book-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 22px);
  margin-bottom: clamp(26px, 3.2vw, 44px);
}
.book-step {
  padding: clamp(16px, 1.8vw, 24px);
  border-radius: clamp(12px, 1.2vw, 18px);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(247, 235, 155, .16);
}
.book-step span {
  display: block;
  margin-bottom: .5em;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  background: var(--gold-sweep);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.book-step p { margin: 0; font-size: 1rem; line-height: 1.55; color: rgba(255, 255, 255, .74); }


/* ==========================================================================
   Responsive
   ========================================================================== */

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

@media (max-width: 900px) {
  .page-head__grid,
  .psec__head,
  .about-split,
  .contact-grid { grid-template-columns: 1fr; }
  .page-head__grid { align-items: start; gap: clamp(14px, 2.6vw, 22px); }
  .page-head__title { max-width: 20ch; }
  .page-head__aside { padding-bottom: 0; }
  .values { grid-template-columns: 1fr; }
  .book-steps { grid-template-columns: 1fr; }
  .tour-row {
    grid-template-columns: clamp(100px, 26vw, 150px) minmax(0, 1fr);
    row-gap: 14px;
  }
  .tour-row__cta { grid-column: 1 / -1; justify-content: center; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 620px) {
  .types { grid-template-columns: 1fr; }
  .team  { grid-template-columns: 1fr; }
  .form__grid { grid-template-columns: 1fr; }
  .form__foot { flex-direction: column; align-items: stretch; }
  .btn--submit { width: 100%; }
  .cta-band__actions { width: 100%; }
  .cta-band__actions .btn { flex: 1 1 auto; justify-content: center; }
}


/* ── Mobile navigation dropdowns ────────────────────────────────────── */

@media (max-width: 900px) {
  .nav__item { flex-wrap: wrap; width: 100%; justify-content: space-between; }
  .nav__item > a { flex: 1; }

  .nav__drop {
    position: static;
    width: 100%;
    min-width: 0;
    margin: 2px 0 6px;
    padding: 4px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .08);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }
  .nav__drop.is-open { display: block; }
  .nav__item:hover .nav__drop,
  .nav__item:focus-within .nav__drop { display: none; }
  .nav__item:hover .nav__drop.is-open,
  .nav__item:focus-within .nav__drop.is-open { display: block; }

  .nav__drop a { padding: 9px 12px; font-size: 14.5px; }
  .nav__dropToggle { width: 34px; height: 34px; }
  .nav__item--has-drop::after { display: none; }
}


/* === CATALOGUE === */
/* ==========================================================================
   Tour catalogue
   ========================================================================== */

/* --- Filter rail --------------------------------------------------------- */

.tour-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 34px;
  padding-bottom: clamp(22px, 3vw, 34px);
  margin-bottom: clamp(26px, 3.4vw, 44px);
  border-bottom: 1px solid var(--hairline);
}
.tour-filters__group { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.tour-filters__label {
  margin-right: 4px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--hairline);
  background: var(--white);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-2);
  transition: border-color .18s ease, color .18s ease, background-color .18s ease;
}
.chip:hover { border-color: var(--bronze-50); color: var(--ink); }
.chip.is-on {
  background: var(--key-black);
  border-color: var(--key-black);
  color: var(--white);
}
.chip small { font-weight: 500; opacity: .6; }

/* No results for this combination: shown for context, not clickable */
.chip.is-off {
  opacity: .38;
  cursor: not-allowed;
  background: transparent;
}


/* --- Tour grid ----------------------------------------------------------- */

.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 26px);
}

.tour-card {
  display: flex;
  flex-direction: column;
  border-radius: clamp(14px, 1.4vw, 20px);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--hairline);
  transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s ease;
}
.tour-card:hover { transform: translateY(-4px); box-shadow: 0 24px 44px -26px rgba(35, 31, 32, .42); }

.tour-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--paper-2);
}
.tour-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.3,1); }
.tour-card:hover .tour-card__media img { transform: scale(1.05); }

.tour-card__tag {
  position: absolute;
  top: 12px; left: 12px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(23, 20, 21, .74);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: .88rem;
  font-weight: 600;
  color: var(--white);
}

.tour-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
  padding: clamp(16px, 1.7vw, 24px);
}
.tour-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.35vw, 1.3rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -.02em;
  color: var(--ink);
}
.tour-card__desc {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--muted);
}

.tour-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  font-size: 1rem;
  color: var(--muted);
}
.tour-card__meta span { display: inline-flex; align-items: center; gap: 6px; }
.tour-card__meta svg { color: var(--bronze); flex: none; }

.tour-card__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--hairline);
}
.tour-card__price small {
  display: block;
  font-size: .9rem;
  font-weight: 500;
  color: var(--muted);
}
.tour-card__price b {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.7vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -.02em;
  background: var(--gold-sweep);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tour-card__price i { font-style: normal; font-size: .9rem; font-weight: 500; color: var(--muted); }
.tour-card__go {
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  flex: none;
  border-radius: 50%;
  background: var(--key-black);
  color: var(--white);
  transition: transform .25s ease;
}
.tour-card:hover .tour-card__go { transform: rotate(45deg); }

/* Quote-only state when no price is set */
.tour-card__price em {
  font-style: normal;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  font-weight: 600;
  color: var(--ink);
}


/* --- Empty state --------------------------------------------------------- */

.tour-empty {
  padding: clamp(34px, 5vw, 66px);
  border-radius: clamp(14px, 1.4vw, 20px);
  border: 1px dashed var(--bronze-50);
  background: var(--white);
  text-align: center;
}
.tour-empty h3 {
  margin: 0 0 .5em;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  font-weight: 600;
}
.tour-empty p { margin: 0 auto; max-width: 46ch; font-size: 1rem; line-height: 1.6; color: var(--muted); }


/* ==========================================================================
   Single tour
   ========================================================================== */

.tour-head { background: var(--paper); padding-top: clamp(120px, 15vh, 170px); }

.tour-head__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(12px, 1.6vw, 18px);
}
.tour-head__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 15px;
  border-radius: 999px;
  background: var(--paper-2);
  border: 1px solid var(--hairline);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-2);
}
.tour-head__badge svg { color: var(--bronze); }

.tour-head__title {
  margin: 0 0 .35em;
  max-width: 20ch;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.035em;
  color: var(--ink);
  text-wrap: balance;
}
.tour-head__lede {
  margin: 0;
  max-width: 60ch;
  font-size: clamp(1.02rem, 1.15vw, 1.16rem);
  line-height: 1.62;
  color: var(--muted);
}

.tour-gallery {
  margin-top: clamp(22px, 3vw, 40px);
  border-radius: clamp(14px, 1.6vw, 24px);
  overflow: hidden;
  aspect-ratio: 21 / 9;
  background: var(--paper-2);
}
.tour-gallery img { width: 100%; height: 100%; object-fit: cover; }

.tour-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, .95fr);
  align-items: start;
  gap: clamp(24px, 4vw, 64px);
  padding-block: clamp(40px, 6vw, 82px);
}

.tour-body h2 {
  margin: 0 0 .6em;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.9vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -.025em;
  color: var(--ink);
}
.tour-body h2:not(:first-child) { margin-top: clamp(30px, 3.6vw, 52px); }
.tour-body p {
  margin: 0 0 1em;
  font-size: clamp(1.02rem, 1.05vw, 1.08rem);
  line-height: 1.72;
  color: var(--muted);
}

/* Highlights */
.tour-highlights { display: grid; gap: 10px; }
.tour-highlights li {
  display: flex;
  gap: 12px;
  font-size: clamp(1.02rem, 1.05vw, 1.06rem);
  line-height: 1.55;
  color: var(--ink-2);
}
.tour-highlights svg { flex: none; margin-top: 3px; color: var(--bronze); }

/* Itinerary timeline */
.tour-itin { display: grid; gap: 0; }
.tour-itin li {
  position: relative;
  padding: 0 0 clamp(20px, 2.4vw, 30px) clamp(28px, 3vw, 40px);
  border-left: 1px solid var(--bronze-50);
}
.tour-itin li:last-child { border-left-color: transparent; padding-bottom: 0; }
.tour-itin li::before {
  content: "";
  position: absolute;
  left: -5px; top: 4px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold-sweep);
}
.tour-itin h3 {
  margin: 0 0 .3em;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.2vw, 1.18rem);
  font-weight: 600;
  letter-spacing: -.015em;
  color: var(--ink);
}
.tour-itin p { margin: 0; font-size: 1rem; line-height: 1.6; color: var(--muted); }
.tour-itin span {
  display: inline-block;
  margin-top: .45em;
  font-size: .92rem;
  font-weight: 600;
  color: var(--bronze);
}

/* Inclusions / exclusions */
.tour-incl { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(18px, 2.6vw, 38px); }
.tour-incl h3 {
  margin: 0 0 .7em;
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 1.1vw, 1.12rem);
  font-weight: 600;
  letter-spacing: -.01em;
}
.tour-incl ul { display: grid; gap: 9px; }
.tour-incl li {
  display: flex;
  gap: 10px;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--muted);
}
.tour-incl svg { flex: none; margin-top: 3px; }
.tour-incl--yes svg { color: #4a7c59; }
.tour-incl--no  svg { color: #b2564f; }


/* --- Sticky booking panel ------------------------------------------------ */

.tour-panel {
  position: sticky;
  top: clamp(96px, 11vh, 120px);
  padding: clamp(20px, 2.4vw, 32px);
  border-radius: clamp(16px, 1.6vw, 24px);
  background: var(--white);
  border: 1px solid var(--hairline);
  box-shadow: 0 24px 50px -34px rgba(35, 31, 32, .4);
}
.tour-panel__price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.tour-panel__price b {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 2.6vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -.03em;
  background: var(--gold-sweep);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tour-panel__price span { font-size: 1rem; font-weight: 500; color: var(--muted); }
.tour-panel__quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.8vw, 1.6rem);
  font-weight: 600;
  color: var(--ink);
}

.tour-panel__note {
  margin: .7em 0 0;
  font-size: .95rem;
  line-height: 1.5;
  color: var(--muted);
}

.tour-panel__rows { display: grid; gap: 12px; margin: clamp(18px, 2.2vw, 26px) 0; }
.tour-panel__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--hairline);
  font-size: 1rem;
}
.tour-panel__row:last-child { border-bottom: 0; padding-bottom: 0; }
.tour-panel__row dt { color: var(--muted); }
.tour-panel__row dd { margin: 0; font-weight: 600; color: var(--ink); text-align: right; }

.tour-panel .btn { width: 100%; }
.tour-panel__call {
  display: block;
  margin-top: 12px;
  text-align: center;
  font-size: 1rem;
  color: var(--muted);
}
.tour-panel__call a { font-weight: 600; color: var(--ink); }
.tour-panel__call a:hover { color: var(--bronze); }


/* --- Related ------------------------------------------------------------- */

.tour-related { background: var(--paper-2); padding-block: clamp(44px, 6vw, 86px); }


/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1080px) {
  .tour-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tour-layout { grid-template-columns: 1fr; }
  .tour-panel { position: static; }
}

@media (max-width: 620px) {
  .tour-grid { grid-template-columns: 1fr; }
  .tour-incl { grid-template-columns: 1fr; }
  .tour-gallery { aspect-ratio: 4 / 3; }
  .tour-filters { gap: 16px 20px; }
}


/* Before you book — constraints, not selling points */
.tour-important {
  margin: 0 0 clamp(22px, 2.4vw, 34px);
  padding: clamp(16px, 1.8vw, 24px) clamp(18px, 2vw, 26px);
  list-style: none;
  border-radius: clamp(12px, 1.2vw, 18px);
  background: var(--paper-2);
  border: 1px solid var(--hairline);
}
.tour-important li {
  position: relative;
  padding-left: 20px;
  font-size: clamp(1rem, 1.02vw, 1.06rem);
  line-height: 1.62;
  color: var(--muted);
}
.tour-important li + li { margin-top: 9px; }
.tour-important li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: .68em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--bronze);
}


/* === QUOTE BAR === */
/* ==========================================================================
   Quote bar — persistent route-entry strip on listing and service pages
   ========================================================================== */

.quotebar {
  position: relative;
  z-index: 2;
  margin: 0 0 clamp(28px, 3.6vw, 48px);
  padding: clamp(16px, 1.8vw, 24px);
  border-radius: clamp(14px, 1.4vw, 22px);
  background: var(--white);
  border: 1px solid var(--hairline);
  box-shadow: 0 18px 40px -30px rgba(35, 31, 32, .40);
}

.quotebar__grid {
  display: grid;
  grid-template-columns: 1.1fr 1.3fr 1fr .7fr auto;
  align-items: end;
  gap: clamp(10px, 1.2vw, 18px);
}

.quotebar__field { display: flex; flex-direction: column; gap: 7px; min-width: 0; }

.quotebar__field label {
  font-size: clamp(.86rem, .92vw, .94rem);
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--muted);
}

.quotebar__field input,
.quotebar__field select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--hairline);
  border-radius: 11px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.3;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.quotebar__field input::placeholder { color: #a2988c; }

.quotebar__field input:focus,
.quotebar__field select:focus {
  outline: none;
  border-color: var(--bronze);
  box-shadow: 0 0 0 3px rgba(183, 131, 63, .16);
}

.quotebar__go {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px clamp(20px, 2vw, 30px);
  border: 0;
  border-radius: 999px;
  background: var(--gold-sweep);
  color: var(--key-black);
  font-family: var(--font-ui);
  font-size: clamp(.95rem, 1.05vw, 1.02rem);
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: filter .2s ease, transform .2s ease;
}
.quotebar__go:hover { filter: brightness(1.07); transform: translateY(-1px); }
.quotebar__go svg { transition: transform .22s ease; }
.quotebar__go:hover svg { transform: rotate(45deg); }

.quotebar__note {
  margin: clamp(12px, 1.2vw, 16px) 0 0;
  font-size: clamp(.9rem, .95vw, .96rem);
  color: var(--muted);
}

/* On the dark catalogue head the bar keeps its paper ground but loses the glare */
.psec--dark .quotebar { background: rgba(255, 255, 255, .96); }

@media (max-width: 1080px) {
  .quotebar__grid { grid-template-columns: 1fr 1fr; }
  .quotebar__go   { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .quotebar__grid { grid-template-columns: 1fr; }
}


/* === GLOBAL BLOCKS === */
/* ==========================================================================
   Global pre-footer blocks: Flights / Newsletter / Get in touch
   Present on every page, matching the source architecture's page furniture.
   ========================================================================== */

.blocks {
  background: var(--paper-2);
  border-top: 1px solid var(--hairline);
  padding-block: clamp(44px, 6vw, 84px);
}

.blocks__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 38px);
  align-items: start;
}

.block {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: clamp(20px, 2.2vw, 30px);
  border-radius: clamp(14px, 1.4vw, 20px);
  background: var(--white);
  border: 1px solid var(--hairline);
  height: 100%;
}

.block__eyebrow {
  font-family: var(--font-display);
  font-size: clamp(.82rem, .9vw, .9rem);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  background: var(--gold-sweep);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.block__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.7vw, 1.6rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -.025em;
  color: var(--ink);
}

.block__text {
  margin: 0;
  font-size: clamp(1rem, 1.02vw, 1.06rem);
  line-height: 1.62;
  color: var(--muted);
}

.block__points,
.block__contact {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.block__points li {
  position: relative;
  padding-left: 20px;
  font-size: clamp(.98rem, 1vw, 1.04rem);
  line-height: 1.5;
  color: var(--ink-2);
}
.block__points li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: .62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bronze);
}

.block__contact li {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
  font-size: clamp(.98rem, 1vw, 1.04rem);
  line-height: 1.5;
  color: var(--muted);
}
.block__contact li > span {
  font-weight: 600;
  color: var(--ink);
}
.block__contact a { color: var(--ink-2); }
.block__contact a:hover { color: var(--bronze); }

.block__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 6px;
  font-size: clamp(.98rem, 1.02vw, 1.05rem);
  font-weight: 600;
  color: var(--ink);
}
.block__link svg { transition: transform .22s ease; }
.block__link:hover { color: var(--bronze); }
.block__link:hover svg { transform: translate(2px, -2px); }

/* Newsletter form */
.block__form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  margin-top: 4px;
}
.block__form input {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--hairline);
  border-radius: 11px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 1rem;
}
.block__form input::placeholder { color: #a2988c; }
.block__form input:focus {
  outline: none;
  border-color: var(--bronze);
  box-shadow: 0 0 0 3px rgba(183, 131, 63, .16);
}
.block__form button {
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  background: var(--gold-sweep);
  color: var(--key-black);
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: filter .2s ease, transform .2s ease;
}
.block__form button:hover { filter: brightness(1.07); transform: translateY(-1px); }

.block__small {
  margin: 0;
  font-size: clamp(.9rem, .95vw, .96rem);
  line-height: 1.5;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .blocks__grid { grid-template-columns: 1fr; }
  .block__link  { margin-top: 4px; }
}

@media (max-width: 560px) {
  .block__form { grid-template-columns: 1fr; }
  .block__contact li { grid-template-columns: 1fr; gap: 2px; }
}
