/* ============================================================
   Bali '26 — Multi-page editorial styles (v3, "soft elevation")
   Type: Fraunces (display) + Inter (body, 18px / 1.75)
   Design: phone is the physical box — UI uses shading and tonal
   layering, not nested cards. Hairlines do the structural work.
   ============================================================ */

:root {
  /* palette — tightened */
  --ink: #1a1a17;
  --ink-soft: #4a4842;
  --ink-mute: #8a857c;
  --paper: #faf5e8;
  --paper-2: #f1e9d4;          /* subtle secondary surface */
  --cream: #f6efe1;             /* reserved for gate/cover/modal */
  --emerald: #0e2a23;
  --emerald-deep: #0a1f1a;
  --clay: #b8553a;
  --clay-soft: #d97b5c;
  --sun: #d4a574;
  --sun-glow: #e8a87c;
  --line: rgba(26, 26, 23, 0.08);
  --line-strong: rgba(26, 26, 23, 0.16);
  --accent: var(--clay);
  --accent-soft: rgba(184, 85, 58, 0.10);

  /* type */
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* layout */
  --maxw: 1180px;
  --maxw-read: 720px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 14px;
  --radius-sm: 10px;
  --radius-xs: 6px;

  /* shadow tokens — subtle depth */
  --shadow-xs: 0 1px 2px rgba(26,26,23,0.04);
  --shadow-sm: 0 2px 6px rgba(26,26,23,0.04), 0 1px 2px rgba(26,26,23,0.03);
  --shadow-md: 0 6px 16px rgba(26,26,23,0.06), 0 2px 4px rgba(26,26,23,0.04);
  --shadow-lg: 0 20px 48px rgba(26,26,23,0.10), 0 8px 16px rgba(26,26,23,0.05);

  /* motion */
  --ease: cubic-bezier(.2, .7, .2, 1);
  --fade-duration: 280ms;
}

/* ============== RESET ============== */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.75;
  font-size: 18px;
  font-feature-settings: "ss01", "cv01";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
input { font: inherit; }
::selection { background: var(--clay); color: var(--cream); }

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

/* ============== PAGE TRANSITION ============== */
@keyframes pageFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
main { animation: pageFadeIn var(--fade-duration) var(--ease); }

/* ============== PASSWORD GATE ============== */
.gate {
  position: fixed; inset: 0; z-index: 100;
  display: grid; place-items: center;
  padding: 20px;
  background:
    radial-gradient(ellipse at 50% 110%, rgba(212,165,116,0.4), transparent 55%),
    radial-gradient(ellipse at 50% -10%, rgba(232,168,124,0.3), transparent 50%),
    linear-gradient(180deg, #0a1f1a 0%, #0e2a23 60%, #1a3a30 100%);
}
.gate.gone { opacity: 0; pointer-events: none; transition: opacity 600ms var(--ease); }
.gate__card {
  width: 100%; max-width: 440px;
  background: var(--cream);
  border-radius: 20px;
  padding: 48px 32px 36px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.gate__kicker {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--clay); margin: 0 0 14px; font-weight: 600;
}
.gate__title {
  font-family: var(--serif); font-weight: 500; font-style: italic;
  font-size: clamp(36px, 7vw, 48px); line-height: 1;
  margin: 0 0 14px; color: var(--emerald); letter-spacing: -0.015em;
}
.gate__sub { font-size: 14px; color: var(--ink-soft); margin: 0 0 28px; line-height: 1.55; }
.gate__form { display: flex; flex-direction: column; gap: 12px; }
.gate__input {
  padding: 15px 18px; border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: #fff; text-align: center;
  font-size: 17px; letter-spacing: 0.14em;
  color: var(--ink); transition: border-color 200ms var(--ease);
}
.gate__input:focus { outline: none; border-color: var(--clay); box-shadow: 0 0 0 3px rgba(184,85,58,0.15); }
.gate__btn {
  padding: 15px 22px; border-radius: 10px;
  background: var(--emerald); color: var(--cream);
  font-weight: 600; letter-spacing: 0.04em;
  transition: background 200ms var(--ease), transform 120ms var(--ease);
}
.gate__btn:hover { background: var(--emerald-deep); }
.gate__btn:active { transform: translateY(1px); }
.gate__error { margin: 14px 0 0; font-size: 13px; color: var(--clay); font-weight: 500; }
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}
.gate__input.shake { animation: shake 380ms var(--ease); }

