/*
Theme Name: Costa Verde Express
Theme URI: https://costaverdeluxurytrain.com
Author: Palace Tours
Author URI: https://palacetours.com
Description: Custom editorial theme for the Costa Verde Express luxury train brand site. Server-rendered for SEO, ACF-driven for editing, WPML-ready for EN/ES.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.6
Requires PHP: 8.1
License: Proprietary
License URI: https://palacetours.com
Text Domain: costa-verde
Domain Path: /languages
Tags: luxury, travel, editorial, custom
*/

/* ============================================================
   Costa Verde Express — Editorial Design System
   Adapted from the React prototype, server-rendered for WordPress.
   Variables exposed for theme customizer hooks (see functions.php).
============================================================ */

:root {
  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans:  "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --gold: #b08c4a;
  --gold-light: #c9a96e;
  --ink: #1a2e2a;
  --ink-deep: #0f1f1c;
  --cream: #faf6ee;
  --cream-warm: #f5efe1;
  --paper: #ffffff;
  --rule: rgba(26, 46, 42, 0.12);
  --rule-strong: rgba(26, 46, 42, 0.22);
  --text: #333333;
  --text-muted: #6b6b6b;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--gold); }

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

/* ── Typography ─────────────────────────────────────── */

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(34px, 7vw, 96px); }
h2 { font-size: clamp(26px, 4.4vw, 64px); }
h3 { font-size: clamp(20px, 2.8vw, 40px); }
h4 { font-size: 20px; }

p { margin: 0 0 1.4em; font-size: 17px; line-height: 1.75; color: var(--text); }
p:last-child { margin-bottom: 0; }

em { font-style: italic; }

.lede {
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 26px);
  line-height: 1.5;
  color: var(--ink);
  font-weight: 400;
  font-style: italic;
}

.muted { color: var(--text-muted); }

.balance { text-wrap: balance; }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  margin: 0;
  opacity: 0.78;
}

.smallcaps {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}

.em-gold { color: var(--gold); font-style: italic; }

.center { text-align: center; }

/* ── Gold rule ───────────────────────────────────────── */

.gold-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 14px 0 22px;
}

/* ── Layout primitives ──────────────────────────────── */

section { padding: 120px 0; }
section.tight { padding: 64px 0; }

.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px;
}

.split-7-5 {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 56px;
  align-items: end;
}

.split-5-7 {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 56px;
  align-items: end;
}

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }

.col-text { max-width: 680px; }

/* ── Section backgrounds ────────────────────────────── */

