/* ============================================================
   Pandora Hotel — pandora.css (cinematic Tuscan editorial)
   See DESIGN.md for the visual system this implements.
   ============================================================ */

/* ---------- Tokens ---------- */

:root {
  /* Backgrounds */
  --bg-cream: #f5f0e6;
  --bg-deep: #0e1814;
  --bg-surface: #ffffff;

  /* Text */
  --text-primary: #1a1a1a;
  --text-secondary: #52524d;
  --text-muted: #9a9690;

  /* Accents */
  --accent-green: #1a3a2f;
  --accent-green-dark: #0f2620;
  --accent-terra: #c46a3d;
  --accent-bronze: #a07a4a;

  /* Hero gradient overlay (when no photo, fallback) */
  --hero-grad-from: rgba(196, 106, 61, 0.4);
  --hero-grad-via: rgba(160, 122, 74, 0.3);
  --hero-grad-to: rgba(14, 24, 20, 0.85);

  /* Spacing */
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 80px;
  --space-8: 128px;
  --space-9: 192px;
  --space-10: 240px;

  /* Type scale */
  --text-eyebrow: 11px;
  --text-caption: 12px;
  --text-small: 14px;
  --text-body: 17px;
  --text-body-lg: 19px;
  --text-h3: 28px;
  --text-h2: clamp(40px, 5vw, 80px);
  --text-h1: clamp(56px, 9vw, 128px);
  --text-h0: clamp(72px, 11vw, 180px);
  --text-pullquote: clamp(32px, 4vw, 64px);

  /* Radius */
  --radius-0: 0;
  --radius-2: 2px;
  --radius-pill: 999px;

  /* Layout */
  --container-max: 1280px;
  --content-max: 880px;

  /* Easing */
  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  --ease-in: cubic-bezier(0.4, 0, 1, 1);
}

/* Per-page accent variants — now mostly affect terra/green hue mix per page identity */
body.page-weddings { --accent-terra: #c25862; }
body.page-honeymoon { --accent-terra: #d97a5e; }
body.page-romance { --accent-terra: #a35462; }
body.page-meetings { --accent-green: #2a3a30; --accent-terra: #8a6f4a; }
body.page-incentive { --accent-terra: #c98a3e; }
body.page-group { --accent-green: #2e3a2a; --accent-terra: #98884a; }
body.page-luxury { --accent-green: #1a2820; --accent-terra: #b08a4a; }
body.page-all-inclusive { --accent-terra: #c46a3d; }

/* ---------- Reset + base ---------- */

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg-cream);
  color: var(--text-primary);
  font-family: 'Inter Tight', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: var(--text-body);
  line-height: 1.65;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 50, "WONK" 0;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--text-primary);
  line-height: 1.05;
}

h1 em, h2 em, h3 em { font-style: italic; font-variation-settings: "SOFT" 100, "WONK" 1; }

p { margin: 0 0 var(--space-4); }
p:last-child { margin-bottom: 0; }

a {
  color: var(--accent-green);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color 200ms var(--ease-out), border-color 200ms var(--ease-out);
}
a:hover { color: var(--accent-terra); border-color: var(--accent-terra); }
a:focus-visible {
  outline: 2px solid var(--accent-green);
  outline-offset: 3px;
  border-radius: var(--radius-2);
}
nav a, .cta-primary, .cta-ghost, .nav-pill, .nav-link, .nav-logo, .footer-links a, a.btn { border-bottom: none; }

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  color: inherit;
}

img, picture, svg { max-width: 100%; display: block; }

img { filter: saturate(0.92) contrast(1.05); }

/* ---------- Skip link ---------- */

.skip-link {
  position: absolute;
  top: -100px;
  left: var(--space-3);
  background: var(--bg-deep);
  color: var(--bg-cream);
  padding: var(--space-3) var(--space-4);
  z-index: 1000;
  font-size: var(--text-small);
  font-weight: 500;
  border-radius: var(--radius-2);
}
.skip-link:focus { top: var(--space-3); outline: 2px solid var(--accent-terra); outline-offset: 2px; }

/* ---------- Container ---------- */

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--space-5);
  padding-right: var(--space-5);
}

/* ---------- Sticky nav ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 300ms var(--ease-out), border-color 300ms var(--ease-out);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(245, 240, 230, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: rgba(26, 58, 47, 0.12);
}

/* When over hero photo (default), text is white */
.site-header:not(.scrolled) {
  --header-text: rgba(245, 240, 230, 0.95);
  --header-text-muted: rgba(245, 240, 230, 0.72);
}
.site-header.scrolled {
  --header-text: var(--text-primary);
  --header-text-muted: var(--text-secondary);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  height: 72px;
}

.nav-logo {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 24px;
  color: var(--header-text);
  letter-spacing: -0.02em;
}
.nav-logo:hover { color: var(--header-text); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--header-text-muted);
  font-size: 14px;
  letter-spacing: 0.01em;
  position: relative;
  padding: 8px 0;
}
.nav-link:hover { color: var(--header-text); }
.nav-link[aria-current='page']::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: currentColor;
}

