/* ==========================================================================
   Guide page (Vol. I-X) — shared layout for all 10 honeymoon guide pages.
   Loaded after tokens.css + components.css.
   ========================================================================== */

/* ─── Hero ─────────────────────────────────────────────────────────────── */
.gp-hero {
  position: relative;
  /* Mobile fold: 80vh = 454px on iPhone SE which is fine, but 100dvh
     accounts for browser-chrome. Cap at 100dvh so URL bar resize doesn't
     leave the buy CTA awkwardly far down on iOS Safari. */
  min-height: min(80vh, 720px);
  display: flex;
  align-items: flex-end;
  color: var(--cream);
  overflow: hidden;
}
.gp-hero-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
  transform: scale(1.02);
}
/* Placeholder hero for guides whose imagery isn't yet sourced — same
   brand-tinted gradient as the card placeholders, so the page stays on-
   brand without misrepresenting the destination. */
.gp-hero-img--placeholder {
  background-image: none !important;
  background:
    linear-gradient(135deg,
      color-mix(in srgb, var(--terracotta) 22%, var(--cream-warm)) 0%,
      color-mix(in srgb, var(--gold-light) 18%, var(--cream-warm)) 100%) !important;
  filter: none;
  transform: none;
}
.gp-hero-img--placeholder + .gp-hero-overlay {
  background: linear-gradient(180deg, rgba(31,31,31,0.04) 30%, rgba(31,31,31,0.18) 100%);
}
.gp-hero:has(.gp-hero-img--placeholder) {
  color: var(--ink);
}
.gp-hero:has(.gp-hero-img--placeholder) .gp-hero-eyebrow,
.gp-hero:has(.gp-hero-img--placeholder) .gp-hero-deck { color: var(--text2); }
.gp-hero:has(.gp-hero-img--placeholder) .gp-hero-title { color: var(--terracotta-deep, var(--accent)); }
.gp-hero:has(.gp-hero-img--placeholder) .gp-hero-back { color: var(--text2); }
.gp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,31,31,0.10) 30%, rgba(31,31,31,0.70) 100%);
}
.gp-hero-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
  /* Top padding floor 48 → 32px on phones so the hero composition sits
     comfortably without forcing a tall hero on small screens. */
  padding: clamp(32px,7vw,96px) clamp(24px,5vw,64px);
  width: 100%;
  margin: 0 auto;
}
/* Eyebrow refined to match page-header-eyebrow vocabulary: tighter
   tracking (0.28 → 0.20em pairs better with H1's tight -0.012em),
   uses --fs-label-sm token, and gets a leading hairline rule that
   matches the editorial mark used on hub pages. */
.gp-hero-eyebrow {
  font-family: var(--sans);
  font-size: var(--fs-label-sm, 0.72rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-a85, rgba(244,241,236,0.85));
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
/* Eyebrow leading-rule removed site-wide for visual consistency. */
.gp-hero-title {
  font-family: var(--serif);
  font-weight: 400;
  /* Lower min from 2.6rem so multi-word titles don't overflow at 375px. */
  font-size: clamp(2.1rem,6.5vw,5.4rem);
  line-height: 1.02;
  letter-spacing: -0.012em;
  color: var(--cream);
  /* Title → deck rhythm tightened 22 → 18px to match the page-header
     gap cadence (24px desktop / 16px mobile). */
  margin: 0 0 18px;
  text-wrap: balance;
}
.gp-hero-deck {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem,1.7vw,1.5rem);
  line-height: 1.45;
  color: var(--cream-a92, rgba(244,241,236,0.92));
  max-width: 600px;
  /* Deck → CTA row 36 → 28px. The CTA row has its own vertical weight;
     no need for an extra-large gap above it. */
  margin: 0 0 28px;
}
@media (max-width: 640px) {
  .gp-hero-title { margin-bottom: 14px; }
  .gp-hero-deck  { margin-bottom: 22px; }
  .gp-hero-eyebrow { margin-bottom: 12px; }
}
.gp-hero-cta-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.gp-hero-back {
  font-family: var(--sans);
  font-size: var(--fs-label-sm, 0.72rem);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-a70, rgba(244,241,236,0.7));
  text-decoration: none;
  transition: color 240ms var(--ease-editorial);
}
.gp-hero-back:hover { color: var(--cream); }

