/* ============================================================
   THE PEARL EDITION — shared design system
   One stylesheet for every page so the whole site stays
   visually identical. Edit a value here and it updates
   site-wide.
   ============================================================ */

/* Navigation lives in its own file so the header + mobile menu are a single
   source of truth shared with the ceylon-based pages. */
@import url('/assets/nav.css?v=3');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  /* Palette aligned to the reference site — the warm, luminous gold and
     deep near-black ink that give the site its elegant, luxury feel.
     Cream/off-white stays soft so the light bands read as editorial paper. */
  --cream: #FAF8F4;
  --ink: #1A1612;
  --ink-70: rgba(26,22,18,0.7);
  --ink-40: rgba(26,22,18,0.4);
  --ink-15: rgba(26,22,18,0.12);
  --ink-06: rgba(26,22,18,0.06);
  --gold: #C9A86C;
  --gold-light: #E0BF80;
  --gold-soft: rgba(201,168,108,0.12);
  --white: #FFFFFF;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
  --r: 3px;
  --image-card-radius: 8px;
}

html { scroll-behavior: smooth; }
body { background: var(--cream); color: var(--ink); font-family: var(--sans); font-size: 14px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }

/* TICKER — newspaper "dispatch" masthead bar.
   A pale paper strip framed by a classic double rule on top and a hairline
   below. The headlines crawl across the full width of the strip. */
