/* =========================================================
   The Golf Concierge — Design System
   Editorial luxury. Restraint over decoration.
   ========================================================= */

:root {
  --forest: #1a3326;
  --forest-deep: #0f2218;
  --forest-soft: #2a4a37;
  --bone: #f4f0e6;
  --bone-warm: #ebe4d3;
  --sand: #d8cdb4;
  --charcoal: #1c1c1a;
  --ink: #2b2b28;
  --muted: #6b6b65;
  --brass: #b08d4a;
  --brass-soft: #c9a567;
  --lagoon: #0e2f2d;
  --mist: #e9ede3;
  --line: rgba(28, 28, 26, 0.12);
  --line-soft: rgba(28, 28, 26, 0.06);

  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans: 'Instrument Sans', 'Inter', system-ui, -apple-system, sans-serif;

  --container: 1440px;
  --container-narrow: 1100px;
  --container-text: 720px;

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-slow: cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'kern' 1, 'liga' 1;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* Typography */
.display, h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--forest);
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
}

h1, .h1 { font-size: clamp(2.75rem, 7vw, 6rem); }
h2, .h2 { font-size: clamp(2rem, 4.5vw, 3.75rem); }
h3, .h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4, .h4 { font-size: clamp(1.15rem, 1.5vw, 1.4rem); }

p.lead {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--ink);
  max-width: 60ch;
}

.italic-serif {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
}

/* Layout */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.section { padding: clamp(4rem, 10vw, 9rem) 0; background: var(--bone); }
.section-sm { padding: clamp(3rem, 6vw, 5rem) 0; }

/* a section that lets the fixed hero video show through behind it */
.section--over-video {
  background: rgba(15, 34, 24, 0.6);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  color: var(--bone);
}

/* typed line — uses the display serif, revealed with the typewriter method */
.typewriter-text {
  font-family: var(--font-display);
  letter-spacing: 0;
}
.tw-caret {
  display: inline-block;
  color: var(--brass-soft);
  font-weight: 400;
  transform: translateY(1px);
  animation: twBlink 0.9s steps(1) infinite;
}
@keyframes twBlink { 0%, 50% { opacity: 1; } 50.01%, 100% { opacity: 0; } }

/* Testimonial stories */
.tstory {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(3rem, 7vw, 6rem) 0;
  border-top: 1px solid var(--line);
}
.tstory:first-child { border-top: none; padding-top: 0; }
.tstory:nth-child(even) .tstory-text { order: 2; }
.tstory-stars {
  color: var(--brass);
  letter-spacing: 0.35em;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.tstory-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2.15rem);
  line-height: 1.3;
  color: var(--forest);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.tstory-body {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 1.75rem;
  max-width: 48ch;
}
.tstory-who { display: flex; flex-direction: column; gap: 0.4rem; }
.tstory-name {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
}
.tstory-trip {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--brass);
  font-size: 1.05rem;
}
.tstory-photos {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  aspect-ratio: 4 / 3.3;
}
.tstory-photos .tphoto:first-child { grid-row: 1 / 3; }
.tphoto {
  background-size: cover;
  background-position: center;
  background-color: var(--forest-deep);
  overflow: hidden;
  border-radius: 2px;
  border: 1px solid var(--brass-soft);
  box-shadow: 0 8px 22px rgba(15, 34, 24, 0.14);
}
.tphoto.is-empty {
  display: grid;
  place-items: center;
  background: var(--bone-warm);
  border: 1px dashed var(--line);
}
.tphoto.is-empty span {
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
}
@media (max-width: 820px) {
  .tstory { grid-template-columns: 1fr; gap: 2rem; }
  .tstory:nth-child(even) .tstory-text { order: 0; }
  .tstory-photos { aspect-ratio: 3 / 2; }
}

/* Homepage featured reviews */
.home-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.home-review {
  background: var(--bone);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.home-review-img {
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
}
.home-review-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}
.home-review-stars { color: var(--brass); letter-spacing: 0.25em; font-size: 0.9rem; }
.home-review-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.4;
  color: var(--forest);
}
.home-review-who { margin-top: auto; display: flex; flex-direction: column; gap: 0.25rem; }
.home-review-name {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink);
}
.home-review-trip { font-family: var(--font-display); font-style: italic; color: var(--brass); font-size: 0.95rem; }
@media (max-width: 820px) {
  .home-reviews { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
}

/* Golf course flip-card directory */
.course-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.course-card {
  perspective: 1600px;
  cursor: pointer;
  height: 420px;
  -webkit-tap-highlight-color: transparent;
}
.course-card:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }
.course-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s var(--ease);
  transform-style: preserve-3d;
}
.course-card.flipped .course-card-inner { transform: rotateY(180deg); }
.course-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 3px;
  overflow: hidden;
}
.course-front { background-size: cover; background-position: center; background-color: var(--forest); }
.course-front--placeholder { background: linear-gradient(150deg, var(--forest) 0%, var(--forest-deep) 100%); }
.course-front-veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,34,24,0.1) 0%, rgba(15,34,24,0.15) 45%, rgba(15,34,24,0.9) 100%);
}
.course-front-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 1.5rem; color: var(--bone);
}
.course-tier {
  align-self: flex-start;
  font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  background: rgba(198,163,92,0.92); color: var(--forest-deep);
  padding: 0.32rem 0.7rem; border-radius: 2px;
}
.course-front-btm h3 { color: var(--bone); font-size: 1.5rem; margin: 0.35rem 0 0.55rem; line-height: 1.1; }
.course-meta {
  font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bone-warm);
  display: flex; gap: 0.45rem; align-items: center; flex-wrap: wrap;
}
.course-meta span { color: var(--brass-soft); }
.course-flip-hint { font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass-soft); }
.course-back {
  transform: rotateY(180deg);
  background: var(--forest); color: var(--bone);
  padding: 1.75rem; display: flex; flex-direction: column; justify-content: space-between;
}
.course-back h3 { color: var(--bone); font-size: 1.4rem; margin-bottom: 0.85rem; line-height: 1.1; }
.course-meta--back { color: var(--brass-soft); margin-bottom: 0.5rem; }
.course-desc { font-size: 0.9rem; line-height: 1.65; color: var(--bone-warm); margin-bottom: 1.1rem; }
.course-facts {
  display: flex; flex-direction: column; gap: 0.65rem;
  border-top: 1px solid rgba(244,240,230,0.15); padding-top: 1rem;
}
.course-facts > div { font-size: 0.86rem; color: var(--bone); }
.course-facts span {
  display: block; font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--brass-soft); margin-bottom: 0.15rem;
}
.course-flip-hint--back { margin-top: 1rem; }
@media (max-width: 900px) {
  .course-grid { grid-template-columns: repeat(2, 1fr); }
  .course-card { height: 380px; }
}
/* Phone: swipe carousel instead of a long vertical stack (less scrolling) */
@media (max-width: 560px) {
  .course-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    max-width: none;
    margin: 0;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .course-grid::-webkit-scrollbar { display: none; }
  .course-card { flex: 0 0 84vw; scroll-snap-align: center; height: 440px; }
}