/* ============== NAV ============== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,245,232,0.92);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 16px var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav__brand { display: flex; align-items: baseline; gap: 6px; font-family: var(--serif); }
.nav__brand-mark {
  font-weight: 700; font-style: italic; font-size: 22px;
  color: var(--emerald); letter-spacing: -0.01em;
}
.nav__brand-year { font-size: 14px; font-style: normal; font-weight: 500; color: var(--clay); letter-spacing: 0.05em; }
.nav__links {
  display: flex; gap: 24px; align-items: center;
  font-size: 13px; font-weight: 500; letter-spacing: 0.02em;
}
.nav__links a {
  position: relative; color: var(--ink-soft);
  padding: 6px 0; transition: color 180ms var(--ease);
}
.nav__links a:not(.nav__saved)::after {
  content: ""; position: absolute; bottom: 0; left: 0;
  width: 100%; height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 240ms var(--ease);
}
.nav__links a:hover, .nav__links a.is-active { color: var(--ink); }
.nav__links a.is-active:not(.nav__saved)::after { transform: scaleX(1); }
.nav__saved {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 6px 12px; border-radius: 100px;
  background: var(--ink); color: var(--cream);
  font-size: 12px; font-weight: 600;
  transition: transform 200ms var(--ease), background 200ms var(--ease);
}
.nav__saved:hover { transform: scale(1.04); background: var(--emerald); }
.nav__saved .count { font-variant-numeric: tabular-nums; min-width: 1ch; }
.nav__saved[data-empty="true"] { opacity: 0.55; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__toggle span {
  display: block; width: 22px; height: 2px; background: var(--ink);
  transition: transform 240ms var(--ease), opacity 180ms var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 8px var(--gutter) 16px;
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: transform 240ms var(--ease), opacity 180ms var(--ease);
  }
  .nav__links.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__links a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
  .nav__links a:last-child { border-bottom: 0; }
  .nav__links a:not(.nav__saved)::after { display: none; }
  .nav__saved { margin-top: 8px; justify-content: center; }
}

/* ============== TYPOGRAPHY PRIMITIVES ============== */
.kicker {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin: 0 0 18px;
}
.h-display {
  font-family: var(--serif); font-weight: 600;
  line-height: 0.98; letter-spacing: -0.025em;
  color: var(--ink);
  font-size: clamp(40px, 7vw, 72px);
  margin: 0;
}
.h-display em { font-style: italic; font-weight: 500; color: var(--accent); }
.h-section {
  font-family: var(--serif); font-weight: 500;
  line-height: 1.06; letter-spacing: -0.022em;
  color: var(--ink);
  font-size: clamp(32px, 5vw, 52px);
  margin: 0 0 18px;
}
.h-section em { font-style: italic; font-weight: 400; color: var(--accent); }
.lede {
  font-family: var(--sans); font-weight: 400;
  font-size: clamp(17px, 1.8vw, 19px);
  line-height: 1.6; color: var(--ink-soft);
  max-width: 60ch; margin: 0;
}

/* ============== SECTION SHELL ============== */
.section {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(64px, 9vw, 120px) var(--gutter);
}
.section--read { max-width: var(--maxw-read); }
.section__head { margin-bottom: clamp(36px, 5vw, 64px); max-width: 720px; }

/* ============== COVER ============== */
.cover {
  min-height: 100vh;
  display: grid; grid-template-rows: 1fr auto;
  position: relative; overflow: hidden; isolation: isolate;
  color: var(--cream);
}
.cover__sky {
  position: absolute; inset: 0; z-index: -3;
  background: linear-gradient(180deg,
    #1a3a4a 0%, #4a3a4e 18%, #8a4a3e 38%, #c4633c 58%,
    #e89866 75%, #f4c89a 88%, #f6d8a8 100%);
}
.cover__sun {
  position: absolute; z-index: -2;
  left: 50%; bottom: 28%;
  width: clamp(220px, 32vw, 380px); aspect-ratio: 1;
  transform: translateX(-50%);
  background: radial-gradient(circle, #fff0c4 0%, #ffd196 35%, #f29a5c 68%, rgba(242,154,92,0) 100%);
  border-radius: 50%; filter: blur(0.5px);
  animation: sunGlow 5s ease-in-out infinite;
}
@keyframes sunGlow {
  0%, 100% { filter: blur(0.5px) brightness(1); }
  50% { filter: blur(0.7px) brightness(1.06); }
}
/* Stars in the upper sky — scattered dots */
.cover__stars {
  position: absolute; z-index: -2;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(0.8px 0.8px at 15% 8%,  rgba(255,255,255,0.65), transparent),
    radial-gradient(0.6px 0.6px at 28% 4%,  rgba(255,255,255,0.50), transparent),
    radial-gradient(0.7px 0.7px at 42% 12%, rgba(255,255,255,0.55), transparent),
    radial-gradient(0.5px 0.5px at 55% 6%,  rgba(255,255,255,0.40), transparent),
    radial-gradient(0.9px 0.9px at 68% 10%, rgba(255,255,255,0.60), transparent),
    radial-gradient(0.6px 0.6px at 78% 3%,  rgba(255,255,255,0.45), transparent),
    radial-gradient(0.7px 0.7px at 88% 7%,  rgba(255,255,255,0.50), transparent),
    radial-gradient(0.5px 0.5px at 10% 18%, rgba(255,255,255,0.35), transparent),
    radial-gradient(0.6px 0.6px at 33% 16%, rgba(255,255,255,0.40), transparent),
    radial-gradient(0.8px 0.8px at 60% 15%, rgba(255,255,255,0.45), transparent),
    radial-gradient(0.5px 0.5px at 72% 18%, rgba(255,255,255,0.35), transparent),
    radial-gradient(0.6px 0.6px at 92% 16%, rgba(255,255,255,0.40), transparent),
    radial-gradient(0.4px 0.4px at 20% 22%, rgba(255,255,255,0.30), transparent),
    radial-gradient(0.5px 0.5px at 48% 20%, rgba(255,255,255,0.35), transparent),
    radial-gradient(0.7px 0.7px at 82% 22%, rgba(255,255,255,0.40), transparent);
  -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 75%);
  mask-image: linear-gradient(to bottom, black 30%, transparent 75%);
}
@media (prefers-reduced-motion: reduce) {
  .cover__sun { animation: none; }
}
.cover__horizon {
  position: absolute; z-index: -2;
  left: 0; right: 0; bottom: 0;
  height: 28%;
  background: linear-gradient(180deg, rgba(14,42,35,0) 0%, rgba(14,42,35,0.4) 30%, var(--emerald-deep) 100%);
}
.cover__palm {
  position: absolute; z-index: -1; bottom: 0;
  color: var(--emerald-deep);
  width: clamp(140px, 22vw, 240px);
  pointer-events: none; opacity: 0.92;
}
.cover__palm--left { left: -4%; transform: scaleX(-1); }
.cover__palm--right { right: -4%; }

.cover__main {
  align-self: end;
  padding: 0 var(--gutter) clamp(36px, 5vw, 56px);
  max-width: 900px;
}
.cover__kicker {
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(246,239,225,0.88); margin: 0 0 28px; font-weight: 500;
}
.cover__title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(56px, 12vw, 132px);
  line-height: 0.92; margin: 0 0 24px;
  letter-spacing: -0.028em; color: #fff7e8;
  text-shadow: 0 2px 40px rgba(0,0,0,0.25);
}
.cover__title em {
  font-style: italic; font-weight: 500;
  display: block; color: #fff7e8;
}
.cover__sub {
  font-family: var(--sans); font-style: normal; font-weight: 400;
  font-size: clamp(17px, 2.2vw, 20px);
  color: rgba(246,239,225,0.92); margin: 0 0 32px;
  line-height: 1.5;
}
.cover__countdown { display: flex; gap: 14px; margin-bottom: 24px; flex-wrap: wrap; }
.cover__count {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 12px 18px 10px;
  background: rgba(14,42,35,0.45);
  border: 1px solid rgba(246,239,225,0.18);
  border-radius: 12px;
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  min-width: 86px;
}
.cover__count span {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(30px, 5vw, 42px); line-height: 1;
  color: #fff7e8; letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.cover__count label {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(246,239,225,0.7); margin-top: 5px;
}
.cover__caption {
  font-family: var(--sans); font-style: normal;
  font-size: 14px; color: rgba(246,239,225,0.75);
  margin: 0 0 24px;
}
.cover__cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  background: #fff7e8; color: var(--emerald-deep);
  border-radius: 100px;
  font-weight: 600; font-size: 14px;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}