.nav-pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  border: 1px solid currentColor;
  color: var(--header-text);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 200ms var(--ease-out);
  min-height: 36px;
}
.nav-pill:hover {
  background: var(--accent-green);
  border-color: var(--accent-green);
  color: var(--bg-cream);
}

.nav-more { position: relative; }
.nav-more-trigger {
  color: var(--header-text-muted);
  font-size: 14px;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-more-trigger:hover { color: var(--header-text); }
.nav-more-chevron { display: inline-block; transition: transform 200ms var(--ease-out); font-size: 10px; }
.nav-more[aria-expanded='true'] .nav-more-chevron { transform: rotate(180deg); }
.nav-more-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  background: var(--bg-cream);
  border: 1px solid rgba(26, 58, 47, 0.12);
  padding: var(--space-3) 0;
  list-style: none;
  margin: 0;
  min-width: 240px;
  box-shadow: 0 16px 40px rgba(14, 24, 20, 0.12);
  display: none;
}
.nav-more[aria-expanded='true'] .nav-more-menu { display: block; }
.nav-more-menu li { padding: 0; }
.nav-more-menu a {
  display: block;
  padding: 10px var(--space-4);
  color: var(--text-secondary);
  font-size: 14px;
  border-bottom: none;
}
.nav-more-menu a:hover { background: rgba(26, 58, 47, 0.06); color: var(--text-primary); }

.nav-mobile-toggle { display: none; }
.nav-mobile-toggle { color: var(--header-text); }
.nav-mobile-plan { display: none; }

/* ---------- Hero (full-bleed photo with scrim) ---------- */

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  padding: var(--space-9) var(--space-5) var(--space-7);
  background-image: var(--hero-image, none);
  background-size: cover;
  background-position: center;
  background-color: var(--bg-deep);
  color: var(--bg-cream);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14, 24, 20, 0.18) 0%,
    rgba(14, 24, 20, 0.05) 35%,
    rgba(14, 24, 20, 0.55) 75%,
    rgba(14, 24, 20, 0.85) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  width: 100%;
  min-width: 0;
  margin: 0 auto;
}

.hero-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: var(--text-small);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(245, 240, 230, 0.78);
  margin: 0 0 var(--space-6);
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: currentColor;
}

.hero-name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-variation-settings: "SOFT" 30, "WONK" 0;
  font-size: var(--text-h1);
  line-height: 0.95;
  color: var(--bg-cream);
  margin: 0 0 var(--space-5);
  max-width: 18ch;
  letter-spacing: -0.025em;
}
.hero--homepage .hero-name {
  font-size: var(--text-h0);
  line-height: 0.92;
  max-width: 9ch;
}
.hero-name em {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "WONK" 1;
}

.hero-tagline {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.35;
  color: rgba(245, 240, 230, 0.9);
  max-width: 36ch;
  margin: 0 0 var(--space-3);
  letter-spacing: -0.01em;
}

.hero-sub {
  font-family: 'Inter Tight', sans-serif;
  font-size: 15px;
  color: rgba(245, 240, 230, 0.65);
  letter-spacing: 0.02em;
  max-width: 50ch;
  margin: 0 0 var(--space-7);
}

.hero-ctas {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}

/* ---------- CTAs ---------- */

.cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: var(--accent-green);
  color: var(--bg-cream);
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--accent-green);
  border-radius: var(--radius-2);
  min-height: 52px;
  transition: all 250ms var(--ease-out);
  cursor: pointer;
}
.cta-primary:hover {
  background: var(--accent-green-dark);
  border-color: var(--accent-green-dark);
  color: var(--bg-cream);
  transform: translateY(-1px);
}
.cta-primary:active { transform: translateY(0); }
.cta-primary:focus-visible { outline: 2px solid var(--accent-terra); outline-offset: 3px; }
.cta-primary:disabled { opacity: 0.5; cursor: not-allowed; }