/* Homepage compact reviews grid (4-up) with flags + clickable photos */
.home-reviews { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.hr-card {
  background: var(--bone);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; overflow: hidden;
}
.hr-img {
  position: relative;
  aspect-ratio: 4 / 3;
  background-size: cover; background-position: center;
  border: none; padding: 0; width: 100%; cursor: pointer;
  display: block;
}
.hr-img-hint {
  position: absolute; bottom: 8px; right: 8px;
  font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--bone); background: rgba(15,34,24,0.62);
  padding: 0.28rem 0.55rem; border-radius: 2px;
  opacity: 0; transition: opacity 0.3s var(--ease);
}
.hr-img:hover .hr-img-hint, .hr-img:focus-visible .hr-img-hint { opacity: 1; }
.hr-img--empty { display: grid; place-items: center; background: repeating-linear-gradient(135deg, var(--bone-warm), var(--bone-warm) 12px, #eae4d6 12px, #eae4d6 24px); }
.hr-img--empty span { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.hr-body { padding: 1.1rem 1.15rem 1.25rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.hr-stars { color: var(--brass); letter-spacing: 0.14em; font-size: 0.82rem; }
.hr-quote { font-family: var(--font-display); font-style: italic; font-size: 1rem; line-height: 1.4; color: var(--forest); }
.hr-who { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 0.5rem; }
.hr-name { font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; color: var(--ink); }
.hr-flag { font-size: 1.25rem; line-height: 1; }
@media (max-width: 900px) { .home-reviews { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .home-reviews { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; } }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 3000; background: rgba(10,20,15,0.94); display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox-img { max-width: 88vw; max-height: 82vh; object-fit: contain; border-radius: 2px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox button { position: absolute; background: none; border: none; color: var(--bone); cursor: pointer; line-height: 1; opacity: 0.85; transition: opacity 0.2s; }
.lightbox button:hover { opacity: 1; }
.lightbox-close { top: 1.25rem; right: 1.75rem; font-size: 2.6rem; }
.lightbox-prev, .lightbox-next { top: 50%; transform: translateY(-50%); font-size: 3rem; padding: 1rem; }
.lightbox-prev { left: 0.5rem; } .lightbox-next { right: 0.5rem; }
.lightbox-cap { position: absolute; bottom: 1.5rem; left: 0; right: 0; text-align: center; color: var(--bone-warm); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; }

/* Destination card as button + "press for info" hint */
.dest-card { border: none; padding: 0; width: 100%; text-align: left; font: inherit; cursor: pointer; background: var(--forest-deep); }
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 2.5vw, 2rem); }
@media (max-width: 900px) { .dest-grid { grid-template-columns: 1fr 1fr; gap: 1rem; } }
@media (max-width: 560px) { .dest-grid { gap: 0.75rem; } }
.dest-more { display: inline-block; margin-top: 0.6rem; font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass-soft); opacity: 0; transform: translateY(4px); transition: opacity 0.35s var(--ease), transform 0.35s var(--ease); }
.dest-card:hover .dest-more, .dest-card:focus-visible .dest-more { opacity: 1; transform: none; }
@media (hover: none) { .dest-more { opacity: 1; transform: none; } }

/* Destination guide overlay */
.dest-overlay {
  position: fixed; inset: 0; z-index: 3000;
  background: rgba(8,18,13,0.86);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  overflow-y: auto; padding: clamp(1rem, 4vw, 3.5rem);
  opacity: 0; visibility: hidden; transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.dest-overlay.open { opacity: 1; visibility: visible; }
.do-panel {
  max-width: 900px; margin: 0 auto; background: var(--bone);
  border-radius: 4px; overflow: hidden; box-shadow: 0 40px 100px rgba(0,0,0,0.55);
  transform: translateY(30px) scale(0.99); opacity: 0.5;
  transition: transform 0.55s var(--ease), opacity 0.55s var(--ease);
}
.dest-overlay.open .do-panel { transform: none; opacity: 1; }
.do-close {
  position: fixed; top: 1.5rem; right: 1.75rem; z-index: 3100;
  width: 46px; height: 46px; border-radius: 50%; border: none;
  background: rgba(244,240,230,0.14); color: var(--bone); font-size: 1.6rem; line-height: 1; cursor: pointer;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); transition: background 0.2s;
}
.do-close:hover { background: rgba(244,240,230,0.28); }
.do-hero { position: relative; height: clamp(240px, 38vw, 400px); background-size: cover; background-position: center; display: flex; align-items: flex-end; }
.do-hero-veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,34,24,0) 25%, rgba(15,34,24,0.86) 100%); }
.do-hero-inner { position: relative; padding: clamp(1.5rem, 4vw, 2.5rem); width: 100%; }
.do-region { font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--brass-soft); margin-bottom: 0.5rem; }
.do-hero-inner h2 { color: var(--bone); font-size: clamp(2.2rem, 5vw, 3.4rem); line-height: 0.95; letter-spacing: -0.02em; }
.do-airport-tag {
  display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.1rem;
  font-size: 0.72rem; letter-spacing: 0.06em; color: var(--bone);
  background: rgba(15,34,24,0.45); border: 1px solid rgba(244,240,230,0.28);
  padding: 0.45rem 0.95rem; border-radius: 100px;
}
.do-plane { color: var(--brass-soft); }
.do-content { padding: clamp(1.75rem, 4.5vw, 3rem); }
.do-lead { font-family: var(--font-display); font-size: clamp(1.2rem, 2vw, 1.6rem); line-height: 1.45; color: var(--forest); margin-bottom: 2.75rem; max-width: 44ch; }
.do-sections { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem 2.5rem; margin-bottom: 2.75rem; }
.do-block--full { grid-column: 1 / -1; }
.do-more-hotels {
  display: inline-block; margin-top: 0.9rem;
  font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  color: var(--brass); border-bottom: 1px solid transparent; transition: border-color 0.2s var(--ease);
}
.do-more-hotels:hover { border-color: var(--brass); }
@media (max-width: 900px) { .do-sections { grid-template-columns: 1fr 1fr; } }
.do-label {
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass); font-weight: 600;
  margin-bottom: 1rem; padding-bottom: 0.6rem; border-bottom: 1px solid var(--line);
}
.do-list { list-style: none; }
.do-list li { font-size: 0.95rem; line-height: 1.5; color: var(--ink); padding: 0.5rem 0; display: flex; gap: 0.65rem; align-items: baseline; border-bottom: 1px solid rgba(15,34,24,0.06); }
.do-list li:last-child { border-bottom: none; }
.do-pin { color: var(--brass); font-size: 0.8rem; flex-shrink: 0; }
.do-trips { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.do-trip { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.8rem; letter-spacing: 0.03em; color: var(--forest); border: 1px solid var(--brass); padding: 0.6rem 1.15rem; border-radius: 100px; transition: all 0.25s var(--ease); }
.do-trip span { color: var(--brass); transition: transform 0.25s var(--ease); }
.do-trip:hover { background: var(--forest); color: var(--bone); border-color: var(--forest); }
.do-trip:hover span { color: var(--bone-warm); transform: translateX(3px); }
.do-cta { margin-top: 0.25rem; }
@media (max-width: 640px) { .do-sections { grid-template-columns: 1fr; gap: 1.75rem; } }
@media (prefers-reduced-motion: reduce) { .do-panel { transition: none; transform: none; opacity: 1; } .dest-overlay { transition: none; } }

/* Enquiry form: live "your journey" summary + optional labels */
.journey-summary { display: flex; flex-wrap: wrap; align-items: center; gap: 0.45rem; margin-top: 0.9rem; min-height: 1.6rem; }
.js-label { font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass); font-weight: 600; margin-right: 0.35rem; }
.js-empty { font-family: var(--font-display); font-style: italic; color: var(--muted); font-size: 0.95rem; }
.js-chip { font-size: 0.7rem; letter-spacing: 0.02em; color: var(--forest); background: var(--bone); border: 1px solid var(--line); padding: 0.28rem 0.65rem; border-radius: 100px; animation: jsChipIn 0.3s var(--ease); }
@keyframes jsChipIn { from { opacity: 0; transform: translateY(3px); } to { opacity: 1; transform: none; } }
.lbl-opt { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--muted); font-size: 0.82em; font-style: italic; }

/* Navigation */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.25rem 0;
  transition: all 0.4s var(--ease);
  background: transparent;
}

.nav.scrolled {
  /* the tint lives here (safe — a background alone creates no containing
     block); only the blur is delegated to ::before below */
  background: rgba(15, 34, 24, 0.42);
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(244, 240, 230, 0.08);
}

/* The frosted-glass ground lives on a pseudo-element, NOT on .nav itself:
   backdrop-filter on .nav would make it the containing block for the
   position:fixed mobile menu, pinning the open menu to the bar instead of
   the viewport (iOS Safari). */
.nav::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.nav.scrolled::before { opacity: 1; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--bone);
  transition: color 0.4s var(--ease);
}

.nav.scrolled .brand { color: var(--bone); }

.brand-logo {
  height: 34px;
  width: auto;
  display: block;
  opacity: 0.9;
}
.brand-logo--dark { display: none; }

.brand-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}

.brand-text em {
  font-style: normal;
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-weight: 500;
  margin-top: 4px;
  opacity: 0.7;
}

.nav-links {
  display: flex;
  gap: 1.7rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-warm);
  font-weight: 400;
  position: relative;
  white-space: nowrap;
  transition: color 0.3s var(--ease);
}

.nav.scrolled .nav-links a { color: var(--bone-warm); }
.nav-links a:hover { color: var(--brass-soft); }
.nav.scrolled .nav-links a:hover { color: var(--brass-soft); }

.nav-cta {
  padding: 0.7rem 1.4rem;
  border: 1px solid currentColor;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  position: relative;
  z-index: 101;
}

.nav-toggle span {
  width: 24px;
  height: 1px;
  background: var(--bone);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease), background 0.3s var(--ease);
}

.nav.scrolled .nav-toggle span { background: var(--bone); }

@media (max-width: 1200px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    position: fixed;
    inset: 0;
    height: 100dvh;
    overflow-y: auto;
    z-index: 100;
    background: var(--forest-deep);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: clamp(1.1rem, 3.4dvh, 2rem);
    padding: 4.5rem 2rem 3rem;
  }

  .nav-links.open a {
    color: var(--bone);
    font-size: 1rem;
  }

  /* hamburger morphs to an X and stays above the open overlay so the menu can be closed */
  .nav-links.open ~ .nav-toggle span { background: var(--bone); }
  .nav-links.open ~ .nav-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .nav-links.open ~ .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-links.open ~ .nav-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid;
  transition: all 0.4s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-sans);
}