.cover__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}
.cover__cta-arrow { display: inline-block; transition: transform 220ms var(--ease); }
.cover__cta:hover .cover__cta-arrow { transform: translateX(4px); }
.cover__footer {
  position: relative; z-index: 1;
  padding: 0 var(--gutter) 24px;
  display: flex; justify-content: space-between; align-items: end;
  gap: 12px; flex-wrap: wrap;
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(246,239,225,0.55);
}

/* ============== OVERVIEW ============== */
.overview-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0;
  margin-bottom: clamp(48px, 6vw, 80px);
  background: var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.overview-stat {
  padding: 28px 24px;
  position: relative;
}
.overview-stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20%; right: 0; bottom: 20%;
  width: 1px; background: var(--line);
}
@media (max-width: 720px) {
  .overview-stats { grid-template-columns: repeat(2, 1fr); }
  .overview-stat:nth-child(2n)::after { display: none; }
  .overview-stat:not(:nth-last-child(-n+2))::before {
    content: ""; position: absolute;
    left: 20%; right: 20%; bottom: 0;
    height: 1px; background: var(--line);
  }
}
.overview-stat strong {
  display: block;
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(36px, 5vw, 52px);
  line-height: 1; color: var(--accent);
  letter-spacing: -0.025em; margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}
.overview-stat span {
  font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--ink-soft);
  font-weight: 600;
}

.timeline { position: relative; margin-top: 36px; padding-left: 32px; }
.timeline::before {
  content: ""; position: absolute;
  left: 7px; top: 8px; bottom: 8px;
  width: 1px; background: var(--line-strong);
}
.timeline__item { position: relative; padding: 16px 0 24px; }
.timeline__item::before {
  content: ""; position: absolute;
  left: -32px; top: 22px;
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--accent);
  box-shadow: var(--shadow-xs);
}
.timeline__window {
  font-family: var(--sans); font-weight: 600;
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--ink); margin: 0 0 4px; line-height: 1.4;
}
.timeline__crew { font-size: 15px; color: var(--ink-soft); margin: 0; line-height: 1.5; }

/* ============== CREW ============== */
.crew-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.crew-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 24px 28px;
  display: flex; flex-direction: column; align-items: flex-start;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: box-shadow 280ms var(--ease), transform 280ms var(--ease);
}
.crew-card::before {
  content: ""; position: absolute;
  top: 0; left: 0; width: 100%; height: 4px;
  background: var(--avatar-color, var(--accent));
}
.crew-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.crew-card__avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--sans); font-weight: 700; font-size: 18px;
  color: #fff7e8; margin-bottom: 18px;
  letter-spacing: -0.01em;
  box-shadow: var(--shadow-xs);
}
.crew-card__name {
  font-family: var(--sans); font-weight: 700;
  font-size: 22px; margin: 0 0 4px;
  letter-spacing: -0.018em;
}
.crew-card__from {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-mute); margin: 0 0 16px; font-weight: 600;
}
.crew-card__line {
  font-family: var(--sans); font-style: normal;
  font-size: 14px; line-height: 1.55;
  color: var(--ink-soft); margin: 0;
}