.cream-warm { background: var(--cream-warm); }
.ink { background: var(--ink); color: #dcd3b8; }
.ink h2, .ink h3 { color: #f0ebda; }
.ink .eyebrow { color: var(--gold-light); opacity: 1; }
.ink p { color: #bfbaa9; }
.ink .gold-rule { background: var(--gold-light); }
.ink .muted { color: #a09b8a; }

/* ── Frame (image placeholder + real image wrapper) ── */

.frame {
  position: relative;
  width: 100%;
  background: linear-gradient(135deg, rgba(26,46,42,0.06), rgba(26,46,42,0.12));
  border: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.frame.dark {
  background: linear-gradient(135deg, rgba(26,46,42,0.85), rgba(15,31,28,0.95));
  border-color: rgba(220, 211, 184, 0.18);
}
.frame.dark .label { color: rgba(220, 211, 184, 0.7); }

.frame img,
.frame picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.frame .label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(26, 46, 42, 0.5);
  padding: 16px;
  text-align: center;
  max-width: 90%;
  pointer-events: none;
  z-index: 1;
}

/* When a real image is rendered inside, the label is hidden by the img layer */
.frame.has-image .label { display: none; }

/* Aspect ratios */
.ar-21-9 { aspect-ratio: 21 / 9; }
.ar-16-9 { aspect-ratio: 16 / 9; }
.ar-3-2  { aspect-ratio: 3 / 2; }
.ar-4-5  { aspect-ratio: 4 / 5; }
.ar-1-1  { aspect-ratio: 1 / 1; }

/* ── Caption ─────────────────────────────────────────── */

.figure { margin: 0; }
.caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  margin-top: 14px;
  max-width: 540px;
}
.caption .credit {
  display: block;
  margin-top: 6px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.7;
}

/* ── Navigation ─────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 238, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, padding 0.3s;
}
.nav.scrolled { border-color: var(--rule); }

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 56px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  transition: padding 0.3s;
}
.nav.scrolled .nav-inner { padding-top: 16px; padding-bottom: 16px; }

.brand {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  letter-spacing: 0.02em;
}
.brand small {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links.right { justify-content: flex-end; }

.nav-link {
  color: var(--ink);
  opacity: 0.7;
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  transition: opacity 0.2s, border-color 0.2s, color 0.2s;
}
.nav-link:hover { opacity: 1; color: var(--ink); }
.nav-link.active { opacity: 1; border-bottom-color: var(--gold); }
.nav-link.cta { color: var(--gold); border-bottom-color: var(--gold); opacity: 1; }
.nav-link.cta:hover { color: var(--gold-light); }

.lang {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-left: 16px;
}
.lang b { color: var(--ink); font-weight: 500; }
.lang .sep { margin: 0 6px; opacity: 0.5; }

.menu-toggle { display: none; }
.nav-mobile { display: none; }

/* ── Footer ─────────────────────────────────────────── */

footer {
  background: var(--ink-deep);
  color: #bfbaa9;
  padding: 96px 0 48px;
}
footer .wrap { padding: 0 56px; }
footer h4 {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 500;
  margin: 0 0 18px;
}
footer a {
  color: #bfbaa9;
  font-size: 15px;
  line-height: 2;
  transition: color 0.2s;
}
footer a:hover { color: var(--gold); }
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(220, 211, 184, 0.12);
}
.brandmark {
  font-family: var(--serif);
  font-size: 24px;
  color: #e6e1d3;
  display: flex;
  flex-direction: column;
}
.brandmark small {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 4px;
}
.foot-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  font-size: 12px;
  color: #847f70;
}

/* ── Hero variants ──────────────────────────────────── */

.hero-bleed { position: relative; }
.hero-bleed .frame { aspect-ratio: 21 / 9; min-height: 70vh; }
.hero-bleed .hero-content {
  position: absolute;
  bottom: 64px;
  left: 0;
  right: 0;
  padding: 0 80px;
  max-width: 1280px;
  margin: 0 auto;
  color: #faf6ee;
}
.hero-bleed .frame.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.82) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-bleed .hero-content { z-index: 2; }
.hero-bleed .hero-content h1 {
  color: #faf6ee;
  max-width: 22ch;
  font-size: clamp(34px, 5.5vw, 72px);
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
}
.hero-bleed .hero-content .lede,
.hero-bleed .hero-content p {
  color: #faf6ee;
  text-shadow: 0 2px 16px rgba(0,0,0,0.7);
}
.hero-bleed .hero-content .lede em,
.hero-bleed .hero-content .lede strong { color: #faf6ee; }
.hero-bleed .hero-content .em-gold { color: var(--gold-light); }
.hero-bleed .hero-meta b { text-shadow: 0 2px 16px rgba(0,0,0,0.7); }
.hero-bleed .hero-content .eyebrow { color: var(--gold-light); }
.hero-bleed .gold-rule { background: var(--gold-light); }

.hero-meta {
  margin-top: 48px;
  display: flex;
  gap: 64px;
  font-family: var(--sans);
  flex-wrap: wrap;
}
.hero-meta > span,
.hero-meta > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 246, 238, 0.75);
}
.hero-meta b {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: -0.01em;
  color: #faf6ee;
  margin-bottom: 4px;
}
.hero-meta .smallcaps { font-size: 10px; color: var(--text-muted); }
.hero-meta .val { font-family: var(--serif); font-size: 22px; color: var(--ink); margin-top: 4px; }

.hero-cover .hero-inner { padding: 40px 56px; max-width: 1280px; margin: 0 auto; }
.hero-cover .hero-top { margin-bottom: 56px; }
.hero-cover .hero-frame { margin: 0; }
.hero-cover .hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.hero-cover .hero-meta > div { color: var(--ink); }

/* ── Buttons ────────────────────────────────────────── */