.btn-primary {
  background: var(--forest);
  color: var(--bone);
  border-color: var(--forest);
}

.btn-primary:hover {
  background: var(--forest-deep);
  border-color: var(--forest-deep);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--bone);
  border-color: var(--bone);
}

.btn-ghost:hover {
  background: var(--bone);
  color: var(--forest);
}

.btn-ghost-dark {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}

.btn-ghost-dark:hover {
  background: var(--forest);
  color: var(--bone);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--forest);
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.4rem;
  transition: all 0.3s var(--ease);
  font-family: var(--font-sans);
}

.btn-link:hover { color: var(--brass); gap: 1rem; }

.btn-link-bone { color: var(--bone); }
.btn-link-bone:hover { color: var(--brass-soft); }

.arrow { font-size: 1rem; line-height: 1; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--bone);
  overflow: hidden;
  background: transparent;
}

/* fixed so the video stays put in the background as the page scrolls over it */
.hero-media {
  position: fixed;
  inset: 0;
  z-index: -1;
}

.hero-media img,
.hero-media video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 34, 24, 0.55) 0%,
    rgba(15, 34, 24, 0.25) 40%,
    rgba(15, 34, 24, 0.85) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 5rem;
}

.hero-logo {
  margin: 0 0 1.5rem;
  line-height: 0;
  opacity: 0;
  animation: fadeUp 1.4s var(--ease) 0.3s forwards;
}

.hero-logo img {
  width: clamp(56px, 8vw, 100px);
  height: auto;
  opacity: 0.55;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.45));
}

.hero-tagline {
  color: var(--bone);
  font-size: clamp(0.8rem, 1.4vw, 1.05rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease) 0.7s forwards;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease) 0.9s forwards;
}

/* hero CTAs 15% smaller than the site-wide .btn */
.hero-ctas .btn {
  padding: 0.85rem 1.7rem;
  font-size: 0.646rem;
  gap: 0.64rem;
}

.hero-meta {
  position: absolute;
  bottom: 2rem;
  right: clamp(1.25rem, 4vw, 3rem);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--bone-warm);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease) 1.1s forwards;
}

.hero-meta .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brass-soft);
  animation: pulse 2.5s ease-in-out infinite;
}

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

@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* Section heads */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2rem, 6vw, 5rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
  align-items: end;
}

@media (max-width: 800px) {
  .section-head { grid-template-columns: 1fr; gap: 1.5rem; align-items: start; }
}

.section-head .head-label .eyebrow { display: block; margin-bottom: 1rem; }
.section-head h2 { max-width: 14ch; }
.section-head .head-body p { font-size: 1.05rem; line-height: 1.7; max-width: 50ch; color: var(--muted); }

/* Pillars — illuminated image tiles */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.pillar {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: clamp(360px, 40vw, 460px);
  display: flex;
  align-items: flex-end;
  padding: 2.25rem;
  text-align: left;
  cursor: pointer;
  background: var(--forest);
  -webkit-tap-highlight-color: transparent;
}

/* image / gradient layer */
.pillar::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--pillar-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  filter: grayscale(0.35) brightness(0.5) contrast(1.03);
  transition: filter 0.6s var(--ease), transform 0.6s var(--ease);
}

/* dark veil so text stays readable */
.pillar::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(15,34,24,0.32) 0%, rgba(15,34,24,0.5) 45%, rgba(15,34,24,0.9) 100%);
  opacity: 1;
  transition: opacity 0.6s var(--ease);
}

.pillar-content { position: relative; }

.pillar-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--brass-soft);
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
}

.pillar h3 {
  font-size: 1.6rem;
  margin-bottom: 0.85rem;
  color: var(--bone);
}

.pillar p {
  font-size: 0.92rem;
  color: var(--bone-warm);
  line-height: 1.65;
  max-width: 30ch;
}

/* hover / keyboard-focus = light up, zoom in, and lift out */
.pillar { transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease); }

@media (hover: hover) {
  .pillar:hover {
    transform: translateY(-8px);
    box-shadow: inset 0 0 0 2px var(--brass), 0 22px 45px rgba(0,0,0,0.4);
    z-index: 2;
  }
  .pillar:hover::before { filter: grayscale(0) brightness(1) contrast(1.03); transform: scale(1.16); }
  .pillar:hover::after { opacity: 0.5; }
}

.pillar:focus-visible {
  outline: none;
  box-shadow: inset 0 0 0 2px var(--brass), 0 22px 45px rgba(0,0,0,0.4);
  z-index: 2;
}
.pillar:focus-visible::before { filter: grayscale(0) brightness(1) contrast(1.03); transform: scale(1.16); }
.pillar:focus-visible::after { opacity: 0.5; }

@media (prefers-reduced-motion: reduce) {
  .pillar::before, .pillar::after { transition: none; }
}

@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr 1fr; }
  .pillar { min-height: 320px; }
}

@media (max-width: 560px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar { min-height: 260px; padding: 1.75rem; }
}

/* Journey cards */
.journeys-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

@media (max-width: 1000px) { .journeys-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .journeys-grid { grid-template-columns: 1fr; } }

.journey-card {
  display: block;
  position: relative;
  cursor: pointer;
  transition: transform 0.6s var(--ease);
}

.journey-card:hover { transform: translateY(-4px); }

.journey-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--forest-soft);
  margin-bottom: 1.5rem;
}

.journey-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.5s var(--ease-slow);
}

.journey-card:hover .journey-image img { transform: scale(1.05); }

.journey-tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(244, 240, 230, 0.95);
  backdrop-filter: blur(8px);
  padding: 0.5rem 0.9rem;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 500;
}

.journey-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.journey-card h3 {
  font-size: 1.65rem;
  margin-bottom: 0.85rem;
  transition: color 0.3s var(--ease);
}

.journey-card:hover h3 { color: var(--brass); }

.journey-card p {
  font-size: 0.93rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.journey-courses {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--forest);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.journey-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journey-price .label { color: var(--muted); }
.journey-price .tier { color: var(--forest); font-weight: 500; }

/* Destinations strip */
.dest-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

@media (max-width: 1000px) { .dest-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .dest-strip { grid-template-columns: 1fr; } }

.dest-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  background: var(--forest-soft);
}

.dest-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 2s var(--ease-slow);
}

.dest-card:hover img { transform: scale(1.06); }

.dest-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,34,24,0.62) 0%, rgba(15,34,24,0.12) 26%, rgba(15,34,24,0.08) 52%, rgba(15,34,24,0.9) 100%);
}

/* name at the top of the image */
.dest-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  padding: 1.5rem 1.5rem 1.25rem;
  z-index: 2;
  color: var(--bone);
}
.dest-region {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  color: var(--brass-soft);
  margin-bottom: 0.35rem;
  font-weight: 600;
}
.dest-top h3 {
  color: #fff;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  line-height: 1.05;
}

/* smaller further-information block at the bottom of the image */
.dest-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.4rem 1.5rem;
  z-index: 2;
  color: var(--bone);
}
.dest-bottom p {
  font-size: 0.78rem;
  color: var(--bone-warm);
  opacity: 0.92;
  line-height: 1.45;
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.split.reverse > div:first-child { order: 2; }

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split.reverse > div:first-child { order: 0; }
}

.split-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--forest-soft);
}

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

.split-text h2 { margin-bottom: 1.5rem; }
.split-text .lead { margin-bottom: 2rem; }
.split-text .eyebrow { display: block; margin-bottom: 1.5rem; }

/* Hotel collections */
.collections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

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

.collection-card {
  background: var(--bone-warm);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.5s var(--ease);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.collection-card:hover {
  background: var(--forest);
  color: var(--bone);
}

.collection-card:hover h3 { color: var(--bone); }
.collection-card:hover .collection-num { color: var(--brass-soft); }
.collection-card:hover p { color: var(--bone-warm); }
.collection-card:hover .col-list li { color: var(--bone-warm); border-color: rgba(244,240,230,0.15); }

.collection-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--brass);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  transition: color 0.5s var(--ease);
}

.collection-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  transition: color 0.5s var(--ease);
}

.collection-card p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  transition: color 0.5s var(--ease);
}

.col-list {
  list-style: none;
  margin-top: auto;
}

.col-list li {
  padding: 0.55rem 0;
  font-size: 0.82rem;
  color: var(--ink);
  border-top: 1px solid var(--line);
  transition: all 0.5s var(--ease);
}

/* Reviews */
.review {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.review-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  line-height: 1.3;
  color: var(--forest);
  margin-bottom: 2.5rem;
  letter-spacing: -0.01em;
}

.review-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.review-name {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
}

.review-trip {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  font-family: var(--font-display);
}