.ticker { position: relative; background: var(--ink); height: 38px; overflow: hidden; display: flex; align-items: center; border-bottom: 1px solid rgba(250,248,244,0.12); }
.ticker-track { display: flex; gap: 48px; animation: tick 52s linear infinite; white-space: nowrap; align-items: center; }
.ticker-item { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(250,248,244,0.72); display: flex; align-items: center; gap: 10px; }
.ticker-dot { color: var(--gold); font-size: 7px; }
@keyframes tick { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* HERO (home) */
/* Centered content over a full-bleed editorial photograph, darkened by a
   warm scrim so the masthead quotes and search stay perfectly legible. */
.hero { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: clamp(42px, 5vw, 64px); min-height: clamp(680px, 96vh, 1000px); padding: clamp(116px, 15vh, 168px) clamp(24px, 5vw, 80px) clamp(88px, 11vh, 132px); background: #000000 url('/assets/img/sigiriya-hero.jpg') center 40% / cover no-repeat; overflow: hidden; text-align: center; }
.hero::before { content: ''; position: absolute; inset: 0; pointer-events: none; background:
  radial-gradient(120% 80% at 50% 18%, rgba(201,168,108,0.12) 0%, rgba(201,168,108,0) 58%),
  linear-gradient(180deg, rgba(8,7,5,0.74) 0%, rgba(8,7,5,0.52) 42%, rgba(8,7,5,0.82) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 680px; width: 100%; }
.hero-eye { font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
.hero-h1 { font-family: var(--serif); font-size: clamp(44px, 6vw, 84px); font-weight: 300; line-height: 1.05; color: var(--cream); margin-bottom: 16px; }
.hero-h1 em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.62); margin-bottom: 34px; }
.hero-quotes { display: grid; justify-content: center; margin-bottom: 34px; }
.hero-quote { grid-area: 1 / 1; display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; animation: heroQuoteFade 22.5s linear infinite; }
.hero-quote:nth-child(2) { animation-delay: 4.5s; }
.hero-quote:nth-child(3) { animation-delay: 9s; }
.hero-quote:nth-child(4) { animation-delay: 13.5s; }
.hero-quote:nth-child(5) { animation-delay: 18s; }
.hero-quote-text { font-family: var(--serif); font-size: clamp(44px, 6vw, 84px); font-weight: 300; line-height: 1.05; color: var(--cream); margin: 0; max-width: 100%; overflow-wrap: break-word; }
.hero-quote-cite { font-family: var(--sans); margin-top: 20px; font-size: 14px; font-weight: 500; letter-spacing: 0.12em; color: var(--gold); }
@keyframes heroQuoteFade {
  0% { opacity: 0; visibility: visible; }
  4.444% { opacity: 1; visibility: visible; }
  17.778% { opacity: 1; visibility: visible; }
  20% { opacity: 0; visibility: visible; }
  20.001% { opacity: 0; visibility: hidden; }
  100% { opacity: 0; visibility: hidden; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-quote { animation: none; }
  .hero-quote:first-child { opacity: 1; }
}
.hero-search { background: rgba(20,17,13,0.55); border: 1px solid rgba(201,168,108,0.28); border-radius: 2px; display: flex; align-items: center; max-width: 460px; margin: 0 auto 20px; overflow: hidden; box-shadow: 0 18px 50px rgba(0,0,0,0.55); }
.hero-search-ico { padding: 0 13px; color: var(--gold); flex-shrink: 0; display: flex; align-items: center; }
.hero-search input { flex: 1; border: none; outline: none; font-family: var(--sans); font-size: 13px; color: var(--white); padding: 12px 0; background: transparent; }
.hero-search input::placeholder { color: rgba(255,255,255,0.45); }
.hero-search-btn { background: var(--gold); color: var(--ink); border: none; cursor: pointer; font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 0 18px; height: 44px; flex-shrink: 0; transition: background 0.15s; }
.hero-search-btn:hover { background: var(--gold-light); }
.hero-tags { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.hero-tag { font-size: 12px; color: rgba(255,255,255,0.75); background: transparent; border: 1px solid rgba(255,255,255,0.18); padding: 5px 12px; border-radius: 20px; cursor: pointer; transition: all 0.15s; }
.hero-tag:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
/* Hero live weather strip */
.hero-weather { position: relative; z-index: 2; width: 100%; max-width: 760px; margin: 0 auto; }
.hw-eye { display: block; font-family: var(--sans); font-size: 10px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.hw-row { display: flex; align-items: stretch; justify-content: center; flex-wrap: wrap; background: rgba(20,17,13,0.28); backdrop-filter: blur(2px); }
.hw-place { flex: 1 1 0; min-width: 104px; display: flex; flex-direction: column; align-items: center; gap: 11px; padding: 20px 14px; position: relative; }
.hw-place + .hw-place::before { content: ''; position: absolute; left: 0; top: 22px; bottom: 22px; width: 1px; background: rgba(201,168,108,0.2); }
.hw-name { font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.72); }
.hw-cond { display: flex; align-items: center; gap: 10px; }
.hw-ico { color: var(--gold); display: flex; align-items: center; justify-content: center; }
.hw-ico svg { width: 22px; height: 22px; display: block; }
.hw-temp { font-family: var(--serif); font-size: 28px; font-weight: 300; color: var(--cream); line-height: 1; }
.hero-weather.is-loading .hw-temp { opacity: 0.45; }

/* SECTIONS — full bleed: content runs to the page edges with a wide gutter
   (no fixed centred column), matching the reference site's "edge to web" look. */
.sec { padding: 72px 56px; }
.wrap { max-width: none; margin: 0; }
.wrap-narrow { max-width: 820px; margin: 0 auto; }
.sec-hdr { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 32px; }
.sec-title { font-family: var(--serif); font-size: clamp(26px, 3.5vw, 36px); font-weight: 400; line-height: 1.15; }
.sec-title em { font-style: italic; }
.sec-link { font-size: 12px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
.sec-link:hover { color: var(--gold-light, #E0BF80); }

/* EDITORIAL FEATURE — elegant black "long read" split band.
   A full-bleed photograph paired with a pure-black panel: small eyebrow,
   italic serif headline, muted body copy and a gold-outlined button.
   Reusable across pages to give a section a quieter, more elegant register. */
.feature { display: grid; grid-template-columns: 1fr 1fr; background: #000; color: var(--cream); overflow: hidden; }
.feature-media { position: relative; overflow: hidden; min-height: 460px; }
.feature-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.feature:hover .feature-media img { transform: scale(1.04); }
.feature-badge { position: absolute; top: 20px; right: 20px; font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream); background: rgba(0,0,0,0.5); border: 1px solid rgba(255,255,255,0.28); padding: 6px 12px; border-radius: 2px; backdrop-filter: blur(2px); }
.feature-body { display: flex; flex-direction: column; justify-content: center; padding: clamp(40px, 5vw, 76px); }
.feature-eye { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(250,248,244,0.55); margin-bottom: 22px; }
.feature-title { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: clamp(28px, 3.4vw, 44px); line-height: 1.16; color: var(--cream); margin-bottom: 24px; }
.feature-text { font-family: var(--sans); font-weight: 300; font-size: 14px; line-height: 1.85; color: rgba(250,248,244,0.6); max-width: 48ch; margin-bottom: 20px; }
.feature-meta { font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.05em; text-transform: uppercase; color: rgba(250,248,244,0.4); margin-bottom: 34px; }
.feature-btn { align-self: flex-start; font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(201,168,108,0.5); padding: 15px 30px; transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease; }
.feature-btn:hover { background: var(--gold); color: #000; border-color: var(--gold); }
.feature--reverse .feature-media { order: 2; }
@media (max-width: 860px) {
  .feature { grid-template-columns: 1fr; }
  .feature--reverse .feature-media { order: 0; }
  .feature-media { min-height: 300px; }
  .feature-body { padding: 48px 24px; }
}

/* ============================================================
   LONG READS — an elegant, gallery-framed editorial collection.
   A deep ink canvas with generous breathing room, where each
   story's photograph sits as a fine gold-keyline plate beside
   slow, considered serif typography — a quiet, luxurious journal
   spread rather than a raw edge-to-edge band.
   ============================================================ */
.lr { position: relative; background:
    radial-gradient(130% 100% at 50% -8%, #18130d 0%, #0c0a08 58%, #080605 100%);
  color: var(--cream); padding: clamp(72px, 9vw, 152px) 0 clamp(64px, 8vw, 130px); overflow: hidden; }
.lr::before { content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(70% 44% at 50% 0%, rgba(201,168,108,0.08), transparent 72%); }
.lr-wrap { position: relative; max-width: 1200px; margin: 0 auto; padding: 0 clamp(24px, 5vw, 72px); }

/* Collection header */
.lr-head { text-align: center; max-width: 660px; margin: 0 auto clamp(56px, 7vw, 110px); padding: 0; }
.lr-eyebrow { display: inline-flex; align-items: center; gap: 14px; font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold); margin-bottom: 26px; }
.lr-eyebrow::before, .lr-eyebrow::after { content: ''; width: 40px; height: 1px; background: linear-gradient(90deg, transparent, rgba(201,168,108,0.6)); }
.lr-eyebrow::after { background: linear-gradient(90deg, rgba(201,168,108,0.6), transparent); }
.lr-h { font-family: var(--serif); font-weight: 400; font-size: clamp(40px, 5.4vw, 70px); line-height: 1.04; letter-spacing: -0.015em; color: var(--cream); }
.lr-h em { font-style: italic; color: var(--gold-light); }
.lr-sub { font-family: var(--sans); font-weight: 300; font-size: 15px; line-height: 1.85; color: rgba(250,248,244,0.56); margin-top: 24px; }

/* A single long-read row — contained, generous, alternating */
.lr-story { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5.5vw, 96px); align-items: center; padding: clamp(52px, 7vw, 104px) 0; }
.lr-story::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 64px; height: 1px; background: linear-gradient(90deg, transparent, rgba(201,168,108,0.55), transparent); }
.lr-story:first-of-type { padding-top: 0; }
.lr-story:first-of-type::before { display: none; }
.lr-story--flip .lr-media { order: 2; }

/* Framed image "plate" with a fine gold keyline */
.lr-media { position: relative; }
.lr-frame { position: relative; overflow: hidden; border-radius: var(--image-card-radius); box-shadow: 0 46px 90px -46px rgba(0,0,0,0.85), 0 0 0 1px rgba(0,0,0,0.4); }
.lr-frame::after { content: ''; position: absolute; inset: 0; border: 1px solid rgba(201,168,108,0.32); border-radius: var(--image-card-radius); box-shadow: inset 0 0 90px rgba(8,6,5,0.5); pointer-events: none; }
.lr-frame img { display: block; width: 100%; height: 100%; aspect-ratio: 5 / 6; object-fit: cover; transition: transform 1.4s cubic-bezier(0.2,0.7,0.2,1); }
.lr-story--lead .lr-frame img { aspect-ratio: 4 / 5; }
.lr-story:hover .lr-frame img { transform: scale(1.045); }
.lr-badge { position: absolute; top: 22px; left: 22px; z-index: 2; font-family: var(--sans); font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--cream); background: rgba(12,10,8,0.5); border: 1px solid rgba(201,168,108,0.45); padding: 7px 14px; border-radius: 100px; backdrop-filter: blur(3px); }

/* Refined index marker, set quietly into the body column */
.lr-index { position: absolute; top: -8px; right: 0; z-index: 2; font-family: var(--serif); font-style: italic; font-size: clamp(26px, 2.4vw, 34px); line-height: 1; color: rgba(201,168,108,0.5); }
.lr-index::before { content: 'No. '; font-size: 0.5em; letter-spacing: 0.12em; vertical-align: 0.4em; color: rgba(201,168,108,0.42); }
.lr-story--flip .lr-index { right: auto; left: 0; }

/* Editorial body */
.lr-body { position: relative; max-width: none; padding: clamp(8px, 1vw, 16px) 0; display: flex; flex-direction: column; justify-content: center; }
.lr-body > * { max-width: 44ch; }
.lr-eye { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(250,248,244,0.5); margin-bottom: 22px; }
.lr-title { font-family: var(--serif); font-style: italic; font-weight: 400; font-size: clamp(28px, 3.4vw, 46px); line-height: 1.14; letter-spacing: -0.01em; color: var(--cream); margin-bottom: 22px; }
.lr-story--lead .lr-title { font-size: clamp(32px, 4.2vw, 56px); }
.lr-text { font-family: var(--sans); font-weight: 300; font-size: 15px; line-height: 1.95; color: rgba(250,248,244,0.64); margin-bottom: 28px; }
.lr-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; color: rgba(250,248,244,0.42); margin-bottom: 34px; }
.lr-meta span { color: rgba(201,168,108,0.7); }
.lr-btn { align-self: flex-start; display: inline-flex; align-items: center; gap: 10px; font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(201,168,108,0.5); padding: 15px 32px; border-radius: 2px; transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, letter-spacing 0.3s ease; }
.lr-btn:hover { background: var(--gold); color: #0c0a08; border-color: var(--gold); letter-spacing: 0.22em; }

@media (max-width: 860px) {
  .lr-story, .lr-story--lead { grid-template-columns: 1fr; gap: 32px; }
  .lr-story--flip .lr-media { order: 0; }
  .lr-frame img, .lr-story--lead .lr-frame img { aspect-ratio: 3 / 2; }
  .lr-index { position: static; display: block; margin-bottom: 14px; }
  .lr-story--flip .lr-index { left: auto; }
  .lr-body { padding: 0; }
  .lr-body > * { max-width: none; }
}

/* DESTINATIONS GRID (home feature mosaic) */
.dest-grid { display: grid; grid-template-columns: repeat(5, 1fr); grid-template-rows: 240px 180px; gap: 10px; }
.dest-card { position: relative; overflow: hidden; border-radius: var(--image-card-radius); display: block; }
.dest-card--big { grid-row: span 2; }
.dest-card:hover .dest-img { transform: scale(1.06); }
.dest-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.dest-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,22,18,0.78) 0%, rgba(26,22,18,0.08) 55%); transition: opacity 0.3s; }
.dest-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 14px 16px; }
.dest-tag { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 3px; }
.dest-name { font-family: var(--serif); font-size: 19px; font-weight: 400; color: var(--white); line-height: 1.15; }
.dest-card--big .dest-name { font-size: 26px; }

/* EXPERIENCES */
.exp-sec { background: var(--white); }
.exp-tabs { display: flex; gap: 6px; margin-bottom: 28px; flex-wrap: wrap; }
.exp-tab { font-size: 12px; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; padding: 7px 16px; border-radius: 20px; border: 1px solid var(--ink-15); background: transparent; color: var(--ink-70); cursor: pointer; transition: all 0.15s; }
.exp-tab.active, .exp-tab:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.exp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.exp-card { border-radius: var(--image-card-radius); overflow: hidden; border: 1px solid var(--ink-15); transition: box-shadow 0.2s, transform 0.2s; display: block; }
.exp-card:hover { box-shadow: 0 8px 28px rgba(26,22,18,0.10); transform: translateY(-2px); }
.exp-card:hover .exp-img { transform: scale(1.05); }
.exp-img-wrap { height: 176px; overflow: hidden; position: relative; }
.exp-img { height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.exp-badge { position: absolute; top: 10px; left: 10px; background: var(--ink); color: var(--white); font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 8px; border-radius: 2px; }
.exp-badge--s { background: var(--gold); }
.exp-body { padding: 14px 16px 16px; background: var(--white); }
.exp-cat { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.exp-title { font-family: var(--serif); font-size: 18px; font-weight: 400; line-height: 1.25; margin-bottom: 6px; color: var(--ink); }
.exp-meta { font-size: 12px; color: var(--ink-40); display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.exp-stars { color: var(--gold); font-size: 11px; }
.exp-foot { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--ink-06); padding-top: 11px; }
.exp-price { font-size: 13px; font-weight: 600; color: var(--ink); }
.exp-price span { font-size: 11px; font-weight: 400; color: var(--ink-40); }
.exp-btn { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); }

/* STORIES */
.stories-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 16px; }
.story-card { display: block; }
.story-card:hover .story-img { transform: scale(1.04); }
.story-img-wrap { border-radius: var(--image-card-radius); overflow: hidden; margin-bottom: 13px; }
.story-img { width: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.story-lead .story-img { height: 310px; }
.story-small .story-img { height: 180px; }
.story-cat { font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 5px; }
.story-title { font-family: var(--serif); font-size: 19px; font-weight: 400; line-height: 1.25; margin-bottom: 7px; color: var(--ink); }
.story-lead .story-title { font-size: 25px; }
.story-excerpt { font-size: 13px; color: var(--ink-70); line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; margin-bottom: 8px; }
.story-meta { font-size: 11px; color: var(--ink-40); display: flex; gap: 6px; align-items: center; }
.story-dot { opacity: 0.4; }

/* EVENTS */
.events-sec { background: var(--ink); color: var(--white); }
.events-sec .sec-title { color: var(--white); }
.events-sec .sec-link { color: var(--gold); }
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.ev-card { position: relative; overflow: hidden; height: 272px; border-radius: var(--image-card-radius); display: block; }
.ev-card:hover .ev-img { transform: scale(1.05); }
.ev-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.ev-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,22,18,0.88) 0%, rgba(26,22,18,0.18) 60%); }
.ev-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; }
.ev-status { display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 8px; border-radius: 2px; margin-bottom: 8px; }
.ev-now { background: #E05C3A; color: white; }
.ev-season { background: var(--gold); color: white; }
.ev-soon { background: rgba(255,255,255,0.18); color: white; }
.ev-cat { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.ev-title { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--white); line-height: 1.2; margin-bottom: 5px; }
.ev-date { font-size: 12px; color: rgba(255,255,255,0.45); }

/* PLAN */
.plan-sec { background: var(--gold-soft); border-top: 1px solid rgba(201,168,108,0.20); border-bottom: 1px solid rgba(201,168,108,0.20); padding: 80px 56px; text-align: center; }
.plan-eye { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.plan-title { font-family: var(--serif); font-size: clamp(30px, 4.5vw, 50px); font-weight: 300; line-height: 1.12; margin-bottom: 14px; }
.plan-title em { font-style: italic; }
.plan-sub { font-size: 15px; color: var(--ink-70); max-width: 440px; margin: 0 auto 32px; line-height: 1.65; }
.plan-opts { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.plan-opt { background: var(--white); border: 1px solid var(--ink-15); border-radius: var(--r); padding: 11px 22px; font-size: 13px; font-weight: 500; color: var(--ink); cursor: pointer; transition: all 0.15s; font-family: var(--sans); }
.plan-opt:hover { border-color: var(--gold); color: var(--gold); }
.plan-opt.sel { background: var(--ink); color: var(--white); border-color: var(--ink); }
.plan-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-p { background: var(--ink); color: var(--white); font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: 0.06em; padding: 14px 30px; border-radius: var(--r); border: none; cursor: pointer; transition: background 0.15s; display: inline-block; }
.btn-p:hover { background: var(--gold); }
.btn-s { background: transparent; color: var(--ink); font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: 0.06em; padding: 14px 30px; border-radius: var(--r); border: 1.5px solid var(--ink-40); cursor: pointer; transition: all 0.15s; display: inline-block; }
.btn-s:hover { border-color: var(--ink); }

/* NEWSLETTER — "Stay connected" dark subscribe band (home only) */
.nl { background: #000; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: stretch; padding: 80px 56px; }
.nl-text { display: flex; flex-direction: column; justify-content: center; }
.nl-eye { font-family: var(--sans); font-size: 9px; font-weight: 500; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; text-align: left; }
.nl-head { font-family: var(--serif); font-size: clamp(40px, 5vw, 60px); font-weight: 600; line-height: 1.0; color: var(--gold); margin-bottom: 6px; text-align: left; }
.nl-head em { font-style: italic; font-weight: 400; color: var(--gold); }
.nl-logo-img { display: block; width: clamp(300px, 40vw, 460px); height: auto; }
.divider-gold { width: 48px; height: 1px; background: var(--gold); border: none; margin: 24px 0; }
.nl-copy { font-family: var(--sans); font-size: 12px; font-weight: 300; color: rgba(240,235,227,0.45); line-height: 1.9; max-width: 480px; margin-bottom: 28px; }
.nl-form { display: flex; gap: 0; max-width: 480px; }
.nl-input { flex: 1; min-width: 0; background: rgba(240,235,227,0.05); border: 0.5px solid rgba(240,235,227,0.12); color: #f5f0e8; padding: 16px 20px; font-family: var(--sans); font-size: 12px; outline: none; }
.nl-input::placeholder { color: rgba(240,235,227,0.25); }
.nl-input:focus { border-color: rgba(201,168,108,0.4); }
.nl-btn { background: var(--gold); color: var(--ink); border: none; padding: 16px 28px; font-family: var(--sans); font-size: 10px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; transition: background 0.3s; white-space: nowrap; }
.nl-btn:hover { background: var(--gold-light); }
.nl-hp { position: absolute; left: -9999px; }
.nl-note { font-family: var(--sans); font-size: 10px; color: rgba(240,235,227,0.2); margin-top: 12px; }
.nl-media { display: block; }
.nl-img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; display: block; }
@media (max-width: 860px) {
  .nl { grid-template-columns: 1fr; gap: 40px; padding: 56px 24px; }
  .nl-media { order: -1; }
  .nl-img { height: auto; aspect-ratio: 4/3; }
  .nl-form { flex-wrap: wrap; }
}

/* FOOTER */
.footer { background: #0E0B08; color: #F0EBE3; padding: 60px 56px 36px; border-top: 1px solid rgba(201,168,108,0.18); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-logo { margin-bottom: 12px; }
.footer-logo em { font-style: italic; font-weight: 300; }
.footer-logo-img { display: block; width: auto; height: 24px; }
.footer-tagline { font-size: 13px; color: rgba(240,235,227,0.4); line-height: 1.65; margin-bottom: 22px; }
.footer-socials { display: flex; gap: 10px; }
.footer-soc { width: 30px; height: 30px; border: 1px solid rgba(201,168,108,0.28); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(240,235,227,0.5); font-size: 11px; transition: all 0.15s; font-style: normal; }
.footer-soc:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-t { font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 13px; color: rgba(240,235,227,0.55); transition: color 0.15s; }
.footer-links a:hover { color: var(--gold); }
.footer-bot { border-top: 1px solid rgba(201,168,108,0.14); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-size: 12px; color: rgba(240,235,227,0.3); letter-spacing: 0.02em; }
.footer-bot-links { display: flex; gap: 20px; list-style: none; }
.footer-bot-links a { font-size: 12px; color: rgba(240,235,227,0.3); transition: color 0.15s; }
.footer-bot-links a:hover { color: var(--gold); }

/* DESTINATION CARDS - LP style */
.dcard-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.dcard { display: block; border-bottom: 1px solid var(--ink-15); padding-bottom: 20px; }
.dcard:hover .dcard-img-wrap img { transform: scale(1.04); }
.dcard-img-wrap { overflow: hidden; border-radius: var(--image-card-radius); margin-bottom: 14px; }
.dcard-img-wrap img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s ease; display: block; }
.dcard-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.dcard-region { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-40); }
.dcard-temp { font-size: 11px; color: var(--ink-40); }
.dcard-title { font-family: var(--serif); font-size: 17px; font-weight: 400; line-height: 1.3; color: var(--ink); margin-bottom: 14px; }
.dcard-btn { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; border: 1.5px solid var(--ink-40); border-radius: 20px; padding: 6px 16px; color: var(--ink-70); transition: all 0.15s; }
.dcard:hover .dcard-btn { background: #C9A86C; color: #1A1612; border-color: #C9A86C; }

/* ITINERARY CARDS - LP style */
.itin-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.itin-card { display: block; border-bottom: 1px solid var(--ink-15); padding-bottom: 20px; transition: opacity 0.2s; }
.itin-card:hover { opacity: 0.85; }
.itin-card:hover .itin-img-wrap img { transform: scale(1.04); }
.itin-img-wrap { overflow: hidden; border-radius: var(--image-card-radius); margin-bottom: 14px; position: relative; }
.itin-img-wrap img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.5s ease; display: block; }
.itin-badge { position: absolute; top: 10px; left: 10px; background: var(--ink); color: var(--white); font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 8px; border-radius: 2px; }
.itin-badge--s { background: var(--gold); }
.itin-dur { font-size: 11px; font-weight: 500; letter-spacing: 0.04em; color: var(--ink-40); text-transform: uppercase; margin-bottom: 8px; }
.itin-temp { color: var(--gold); }
.itin-title { font-family: var(--serif); font-size: 18px; font-weight: 400; line-height: 1.3; color: var(--ink); margin-bottom: 16px; }
.itin-foot { display: flex; align-items: flex-end; justify-content: space-between; }
.itin-book { font-size: 11px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--ink); margin-bottom: 2px; }
.itin-price { font-size: 12px; color: var(--ink-40); }
.itin-price strong { color: var(--ink); font-size: 16px; font-weight: 600; }

/* LP STORIES ROW */
.lp-stories-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; overflow-x: auto; scroll-snap-type: x mandatory; -ms-overflow-style: none; scrollbar-width: none; }
.lp-stories-row::-webkit-scrollbar { display: none; }
.lp-story { scroll-snap-align: start; }
.lp-story { display: block; }
.lp-story:hover .lp-story-img img { transform: scale(1.04); }
.lp-story-img { overflow: hidden; border-radius: var(--image-card-radius); margin-bottom: 14px; }
.lp-story-img img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.5s ease; display: block; }
.lp-story-meta { font-size: 11px; font-weight: 500; letter-spacing: 0.04em; color: var(--ink-40); text-transform: uppercase; margin-bottom: 8px; }
.lp-story-title { font-family: var(--serif); font-size: 19px; font-weight: 400; line-height: 1.3; color: var(--ink); margin-bottom: 14px; }
.lp-story-btn { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; border: 1.5px solid var(--ink-40); border-radius: 20px; padding: 6px 16px; color: var(--ink-70); transition: all 0.15s; }
.lp-story:hover .lp-story-btn { border-color: var(--ink); color: var(--ink); }