/* ─── Buy buttons ──────────────────────────────────────────────────────── */
.gp-buy-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  background: var(--terracotta);
  color: #fff;
  border: 0;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 280ms var(--ease-editorial),
    transform 280ms var(--ease-editorial),
    box-shadow 280ms var(--ease-editorial);
  box-shadow: 0 12px 30px -12px rgba(140,79,47,0.45);
}
.gp-buy-btn:hover { background: var(--terracotta-deep); transform: translateY(-1px); box-shadow: 0 18px 36px -10px rgba(140,79,47,0.55); }
.gp-buy-btn[disabled] { opacity: 0.4; cursor: not-allowed; transform: none; }
.gp-buy-btn--big { padding: 22px 44px; font-size: 0.86rem; letter-spacing: 0.22em; }

/* ─── Stats strip ──────────────────────────────────────────────────────── */
.gp-stats { background: var(--ink); color: var(--cream); }
.gp-stats-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(28px,4vw,48px) clamp(24px,5vw,64px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 700px) { .gp-stats-inner { grid-template-columns: 1fr 1fr; gap: 24px; } }
.gp-stat { display: flex; flex-direction: column; gap: 4px; align-items: flex-start; padding: 8px 0; border-left: 1px solid rgba(244,241,236,0.15); padding-left: 18px; }
.gp-stat:first-child { border-left: 0; padding-left: 0; }
@media (max-width: 700px) { .gp-stat { border-left: 0; padding-left: 0; } }
.gp-stat-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2rem,3.5vw,2.8rem);
  line-height: 1;
  color: var(--gold-light);
}
.gp-stat-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,241,236,0.65);
}

/* ─── Sections ─────────────────────────────────────────────────────────── */
.gp-section { background: var(--cream); }
.gp-section-inner,
.gp-sample-inner,
.gp-buy-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(64px,8vw,120px) clamp(24px,5vw,64px);
}
.gp-eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 18px;
}
.gp-h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem,3.5vw,2.8rem);
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 36px;
  text-wrap: balance;
}

/* ─── "What's inside" 4-up grid ───────────────────────────────────────── */
.gp-inside-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px,4vw,56px) clamp(40px,5vw,72px);
}
@media (max-width: 700px) { .gp-inside-grid { grid-template-columns: 1fr; } }
.gp-inside-item { padding-top: 22px; border-top: 1px solid var(--border-visible); }
.gp-inside-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--terracotta);
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.gp-inside-h3 {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 12px;
}
.gp-inside-body {
  font-family: var(--sans);
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
}

/* ─── Sneak preview: first 3 days + locked gate ────────────────────────── */
.gp-preview { background: var(--cream-warm); }
.gp-preview-inner { max-width: 820px; margin: 0 auto; padding: clamp(64px,8vw,120px) clamp(24px,5vw,64px); }
.gp-preview-lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem,1.4vw,1.25rem);
  color: var(--text2);
  margin: 0 0 48px;
  line-height: 1.5;
  max-width: 580px;
}
.gp-preview-days { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 36px; }
.gp-preview-day {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 28px 0 0;
  border-top: 1px solid var(--border-visible);
}
.gp-preview-day:first-child { border-top: 0; padding-top: 0; }
.gp-preview-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--terracotta);
  margin: 0;
  line-height: 1;
  letter-spacing: -0.005em;
}
.gp-preview-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.3rem,2vw,1.6rem);
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 12px;
  line-height: 1.2;
}
.gp-preview-body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text2);
  margin: 0;
}
@media (max-width: 600px) {
  .gp-preview-day { grid-template-columns: 1fr; gap: 8px; }
}

/* Gate — fading lock card after the previews */
.gp-preview-gate {
  position: relative;
  margin-top: 52px;
  padding-top: 80px;
}
.gp-preview-gate-fade {
  position: absolute;
  top: -120px;
  left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to bottom, rgba(247, 243, 235, 0) 0%, var(--cream-warm) 80%);
  pointer-events: none;
}
.gp-preview-gate-card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--accent);
  padding: 36px clamp(28px,4vw,44px);
  text-align: center;
}
.gp-preview-gate-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--terracotta);
}
.gp-preview-gate-eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin: 0 0 14px;
}
.gp-preview-gate-h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem,2.4vw,2rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 14px;
  text-wrap: balance;
}
.gp-preview-gate-body {
  font-family: var(--sans);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
  margin: 0 auto 28px;
  max-width: 480px;
}