/* ============== VILLA ============== */
.villa-hero {
  background: var(--emerald);
  color: var(--cream);
  border-radius: var(--radius);
  padding: clamp(36px, 5vw, 64px);
  margin-bottom: clamp(28px, 4vw, 40px);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.villa-hero::after {
  content: "";
  position: absolute;
  top: -50%; right: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(212,165,116,0.10), transparent 60%);
  pointer-events: none;
}
.villa-hero__kicker {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--sun); margin: 0 0 14px; font-weight: 600;
}
.villa-hero__name {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(40px, 7vw, 80px);
  margin: 0 0 12px; letter-spacing: -0.025em;
  line-height: 0.95; color: #fff7e8;
  position: relative; z-index: 1;
}
.villa-hero__addr {
  font-family: var(--sans); font-style: normal; font-weight: 400;
  color: rgba(246,239,225,0.78); margin: 0 0 28px;
  font-size: clamp(15px, 1.6vw, 17px);
  letter-spacing: 0.01em; position: relative; z-index: 1;
}
.villa-hero__body {
  font-size: 17px; line-height: 1.7;
  color: rgba(246,239,225,0.85);
  max-width: 60ch; margin: 0 0 28px;
  position: relative; z-index: 1;
}
.villa-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 0;
  position: relative;
  z-index: 1;
}
.villa-hero__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px;
  background: var(--sun); color: var(--emerald-deep);
  border-radius: 100px;
  font-weight: 600; font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: transform 200ms var(--ease), background 200ms var(--ease);
}
.villa-hero__cta:hover { transform: translateY(-2px); background: #fff7e8; }
.villa-hero__cta--ig {
  background: transparent;
  color: #fff7e8;
  border: 1px solid rgba(246,239,225,0.35);
}
.villa-hero__cta--ig:hover {
  background: rgba(246,239,225,0.10);
  border-color: rgba(246,239,225,0.6);
}

/* Combined villa detail card — was 3 boxes, now 1 */
.villa-detail {
  background: var(--cream);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  overflow: hidden;
}
@media (max-width: 820px) {
  .villa-detail { grid-template-columns: 1fr; }
}
.villa-detail__map {
  padding: clamp(24px, 3vw, 32px);
  border-right: 1px solid var(--line);
}
@media (max-width: 820px) {
  .villa-detail__map { border-right: 0; border-bottom: 1px solid var(--line); }
}
.villa-detail__times { padding: clamp(24px, 3vw, 32px); }
.villa-detail__title {
  font-family: var(--sans); font-weight: 700;
  font-size: 18px; letter-spacing: -0.012em;
  color: var(--ink); margin: 0 0 6px;
}
.villa-detail__sub {
  font-size: 13px; color: var(--ink-soft);
  margin: 0 0 20px; line-height: 1.5;
}
.villa-detail__title--times { margin-bottom: 16px; }
.villa-detail__map svg.villa-svg { width: 100%; height: auto; display: block; max-height: 540px; }

/* Stylized villa distance map */
.villa-svg { font-family: var(--sans); }
.villa-ocean {
  fill: rgba(58, 106, 138, 0.08);
}
.villa-coast {
  stroke: rgba(58, 106, 138, 0.32);
  stroke-width: 0.6;
  stroke-linecap: round;
}
.villa-ocean-label {
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.4em;
  fill: rgba(58, 106, 138, 0.45);
  text-transform: uppercase;
}
.villa-ring {
  fill: none;
  stroke: rgba(26, 26, 23, 0.10);
  stroke-width: 0.3;
  stroke-dasharray: 1 1.5;
}
.villa-ring-label {
  font-size: 5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  fill: var(--ink-mute);
  text-transform: uppercase;
}
.villa-compass-label {
  font-size: 5px;
  font-weight: 700;
  fill: var(--ink);
  letter-spacing: 0.08em;
}
.villa-area circle {
  fill: var(--cat-color, var(--accent));
}
.villa-area-name {
  font-size: 6px;
  font-weight: 700;
  fill: var(--ink);
  letter-spacing: 0.02em;
}
.villa-area-dist {
  font-size: 5px;
  font-weight: 500;
  fill: var(--ink-mute);
  letter-spacing: 0.04em;
}
.villa-pin {
  fill: var(--emerald);
}
.villa-pin-ring {
  stroke: var(--emerald);
  opacity: 0.5;
}
.villa-pin-label {
  font-size: 7px;
  font-weight: 700;
  fill: var(--emerald);
  letter-spacing: 0.02em;
}
.villa-pin-sublabel {
  font-size: 4.5px;
  font-weight: 600;
  fill: var(--ink-mute);
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.villa-offmap-name {
  font-size: 5.5px;
  font-weight: 700;
  fill: var(--ink);
}
.villa-offmap-dist {
  font-size: 4.5px;
  font-weight: 500;
  fill: var(--ink-mute);
  letter-spacing: 0.04em;
}
.villa-scale-label {
  font-size: 4.5px;
  font-weight: 600;
  fill: var(--ink-mute);
  letter-spacing: 0.06em;
}

.villa-times__row {
  display: grid; grid-template-columns: 1fr auto;
  gap: 12px; padding: 12px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.villa-times__row:last-child { border-bottom: 0; padding-bottom: 0; }
.villa-times__row:first-child { padding-top: 0; }
.villa-times__area {
  font-family: var(--sans); font-weight: 600;
  font-size: 15px; color: var(--ink);
}
.villa-times__area small {
  display: block; font-family: var(--sans);
  font-weight: 400; font-size: 11px;
  color: var(--ink-mute); margin-top: 2px;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.villa-times__meta {
  font-family: var(--sans); font-size: 13px;
  color: var(--ink-soft); text-align: right;
  line-height: 1.4;
}
.villa-times__meta strong {
  display: block; font-family: var(--sans);
  font-weight: 700; color: var(--accent);
  font-size: 14px;
}

/* ============== ITINERARY (no panel box; rows on paper) ============== */
.itin-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: clamp(28px, 4vw, 40px);
}
.itin-tab {
  padding: 12px 18px; border-radius: var(--radius-sm);
  font-size: 13px; font-weight: 500;
  color: var(--ink-soft);
  background: var(--cream);
  box-shadow: var(--shadow-xs);
  transition: all 220ms var(--ease);
  letter-spacing: 0.02em;
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
}
.itin-tab small {
  font-size: 10px; letter-spacing: 0.1em;
  text-transform: uppercase; opacity: 0.7;
}
.itin-tab:hover { color: var(--ink); box-shadow: var(--shadow-sm); }
.itin-tab.is-active {
  background: var(--tab-accent, var(--emerald));
  color: var(--cream);
  box-shadow: var(--shadow-sm);
}

.itin-panel {
  position: relative;
  padding-top: 28px;
  border-top: 3px solid var(--tab-accent, var(--emerald));
}
.itin-panel[hidden] { display: none; }
.itin-panel__head { padding-bottom: 24px; margin-bottom: 8px; }
.itin-panel__title {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(24px, 3.4vw, 32px);
  margin: 0 0 6px; letter-spacing: -0.018em;
  color: var(--ink); line-height: 1.15;
}
.itin-panel__sub {
  font-family: var(--sans); font-style: normal; font-weight: 500;
  color: var(--accent); margin: 0;
  font-size: clamp(15px, 1.6vw, 17px);
}

.itin-row {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.itin-row:last-of-type { border-bottom: 0; padding-bottom: 0; }
.itin-row__head {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 18px; align-items: baseline;
  width: 100%; text-align: left; padding: 0;
}
@media (max-width: 540px) {
  .itin-row__head { grid-template-columns: 1fr; gap: 6px; }
}
.itin-row__time {
  font-family: var(--sans); font-weight: 700;
  font-size: 13px; color: var(--accent);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.itin-row__text {
  font-family: var(--sans); font-weight: 500;
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--ink); line-height: 1.5;
}
.itin-row__who {
  display: inline-block;
  font-family: var(--sans); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 600;
}
.itin-row__expand {
  font-family: var(--sans); font-size: 11px;
  color: var(--ink-mute); margin-top: 4px;
  letter-spacing: 0.06em; text-transform: uppercase;
  font-weight: 500; transition: color 180ms var(--ease);
}
.itin-row__head:hover .itin-row__expand { color: var(--accent); }
.itin-row.is-open .itin-row__expand::before { content: "Hide"; }
.itin-row__expand::before { content: "Open"; }
.itin-row__expand::after {
  content: " ↓"; display: inline-block;
  transition: transform 220ms var(--ease);
}
.itin-row.is-open .itin-row__expand::after { transform: rotate(180deg); }

/* Suggestion trigger — softer pill */
.itin-row__suggestions {
  display: inline-flex; align-items: center; gap: 6px;
  margin: 12px 0 4px 108px;
  padding: 8px 14px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 100px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.03em;
  transition: all 200ms var(--ease);
}
.itin-row__suggestions:hover {
  background: var(--accent); color: #fff7e8;
  transform: translateY(-1px);
  box-shadow: var(--shadow-xs);
}
@media (max-width: 540px) {
  .itin-row__suggestions { margin-left: 0; }
}

/* Inline venue detail (no box) */
.itin-row__detail {
  max-height: 0; overflow: hidden;
  transition: max-height 320ms var(--ease);
}
.itin-row.is-open .itin-row__detail { max-height: 2000px; }
.itin-row__detail-inner {
  margin: 20px 0 8px 108px;
  padding: 18px 22px;
  border-left: 2px solid var(--accent);
  background: var(--cream);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
@media (max-width: 540px) {
  .itin-row__detail-inner { margin-left: 0; }
}
.itin-inline__name {
  font-family: var(--sans); font-weight: 700;
  font-size: 18px; margin: 0 0 4px;
  letter-spacing: -0.012em;
}
.itin-inline__meta {
  font-family: var(--sans); font-size: 13px;
  color: var(--ink-soft); margin: 0 0 12px;
}
.itin-inline__hook {
  margin: 0 0 14px; font-size: 14px;
  line-height: 1.6; color: var(--ink);
}
.itin-inline__map {
  display: inline-block; padding: 7px 14px;
  background: var(--ink); color: var(--cream);
  border-radius: 100px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
}

.itin-callout {
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  padding: 16px 20px;
  border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
  font-size: 15px; color: var(--ink);
  margin-top: 28px;
  font-family: var(--sans); font-style: normal;
  line-height: 1.6;
}

/* ============== GUIDE HUB ============== */
.guide-hub {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}
.guide-cover {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  padding: 28px;
  color: #fff7e8;
  display: flex; flex-direction: column; justify-content: space-between;
  overflow: hidden; isolation: isolate;
  box-shadow: var(--shadow-sm);
  transition: transform 280ms var(--ease), box-shadow 280ms var(--ease);
}
@media (max-width: 640px) {
  .guide-hub {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .guide-cover {
    aspect-ratio: 3 / 4;
    padding: 18px 16px;
  }
  .guide-cover__num {
    font-size: 10px;
  }
  .guide-cover__title {
    font-size: clamp(18px, 6vw, 22px);
  }
  .guide-cover__tag {
    font-size: 12px;
  }
  .guide-cover__arrow {
    bottom: 16px; right: 14px;
    width: 28px; height: 28px;
    font-size: 11px;
  }
}
@media (max-width: 380px) {
  .guide-cover {
    aspect-ratio: 3 / 4.5;
    padding: 14px 12px;
  }
  .guide-cover__title {
    font-size: 16px;
    letter-spacing: -0.01em;
  }
  .guide-cover__tag {
    font-size: 11px;
  }
}
.guide-cover:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.guide-cover__bg {
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(155deg, var(--cat-color), var(--cat-color-deep, var(--cat-color)));
}
.guide-cover__bg::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.14), transparent 50%);
}
.guide-cover__num {
  font-family: var(--sans); font-weight: 500;
  font-size: 12px; opacity: 0.78;
  letter-spacing: 0.08em;
}
.guide-cover__body { display: flex; flex-direction: column; gap: 6px; margin-top: auto; }
.guide-cover__title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(28px, 3.4vw, 36px);
  line-height: 1; letter-spacing: -0.022em;
  margin: 0;
}
.guide-cover__tag {
  font-family: var(--sans); font-style: normal; font-weight: 400;
  font-size: 14px; opacity: 0.88; margin: 0;
  line-height: 1.4;
}
.guide-cover__arrow {
  position: absolute; bottom: 28px; right: 28px;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: grid; place-items: center;
  font-size: 14px;
  transition: transform 240ms var(--ease), background 240ms var(--ease);
}
.guide-cover:hover .guide-cover__arrow {
  transform: translate(2px, -2px);
  background: rgba(255,255,255,0.32);
}

/* ============== CATEGORY PAGE ============== */
.cat-intro {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(72px, 9vw, 112px) var(--gutter) clamp(40px, 5vw, 60px);
}
.cat-intro .kicker { color: var(--cat-color); }
.cat-intro h1 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(48px, 8vw, 88px);
  line-height: 0.94; letter-spacing: -0.025em;
  color: var(--ink); margin: 0 0 24px;
}
.cat-intro h1 em {
  font-style: italic; font-weight: 500;
  color: var(--cat-color);
}
.cat-intro__body {
  font-family: var(--sans); font-style: normal; font-weight: 400;
  font-size: clamp(17px, 1.9vw, 19px);
  line-height: 1.75; color: var(--ink-soft);
  max-width: 64ch; margin: 0 0 28px;
}
.cat-intro__body p { margin: 0 0 1em; }
.cat-intro__body p:first-child::first-letter {
  font-family: var(--serif); font-weight: 600;
  font-size: 3.6em; line-height: 0.85;
  float: left;
  margin: 0.06em 0.1em 0 -0.04em;
  color: var(--cat-color);
}

/* Sticky category rail */
.cat-rail {
  position: sticky; top: 64px; z-index: 30;
  background: rgba(250,245,232,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(36px, 5vw, 56px);
}
.cat-rail__inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex; gap: 14px; align-items: center;
  overflow-x: auto; scrollbar-width: none;
}
.cat-rail__inner::-webkit-scrollbar { display: none; }
.cat-rail__label {
  font-family: var(--sans);
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 700;
  white-space: nowrap;
}
.cat-rail__links {
  display: flex; gap: 8px; flex-wrap: nowrap;
  overflow-x: auto; scrollbar-width: none;
}
.cat-rail__links::-webkit-scrollbar { display: none; }
.cat-rail__links a {
  white-space: nowrap; padding: 7px 14px;
  border-radius: 100px;
  font-size: 12px; font-weight: 500;
  color: var(--ink-soft);
  background: transparent;
  transition: all 180ms var(--ease);
}
.cat-rail__links a:hover { color: var(--ink); background: var(--cream); }
.cat-rail__links a.is-active {
  background: var(--cat-color); color: #fff7e8;
}

.cat-toolbar {
  max-width: var(--maxw); margin: 0 auto clamp(24px, 3vw, 32px);
  padding: 0 var(--gutter);
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; flex-wrap: wrap;
}
.cat-toolbar__count {
  font-family: var(--sans); font-style: normal;
  font-size: 14px; color: var(--ink-mute);
}
.cat-toolbar__count strong {
  font-style: normal; font-weight: 700;
  color: var(--ink); font-variant-numeric: tabular-nums;
}
.cat-sort {
  display: inline-flex;
  background: var(--cream);
  border-radius: 100px;
  padding: 4px; gap: 2px;
  box-shadow: var(--shadow-xs);
}
.cat-sort button {
  padding: 7px 14px;
  font-size: 12px; font-weight: 500;
  color: var(--ink-soft);
  border-radius: 100px;
  transition: all 180ms var(--ease);
  letter-spacing: 0.02em;
}
.cat-sort button.is-active {
  background: var(--ink); color: var(--cream);
  box-shadow: var(--shadow-xs);
}

/* ============== VENUES — flat list with shadow on hover ============== */
.venues {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0 var(--gutter) clamp(72px, 10vw, 128px);
  display: flex; flex-direction: column;
  gap: 0;
}

/* Tier section labels — small caps, no boxes */
.tier-section {
  display: flex; flex-direction: column;
  gap: 0;
  margin-bottom: 12px;
}
.tier-section--flat { gap: 0; }
.tier-section + .tier-section { margin-top: 32px; }

.tier-head {
  padding: 16px 0 20px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--line);
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px;
}
.tier-section--recommendation .tier-head { border-bottom-color: var(--cat-color); }
.tier-title {
  font-family: var(--sans); font-weight: 700;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink); margin: 0;
}
.tier-section--recommendation .tier-title { color: var(--cat-color, var(--clay)); }
.tier-note {
  font-family: var(--sans); font-size: 13px;
  color: var(--ink-soft); margin: 0;
  line-height: 1.5; flex: 1;
}
.tier-count {
  font-family: var(--sans); font-weight: 700;
  font-size: 14px; color: var(--ink-mute);
  font-variant-numeric: tabular-nums;
}