/* SCROLL BUTTONS */
.scroll-btn { background: var(--cream); border: 1.5px solid var(--ink-15); width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 14px; display: flex; align-items: center; justify-content: center; transition: all 0.15s; color: var(--ink-70); }
.scroll-btn:hover { border-color: var(--ink); color: var(--ink); }
.scroll-btn--dark { background: var(--ink); color: var(--white); border-color: var(--ink); }
.scroll-btn--dark:hover { background: var(--gold); border-color: var(--gold); }

/* ============================================================
   INNER PAGES (added for the multi-page build)
   ============================================================ */

/* PAGE HERO — compact banner for inner pages */
.phero { position: relative; min-height: 360px; display: flex; align-items: flex-end; overflow: hidden; }
.phero--tall { min-height: 460px; }
.phero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.phero-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(26,22,18,0.82) 0%, rgba(26,22,18,0.25) 60%, rgba(26,22,18,0.35) 100%); }
.phero-in { position: relative; z-index: 2; width: 100%; max-width: none; margin: 0; padding: 36px 56px; color: var(--white); }
.phero-eye { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-bottom: 12px; }
.phero-h1 { font-family: var(--serif); font-size: clamp(34px, 6vw, 60px); font-weight: 300; line-height: 1.06; color: var(--white); margin-bottom: 12px; }
.phero-h1 em { font-style: italic; }
.phero-sub { font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.78); max-width: 560px; }
.phero-facts { display: flex; flex-wrap: wrap; gap: 26px; margin-top: 20px; }
.phero-fact { color: rgba(255,255,255,0.85); }
.phero-fact b { display: block; font-family: var(--serif); font-size: 22px; font-weight: 400; line-height: 1; margin-bottom: 4px; }
.phero-fact span { font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); }