/* CTA banner */
.cta-banner {
  background: var(--forest-deep);
  color: var(--bone);
  padding: clamp(5rem, 12vw, 10rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(176, 141, 74, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 30%, rgba(176, 141, 74, 0.06) 0%, transparent 50%);
}

.cta-banner .container,
.cta-banner .container-narrow { position: relative; z-index: 1; }

.cta-banner .eyebrow { color: var(--brass-soft); margin-bottom: 2rem; display: block; }

.cta-banner h2 {
  color: var(--bone);
  font-size: clamp(2.5rem, 6vw, 5rem);
  max-width: 16ch;
  margin: 0 auto 2.5rem;
  line-height: 1.05;
}

.cta-banner p {
  font-size: 1.05rem;
  color: var(--bone-warm);
  max-width: 50ch;
  margin: 0 auto 3rem;
  line-height: 1.65;
}

/* Footer */
.footer {
  background: var(--forest-deep);
  color: var(--bone-warm);
  padding: clamp(3.5rem, 6vw, 5rem) 0 2.2rem;
}
.footer .container { padding-left: clamp(1.5rem, 5vw, 4.5rem); padding-right: clamp(1.5rem, 5vw, 4.5rem); }

.footer-inner {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.4fr;
  gap: clamp(2rem, 4vw, 4rem);
  margin-bottom: 2.8rem;
  align-items: start;
}

@media (max-width: 800px) { .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.2rem 2rem; } }
@media (max-width: 500px) { .footer-inner { grid-template-columns: 1fr 1fr; } .footer-brand-col { grid-column: 1 / -1; } }

.footer .brand { color: var(--bone); margin-bottom: 1.1rem; }
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.98rem;
  color: var(--bone-warm);
  opacity: 0.85;
  max-width: 26ch;
  line-height: 1.5;
}

.footer h5 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-soft);
  margin-bottom: 1.15rem;
  font-weight: 600;
}

.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.55rem; }
.footer ul a {
  font-size: 0.86rem;
  color: var(--bone-warm);
  opacity: 0.72;
  transition: opacity 0.3s var(--ease), color 0.3s var(--ease);
}
.footer ul a:hover { opacity: 1; color: var(--brass-soft); }

.footer-base {
  border-top: 1px solid rgba(244, 240, 230, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--bone-warm);
  opacity: 0.6;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 56px; height: 56px;
  background: var(--forest);
  color: var(--bone);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(15, 34, 24, 0.3);
  transition: all 0.3s var(--ease);
}

.whatsapp-float:hover {
  background: var(--brass);
  transform: scale(1.16);
  box-shadow: 0 14px 38px rgba(15, 34, 24, 0.4);
}
.whatsapp-float { transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s var(--ease), box-shadow 0.35s var(--ease); }

.whatsapp-float svg { width: 26px; height: 26px; }

/* Page hero */
.page-hero {
  background: var(--forest-deep);
  color: var(--bone);
  padding: 11rem 0 5rem;
  position: relative;
  overflow: hidden;
}

/* real photo hero (pages flagged with .has-photo + inline --hero-img) */
.page-hero.has-photo {
  min-height: 58vh;
  display: flex;
  align-items: flex-end;
}
.page-hero.has-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--hero-img);
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.page-hero.has-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,34,24,0.5) 0%, rgba(15,34,24,0.55) 55%, rgba(15,34,24,0.88) 100%);
  z-index: 1;
}
.page-hero.has-photo > .container { position: relative; z-index: 2; width: 100%; }

.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 70% 20%, rgba(176, 141, 74, 0.1) 0%, transparent 60%);
}

.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow { color: var(--brass-soft); display: block; margin-bottom: 1.5rem; }

.page-hero h1 {
  color: var(--bone);
  font-size: clamp(2.5rem, 6vw, 5rem);
  max-width: 16ch;
  margin-bottom: 1.5rem;
  line-height: 1.05;
}

.page-hero p {
  color: var(--bone-warm);
  font-size: 1.1rem;
  max-width: 56ch;
  line-height: 1.6;
}

.page-hero.with-image {
  padding: 13rem 0 6rem;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
}
.page-hero.with-image .page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero.with-image .page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero.with-image .page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15,34,24,0.4) 0%, rgba(15,34,24,0.85) 100%);
}

/* Filter chips */
.filter-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-chip {
  padding: 0.6rem 1.1rem;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  transition: all 0.3s var(--ease);
  cursor: pointer;
  font-family: var(--font-sans);
}

.filter-chip:hover { border-color: var(--forest); }
.filter-chip.active {
  background: var(--forest);
  color: var(--bone);
  border-color: var(--forest);
}

/* Course / hotel list cards */
.list-card {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: background 0.3s var(--ease);
}

.list-card:hover { background: var(--bone-warm); }

.list-card-img {
  aspect-ratio: 4/3;
  background: var(--forest-soft);
  overflow: hidden;
}

.list-card-img img { width: 100%; height: 100%; object-fit: cover; }

.list-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.list-card .meta {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.list-card .meta span { color: var(--brass); margin: 0 0.5rem; }

.list-card p { font-size: 0.95rem; color: var(--muted); max-width: 56ch; }

.list-card .tier {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--forest);
  text-align: right;
  white-space: nowrap;
}

@media (max-width: 700px) {
  .list-card { grid-template-columns: 1fr; }
  .list-card .tier { text-align: left; }
}

/* Form styling */
.form-step {
  display: none;
  animation: fadeIn 0.4s var(--ease);
}

.form-step.active { display: block; }

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

.form-progress {
  position: sticky;
  top: 0;
  background: var(--bone);
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
  z-index: 50;
  margin-top: 5rem;
}

.form-progress-bar {
  height: 2px;
  background: var(--line);
  overflow: hidden;
  margin-bottom: 1rem;
}

.form-progress-fill {
  height: 100%;
  background: var(--brass);
  width: 0%;
  transition: width 0.5s var(--ease);
}

.form-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-progress-label .current { color: var(--forest); font-weight: 500; }

.form-group {
  margin-bottom: 1.75rem;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--bone-warm);
  border: 1px solid transparent;
  font-size: 1rem;
  color: var(--ink);
  transition: all 0.3s var(--ease);
  font-family: var(--font-sans);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--forest);
  background: var(--bone);
}

.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
}

.form-option {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.25rem;
  background: var(--bone-warm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.form-option:hover { border-color: var(--line); }
.form-option.checked {
  border-color: var(--forest);
  background: var(--bone);
}

.form-option input { margin-top: 4px; flex-shrink: 0; }

.form-option .option-text {
  font-size: 0.92rem;
  color: var(--ink);
}

.form-option .option-sub {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 4px;
  display: block;
}

.form-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.form-step-title {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.form-step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--brass);
}

.form-step-title h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin: 0;
}

.form-step-desc {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  max-width: 56ch;
}

/* Admin styles */
.admin-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}

@media (max-width: 800px) { .admin-shell { grid-template-columns: 1fr; } }

.admin-sidebar {
  background: var(--forest-deep);
  color: var(--bone);
  padding: 2rem 1.5rem;
}

.admin-sidebar .brand { margin-bottom: 3rem; }
.admin-sidebar h5 {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass-soft);
  margin: 2rem 0 0.75rem;
  font-weight: 500;
}

.admin-sidebar ul { list-style: none; }
.admin-sidebar a {
  display: block;
  padding: 0.6rem 0.75rem;
  font-size: 0.85rem;
  color: var(--bone-warm);
  border-left: 2px solid transparent;
  margin-left: -0.75rem;
  padding-left: 0.75rem;
  transition: all 0.2s var(--ease);
}

.admin-sidebar a:hover, .admin-sidebar a.active {
  color: var(--brass-soft);
  border-color: var(--brass);
}

.admin-main {
  background: var(--bone);
  padding: 3rem;
  overflow: auto;
}

@media (max-width: 800px) { .admin-main { padding: 2rem 1.25rem; } }

.admin-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.kpi {
  background: var(--bone-warm);
  padding: 1.5rem;
  border-left: 3px solid var(--brass);
}

.kpi .label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.kpi .num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--forest);
  line-height: 1;
}

.kpi .sub {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

.pipeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
  margin-bottom: 3rem;
}

@media (max-width: 1100px) { .pipeline { grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); } }

.pipeline-col {
  background: var(--bone-warm);
  padding: 1.25rem 1rem;
  min-height: 360px;
}

.pipeline-col h4 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.pipeline-col h4 .count {
  background: var(--forest);
  color: var(--bone);
  padding: 0.15rem 0.55rem;
  font-size: 0.7rem;
}

.lead-card {
  background: var(--bone);
  padding: 1rem;
  margin-bottom: 0.6rem;
  cursor: pointer;
  border-left: 2px solid transparent;
  transition: all 0.2s var(--ease);
}

.lead-card:hover { border-color: var(--brass); transform: translateX(2px); }