/* Venue entry — no card chrome, shadow on hover */
.venue {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: background 220ms var(--ease);
  position: relative;
}
.venue:last-child { border-bottom: 0; }
.venue:hover { background: rgba(255,255,255,0.30); }
.venue.is-open { background: var(--cream); }
.venue--feature {
  background: var(--emerald);
  color: var(--cream);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  margin: 8px 0 16px;
  border-bottom: 0;
  box-shadow: var(--shadow-md);
}
.venue--feature:hover { background: var(--emerald); }

.venue__head {
  display: grid; grid-template-columns: 1fr auto;
  gap: 16px; align-items: start;
}
.venue__title-row {
  display: flex; align-items: baseline; gap: 10px;
  flex-wrap: wrap; margin-bottom: 6px;
}
.venue__name {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(22px, 2.8vw, 28px);
  letter-spacing: -0.018em; line-height: 1.15;
  margin: 0; color: var(--ink);
}
.venue--feature .venue__name { color: #fff7e8; }
.venue__star {
  display: inline-grid; place-items: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--sun); color: var(--emerald-deep);
  font-size: 10px; font-weight: 700;
  vertical-align: middle;
}
.venue__star--normal {
  background: transparent; color: var(--ink-mute);
  font-size: 8px; width: 14px; height: 14px;
}
.venue__booked {
  display: inline-flex; align-items: center; gap: 3px;
  padding: 3px 9px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--emerald);
  color: var(--cream);
  vertical-align: middle;
}
.venue__area {
  font-family: var(--sans); font-size: 14px;
  color: var(--ink-mute); margin: 0 0 18px;
  line-height: 1.5;
}
.venue__area strong {
  font-weight: 700; color: var(--cat-color, var(--accent));
  font-variant-numeric: tabular-nums;
}
.venue--feature .venue__area { color: rgba(246,239,225,0.7); }
.venue--feature .venue__area strong { color: var(--sun); }