.btn {
  display: inline-block;
  padding: 18px 36px;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid transparent;
  transition: all 0.25s;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--gold);
  color: var(--ink-deep);
}
.btn-primary:hover { background: var(--gold-light); color: var(--ink-deep); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn-outline-light:hover { background: var(--cream); color: var(--ink); }
.btn-arrow::after {
  content: " →";
  display: inline-block;
  transition: transform 0.25s;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ── Route map ──────────────────────────────────────── */

.route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
  position: relative;
  flex-wrap: wrap;
  gap: 24px;
}
.route::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--rule-strong);
  z-index: 0;
}
.stop {
  position: relative;
  z-index: 1;
  background: var(--cream);
  padding: 0 12px;
  text-align: center;
  flex: 1;
  min-width: 100px;
}
.stop .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ink);
  margin: 0 auto 16px;
  border: 2px solid var(--cream);
  outline: 1px solid var(--ink);
}
.stop.endpoint .dot { background: var(--gold); outline-color: var(--gold); }
.stop .name {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 4px;
}
.stop .day {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Comparison grid ────────────────────────────────── */

.compare {
  display: grid;
  grid-template-columns: 1.4fr 2fr 2fr 2fr;
  gap: 0;
  border-top: 1px solid rgba(220, 211, 184, 0.18);
}
.compare > div {
  padding: 24px 24px 24px 0;
  border-bottom: 1px solid rgba(220, 211, 184, 0.10);
  font-size: 15px;
  line-height: 1.5;
}
.compare .head {
  font-family: var(--serif);
  font-size: 22px;
  padding-top: 32px;
  padding-bottom: 32px;
  display: flex;
  flex-direction: column;
}
.compare .head .sub {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-style: normal;
  margin-top: 8px;
  font-weight: 400;
}
.compare .row-label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}
.compare .ours {
  font-family: var(--serif);
  font-weight: 500;
  position: relative;
}
.compare .head.ours {
  color: var(--gold-light);
}
.compare .ours::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  opacity: 0.4;
}

/* ── Dates table ────────────────────────────────────── */

.dates {
  width: 100%;
  border-collapse: collapse;
}
.dates th {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-muted);
  text-align: left;
  padding: 16px 24px 16px 0;
  border-bottom: 1px solid var(--rule);
}
.dates td {
  padding: 24px 24px 24px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 15px;
  vertical-align: baseline;
}
.dates tr.book { cursor: pointer; transition: background 0.2s; }
.dates tr.book:hover { background: rgba(176, 140, 74, 0.04); }
.dates .date {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  font-weight: 500;
}
.dates .direction { color: var(--ink); }
.dates .price {
  font-family: var(--serif);
  font-size: 19px;
  color: var(--gold);
  font-weight: 500;
  text-align: right;
}

.pill {
  display: inline-block;
  padding: 5px 12px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid;
  border-radius: 999px;
}
.pill.avail { color: #2d6a4f; border-color: #2d6a4f; }
.pill.few   { color: #b08c4a; border-color: #b08c4a; }
.pill.full  { color: #9b2226; border-color: #9b2226; }

/* ── Day number (Itinerary page) ────────────────────── */

.day-num {
  font-family: var(--serif);
  font-size: clamp(120px, 14vw, 220px);
  line-height: 0.85;
  color: var(--gold);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.day-num-label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 14px;
}

/* ── Included list (highlights / what's included) ── */

ul.included {
  list-style: none;
  padding: 0;
  margin: 0;
}
ul.included li {
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-size: 15px;
  line-height: 1.5;
}
ul.included li::before {
  content: "—";
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 500;
}
ul.included li span { color: var(--ink); }
.ink ul.included li { border-bottom-color: rgba(220, 211, 184, 0.14); }
.ink ul.included li span { color: #dcd3b8; }

/* ── Pull quote ─────────────────────────────────────── */

.pullquote {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.35;
  color: var(--ink);
  font-style: italic;
  font-weight: 500;
  padding-left: 32px;
  border-left: 2px solid var(--gold);
  max-width: 720px;
}

/* ── Form ───────────────────────────────────────────── */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 32px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-muted);
}
.field input,
.field select,
.field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule-strong);
  padding: 12px 0;
  font-family: var(--serif);
  font-size: 20px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus { border-bottom-color: var(--gold); }
.field textarea { min-height: 96px; resize: vertical; font-family: var(--sans); font-size: 16px; }

/* ── FAQ (details/summary) ──────────────────────────── */

.faq details {
  border-bottom: 1px solid var(--rule);
  padding: 24px 0;
}
.faq summary {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  padding-right: 40px;
  position: relative;
  line-height: 1.4;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 24px;
  color: var(--gold);
  font-weight: 300;
  transition: transform 0.25s;
}
.faq details[open] summary::after { content: "−"; }
.faq-a {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  max-width: 760px;
}

/* ── Page enter (subtle) ────────────────────────────── */

.page-enter > section:first-child { padding-top: 80px; }

/* ── SOBE plugin embed wrapper ──────────────────────── */
/* The SOBE plugin renders its own UI; wrap it for spacing/typography */
.sobe-wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 56px 0;
}
.sobe-wrap .sobe-form,
.sobe-wrap form,
.sobe-wrap [class*="sobe"] {
  font-family: var(--sans);
}