.lead-card .lead-name {
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.lead-card .lead-meta {
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.lead-card .lead-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lead-card .tag {
  padding: 0.18rem 0.5rem;
  background: var(--bone-warm);
  color: var(--forest);
  font-weight: 500;
}

.lead-card .tag.tag-brass { background: rgba(176,141,74,0.15); color: var(--brass); }
.lead-card .tag.tag-forest { background: rgba(26,51,38,0.1); color: var(--forest); }

/* ============ Journey flip — tap the picture to reveal the trip ============ */
.journey-flip {
  position: relative;
  aspect-ratio: 4 / 5;
  margin-bottom: 1.5rem;
  perspective: 1400px;
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  font: inherit;
}
.journey-flip:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; }
.jf-inner {
  position: absolute; inset: 0;
  transition: transform 0.7s var(--ease);
  transform-style: preserve-3d;
}
.journey-flip.flipped .jf-inner { transform: rotateY(180deg); }
.jf-face {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}
.jf-front { background: var(--forest-soft); }
.jf-front img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s var(--ease-slow); }
.journey-card:hover .journey-flip:not(.flipped) .jf-front img { transform: scale(1.05); }
.jf-hint {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.4rem 1.25rem 1.1rem;
  background: linear-gradient(180deg, rgba(15, 34, 24, 0) 0%, rgba(15, 34, 24, 0.78) 100%);
  color: var(--brass-soft);
  font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
}
.jf-back {
  background: var(--forest);
  transform: rotateY(180deg);
  padding: 1.4rem 1.4rem 1.2rem;
  display: flex; flex-direction: column;
  color: var(--bone);
  overflow-y: auto;
}
.jf-label {
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brass-soft); font-weight: 600; margin-bottom: 0.5rem;
}
.jf-outline { list-style: none; margin: 0 0 1.1rem; padding: 0; }
.jf-outline li {
  font-family: var(--font-display); font-style: italic;
  font-size: 0.94rem; line-height: 1.45; color: var(--bone-warm);
  padding: 0.32rem 0;
  border-bottom: 1px solid rgba(244, 240, 230, 0.08);
}
.jf-outline li:last-child { border-bottom: none; }
.jf-inc { list-style: none; margin: 0; padding: 0; }
.jf-inc li {
  font-size: 0.74rem; color: var(--bone-warm); line-height: 1.45;
  padding: 0.2rem 0 0.2rem 1.1rem; position: relative;
}
.jf-inc li::before { content: '—'; position: absolute; left: 0; color: var(--brass-soft); }
.jf-return {
  margin-top: auto; padding-top: 0.9rem;
  font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brass-soft); opacity: 0.85;
}
@media (prefers-reduced-motion: reduce) { .jf-inner { transition: none; } }

/* ============ Course gallery — swipeable, typewriter caption ============ */
.cgal { position: relative; overflow: hidden; background: var(--forest-deep); }
.cgal::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; height: 45%;
  background: linear-gradient(180deg, rgba(15, 34, 24, 0) 0%, rgba(15, 34, 24, 0.82) 100%);
  pointer-events: none; z-index: 1;
}
.cgal-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  aspect-ratio: 4 / 5;
}
.cgal-track::-webkit-scrollbar { display: none; }
.cgal-track:focus-visible { outline: 2px solid var(--brass); outline-offset: -2px; }
.cgal-slide { flex: 0 0 100%; scroll-snap-align: start; scroll-snap-stop: always; margin: 0; }
.cgal-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cgal-cap { position: absolute; left: 1.4rem; right: 4.6rem; bottom: 1.2rem; z-index: 2; color: var(--bone); pointer-events: none; }
.cgal-cap-name { font-family: var(--font-display); font-size: clamp(1.4rem, 2.6vw, 1.9rem); line-height: 1.1; min-height: 1.2em; }
.cgal-cap-sub {
  font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--brass-soft); margin-top: 0.45rem;
  opacity: 0; transition: opacity 0.5s var(--ease);
}
.cgal-cap-sub.on { opacity: 1; }
.cgal-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(244, 240, 230, 0.4);
  background: rgba(15, 34, 24, 0.35);
  color: var(--bone);
  cursor: pointer; font-size: 1rem;
  display: grid; place-items: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.cgal-arrow:hover { background: rgba(15, 34, 24, 0.65); border-color: var(--brass-soft); }
.cgal-arrow:focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; }
.cgal-prev { left: 0.9rem; }
.cgal-next { right: 0.9rem; }
.cgal-count {
  position: absolute; top: 1rem; right: 1.2rem; z-index: 2;
  font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--bone-warm);
  background: rgba(15, 34, 24, 0.4);
  padding: 0.3rem 0.65rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* ============ Social float — Instagram & Facebook above WhatsApp ============ */
.social-float {
  position: fixed;
  right: calc(1.5rem + 7px);
  z-index: 50;
  width: 42px; height: 42px;
  background: var(--forest);
  color: var(--bone);
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 22px rgba(15, 34, 24, 0.25);
  transition: all 0.3s var(--ease);
}
.social-float:hover { background: var(--brass); transform: scale(1.18); box-shadow: 0 12px 30px rgba(15, 34, 24, 0.35); }
.social-float { transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s var(--ease), box-shadow 0.35s var(--ease); }
.social-float svg { width: 19px; height: 19px; }

/* Click bounce for the floating buttons */
@keyframes floatPop {
  0% { transform: scale(1); }
  35% { transform: scale(1.35); }
  65% { transform: scale(0.92); }
  100% { transform: scale(1.14); }
}
.float-pop { animation: floatPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1); }
@media (prefers-reduced-motion: reduce) {
  .whatsapp-float, .social-float { transition: none; }
  .whatsapp-float:hover, .social-float:hover { transform: none; }
  .float-pop { animation: none; }
}
.social-float--ig { bottom: calc(1.5rem + 56px + 0.8rem); }
.social-float--fb { bottom: calc(1.5rem + 56px + 0.8rem + 42px + 0.6rem); }

/* On phones keep the IG/FB floats but compact, tucked tight above WhatsApp */
@media (max-width: 900px) {
  .whatsapp-float { width: 52px; height: 52px; bottom: 1.1rem; right: 1.1rem; }
  .whatsapp-float svg { width: 24px; height: 24px; }
  .social-float { width: 38px; height: 38px; right: calc(1.1rem + 7px); }
  .social-float svg { width: 17px; height: 17px; }
  .social-float--ig { bottom: calc(1.1rem + 52px + 0.7rem); }
  .social-float--fb { bottom: calc(1.1rem + 52px + 0.7rem + 38px + 0.55rem); }
}

/* ============ Footer social — 2×2 icon square in the Contact column ============ */
.footer-social {
  display: grid;
  grid-template-columns: repeat(2, 46px);
  gap: 0.6rem;
  margin-top: 1.4rem;
}
.footer-social a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(201, 165, 103, 0.45);
  color: var(--bone-warm);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.footer-social a:hover,
.footer-social a:focus-visible {
  border-color: var(--brass-soft);
  color: var(--brass-soft);
  background: rgba(201, 165, 103, 0.08);
  outline: none;
}
.footer-social svg { width: 20px; height: 20px; display: block; }