/* ============================================================
   STANDARDIZED PAGE HEADER
   Shared by Destinations, Experiences, Inspiration and
   Hotels + Flights. Extends .phero with a taller cinematic
   banner, a gold eyebrow rule, a gold italic last word, and a
   four-stat row separated by gold hairlines. All-new class names
   (.phero--std, .phero-stats, .phero-stat) so the destination and
   event pages that use the plain .phero / .phero-facts are
   unaffected.
   ============================================================ */
.phero--std { min-height: 70vh; }
.phero--std .phero-bg { transform: scale(1.04); animation: pheroDrift 18s ease-out forwards; }
@keyframes pheroDrift { to { transform: scale(1); } }
.phero--std .phero-ov { background: linear-gradient(to top, rgba(14,11,8,0.88) 0%, rgba(14,11,8,0.28) 52%, rgba(14,11,8,0.42) 100%); }
.phero--std .phero-in { padding-top: 56px; padding-bottom: 52px; }
.phero--std .phero-eye { display: inline-flex; align-items: center; gap: 13px; font-weight: 600; letter-spacing: 0.2em; color: var(--gold); }
.phero--std .phero-eye::after { content: ''; width: 42px; height: 1px; background: var(--gold); opacity: 0.7; }
.phero--std .phero-h1 { font-size: clamp(40px, 6.2vw, 72px); letter-spacing: -0.01em; }
.phero--std .phero-h1 em { font-style: italic; color: var(--gold-light); }
.phero--std .phero-sub { line-height: 1.75; }