/* On hero photo backgrounds, primary CTA is cream-on-transparent with a border */
.hero .cta-primary {
  background: transparent;
  color: var(--bg-cream);
  border-color: var(--bg-cream);
}
.hero .cta-primary:hover {
  background: var(--bg-cream);
  color: var(--bg-deep);
}

.cta-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: transparent;
  color: rgba(245, 240, 230, 0.95);
  font-family: 'Inter Tight', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(245, 240, 230, 0.4);
  border-radius: var(--radius-2);
  min-height: 52px;
  transition: all 250ms var(--ease-out);
}
.cta-ghost:hover {
  background: rgba(245, 240, 230, 0.08);
  border-color: rgba(245, 240, 230, 0.7);
  color: var(--bg-cream);
}

.cta-ghost--light {
  color: var(--accent-green);
  border-color: var(--accent-green);
}
.cta-ghost--light:hover {
  background: var(--accent-green);
  color: var(--bg-cream);
  border-color: var(--accent-green);
}

/* ---------- Section ---------- */

.section { padding: var(--space-7) var(--space-5); }
.section--primary { padding: var(--space-8) var(--space-5); }
.section--editorial { padding: var(--space-8) var(--space-5); }
.section--tight { padding: var(--space-7) var(--space-5); }
.section--quote { padding: var(--space-10) var(--space-5); background: var(--bg-deep); color: var(--bg-cream); }

.section-eyebrow {
  font-family: 'Inter Tight', sans-serif;
  font-size: var(--text-eyebrow);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-green);
  margin: 0 0 var(--space-4);
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}
.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: currentColor;
}

.section-h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: var(--text-h2);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 var(--space-6);
  max-width: 22ch;
  color: var(--text-primary);
}
.section--quote .section-h2 { color: var(--bg-cream); }

.section-intro {
  font-family: 'Inter Tight', sans-serif;
  font-size: var(--text-body-lg);
  color: var(--text-secondary);
  max-width: 56ch;
  margin: 0 0 var(--space-6);
  line-height: 1.65;
}

/* ---------- Editorial split ---------- */

.editorial-split {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: var(--space-7) var(--space-8);
  align-items: start;
  max-width: var(--container-max);
  margin: 0 auto;
}
.editorial-split--reverse { grid-template-columns: 7fr 5fr; }
.editorial-split--reverse .editorial-split-text { order: 2; }
.editorial-split--reverse .editorial-split-image { order: 1; }

.editorial-split p {
  font-size: var(--text-body-lg);
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 56ch;
}

.editorial-split-image {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--bg-deep);
  background-size: cover;
  background-position: center;
  background-image: var(--split-image, none);
  overflow: hidden;
}

.editorial-split-caption {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-top: var(--space-3);
  font-size: var(--text-caption);
  font-family: 'Inter Tight', sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.editorial-split-caption::before {
  content: '';
  display: block;
  width: 1px;
  height: 14px;
  background: var(--text-muted);
  margin-top: 2px;
  flex-shrink: 0;
}

.editorial-split-aside {
  font-family: 'Inter Tight', sans-serif;
  font-size: var(--text-small);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-top: 1px solid rgba(26, 58, 47, 0.18);
  padding-top: var(--space-3);
  margin-top: var(--space-5);
}

/* ---------- Stat row (horizontal big numbers) ---------- */

.stat-row-h {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  max-width: var(--container-max);
  margin: var(--space-7) auto 0;
  padding-top: var(--space-6);
  border-top: 1px solid rgba(26, 58, 47, 0.18);
}

.stat-row-h-item { display: flex; flex-direction: column; gap: var(--space-2); }

.stat-row-h-value {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(48px, 5vw, 88px);
  color: var(--text-primary);
  letter-spacing: -0.04em;
  line-height: 0.95;
  font-variant-numeric: lining-nums;
}

.stat-row-h-label {
  font-family: 'Inter Tight', sans-serif;
  font-size: var(--text-small);
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---------- Trip index (hover reveals photo from left) ---------- */

.trip-index {
  max-width: var(--container-max);
  margin: 0 auto;
  border-top: 1px solid rgba(26, 58, 47, 0.18);
}

.trip-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: var(--space-5);
  align-items: center;
  padding: var(--space-6) var(--space-3);
  border-bottom: 1px solid rgba(26, 58, 47, 0.18);
  text-decoration: none;
  border-bottom-color: rgba(26, 58, 47, 0.18);
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: background 250ms var(--ease-out), padding-left 250ms var(--ease-out), color 250ms var(--ease-out);
}
.trip-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--row-image, none);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 400ms var(--ease-out);
  pointer-events: none;
}
.trip-row::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14,24,20,0.78) 0%, rgba(14,24,20,0.55) 50%, rgba(14,24,20,0.18) 100%);
  opacity: 0;
  transition: opacity 400ms var(--ease-out);
  pointer-events: none;
}
.trip-row:hover {
  padding-left: var(--space-5);
  color: var(--bg-cream);
}
.trip-row:hover::before, .trip-row:hover::after { opacity: 1; }
.trip-row:hover .trip-row-num { color: rgba(245,240,230,0.7); }
.trip-row:hover .trip-row-headline { color: var(--bg-cream); }
.trip-row:hover .trip-row-sub { color: rgba(245,240,230,0.75); }
.trip-row:hover .trip-row-arrow { color: var(--bg-cream); transform: translateX(8px); }