/* ============ Insider note — the occasional-letter popup ============ */
.tgc-pop {
  position: fixed; inset: 0; z-index: 2000;
  display: grid; place-items: center;
  padding: 1.25rem;
}
.tgc-pop[hidden] { display: none; }
.tgc-pop-veil {
  position: absolute; inset: 0;
  background: rgba(15, 34, 24, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.tgc-pop-panel {
  position: relative;
  background: var(--bone);
  border-top: 2px solid var(--brass);
  max-width: 430px; width: 100%;
  padding: 2.4rem 2.4rem 2rem;
  box-shadow: 0 30px 80px rgba(15, 34, 24, 0.35);
  animation: tgcPopIn 0.45s var(--ease);
}
@keyframes tgcPopIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.tgc-pop-panel .eyebrow { display: block; margin-bottom: 1rem; }
.tgc-pop-panel h3 {
  font-size: clamp(1.6rem, 4vw, 2rem);
  color: var(--forest);
  line-height: 1.1;
  margin-bottom: 0.8rem;
}
.tgc-pop-panel > p { font-size: 0.92rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.5rem; }
.tgc-pop-form { display: grid; gap: 0.7rem; }
.tgc-pop-form input {
  width: 100%; font: inherit; font-size: 0.95rem; color: var(--ink);
  background: var(--bone-warm);
  border: 1px solid var(--line);
  padding: 0.85rem 1rem;
  border-radius: 0;
}
.tgc-pop-form input:focus-visible { outline: 2px solid var(--brass); outline-offset: 1px; }
.tgc-pop-form .btn { justify-content: center; margin-top: 0.4rem; }
.tgc-pop-small { font-size: 0.72rem; color: var(--muted); margin-top: 1rem; line-height: 1.5; }
.tgc-pop-small a { color: var(--brass); }
.tgc-pop-close {
  position: absolute; top: 0.9rem; right: 1rem;
  background: none; border: none; cursor: pointer;
  font-size: 1.6rem; line-height: 1; color: var(--muted);
  padding: 0.25rem; transition: color 0.2s;
}
.tgc-pop-close:hover { color: var(--forest); }
.tgc-pop-close:focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; }
.tgc-pop-err { display: none; font-size: 0.8rem; color: #a4442c; margin-top: 0.6rem; }
.tgc-pop-err.show { display: block; }
.tgc-pop-done { text-align: center; padding: 1.5rem 0 1rem; }
.tgc-pop-done h3 { margin-bottom: 0.6rem; }
.tgc-pop-done p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }
@media (prefers-reduced-motion: reduce) { .tgc-pop-panel { animation: none; } }
@media (max-width: 480px) {
  .tgc-pop { align-items: end; padding: 0; }
  .tgc-pop-panel { max-width: none; }
}

/* ============ Journey quick enquiry — package-focused modal ============ */
.jq-modal { position: fixed; inset: 0; z-index: 2000; display: grid; place-items: center; padding: 1.25rem; }
.jq-modal[hidden] { display: none; }
.jq-veil { position: absolute; inset: 0; background: rgba(15, 34, 24, 0.55); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); }
.jq-panel {
  position: relative;
  background: var(--bone);
  border-top: 2px solid var(--brass);
  max-width: 460px; width: 100%;
  max-height: 92vh; overflow-y: auto;
  padding: 2.3rem 2.3rem 1.9rem;
  box-shadow: 0 30px 80px rgba(15, 34, 24, 0.35);
  animation: tgcPopIn 0.45s var(--ease);
}
.jq-panel .eyebrow { display: block; margin-bottom: 0.9rem; }
.jq-panel h3 { font-size: clamp(1.6rem, 4vw, 2rem); color: var(--forest); line-height: 1.1; margin-bottom: 0.5rem; }
.jq-sub { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); font-weight: 500; margin-bottom: 0.9rem; }
.jq-courses { font-family: var(--font-display); font-style: italic; font-size: 1.02rem; color: var(--forest); line-height: 1.45; margin-bottom: 1.4rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--line-soft); }
.jq-form { display: grid; gap: 0.7rem; }
.jq-form input, .jq-form textarea {
  width: 100%; font: inherit; font-size: 0.95rem; color: var(--ink);
  background: var(--bone-warm); border: 1px solid var(--line);
  padding: 0.85rem 1rem; border-radius: 0; resize: vertical;
}
.jq-form input:focus-visible, .jq-form textarea:focus-visible { outline: 2px solid var(--brass); outline-offset: 1px; }
.jq-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-top: 0.5rem; }
.jq-actions .btn { flex: 1 1 auto; justify-content: center; white-space: nowrap; }
.jq-wa {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
  color: var(--forest); border: 1px solid var(--forest);
  padding: 1rem 1.4rem; transition: all 0.25s var(--ease);
}
.jq-wa:hover { background: var(--forest); color: var(--bone); }
.jq-small { font-size: 0.72rem; color: var(--muted); margin-top: 1rem; line-height: 1.5; }
.jq-close {
  position: absolute; top: 0.9rem; right: 1rem;
  background: none; border: none; cursor: pointer;
  font-size: 1.6rem; line-height: 1; color: var(--muted);
  padding: 0.25rem; transition: color 0.2s;
}
.jq-close:hover { color: var(--forest); }
.jq-close:focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; }
.jq-err { display: none; font-size: 0.8rem; color: #a4442c; margin-top: 0.4rem; }
.jq-err.show { display: block; }
.jq-done { text-align: center; padding: 1.6rem 0 1rem; }
.jq-done p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }
@media (max-width: 480px) {
  .jq-modal { align-items: end; padding: 0; }
  .jq-panel { max-width: none; }
}
@media (prefers-reduced-motion: reduce) { .jq-panel { animation: none; } }

/* ============ Hotel directory ============ */
.hd-toolbar {
  position: sticky; top: 0; z-index: 40;
  background: rgba(244, 240, 230, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 0;
}
.hd-toolbar-inner { display: flex; flex-wrap: wrap; gap: 0.5rem 0.6rem; align-items: center; }
.hd-chip {
  font: inherit; cursor: pointer;
  font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
  color: var(--muted); background: transparent;
  border: 1px solid var(--line);
  padding: 0.45rem 0.85rem; border-radius: 100px;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.hd-chip:hover { border-color: var(--brass); color: var(--forest); }
.hd-chip.active { background: var(--forest); border-color: var(--forest); color: var(--bone); }
.hd-chip:focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; }
.hd-tiers { margin-left: auto; display: flex; gap: 0.4rem; }
.hd-count { font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-left: auto; }

/* Area/collection dropdowns */
.hd-selects { display: flex; gap: 0.75rem; flex-wrap: wrap; align-items: flex-end; }
.hd-select { display: flex; flex-direction: column; gap: 0.3rem; }
.hd-select > span { font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.hd-select select {
  font: inherit; font-size: 0.85rem; color: var(--forest);
  background-color: #fff; border: 1px solid var(--line); border-radius: 3px;
  padding: 0.55rem 2rem 0.55rem 0.85rem; cursor: pointer;
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23b08d4a' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.7rem center;
  transition: border-color 0.2s var(--ease);
}
.hd-select select:hover { border-color: var(--brass); }
.hd-select select:focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; }
.hd-empty { text-align: center; padding: 4rem 0; color: var(--muted); font-family: var(--font-display); font-style: italic; font-size: 1.2rem; }
.hd-body { display: contents; }

.hd-area { padding: clamp(3rem, 6vw, 4.5rem) 0 1rem; scroll-margin-top: 130px; }
.hd-area-head { display: flex; align-items: baseline; gap: 1.2rem; flex-wrap: wrap; margin-bottom: 0.4rem; }
.hd-area-head h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); color: var(--forest); line-height: 1; }
.hd-area-count { font-family: var(--font-display); font-style: italic; color: var(--brass); font-size: 1.1rem; }
.hd-area-note { font-family: var(--font-display); font-style: italic; color: var(--muted); font-size: 1.08rem; max-width: 52ch; margin-bottom: 2rem; }

.hd-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 2.5vw, 2rem); padding-bottom: 2rem; }
@media (max-width: 1000px) { .hd-grid { grid-template-columns: repeat(2, 1fr); } }

.hd-card { display: flex; flex-direction: column; }
.hd-img {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden;
  background: linear-gradient(150deg, var(--forest) 0%, var(--forest-deep) 100%);
  margin-bottom: 1rem;
}
.hd-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease-slow); }
.hd-card:hover .hd-img img { transform: scale(1.05); }
.hd-img--empty { display: grid; place-items: center; }
.hd-img--empty .hd-mono { text-align: center; }
.hd-img--empty .hd-mono img { width: 44px; height: auto; opacity: 0.55; transform: none; }
.hd-img--empty .hd-mono span { display: block; margin-top: 0.6rem; font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass-soft); }
.hd-tier {
  position: absolute; top: 0.9rem; left: 0.9rem;
  background: rgba(244, 240, 230, 0.94);
  padding: 0.35rem 0.7rem;
  font-size: 0.56rem; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600;
  color: var(--forest);
}
.hd-tier--signature { background: var(--forest); color: var(--brass-soft); }
.hd-card h3 { font-size: 1.35rem; line-height: 1.12; color: var(--forest); margin-bottom: 0.3rem; }
.hd-style { font-size: 0.64rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); font-weight: 500; margin-bottom: 0.55rem; }
.hd-why { font-family: var(--font-display); font-style: italic; font-size: 1rem; line-height: 1.45; color: var(--ink); margin-bottom: 0.55rem; }
.hd-golf { font-size: 0.74rem; color: var(--muted); display: flex; gap: 0.5rem; align-items: baseline; }
.hd-golf::before { content: '⛳'; font-size: 0.7rem; }