/* four data points, hairline dividers, large serif numerals */
.phero-stats { display: flex; flex-wrap: wrap; gap: clamp(24px, 4vw, 54px); margin-top: clamp(34px, 5vh, 56px); }
.phero-stat { position: relative; padding-left: clamp(24px, 4vw, 54px); }
.phero-stat::before { content: ''; position: absolute; left: 0; top: 4px; bottom: 8px; width: 1px; background: rgba(201,168,108,0.34); }
.phero-stat:first-child { padding-left: 0; }
.phero-stat:first-child::before { display: none; }
.phero-stat b { display: block; font-family: var(--serif); font-weight: 300; font-size: clamp(56px, 5.6vw, 64px); line-height: 1; color: var(--white); }
.phero-stat span { display: block; margin-top: 10px; font-size: 10px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(250,248,244,0.6); max-width: 15ch; }

@media (max-width: 560px) {
  .phero-stats { gap: 20px; }
  .phero-stat { padding-left: 20px; }
  .phero-stat b { font-size: 46px; }
}

/* BREADCRUMB */
.crumb { max-width: none; margin: 0; padding: 16px 56px 0; font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-40); }
.crumb a { color: var(--ink-40); }
.crumb a:hover { color: var(--ink); }
.crumb span { margin: 0 7px; opacity: 0.5; }