.trip-row > * { position: relative; z-index: 1; }
.trip-row:focus-visible { outline: 2px solid var(--accent-green); outline-offset: -2px; }

.trip-row-num {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 24px;
  color: var(--accent-green);
  font-variant-numeric: lining-nums;
  transition: color 250ms var(--ease-out);
}

.trip-row-text { display: flex; flex-direction: column; gap: var(--space-2); }

.trip-row-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: -0.025em;
  color: var(--text-primary);
  line-height: 1.0;
  margin: 0;
  transition: color 250ms var(--ease-out);
}

.trip-row-sub {
  font-family: 'Inter Tight', sans-serif;
  font-size: var(--text-body);
  color: var(--text-secondary);
  margin: 0;
  max-width: 60ch;
  transition: color 250ms var(--ease-out);
}

.trip-row-arrow {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 32px;
  color: var(--accent-green);
  transition: transform 250ms var(--ease-out), color 250ms var(--ease-out);
}

/* ---------- Pull quote (full-viewport scene) ---------- */

.pull-quote {
  padding: var(--space-10) var(--space-5);
  background: var(--bg-deep);
  color: var(--bg-cream);
  position: relative;
  background-image: var(--quote-image, none);
  background-size: cover;
  background-position: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
}
.pull-quote::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(14,24,20,0.55), rgba(14,24,20,0.85));
  z-index: 1;
}
.pull-quote-inner { position: relative; z-index: 2; max-width: var(--container-max); margin: 0 auto; width: 100%; }

.pull-quote-body {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: var(--text-pullquote);
  line-height: 1.2;
  color: var(--bg-cream);
  letter-spacing: -0.02em;
  max-width: 30ch;
  margin: 0 0 var(--space-6);
}
.pull-quote-attr {
  font-family: 'Inter Tight', sans-serif;
  font-size: var(--text-small);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.7);
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}
.pull-quote-attr::before { content: ''; width: 32px; height: 1px; background: currentColor; }

/* ---------- Section photo (full-bleed cinematic divider) ---------- */

.section-photo {
  position: relative;
  height: 70vh;
  min-height: 480px;
  background-image: var(--section-image, none);
  background-size: cover;
  background-position: center;
  background-color: var(--bg-deep);
  display: flex;
  align-items: flex-end;
  padding: var(--space-7) var(--space-5);
}
.section-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(14, 24, 20, 0.5) 100%);
  pointer-events: none;
}
.section-photo-caption {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  font-family: 'Inter Tight', sans-serif;
  font-size: var(--text-small);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 240, 230, 0.85);
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}
.section-photo-caption::before { content: ''; width: 32px; height: 1px; background: currentColor; }

/* ---------- Format card (3 cols, type-only) ---------- */

.format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-7);
  max-width: var(--container-max);
  margin: 0 auto;
  border-top: 1px solid rgba(26, 58, 47, 0.18);
  padding-top: var(--space-6);
}

.format-card { display: flex; flex-direction: column; gap: var(--space-3); }

.format-card-mock,
.suite-card-mock {
  aspect-ratio: 4 / 3;
  background-color: var(--bg-deep);
  background-image: var(--mock-image, linear-gradient(135deg, rgba(26, 58, 47, 0.9), rgba(196, 106, 61, 0.45)));
  background-size: cover;
  background-position: center;
  overflow: hidden;
  margin-bottom: var(--space-3);
  filter: saturate(0.92) contrast(1.05);
}