/* Phone: compact rows so several hotels fit on screen at once */
@media (max-width: 620px) {
  .hd-grid { grid-template-columns: 1fr; gap: 0.7rem; }
  .hd-area { padding: 1.75rem 0 0.5rem; }
  .hd-area-head h2 { font-size: 1.7rem; }
  .hd-area-note { font-size: 0.9rem; margin-bottom: 1rem; }
  .hd-card { flex-direction: row; align-items: stretch; gap: 0.85rem; background: #fff; border: 1px solid var(--line); border-radius: 4px; padding: 0.5rem; }
  .hd-img { flex: 0 0 82px; width: 82px; aspect-ratio: 1; margin-bottom: 0; border-radius: 2px; }
  .hd-tier { top: 0.3rem; left: 0.3rem; padding: 0.18rem 0.38rem; font-size: 0.48rem; letter-spacing: 0.12em; }
  .hd-body { display: flex; flex-direction: column; justify-content: center; flex: 1; min-width: 0; }
  .hd-card h3 { font-size: 1.05rem; margin-bottom: 0.15rem; }
  .hd-style { font-size: 0.56rem; margin-bottom: 0.25rem; }
  .hd-why { font-size: 0.8rem; line-height: 1.4; margin-bottom: 0; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
  .hd-golf { display: none; }
}

/* =========================================================
   Quietly Handled — five-act homepage (see DESIGN.md)
   ========================================================= */

/* ---- Act shell ---- */
.act { position: relative; padding: clamp(4.5rem, 9vw, 8rem) 0; }

/* ---- Concierge Thread ---- */
.cthread { position: fixed; left: 44px; top: 0; bottom: 0; width: 1px; z-index: 40; pointer-events: none; transition: opacity 0.4s var(--ease); }
.cthread-track { position: absolute; inset: 0; background: rgba(176, 141, 74, 0.22); }
.cthread-fill { position: absolute; top: 0; left: 0; width: 100%; height: 0; background: var(--brass); }
.cthread-node { position: absolute; left: 50%; width: 9px; height: 9px; border-radius: 50%; background: var(--bone); border: 1.5px solid var(--brass); transform: translateX(-50%); transition: background 0.3s; }
.cthread-node.lit { background: var(--brass); }
@media (max-width: 1100px) { .cthread { display: none; } }

/* ---- Act II — The Promise ---- */
.act-promise { background: var(--bone); }
.promise-split { display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.promise-split h2 { font-size: clamp(1.9rem, 3.4vw, 3rem); color: var(--charcoal); margin-top: 1.4rem; line-height: 1.15; }
.promise-split h2 em { font-style: italic; color: var(--forest); }
.promise-photo { position: relative; margin: 0; }
.promise-carousel { position: relative; width: 100%; height: min(560px, 60vw); overflow: hidden; }
.promise-carousel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.1s var(--ease); }
.promise-carousel img.on { opacity: 1; }
.promise-photo figcaption { margin-top: 0.8rem; font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); transition: opacity 0.4s var(--ease); }
.pillar-quiet { display: grid; grid-template-columns: 1fr 1fr; margin-top: 2.8rem; border-top: 1px solid rgba(176, 141, 74, 0.4); }
.pillar-quiet > div { padding: 1.4rem 1.2rem 1.3rem 0; border-bottom: 1px solid rgba(176, 141, 74, 0.18); }
.pillar-quiet h3 { font-family: var(--font-sans); font-size: 0.68rem; letter-spacing: 0.26em; text-transform: uppercase; font-weight: 600; color: var(--forest); }
.pillar-quiet p { font-size: 0.84rem; color: var(--muted); margin-top: 0.55rem; line-height: 1.55; }
@media (max-width: 900px) {
  .promise-split { grid-template-columns: 1fr; }
  .promise-photo { order: -1; }
  .promise-carousel { height: 62vw; }
}

/* ---- Act III — Journeys rail ---- */
.act-journeys { background: var(--mist); }
.jrail-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 1.5rem; margin-bottom: 2.4rem; }
.jrail-head h2 { font-size: clamp(1.9rem, 3.4vw, 3rem); color: var(--charcoal); margin-top: 0.9rem; }
.rail-arrows { display: flex; gap: 0.6rem; flex-shrink: 0; }
.rail-arrows button { width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--brass); background: transparent; color: var(--brass); font-size: 1.1rem; cursor: pointer; transition: all 0.25s var(--ease); }
.rail-arrows button:hover, .rail-arrows button:focus-visible { background: var(--brass); color: var(--bone); transform: scale(1.05); outline: none; }
/* NOTE: no -webkit-overflow-scrolling:touch here — the legacy property fights
   scroll-snap on iOS and makes the rail judder/re-snap mid-scroll. */
.jrail { display: flex; gap: 1.8rem; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 0.5rem; overscroll-behavior-x: contain; }
.jrail::-webkit-scrollbar { display: none; }
.jrail-card { flex: 0 0 min(380px, 82vw); scroll-snap-align: start; scroll-snap-stop: always; background: var(--bone); text-decoration: none; color: inherit; display: block; }
/* lift-on-hover only for real pointers — iOS fires :hover on touch, which made
   cards jump around while swiping the rail */
@media (hover: hover) and (pointer: fine) {
  .jrail-card { transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
  .jrail-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(28, 28, 26, 0.12); }
}
/* phone: a true pager — one full card in view, snapping solidly card by card */
@media (max-width: 700px) {
  .jrail { gap: 1rem; }
  .jrail-card { flex: 0 0 100%; scroll-snap-align: center; }
}
.jrail-card img { height: 240px; width: 100%; object-fit: cover; display: block; }
.jrail-card .jc-body { padding: 1.5rem 1.6rem 1.7rem; }
.jrail-card .jc-meta { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass); font-weight: 600; }
.jrail-card h3 { font-size: 1.55rem; margin: 0.6rem 0 0.45rem; color: var(--charcoal); line-height: 1.15; }
.jrail-card p { font-size: 0.86rem; color: var(--muted); line-height: 1.55; }
.jrail-card .jc-from { margin-top: 0.95rem; font-size: 0.8rem; font-weight: 600; color: var(--forest); }
.rail-dots { display: flex; gap: 0.5rem; justify-content: center; margin-top: 1.8rem; }
.rail-dots span { width: 7px; height: 7px; border-radius: 50%; background: rgba(28, 28, 26, 0.18); transition: background 0.2s; }
.rail-dots span.on { background: var(--brass); }

/* ---- Act IV — Destination rail ---- */
.act-places { background: var(--lagoon); color: var(--bone); padding-left: 0; padding-right: 0; }
.act-places .places-head { text-align: center; margin-bottom: 3rem; padding: 0 6vw; }
.act-places h2 { font-size: clamp(1.9rem, 3.4vw, 3rem); color: var(--bone); margin-top: 0.9rem; }
.act-places .places-head p { color: rgba(244, 240, 230, 0.6); font-size: 0.95rem; margin-top: 0.7rem; }
.drail { display: flex; gap: 4px; height: clamp(360px, 44vw, 480px); padding: 0 4vw; }
.drail-item { position: relative; flex: 1; overflow: hidden; cursor: pointer; text-decoration: none; }
.drail-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9); }
.drail-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14, 47, 45, 0.05) 40%, rgba(14, 47, 45, 0.82)); }
.drail-label { position: absolute; bottom: 1.6rem; left: 1.4rem; right: 1.4rem; z-index: 2; }
.drail-label h3 { font-size: clamp(1.4rem, 2.4vw, 2.1rem); color: #fff; white-space: nowrap; font-weight: 500; }
.drail-label p { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass-soft); margin-top: 0.4rem; white-space: nowrap; }
.places-links { display: flex; gap: 2.5rem; justify-content: center; margin-top: 3rem; flex-wrap: wrap; }

/* Expand-on-hover only for real pointers — on touch this fought scroll-snap and juddered */
@media (hover: hover) and (pointer: fine) {
  .drail-item { transition: flex 0.7s var(--ease); }
  .drail-item img { transition: transform 0.7s var(--ease); }
  .drail-item:hover, .drail-item:focus-visible { flex: 2.6; outline: none; }
  .drail-item:hover img { transform: scale(1.04); }
  .drail-label p { opacity: 0; transform: translateY(8px); transition: all 0.45s var(--ease) 0.15s; }
  .drail-item:hover .drail-label p, .drail-item:focus-visible .drail-label p { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  /* no -webkit-overflow-scrolling:touch — it fights scroll-snap on iOS and
     made the destination images jolt and re-snap while scrolling */
  .drail { overflow-x: auto; scroll-snap-type: x mandatory; height: 400px; scrollbar-width: none; overscroll-behavior-x: contain; }
  .drail::-webkit-scrollbar { display: none; }
  .drail-item { flex: 0 0 80vw; scroll-snap-align: center; scroll-snap-stop: always; }
  .drail-label p { white-space: normal; }
}

/* ---- Act V — The Word (quote rotator) ---- */
.act-word { background: var(--forest-deep); color: var(--bone); text-align: center; }
.act-word::before { content: ''; position: absolute; inset: 0; opacity: 0.05; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.8'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E"); }
.qrot { max-width: 900px; margin: 0 auto; min-height: 470px; position: relative; }
@media (max-width: 700px) { .qrot { min-height: 430px; } }
.qrot-item { position: absolute; inset: 0; opacity: 0; transition: opacity 0.9s ease; margin: 0; }
.qrot-item.on { opacity: 1; }
.qphotos { display: flex; gap: 0.9rem; justify-content: center; margin: 0 auto 2.2rem; max-width: 100%; overflow-x: auto; scrollbar-width: none; }
.qphotos::-webkit-scrollbar { display: none; }
.qphotos img { flex: 0 0 auto; width: clamp(150px, 20vw, 210px); aspect-ratio: 1; object-fit: cover; border: 1px solid var(--brass-soft); box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28); }
@media (max-width: 700px) {
  .qphotos img { width: 29vw; }
}
.qrot-item blockquote { font-family: var(--font-display); font-size: clamp(1.3rem, 2.5vw, 1.85rem); font-style: italic; line-height: 1.45; color: var(--bone); margin: 0; text-wrap: balance; }
.qrot-item figcaption { margin-top: 1.3rem; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass-soft); text-wrap: balance; }
.qstars { margin-top: 0.7rem; color: var(--brass); font-size: 0.8rem; letter-spacing: 0.3em; }
.qrot-dots { display: flex; gap: 0.55rem; justify-content: center; margin-top: 1.6rem; }
.qrot-dots button { width: 8px; height: 8px; border-radius: 50%; border: none; background: rgba(244, 240, 230, 0.25); cursor: pointer; transition: background 0.2s; padding: 0; }
.qrot-dots button.on { background: var(--brass-soft); }
.act-word .word-link { margin-top: 2.2rem; display: inline-block; }