/* PROSE / ARTICLE BODY */
.prose p { font-size: 16px; line-height: 1.75; color: var(--ink-70); margin-bottom: 20px; }
.prose p:first-of-type { font-size: 18px; color: var(--ink); }
.prose h2 { font-family: var(--serif); font-size: 30px; font-weight: 400; margin: 40px 0 14px; }
.prose h3 { font-family: var(--serif); font-size: 22px; font-weight: 500; margin: 28px 0 10px; }
.prose ul { margin: 0 0 20px 20px; }
.prose li { font-size: 16px; line-height: 1.7; color: var(--ink-70); margin-bottom: 8px; }
.prose strong { color: var(--ink); }

/* LEAD GRID for destination pages: content + sticky sidebar */
.guide-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.guide-side { position: sticky; top: 80px; }
.factbox { background: var(--white); border: 1px solid var(--ink-15); border-radius: 6px; padding: 22px 24px; margin-bottom: 20px; }
.factbox h4 { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-40); margin-bottom: 14px; }
.factbox-row { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-top: 1px solid var(--ink-06); font-size: 13px; }
.factbox-row:first-of-type { border-top: none; }
.factbox-row span { color: var(--ink-40); }
.factbox-row b { color: var(--ink); font-weight: 500; text-align: right; }
.tipbox { background: var(--gold-soft); border: 1px solid rgba(201,168,108,0.28); border-radius: 6px; padding: 20px 22px; }
.tipbox h4 { font-size: 10px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.tipbox p { font-size: 14px; line-height: 1.6; color: var(--ink-70); }

/* HIGHLIGHTS chips */
.hl-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin: 8px 0 8px; }
.hl-item { display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; background: var(--white); border: 1px solid var(--ink-15); border-radius: 6px; }
.hl-num { font-family: var(--serif); font-size: 22px; color: var(--gold); line-height: 1; flex-shrink: 0; }
.hl-item p { font-size: 14px; line-height: 1.5; color: var(--ink-70); margin: 0; }
.hl-item b { display: block; color: var(--ink); font-weight: 600; font-size: 14px; margin-bottom: 2px; }