.format-card-mock::after,
.suite-card-mock::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(14, 24, 20, 0.02), rgba(14, 24, 20, 0.16));
}

.format-card-name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(28px, 2.8vw, 40px);
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.05;
}

.format-card-capacity {
  font-size: var(--text-body);
  color: var(--text-secondary);
  margin: 0;
}

.format-card-price {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 22px;
  color: var(--accent-green);
  letter-spacing: -0.01em;
  margin: 0;
  padding-top: var(--space-3);
  border-top: 1px solid rgba(26, 58, 47, 0.18);
}

/* ---------- Suite list ---------- */

.suite-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-7);
  max-width: var(--container-max);
  margin: 0 auto;
  border-top: 1px solid rgba(26, 58, 47, 0.18);
  padding-top: var(--space-6);
}

.suite-card { display: flex; flex-direction: column; gap: var(--space-3); }

.suite-card-name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 32px;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--text-primary);
  line-height: 1.05;
}

.suite-card-rate {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 18px;
  color: var(--accent-green);
  letter-spacing: -0.01em;
  margin: 0;
}

.suite-card-note {
  font-size: var(--text-body);
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

/* ---------- Testimonial ---------- */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-7) var(--space-6);
  max-width: var(--container-max);
  margin: 0 auto;
}
.testimonial-grid--three { grid-template-columns: repeat(3, 1fr); }

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  border-top: 1px solid rgba(26, 58, 47, 0.18);
}

.testimonial-body {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(20px, 1.7vw, 26px);
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.4;
}

.testimonial-meta {
  font-family: 'Inter Tight', sans-serif;
  font-size: var(--text-small);
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
}

/* ---------- Day timeline ---------- */

.day-timeline {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: var(--space-3) var(--space-5);
  max-width: var(--content-max);
  margin: 0 auto;
  padding-left: var(--space-5);
  border-left: 1px solid rgba(26, 58, 47, 0.25);
}

.day-timeline-row { display: contents; }

.day-timeline-time {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 18px;
  color: var(--accent-green);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  padding-top: 2px;
}

.day-timeline-action {
  font-size: var(--text-body);
  color: var(--text-primary);
  margin: 0;
  font-family: 'Inter Tight', sans-serif;
}

.day-timeline-day { margin-bottom: var(--space-7); }
.day-timeline-day-header {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: 28px;
  margin: 0 0 var(--space-5);
  letter-spacing: -0.02em;
  color: var(--accent-green);
}

.day-timeline-caption {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 17px;
  color: var(--text-secondary);
  margin-top: var(--space-5);
  padding-left: var(--space-5);
  max-width: var(--content-max);
}

/* ---------- Small stat blocks ---------- */

.stat-block {
  display: grid;
  gap: var(--space-3);
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(26, 58, 47, 0.18);
}

.stat-row {
  display: grid;
  grid-template-columns: minmax(96px, 0.35fr) 1fr;
  gap: var(--space-4);
  align-items: baseline;
  padding-top: var(--space-3);
  border-top: 1px solid rgba(26, 58, 47, 0.1);
}

.stat-row:first-child { border-top: none; }

.stat-value {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  color: var(--accent-green);
  letter-spacing: -0.02em;
  margin: 0;
}

.stat-label {
  color: var(--text-secondary);
  margin: 0;
}

/* ---------- FAQ ---------- */

.faq { max-width: var(--content-max); margin: 0 auto; }
.faq details {
  border-bottom: 1px solid rgba(26, 58, 47, 0.18);
  padding: var(--space-4) 0;
}
.faq details:first-child { border-top: 1px solid rgba(26, 58, 47, 0.18); }

.faq summary {
  list-style: none;
  cursor: pointer;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 28px;
  color: var(--accent-green);
  transition: transform 200ms var(--ease-out);
}
.faq details[open] summary::after { content: '−'; }
.faq summary:focus-visible { outline: 2px solid var(--accent-green); outline-offset: 4px; }
.faq-body {
  padding-top: var(--space-3);
  color: var(--text-secondary);
  font-size: var(--text-body);
  line-height: 1.6;
}

/* ---------- Tile grid ---------- */