/* ---- The Ask — golden-hour band ---- */
.ask-band { position: relative; color: #fff; text-align: center; padding: clamp(6rem, 12vw, 9.5rem) 6vw; overflow: hidden; }
.ask-band .ask-bg { position: absolute; inset: 0; background: url('../img/heros/journeys.jpg') center 65% / cover; }
.ask-band .ask-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14, 47, 45, 0.35), rgba(14, 47, 45, 0.55)); }
.ask-band .ask-inner { position: relative; z-index: 2; }
.ask-band .eyebrow { color: var(--brass-soft); }
.ask-band h2 { font-size: min(2.9rem, 3.35vw); white-space: nowrap; color: #fff; margin: 1.1rem auto 0; text-shadow: 0 2px 24px rgba(14, 47, 45, 0.4); }
.ask-band p.ask-sub { margin-top: 1.1rem; font-size: 0.82rem; color: rgba(244, 240, 230, 0.85); }
.ask-band .ask-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2.4rem; }
.ask-band .btn-bone { background: var(--bone); color: var(--forest); border: 1px solid var(--bone); }
.ask-band .btn-bone:hover { background: transparent; color: var(--bone); }

@media (prefers-reduced-motion: reduce) {
  .drail-item, .drail-item img, .jrail-card, .qrot-item { transition: none; }
}

/* ===== Mobile art-direction batch (11 Jul 2026) ===== */

/* Footer tagline: two full-width lines on phone, not a narrow 5-line column */
@media (max-width: 700px) {
  .footer-tagline { max-width: none; }
}

/* Hero video: iOS Safari frequently fails to paint a position:fixed video (shows
   black). Anchor the media to the hero on touch/narrow widths and give the
   over-video band its own opaque ground since the video no longer sits behind it. */
@media (max-width: 1000px) {
  .hero-media { position: absolute; }
  .section--over-video {
    background: var(--forest-deep);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

/* No orphan words: balance headline and caption wraps site-wide so a single
   word is never stranded on its own line. */
h1, h2, h3,
.lead,
.section-head .head-body p,
.page-hero p { text-wrap: balance; }

/* ===== Experiences: keyword search + tap-to-flip cards ===== */
.exp-search { position: relative; max-width: 460px; margin-bottom: 1.4rem; }
.exp-search-ico { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; color: var(--brass); pointer-events: none; }
.exp-search input {
  width: 100%; font: inherit; font-size: 0.95rem; color: var(--forest);
  background: #fff; border: 1px solid var(--line); border-radius: 3px;
  padding: 0.85rem 1rem 0.85rem 2.7rem;
}
.exp-search input::placeholder { color: var(--muted); }
.exp-search input:focus-visible { outline: 2px solid var(--brass); outline-offset: 1px; border-color: var(--brass); }

.exp-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; }
.exp-empty { text-align: center; padding: 3.5rem 0; color: var(--muted); font-family: var(--font-display); font-style: italic; font-size: 1.15rem; grid-column: 1 / -1; }

.exp-card { perspective: 1600px; cursor: pointer; height: 262px; -webkit-tap-highlight-color: transparent; }
.exp-inner { position: relative; width: 100%; height: 100%; transition: transform 0.7s var(--ease); transform-style: preserve-3d; }
.exp-card.flipped .exp-inner { transform: rotateY(180deg); }
.exp-face { position: absolute; inset: 0; backface-visibility: hidden; -webkit-backface-visibility: hidden; border-radius: 3px; padding: 1.5rem 1.5rem; display: flex; flex-direction: column; overflow: hidden; }
.exp-front { background: var(--bone-warm); border-left: 2px solid var(--brass); justify-content: space-between; }
.exp-front-top { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.exp-cat { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass); font-weight: 600; }
.exp-dur { font-family: var(--font-display); font-style: italic; color: var(--muted); font-size: 0.95rem; }
.exp-front-btm h3 { font-size: 1.3rem; line-height: 1.22; color: var(--forest); margin-bottom: 0.3rem; }
.exp-region { font-size: 0.78rem; color: var(--muted); margin-bottom: 0.85rem; }
.exp-flip-hint { font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass); font-weight: 600; display: inline-flex; gap: 0.4rem; align-items: center; }
.exp-back { background: var(--forest); color: var(--bone); border-left: 2px solid var(--brass-soft); transform: rotateY(180deg); justify-content: space-between; }
.exp-back .exp-cat { color: var(--brass-soft); }
.exp-back h3 { font-size: 1.12rem; color: #fff; margin: 0.35rem 0 0.5rem; line-height: 1.2; }
.exp-blurb { font-size: 0.8rem; line-height: 1.48; color: var(--bone-warm); display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.exp-facts { display: flex; gap: 1.1rem; flex-wrap: wrap; margin-bottom: 0.8rem; }
.exp-facts div { font-size: 0.8rem; color: var(--bone); }
.exp-facts span { display: block; font-size: 0.52rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass-soft); margin-bottom: 0.15rem; }
.exp-add { font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass-soft); font-weight: 600; }
.exp-add:hover { color: #fff; }
.exp-flip-hint--back { position: absolute; top: 1.4rem; right: 1.5rem; color: var(--brass-soft); }
@media (max-width: 620px) {
  .exp-grid { grid-template-columns: 1fr; gap: 0.9rem; }
  .exp-card { height: 250px; }
}

/* ===== Journeys page: tidy card info on tablet/phone =====
   The nights|regions and style|price rows were two-column flex layouts that
   squeezed and wrapped into a jumble on narrow screens. Stack them cleanly. */
@media (max-width: 1000px) {
  .journey-meta { flex-direction: column; gap: 0.28rem; margin-bottom: 0.7rem; }
  .journey-card h3 { margin-bottom: 0.5rem; }
  .journey-card p {
    font-size: 0.9rem; margin-bottom: 0.85rem;
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
  }
  .journey-courses { font-size: 1rem; margin-bottom: 0.9rem; }
  .journey-price {
    flex-direction: column; align-items: flex-start; gap: 0.3rem;
    padding-top: 0.9rem;
  }
  .journey-price .label { order: 2; font-size: 0.62rem; }
  .journey-price .tier { order: 1; font-size: 0.95rem; letter-spacing: 0.08em; color: var(--forest); }
}

/* Brochure button in the nav */
.nav-brochure {
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(201, 165, 103, 0.55);
  border-radius: 100px;
  color: var(--bone-warm);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav-brochure:hover, .nav-brochure:focus-visible { border-color: var(--brass-soft); color: var(--brass-soft); background: rgba(201, 165, 103, 0.08); }
.nav.scrolled .nav-brochure { color: var(--bone-warm); }
@media (max-width: 1360px) and (min-width: 1201px) { .nav-links { gap: 1.3rem; } }

/* ===== Design Your Journey — two-way chooser ===== */
.dyj-chooser { padding: 2.5rem 0 4rem; }
.dyj-modes { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.dyj-mode {
  text-align: left; font: inherit; color: inherit; cursor: pointer;
  background: var(--bone-warm); border: 1px solid var(--line); border-left: 2px solid var(--brass);
  padding: 2.3rem 2.1rem; display: flex; flex-direction: column; gap: 0.55rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.dyj-mode:hover, .dyj-mode:focus-visible { transform: translateY(-4px); box-shadow: 0 18px 42px -18px rgba(28, 28, 26, 0.28); border-left-color: var(--forest); outline: none; }
.dyj-mode-num { font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass); font-weight: 600; }
.dyj-mode h2 { font-size: clamp(1.4rem, 2.4vw, 1.75rem); color: var(--forest); line-height: 1.12; }
.dyj-mode p { font-size: 0.92rem; color: var(--muted); line-height: 1.55; flex: 1; }
.dyj-mode-go { margin-top: 0.6rem; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brass); font-weight: 600; }
.dyj-back { display: inline-block; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 2rem; transition: color 0.25s var(--ease); }
.dyj-back:hover { color: var(--brass); }
@media (max-width: 760px) { .dyj-modes { grid-template-columns: 1fr; } }