/* STAY CARDS */
.stay-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.stay-card { border: 1px solid var(--ink-15); border-radius: 6px; padding: 18px 20px; background: var(--white); }
.stay-type { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.stay-name { font-family: var(--serif); font-size: 19px; font-weight: 400; margin-bottom: 6px; }
.stay-card p { font-size: 13px; color: var(--ink-70); line-height: 1.55; }

/* SIMPLE CONTENT BLOCKS */
.lede { font-size: 17px; line-height: 1.7; color: var(--ink-70); max-width: 640px; margin-bottom: 8px; }
.divider { height: 1px; background: var(--ink-15); border: none; margin: 0; }

/* INFO / FEATURE TILES */
.tile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.tile { background: var(--white); border: 1px solid var(--ink-15); border-radius: 6px; padding: 26px 24px; }
.tile-ico { font-size: 24px; margin-bottom: 12px; }
.tile h3 { font-family: var(--serif); font-size: 21px; font-weight: 400; margin-bottom: 8px; }
.tile p { font-size: 14px; color: var(--ink-70); line-height: 1.6; }

/* FORM */
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-40); margin-bottom: 7px; }
.form-row input, .form-row select, .form-row textarea { width: 100%; font-family: var(--sans); font-size: 14px; color: var(--ink); padding: 12px 14px; border: 1px solid var(--ink-15); border-radius: var(--r); background: var(--white); outline: none; transition: border-color 0.15s; }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { border-color: var(--gold); }
.form-row textarea { resize: vertical; min-height: 110px; }
.form-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: 12px; color: var(--ink-40); margin-top: 6px; }

/* SOCIAL GRID */
.social-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.social-tile { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: var(--image-card-radius); display: block; }
.social-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.social-tile:hover img { transform: scale(1.06); }
.social-tile-ov { position: absolute; inset: 0; background: rgba(26,22,18,0.0); display: flex; align-items: flex-end; padding: 12px; transition: background 0.2s; }
.social-tile:hover .social-tile-ov { background: rgba(26,22,18,0.35); }
.social-tile-ov span { font-size: 11px; color: var(--white); opacity: 0; transition: opacity 0.2s; }
.social-tile:hover .social-tile-ov span { opacity: 1; }

/* LIVE / STATS */
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--ink-15); border: 1px solid var(--ink-15); border-radius: 6px; overflow: hidden; }
.stat { background: var(--white); padding: 26px 22px; }
.stat b { display: block; font-family: var(--serif); font-size: 34px; font-weight: 400; line-height: 1; margin-bottom: 8px; }
.stat span { font-size: 11px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-40); }
.stat em { color: var(--gold); font-style: normal; }