.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-7) var(--space-6);
  max-width: var(--container-max);
  margin: 0 auto;
  border-top: 1px solid rgba(26, 58, 47, 0.18);
  padding-top: var(--space-6);
}
.tile-grid--two { grid-template-columns: repeat(2, 1fr); }
.tile-grid--four { grid-template-columns: repeat(4, 1fr); }

.tile-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: 26px;
  margin: 0 0 var(--space-3);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.tile-body {
  font-size: var(--text-body);
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
  max-width: 38ch;
}

.program-grid,
.included-grid {
  display: grid;
  gap: var(--space-6);
  max-width: var(--container-max);
  margin: 0 auto;
}

.program-grid { grid-template-columns: repeat(3, 1fr); }
.included-grid { grid-template-columns: repeat(2, 1fr); }

/* ---------- Spec table ---------- */

.spec-table {
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  border-collapse: collapse;
}
.spec-table th, .spec-table td {
  text-align: left;
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid rgba(26, 58, 47, 0.18);
  vertical-align: top;
}
.spec-table th {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: var(--text-small);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-green);
  width: 28%;
}
.spec-table td { font-size: var(--text-body); color: var(--text-secondary); line-height: 1.55; }

/* ---------- CTA band ---------- */

.cta-band {
  position: relative;
  padding: var(--space-10) var(--space-5);
  background-color: var(--bg-deep);
  background-image: var(--band-image, none);
  background-size: cover;
  background-position: center;
  color: var(--bg-cream);
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14, 24, 20, 0.75) 0%, rgba(14, 24, 20, 0.55) 50%, rgba(14, 24, 20, 0.35) 100%);
  z-index: 1;
}
.cta-band-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
}

.cta-band-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 80px);
  color: var(--bg-cream);
  letter-spacing: -0.025em;
  max-width: 18ch;
  margin: 0 0 var(--space-7);
  line-height: 1.0;
}

.cta-band .cta-primary {
  background: var(--bg-cream);
  color: var(--bg-deep);
  border-color: var(--bg-cream);
}
.cta-band .cta-primary:hover {
  background: transparent;
  color: var(--bg-cream);
  border-color: var(--bg-cream);
}

.cta-band-email {
  margin-top: var(--space-5);
  color: rgba(245, 240, 230, 0.7);
  font-size: var(--text-body);
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
}
.cta-band-email a {
  color: rgba(245, 240, 230, 0.95);
  border-bottom: 1px solid rgba(245, 240, 230, 0.4);
}
.cta-band-email a:hover { color: var(--bg-cream); border-color: var(--bg-cream); }

/* ---------- Footer ---------- */

.site-footer {
  padding: var(--space-7) var(--space-5) var(--space-6);
  background: var(--bg-deep);
  color: rgba(245, 240, 230, 0.85);
  border-top: 1px solid rgba(245, 240, 230, 0.08);
}

.footer-line {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: var(--text-body);
  color: rgba(245, 240, 230, 0.85);
  margin: 0 0 var(--space-5);
  text-align: center;
}
.footer-line a { color: rgba(245, 240, 230, 0.85); border-bottom: 1px solid rgba(245, 240, 230, 0.3); }

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-3) var(--space-4);
  list-style: none;
  margin: var(--space-3) 0 0;
  padding: 0;
}
.footer-links a {
  color: rgba(245, 240, 230, 0.55);
  font-family: 'Inter Tight', sans-serif;
  font-size: var(--text-caption);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: none;
}
.footer-links a:hover { color: var(--bg-cream); }

/* ---------- /suites table ---------- */

.suites-table {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  border-collapse: collapse;
  font-size: var(--text-body);
}
.suites-table th, .suites-table td {
  padding: var(--space-3) var(--space-4);
  text-align: left;
  border-bottom: 1px solid rgba(26, 58, 47, 0.12);
}
.suites-table th {
  font-family: 'Inter Tight', sans-serif;
  font-weight: 500;
  font-size: var(--text-small);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-green);
}
.suites-table td { color: var(--text-secondary); }
.suites-table td:first-child {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  font-size: 20px;
}

.fineprint {
  margin-top: var(--space-4);
  font-size: var(--text-small);
  color: var(--text-muted);
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
  .trip-row:hover { padding-left: var(--space-3); }
  html { scroll-behavior: auto; }
}

/* ---------- Mobile + tablet ---------- */