/* Hide mobile nav by default; only show inside breakpoint */
.nav-mobile { display: none; }
.nav-mobile.open { display: flex !important; position: fixed !important; inset: 0 !important; background: var(--cream) !important; z-index: 999 !important; flex-direction: column !important; padding: 32px !important; overflow-y: auto !important; transform: translateY(0) !important; }

/* ── Responsive ─────────────────────────────────────── */

@media (max-width: 1024px) {
  section { padding: 80px 0; }
  section.tight { padding: 48px 0; }
  .wrap { padding: 0 32px; }
  .split-7-5, .split-5-7 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .compare { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .compare .head { font-size: 17px; }
  .nav-links { display: none; }
  .nav-links.right { display: none; }
  .menu-toggle { display: flex; justify-content: flex-end; }
  .menu-toggle button {
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--ink);
    font-weight: 500;
  }
  .nav-inner { grid-template-columns: 1fr auto 1fr; }
  .nav-mobile {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--cream);
    z-index: 100;
    flex-direction: column;
    padding: 32px;
    transform: translateY(-100%);
    transition: transform 0.4s;
  }
  .nav-mobile.open { transform: translateY(0); }
  .nav-mobile a {
    font-family: var(--serif);
    font-size: 32px;
    padding: 18px 0;
    border-bottom: 1px solid var(--rule);
  }
  .nav-mobile .close {
    align-self: flex-end;
    font-family: var(--sans);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 32px;
  }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  section { padding: 48px 0; }
  .wrap { padding: 0 20px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .compare { display: block; }
  .compare > div { padding: 12px 0; }
  .compare .head { padding-top: 24px; }
  .dates { display: block; }
  .dates thead { display: none; }
  .dates tr { display: block; padding: 16px 0; border-bottom: 1px solid var(--rule); }
  .dates td { display: block; padding: 4px 0; font-size: 14px; border: none; }
  .dates .date { font-size: 18px; font-weight: 500; margin-bottom: 4px; }
  .dates .price { font-size: 16px; }
  .hero-bleed .frame { aspect-ratio: auto; min-height: 56vh; }
  .hero-bleed .hero-content {
    position: relative;
    padding: 32px 20px 40px;
    background: var(--ink);
    bottom: auto;
  }
  .hero-bleed .hero-content h1 { max-width: 100%; }
  .hero-meta { gap: 16px 32px; margin-top: 32px; }
  .hero-meta b { font-size: 22px; }
  .hero-meta > span, .hero-meta > div { font-size: 12px; }
  h1 { line-height: 1.15; }
  h2 { line-height: 1.2; }
  .split-7-5, .split-5-7 { gap: 32px; }
  .foot-grid { grid-template-columns: 1fr; gap: 32px; }
  .foot-bottom { flex-direction: column; gap: 8px; }
  .pullquote { padding-left: 20px; }
  details summary { font-size: 17px !important; }
  .vs-table { display: block; }
  .vs-table > * { display: block; }
}

/* ── Print ──────────────────────────────────────────── */

@media print {
  .nav, footer, .btn { display: none; }
  body { background: white; color: black; }
  section { padding: 24px 0; page-break-inside: avoid; }
}