/* RESULTS / SEARCH */
.search-bar { display: flex; max-width: 640px; border: 1px solid var(--ink-15); border-radius: 6px; overflow: hidden; background: var(--white); margin-bottom: 8px; }
.search-bar input { flex: 1; border: none; outline: none; font-family: var(--sans); font-size: 15px; padding: 15px 18px; }
.search-bar button { background: var(--ink); color: var(--white); border: none; cursor: pointer; padding: 0 24px; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; transition: background 0.15s; }
.search-bar button:hover { background: var(--gold); }
.result-list { list-style: none; }
.result-item { display: flex; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--ink-15); }
.result-item img { width: 120px; height: 84px; object-fit: cover; border-radius: var(--image-card-radius); flex-shrink: 0; }
.result-item .r-cat { font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.result-item .r-title { font-family: var(--serif); font-size: 19px; font-weight: 400; margin-bottom: 4px; }
.result-item .r-desc { font-size: 13px; color: var(--ink-70); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .dcard-grid { grid-template-columns: repeat(2, 1fr); }
  .itin-grid { grid-template-columns: repeat(2, 1fr); }
  .lp-stories-row { grid-template-columns: repeat(2, 1fr); }
  .exp-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .guide-layout { grid-template-columns: 1fr; }
  .guide-side { position: static; }
  .stay-grid { grid-template-columns: repeat(2, 1fr); }
  .tile-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .social-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .sec { padding: 48px 20px; }
  .dcard-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .itin-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .lp-stories-row { grid-template-columns: 1fr 1fr; gap: 16px; }
  .events-grid { grid-template-columns: 1fr; }
  .ev-card { height: 220px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bot { flex-direction: column; gap: 12px; text-align: center; }
  .plan-ctas { flex-direction: column; align-items: center; }
  .stories-grid { grid-template-columns: 1fr; }
  .hl-list { grid-template-columns: 1fr; }
  .form-grid2 { grid-template-columns: 1fr; }
  .phero-in { padding: 28px 20px; }
  .hero { min-height: clamp(480px, 80vh, 640px); padding: 72px 22px 64px; gap: 34px; }
  .hero-content { max-width: 540px; }
  .crumb { padding: 14px 20px 0; }
  .footer { padding: 48px 20px 32px; }
  .plan-sec { padding: 56px 20px; }
}
@media (max-width: 480px) {
  .dcard-grid { grid-template-columns: 1fr; }
  .itin-grid { grid-template-columns: 1fr; }
  .lp-stories-row { grid-template-columns: 1fr; }
  .hero-h1 { font-size: clamp(2.1rem, 10vw, 2.6rem); line-height: 1.08; letter-spacing: -0.5px; }
  .hero-quote-text { font-size: clamp(2.1rem, 10vw, 2.6rem); line-height: 1.08; letter-spacing: -0.5px; }
  .hw-place { min-width: 33.333%; padding: 15px 8px; }
  .hw-place:nth-child(n+4) { display: none; }
  .hw-temp { font-size: 24px; }
  .stay-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   STORY RAIL — content-discovery navigation (shared, additive)
   An Instagram-stories style strip placed at the top of content
   pages. It lets readers hop between related destinations and
   themes without returning to the main menu. Purely a discovery
   layer: it touches no existing colour, type, layout or content.
   Rendered into [data-srail] mounts by site.js; the mount stays
   collapsed until hydrated so there is never an empty band.
   ============================================================ */
.srail { background: var(--cream); border-bottom: 1px solid var(--ink-06); }
.srail:empty { display: none; }

.srail-head {
  display: flex; align-items: baseline; gap: 14px;
  padding: 16px clamp(20px, 5vw, 56px) 2px;
}
.srail-eye {
  font-family: var(--sans); font-size: 10px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
}
.srail-hint {
  font-family: var(--sans); font-size: 11px; font-weight: 400;
  letter-spacing: 0.02em; color: var(--ink-40);
}

/* Horizontal, swipeable row of circular destination "stories". */
.srail-in {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 14px clamp(20px, 5vw, 56px) 4px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; scroll-snap-type: x proximity;
}
.srail-in::-webkit-scrollbar { display: none; }

.srail-item {
  flex: 0 0 auto; width: 76px;
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  text-align: center; scroll-snap-align: start;
}
.srail-ring {
  width: 64px; height: 64px; border-radius: 50%; padding: 2.5px;
  position: relative; box-sizing: border-box;
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, #b78f4f);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.srail-ring::after {
  content: ""; position: absolute; inset: 2.5px;
  border-radius: 50%; border: 2px solid var(--cream); pointer-events: none;
}
.srail-ph {
  display: block; width: 100%; height: 100%; border-radius: 50%;
  background-size: cover; background-position: center;
}
.srail-item:hover .srail-ring {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26,22,18,0.16);
}
.srail-label {
  font-family: var(--sans); font-size: 11px; font-weight: 500;
  line-height: 1.25; letter-spacing: 0.01em; color: var(--ink-70);
  max-width: 76px;
}
/* Current page — "you are here": fuller ring + a small gold dot. */
.srail-item--active .srail-ring {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 0 0 1px rgba(201,168,108,0.45);
}
.srail-item--active .srail-ring::before {
  content: ""; position: absolute; right: 1px; bottom: 1px; z-index: 2;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--gold); border: 2px solid var(--cream);
}
.srail-item--active .srail-label { color: var(--ink); font-weight: 600; }

/* Theme chips — "Beaches · Surf · Food · Culture · Hotels · Experiences". */
.srail-themes {
  display: flex; gap: 9px;
  padding: 4px clamp(20px, 5vw, 56px) 16px;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.srail-themes::-webkit-scrollbar { display: none; }
.srail-chip {
  flex: 0 0 auto; white-space: nowrap;
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-70);
  border: 1px solid var(--ink-15); border-radius: 999px; padding: 8px 16px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.srail-chip:hover { color: var(--ink); border-color: var(--gold); background: var(--gold-soft); }

@media (max-width: 600px) {
  .srail-in { gap: 16px; }
  .srail-item { width: 66px; }
  .srail-ring { width: 56px; height: 56px; }
  .srail-label { font-size: 10.5px; max-width: 66px; }
}
@media (prefers-reduced-motion: reduce) {
  .srail-ring, .srail-chip { transition: none; }
}


/* ═══════════════════════════════════════════════════════════════
   UNIFIED SITE BUTTON — matches the homepage primary CTA
   (the "Plan your trip" / "Explore The Journal" gold pill buttons).
   .btn-primary  = solid gold pill (primary action)
   .btn-ghost    = outlined gold pill (secondary action)
   Doubled class raises specificity so it wins over the older
   per-component button classes without needing !important.
   ═══════════════════════════════════════════════════════════════ */
.btn-primary.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; line-height: 1;
  text-transform: uppercase; text-decoration: none; white-space: nowrap;
  color: #1A1612; background: #C9A86C;
  border: none; border-radius: 100px; padding: 15px 32px; width: auto; height: auto;
  cursor: pointer;
  transition: gap .28s ease, background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.btn-primary.btn-primary::after { content: "→"; font-size: 13px; line-height: 1; transition: transform .25s ease; border: none; }
.btn-primary.btn-primary::before { content: none; }
.btn-primary.btn-primary:hover { background: #E0BF80; color: #1A1612; gap: 15px; transform: translateY(-2px); box-shadow: 0 16px 34px -14px rgba(201,168,108,0.75); }
.btn-primary.btn-primary:focus-visible { outline: 2px solid #C9A86C; outline-offset: 4px; }

.btn-ghost.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center; gap: 11px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em; line-height: 1;
  text-transform: uppercase; text-decoration: none; white-space: nowrap;
  color: #C9A86C; background: transparent;
  border: 1px solid #C9A86C; border-radius: 100px; padding: 14px 31px; width: auto; height: auto;
  cursor: pointer;
  transition: gap .28s ease, background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.btn-ghost.btn-ghost::after { content: "→"; font-size: 13px; line-height: 1; transition: transform .25s ease; border: none; }
.btn-ghost.btn-ghost::before { content: none; }
.btn-ghost.btn-ghost:hover { background: #C9A86C; color: #1A1612; gap: 15px; transform: translateY(-2px); box-shadow: 0 16px 34px -14px rgba(201,168,108,0.75); }
.btn-ghost.btn-ghost:focus-visible { outline: 2px solid #C9A86C; outline-offset: 4px; }

/* ═══════════════════════════════════════════════════════════════
   CTA / text links must never show an underline — including on
   hover. Page-level <style> blocks load after this file, so these
   rules use !important to win the cascade on every page. Pill-button
   arrow (→) and nav tab active-indicators are intentionally excluded.
   ═══════════════════════════════════════════════════════════════ */
.sec-link, .sec-link:hover, .sec-link:focus,
.section-link-gold, .section-link-gold:hover, .section-link-gold:focus,
.btn-outline-dark:not(.btn-ghost), .btn-outline-dark:not(.btn-ghost):hover,
.btn-outline-light:not(.btn-ghost), .btn-outline-light:not(.btn-ghost):hover,
.dcard-cta, .dcard-cta:hover, .dcard:hover .dcard-cta,
.dsc-cta, .dsc-cta:hover, .dsc-card:hover .dsc-cta,
.xp-viewall, .xp-viewall:hover,
.lstories-viewall, .lstories-viewall:hover,
.lstory-btn, .lstory-btn:hover, .lstory:hover .lstory-btn,
.itin-book, .itin-book:hover,
.stay-web, .stay-web:hover {
  text-decoration: none !important;
  border-bottom: 0 !important;
}
/* Kill the animated gold underline pseudo-elements on text-link CTAs. */
.sec-link::after,
.dsc-cta::after {
  display: none !important;
}