@media (max-width: 1023px) {
  .editorial-split, .editorial-split--reverse { grid-template-columns: 1fr; gap: var(--space-6); }
  .editorial-split--reverse .editorial-split-text, .editorial-split--reverse .editorial-split-image { order: initial; }
  .stat-row-h { grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
  .tile-grid--four { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid--three { grid-template-columns: repeat(2, 1fr); }
  .program-grid { grid-template-columns: 1fr; }
  .format-grid, .suite-rail { grid-template-columns: 1fr; gap: var(--space-5); border-top: none; padding-top: 0; }
  .format-card, .suite-card { padding-bottom: var(--space-5); border-bottom: 1px solid rgba(26, 58, 47, 0.18); }
}

@media (max-width: 767px) {
  :root { --space-7: 56px; --space-8: 80px; --space-9: 120px; --space-10: 160px; }
  .container { padding-left: var(--space-4); padding-right: var(--space-4); }
  .section { padding: var(--space-7) var(--space-4); }
  .section--primary, .section--editorial { padding: var(--space-8) var(--space-4); }
  .testimonial-grid, .testimonial-grid--three, .tile-grid, .tile-grid--two { grid-template-columns: 1fr; gap: var(--space-5); }
  .included-grid { grid-template-columns: 1fr; }
  .stat-row-h { grid-template-columns: repeat(2, 1fr); gap: var(--space-4); }
  .stat-row-h-value { font-size: 56px; }
  .hero { height: 90vh; min-height: 600px; padding: var(--space-7) var(--space-4) var(--space-7); }
  .hero-content { max-width: calc(100vw - (var(--space-4) * 2)); }
  .hero-eyebrow {
    flex-wrap: wrap;
    max-width: 100%;
    margin-bottom: var(--space-4);
    font-size: 10px;
    letter-spacing: 0.14em;
    line-height: 1.8;
    row-gap: 0;
  }
  .hero-name { font-size: clamp(48px, 13vw, 96px); max-width: 14ch; }
  .hero--homepage .hero-name { font-size: clamp(56px, 16vw, 112px); max-width: 8ch; }
  .hero-tagline {
    width: 100%;
    max-width: 100%;
    font-size: clamp(20px, 6vw, 22px);
    overflow-wrap: break-word;
  }
  .hero-sub {
    max-width: 100%;
    overflow-wrap: break-word;
  }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .nav {
    position: relative;
    gap: var(--space-3);
  }
  .nav > .nav-pill { display: none; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--space-3);
    background: rgba(245, 240, 230, 0.98);
    border: 1px solid rgba(26, 58, 47, 0.14);
    box-shadow: 0 24px 56px rgba(14, 24, 20, 0.18);
  }
  .nav.is-open .nav-links { display: flex; }
  .nav-link,
  .nav-more-trigger {
    min-height: 44px;
    width: 100%;
    align-items: center;
    color: var(--text-primary);
    padding: 12px var(--space-3);
  }
  .nav-link:hover,
  .nav-more-trigger:hover { color: var(--accent-green); }
  .nav-mobile-plan {
    display: block;
    padding: var(--space-2) var(--space-3) 0;
  }
  .nav-mobile-plan .nav-pill {
    display: flex;
    width: 100%;
    justify-content: center;
    color: var(--accent-green);
    border-color: var(--accent-green);
  }
  .nav-mobile-plan .nav-pill:hover {
    background: var(--accent-green);
    color: var(--bg-cream);
  }
  .nav-more-menu {
    position: static;
    min-width: 0;
    box-shadow: none;
    border: 0;
    background: rgba(26, 58, 47, 0.05);
    margin: 0 0 var(--space-2);
  }
  .nav-more-menu a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav-mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1px solid currentColor;
    border-radius: var(--radius-2);
  }
  .trip-row { grid-template-columns: 56px 1fr auto; gap: var(--space-3); padding: var(--space-5) var(--space-3); }
  .trip-row-headline { font-size: 26px; }
  .trip-row-sub { font-size: 14px; }
  .cta-band { padding: var(--space-8) var(--space-4); }
  .cta-band-headline { font-size: clamp(36px, 9vw, 56px); }
  .day-timeline { grid-template-columns: 80px 1fr; padding-left: var(--space-4); }
  .footer-links { font-size: 11px; gap: var(--space-2) var(--space-3); }
  .section-h2 { font-size: clamp(36px, 8vw, 56px); }
  .pull-quote { padding: var(--space-9) var(--space-4); }
  .section-photo { height: 60vh; min-height: 360px; }
}