.venue__bookmark {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  transition: all 220ms var(--ease);
  font-size: 15px; color: var(--ink-mute);
}
.venue__bookmark:hover {
  color: var(--accent);
  background: var(--accent-soft);
  transform: scale(1.05);
}
.venue__bookmark.is-on {
  background: var(--accent); color: #fff7e8;
}

.venue__hook {
  font-family: var(--sans); font-weight: 400;
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.65; color: var(--ink);
  margin: 0 0 18px; max-width: 64ch;
}
.venue--feature .venue__hook { color: rgba(246,239,225,0.92); }
.venue--backup .venue__hook {
  font-size: 15px; color: var(--ink-soft);
}

.venue__actions {
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
}
.venue__map {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 9px 16px;
  background: var(--ink); color: var(--cream);
  border-radius: 100px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: transform 200ms var(--ease), background 200ms var(--ease);
}
.venue__map:hover { transform: translateY(-1px); background: var(--emerald); }
.venue--feature .venue__map { background: var(--sun); color: var(--emerald-deep); }
.venue--feature .venue__map:hover { background: #fff7e8; }

.venue__toggle {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 9px 14px;
  color: var(--ink-soft);
  border-radius: 100px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  transition: all 180ms var(--ease);
}
.venue__toggle:hover { color: var(--ink); background: var(--cream); }
.venue__toggle::after {
  content: " ↓"; display: inline-block;
  transition: transform 220ms var(--ease);
}
.venue.is-open .venue__toggle::after { transform: rotate(180deg); }
.venue--feature .venue__toggle { color: rgba(246,239,225,0.7); }
.venue--feature .venue__toggle:hover { color: #fff7e8; background: rgba(246,239,225,0.10); }

/* Expand — no nested box; editorial + details flow on paper */
.venue__expand {
  max-height: 0; overflow: hidden;
  transition: max-height 420ms var(--ease);
}
.venue.is-open .venue__expand { max-height: 4000px; }
.venue__expand-inner {
  padding-top: 28px; margin-top: 24px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(28px, 4vw, 48px);
}
@media (max-width: 760px) {
  .venue__expand-inner { grid-template-columns: 1fr; gap: 20px; }
}
.venue--feature .venue__expand-inner { border-top-color: rgba(246,239,225,0.18); }

.venue__editorial {
  font-family: var(--sans);
  font-size: 16px; line-height: 1.75;
  color: var(--ink);
}
.venue__editorial p { margin: 0 0 1.1em; max-width: 64ch; }
.venue__editorial p:first-child .dropcap {
  float: left;
  font-family: var(--serif); font-weight: 600;
  font-size: 3.6em; line-height: 0.85;
  margin: 0.06em 0.12em 0 -0.05em;
  color: var(--accent);
}
.venue__editorial strong { font-weight: 700; }
.venue__editorial em { font-style: italic; }
.venue--feature .venue__editorial { color: rgba(246,239,225,0.88); }
.venue--feature .venue__editorial p:first-child .dropcap { color: var(--sun); }

/* Details — no nested box; flows as inline definition list */
.venue__details {
  padding-top: 4px;
}
.venue__details h4 {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 700;
  margin: 0 0 14px;
}
.venue__detail-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px; line-height: 1.5;
}
.venue__detail-row:last-child { border-bottom: 0; }
.venue__detail-row dt {
  font-family: var(--sans);
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 700;
  margin: 0; padding-top: 1px;
}
.venue__detail-row dd {
  margin: 0; color: var(--ink);
  font-family: var(--sans); font-weight: 500;
}
.venue--feature .venue__detail-row { border-color: rgba(246,239,225,0.12); }
.venue--feature .venue__detail-row dd { color: #fff7e8; }
.venue--feature .venue__details h4 { color: rgba(246,239,225,0.6); }

/* ============== TIPS ============== */
.tips-list { max-width: var(--maxw-read); margin: 0 auto; }
.tip {
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
}
.tip:last-child { border-bottom: 0; }
.tip__num {
  font-family: var(--sans); font-style: normal; font-weight: 700;
  font-size: 13px; color: var(--accent);
  line-height: 1; letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
}
.tip__title {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(20px, 2.4vw, 24px);
  margin: 0 0 10px; color: var(--ink);
  letter-spacing: -0.012em; line-height: 1.25;
}
.tip__body {
  font-size: 16px; line-height: 1.7;
  color: var(--ink-soft); margin: 0;
}

/* ============== FLIGHTS TIMELINE ============== */
.fl-timeline { max-width: 720px; margin: 0 auto 48px; }
.fl-timeline__heading {
  font-family: var(--sans); font-weight: 700;
  font-size: 14px; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--emerald);
  margin: 0 0 20px;
}
.fl-timeline__track {
  position: relative;
  padding-left: 28px;
  display: flex; flex-direction: column; gap: 24px;
}
.fl-timeline__track::before {
  content: ""; position: absolute;
  left: 6px; top: 4px; bottom: 4px;
  width: 1.5px; background: var(--line-strong);
  border-radius: 1px;
}

.fl-node {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 0;
}
.fl-node::before {
  content: ""; position: absolute;
  left: -25px; top: 4px;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--emerald);
}
.fl-node__time {
  font-family: var(--sans); font-weight: 700;
  font-size: 15px; color: var(--ink);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.fl-node__body {
  display: flex; flex-wrap: wrap; gap: 6px 14px;
  align-items: baseline;
}
.fl-node__flight {
  font-family: var(--sans); font-weight: 700;
  font-size: 15px; color: var(--ink);
  letter-spacing: -0.01em;
}
.fl-node__route {
  font-family: var(--sans); font-size: 14px;
  color: var(--ink-soft); letter-spacing: 0.02em;
}
.fl-node__pax {
  display: block; width: 100%;
  font-family: var(--sans); font-size: 13px;
  font-weight: 600; color: var(--accent);
  letter-spacing: 0.04em;
  margin-top: 2px;
}
.fl-node__note {
  font-family: var(--sans); font-size: 12px;
  color: var(--ink-mute); font-style: italic;
}

@media (max-width: 500px) {
  .fl-node { grid-template-columns: 1fr; gap: 4px; }
  .fl-node__pax { margin-top: 0; }
}

/* ============== SAVED ============== */
.saved-empty {
  text-align: center; padding: 80px 20px;
  font-family: var(--sans); font-style: normal;
  font-size: 16px; color: var(--ink-mute);
  line-height: 1.6;
}

/* ============== FOOTER ============== */
.page-foot {
  background: var(--emerald-deep);
  color: rgba(246,239,225,0.8);
  padding: clamp(40px, 6vw, 60px) var(--gutter);
  text-align: center;
}
.page-foot__line {
  font-family: var(--sans); font-style: normal;
  font-size: 14px; margin: 0 0 8px;
}
.page-foot__line a {
  color: var(--sun);
  border-bottom: 1px solid rgba(212,165,116,0.4);
}
.page-foot__tiny {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  margin: 0; opacity: 0.55;
}

/* ============== SUGGESTIONS MODAL — single elevated surface ============== */
.modal {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center;
  padding: 20px;
}
.modal[hidden] { display: none; }
.modal__overlay {
  position: absolute; inset: 0;
  background: rgba(14,42,35,0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 240ms var(--ease);
}
.modal.is-open .modal__overlay { opacity: 1; }

.modal__card {
  position: relative;
  background: var(--paper);
  border-radius: 18px;
  width: 100%;
  max-width: 720px;
  max-height: calc(100vh - 40px);
  display: flex; flex-direction: column;
  overflow: hidden;
  transform: translateY(20px) scale(0.98);
  opacity: 0;
  transition: transform 280ms var(--ease), opacity 240ms var(--ease);
  box-shadow: var(--shadow-lg);
}
.modal.is-open .modal__card { transform: translateY(0) scale(1); opacity: 1; }

.modal__head {
  padding: 24px 28px 18px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 16px;
}
.modal__kicker {
  font-family: var(--sans);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 4px;
  font-weight: 700;
}
.modal__title {
  font-family: var(--sans); font-weight: 700;
  font-size: clamp(16px, 2vw, 18px);
  margin: 0; color: var(--ink);
  letter-spacing: -0.012em; line-height: 1.35;
}
.modal__close {
  width: 34px; height: 34px; border-radius: 50%;
  font-size: 14px; color: var(--ink-soft);
  transition: all 200ms var(--ease);
}
.modal__close:hover {
  background: var(--ink); color: var(--cream);
}
.modal__body {
  padding: 20px 28px 28px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.modal__intro {
  font-family: var(--sans); font-style: normal;
  color: var(--ink-soft); font-size: 14px;
  margin: 0 0 20px; line-height: 1.55;
}
.modal__venues {
  display: flex; flex-direction: column;
  gap: 0;
}
.modal__venues .venue {
  padding: 22px 0;
}
.modal__venues .venue:first-child { padding-top: 0; }
.modal__venues .venue__name { font-size: 19px; }
.modal__venues .venue__hook { font-size: 14px; margin-bottom: 14px; }

@media (max-width: 600px) {
  .modal { padding: 0; }
  .modal__card {
    max-height: 100vh; height: 100vh;
    border-radius: 0;
  }
  .modal__head { padding: 18px 20px 14px; }
  .modal__body { padding: 16px 20px 24px; }
}

/* ============== UTILITIES ============== */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

/* ============== PRINT ============== */
@media print {
  .nav, .cat-rail, .venue__bookmark, .venue__toggle,
  .itin-row__suggestions, .modal { display: none; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .venue, .itin-row { break-inside: avoid; }
  .cover { min-height: auto; }
  .cover__sky, .cover__sun, .cover__palm { display: none; }
  .cover__title { color: #000; text-shadow: none; }
}