/* ─── Buy section ──────────────────────────────────────────────────────── */
.gp-buy { background: var(--ink); color: var(--cream); }
.gp-buy-inner { max-width: 720px; text-align: center; }
.gp-buy .gp-eyebrow { color: var(--gold-light); }
.gp-buy .gp-h2 { color: var(--cream); }
.gp-buy-body {
  font-family: var(--sans);
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(244,241,236,0.7);
  margin: 0 0 36px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}
.gp-buy-fine {
  font-family: var(--sans);
  font-size: 0.88rem;
  color: rgba(244,241,236,0.55);
  margin: 24px 0 0;
}
.gp-buy-fine a { color: var(--gold-light); text-decoration: underline; text-underline-offset: 3px; }

/* ─── Footer ───────────────────────────────────────────────────────────── */
.gp-footer { background: var(--cream); border-top: 1px solid var(--border); }
.gp-footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 36px clamp(24px,5vw,64px);
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.gp-footer-logo {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--ink);
  text-decoration: none;
}
.gp-footer-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
  flex: 1;
  min-width: 200px;
}
.gp-footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin: 0;
  padding: 0;
  justify-content: center;
}
.gp-footer-links a {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
}
.gp-footer-links a:hover { color: var(--accent); }

/* ==========================================================================
   Home: Buy CTA pump + horizontal guide gallery
   ========================================================================== */

/* (Buy CTA pump now uses .cta-fork.cta-fork--primary in components.css) */

/* Horizontal scrollable gallery */
.home-gallery {
  background: var(--cream);
  padding: clamp(60px,7vw,100px) 0 clamp(48px,6vw,80px);
  border-top: 1px solid var(--border);
}
.home-gallery-head {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px,4vw,56px) 28px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.home-gallery-eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}
.home-gallery-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem,3.5vw,2.8rem);
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.home-gallery-title em { font-style: italic; color: var(--terracotta); }
.home-gallery-link {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--ink);
  transition: color 320ms var(--ease-editorial), border-color 320ms var(--ease-editorial);
}
.home-gallery-link:hover { color: var(--terracotta); border-color: var(--terracotta); }
.home-gallery-link .ln {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--terracotta);
  transition: width 480ms var(--ease-editorial);
}
.home-gallery-link:hover .ln { width: 48px; background: var(--terracotta); }
.home-gallery-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: clamp(20px,4vw,56px);
  padding: 8px clamp(20px,4vw,56px) clamp(20px,3vw,32px);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  /* Right-edge fade signals there's more content to scroll to.
     mask-image leaves the right ~6% of the strip semi-transparent. */
  -webkit-mask-image: linear-gradient(to right, #000 0, #000 94%, transparent 100%);
          mask-image: linear-gradient(to right, #000 0, #000 94%, transparent 100%);
}
.home-gallery-scroll::-webkit-scrollbar { height: 6px; }
.home-gallery-scroll::-webkit-scrollbar-track { background: transparent; }
.home-gallery-scroll::-webkit-scrollbar-thumb { background: var(--border-visible); border-radius: 3px; }

.home-guide-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  background: var(--cream-warm);
  border: 1px solid var(--border-visible);
  overflow: hidden;
  transition:
    transform 480ms var(--ease-editorial),
    box-shadow 480ms var(--ease-editorial),
    border-color 480ms var(--ease-editorial);
}
.home-guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -16px rgba(31,20,12,0.22);
  border-color: var(--terracotta);
}
.home-guide-card-img {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
  filter: saturate(0.92);
  transition: filter 600ms var(--ease-editorial), transform 1200ms var(--ease-editorial);
}
.home-guide-card:hover .home-guide-card-img { filter: saturate(1); transform: scale(1.03); }
.home-guide-card-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.home-guide-card-region {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.home-guide-card-name {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.15;
  letter-spacing: -0.008em;
  color: var(--ink);
  margin: 0;
}
.home-guide-card-meta {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0 0 8px;
}
.home-guide-card-foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border-visible);
  margin-top: auto;
  min-width: 0;
}
.home-guide-card-price {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--terracotta);
  white-space: nowrap;
  flex: 0 1 auto;
  min-width: 0;
}
.home-guide-card-cta {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
  flex: 0 0 auto;
}
@media (max-width: 600px) {
  .home-guide-card { flex: 0 0 240px; }
  .home-guide-card-img { aspect-ratio: 4 / 5; }
}
