/* ============================================================
   TodayDTravels — Shared Stylesheet
   Aesthetic: editorial travel magazine · warm sand + ink + coral
   ============================================================ */

:root {
  --ink: #1a1a2e;
  --ink-soft: #2d2d4a;
  --sand: #f4ede2;
  --sand-deep: #e8dec9;
  --paper: #fbf7f0;
  --coral: #e85a4f;
  --coral-deep: #c44a40;
  --ocean: #2a6478;
  --ocean-deep: #1d4a59;
  --gold: #c89b3c;
  --rule: #d9cdb5;
  --muted: #6b6b7d;
  --green: #4a7c59;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}

::selection { background: var(--coral); color: var(--paper); }
a { color: var(--coral-deep); }

/* ============ TOP STRIP ============ */
.top-strip {
  background: var(--ink);
  color: var(--sand);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px 0;
}
.top-strip-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.top-strip a { color: var(--gold); text-decoration: none; font-weight: 600; }
.top-strip a:hover { color: var(--coral); }

/* ============ NAV ============ */
nav.main {
  background: rgba(251, 247, 240, 0.96);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 200;
  backdrop-filter: blur(12px);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-mark {
  width: 36px; height: 36px;
  background: var(--coral);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  transform: rotate(-3deg);
  flex-shrink: 0;
}
.brand-text small {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-top: 2px;
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links > li { list-style: none; position: relative; }
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-links a:hover { color: var(--coral); }
.nav-links a.active { color: var(--coral); }
.dropdown-arrow { font-size: 9px; opacity: 0.6; }

.dropdown {
  position: absolute;
  top: 100%;
  left: -16px;
  background: var(--paper);
  border: 1px solid var(--rule);
  min-width: 240px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
  box-shadow: 0 18px 40px -12px rgba(26,26,46,0.15);
  z-index: 10;
}
.nav-links li:hover .dropdown,
.nav-links li:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 22px;
  font-size: 14px;
  border-bottom: 1px solid transparent;
}
.dropdown a:hover { background: var(--sand); color: var(--coral); }

.nav-cta {
  background: var(--ink);
  color: var(--paper) !important;
  padding: 11px 20px !important;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.25s;
}
.nav-cta:hover { background: var(--coral) !important; color: var(--paper) !important; }

.burger { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }
.burger span { display: block; width: 24px; height: 1.8px; background: var(--ink); margin: 5px 0; transition: 0.3s; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.25s ease;
}
.btn-primary {
  background: var(--coral);
  color: var(--paper);
  border-color: var(--coral);
}
.btn-primary:hover { background: var(--coral-deep); border-color: var(--coral-deep); transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-dark:hover { background: var(--coral); border-color: var(--coral); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn .arrow { font-family: 'Fraunces', serif; font-size: 14px; }

/* ============ HERO ============ */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean) 50%, var(--ink) 100%);
  color: var(--paper);
  padding: 90px 0 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(232,90,79,0.18), transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(200,155,60,0.15), transparent 45%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1, 0 0 0 0 1, 0 0 0 0 1, 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.7;
  pointer-events: none;
}
.hero-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-text .eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-text .eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--coral);
  font-weight: 400;
}
.hero p.lede {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(251,247,240,0.82);
  max-width: 520px;
  margin-bottom: 32px;
  font-weight: 300;
}
.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(251,247,240,0.18);
  padding-top: 28px;
  margin-top: 36px;
}
.hero-stats .stat strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stats .stat span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(251,247,240,0.7);
}

/* ============ FLIGHT FORM ============ */
.flight-form {
  background: var(--paper);
  color: var(--ink);
  padding: 32px 28px;
  position: relative;
  box-shadow: 0 30px 60px -25px rgba(0,0,0,0.4);
  border-top: 4px solid var(--coral);
}
.flight-form::before {
  content: '';
  position: absolute;
  top: -4px; left: -8px;
  width: 100%; height: 100%;
  border-top: 4px solid var(--gold);
  z-index: -1;
  opacity: 0.5;
}
.flight-form h3 {
  font-family: 'Fraunces', serif;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: -0.015em;
}
.flight-form .form-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 22px;
}

.trip-type {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--rule);
}
.trip-type label {
  flex: 1;
  text-align: center;
  padding: 10px;
  cursor: pointer;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.2s;
}
.trip-type input { display: none; }
.trip-type input:checked + label,
.trip-type label:has(input:checked) {
  color: var(--coral);
  border-bottom-color: var(--coral);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-row.single { grid-template-columns: 1fr; }
.form-row.triple { grid-template-columns: 1fr 1fr 1fr; }

.field-box {
  border: 1px solid var(--rule);
  padding: 10px 14px;
  background: var(--sand);
  transition: border-color 0.2s;
}
.field-box:focus-within { border-color: var(--coral); }
.field-box label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.field-box input,
.field-box select {
  width: 100%;
  background: transparent;
  border: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  outline: none;
  padding: 2px 0;
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 10px;
  padding: 16px;
}
.form-disclaimer {
  margin-top: 14px;
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.02em;
}
.form-disclaimer strong { color: var(--coral); font-weight: 600; }

/* ============ SECTIONS ============ */
section { padding: 100px 0; }
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
}
.section-head {
  margin-bottom: 56px;
  max-width: 760px;
}
.section-head .eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-head .eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--coral);
}
.section-head h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.section-head h2 em { font-style: italic; color: var(--coral); }
.section-head p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 640px;
}

/* ============ DEALS GRID ============ */
.deals { background: var(--sand); }
.deals-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}
.deals-head .section-head { margin-bottom: 0; }
.deals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.deal-card {
  background: var(--paper);
  border: 1px solid var(--rule);
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: default;
  position: relative;
}
.deal-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(26,26,46,0.2); }
.deal-image {
  height: 200px;
  position: relative;
  overflow: hidden;
  background: var(--ocean);
}
.deal-image svg { width: 100%; height: 100%; display: block; }
.deal-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--coral);
  color: var(--paper);
  padding: 5px 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 2;
}
.deal-body { padding: 24px 22px 26px; }
.deal-route {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.deal-route .arr { color: var(--coral); font-weight: 700; }
.deal-title {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.deal-meta {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.55;
}
.deal-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}
.deal-price {
  font-family: 'Fraunces', serif;
  font-size: 13px;
  color: var(--muted);
}
.deal-price strong {
  display: block;
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.deal-call {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--coral);
  padding-bottom: 2px;
}
.deal-call:hover { color: var(--coral-deep); }

/* ============ DESTINATIONS ============ */
.destinations {
  background: var(--paper);
}
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.dest-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: default;
}
.dest-card svg { width: 100%; height: 100%; display: block; transition: transform 0.6s ease; }
.dest-card:hover svg { transform: scale(1.06); }
.dest-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.85) 0%, rgba(26,26,46,0.2) 50%, transparent 100%);
  z-index: 1;
}
.dest-info {
  position: absolute;
  bottom: 22px; left: 22px; right: 22px;
  z-index: 2;
  color: var(--paper);
}
.dest-info .country {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.dest-info .city {
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.dest-info .city em { font-style: italic; }

/* ============ WHY US ============ */
.whyus { background: var(--ink); color: var(--paper); position: relative; overflow: hidden; }
.whyus::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(232,90,79,0.12), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(42,100,120,0.18), transparent 50%);
  pointer-events: none;
}
.whyus .section-head h2 { color: var(--paper); }
.whyus .section-head p { color: rgba(251,247,240,0.7); }
.whyus .section-head .eyebrow { color: var(--gold); }
.whyus .section-head .eyebrow::before { background: var(--gold); }
.whyus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(251,247,240,0.18);
  position: relative;
  z-index: 2;
}
.whyus-card {
  padding: 44px 28px 8px;
  border-right: 1px solid rgba(251,247,240,0.18);
}
.whyus-card:last-child { border-right: 0; }
.whyus-card .num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 52px;
  font-weight: 500;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 22px;
}
.whyus-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
}
.whyus-card p { font-size: 14px; color: rgba(251,247,240,0.72); line-height: 1.65; }

/* ============ CTA BANNER ============ */
.cta-banner {
  background: var(--coral);
  color: var(--paper);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1, 0 0 0 0 1, 0 0 0 0 1, 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.015em;
}
.cta-banner h2 em { font-style: italic; }
.cta-banner p {
  font-size: 17px;
  margin-bottom: 28px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  padding: 18px 30px;
  font-family: 'Fraunces', serif;
  font-size: 26px;
  font-weight: 600;
  transition: background 0.25s;
}
.cta-phone:hover { background: var(--ink-soft); }
.cta-phone .ico {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--coral);
  display: grid;
  place-items: center;
  font-size: 16px;
}

/* ============ FOOTER ============ */
footer {
  background: var(--ink);
  color: var(--paper);
  padding: 72px 0 28px;
  border-top: 4px solid var(--coral);
}
.footer-grid {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 52px;
}
.footer-brand .brand { color: var(--paper); }
.footer-brand .brand-text small { color: var(--gold); }
.footer-brand p {
  margin-top: 22px;
  color: rgba(251,247,240,0.65);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
  max-width: 340px;
}
.footer-col h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  color: rgba(251,247,240,0.75);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--coral); }

.footer-disclosure {
  max-width: 1320px;
  margin: 0 auto;
  padding: 28px 28px 0;
  border-top: 1px solid rgba(251,247,240,0.18);
  font-size: 12px;
  color: rgba(251,247,240,0.55);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-disclosure strong { color: var(--gold); }

.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding: 22px 28px 0;
  border-top: 1px solid rgba(251,247,240,0.18);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(251,247,240,0.5);
}

/* ============ POLICY / CONTENT PAGES ============ */
.page-hero {
  background: linear-gradient(135deg, var(--ocean-deep), var(--ocean));
  color: var(--paper);
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1, 0 0 0 0 1, 0 0 0 0 1, 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.breadcrumb a { color: rgba(251,247,240,0.7); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(251,247,240,0.4); }
.page-hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  max-width: 880px;
}
.page-hero h1 em { font-style: italic; color: var(--coral); }
.page-hero p {
  font-size: 17px;
  color: rgba(251,247,240,0.82);
  max-width: 680px;
  line-height: 1.65;
}

.content-page { background: var(--paper); padding: 80px 0 100px; }
.content-page .container { max-width: 920px; }
.content-page h2 {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 600;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.content-page h2:first-child { margin-top: 0; }
.content-page h3 {
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--ocean-deep);
}
.content-page p {
  font-size: 16px;
  line-height: 1.78;
  margin-bottom: 18px;
  color: var(--ink-soft);
}
.content-page ul, .content-page ol {
  margin: 0 0 22px 24px;
  font-size: 16px;
  line-height: 1.78;
  color: var(--ink-soft);
}
.content-page li { margin-bottom: 8px; }
.content-page strong { color: var(--ink); }
.content-page a { color: var(--coral-deep); text-decoration: underline; text-underline-offset: 3px; }

.disclosure-box {
  background: var(--sand);
  border-left: 4px solid var(--coral);
  padding: 22px 26px;
  margin: 28px 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-soft);
}
.disclosure-box strong { color: var(--coral-deep); }

.toc {
  background: var(--sand);
  padding: 26px 28px;
  margin-bottom: 40px;
  border-left: 3px solid var(--coral);
}
.toc h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;
}
.toc ul { list-style: none; margin: 0; columns: 2; column-gap: 30px; }
.toc li { margin-bottom: 8px; font-size: 14px; }
.toc a { color: var(--ink); text-decoration: none; border-bottom: 1px dotted var(--rule); padding-bottom: 1px; }
.toc a:hover { color: var(--coral); border-color: var(--coral); }

.last-updated {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--rule);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .deals-grid { grid-template-columns: repeat(2, 1fr); }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .whyus-grid { grid-template-columns: 1fr; }
  .whyus-card { border-right: 0; border-bottom: 1px solid rgba(251,247,240,0.18); padding-bottom: 32px; }
  .whyus-card:last-child { border-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .deals-head { grid-template-columns: 1fr; }
  .form-row.triple { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  section { padding: 72px 0; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    padding: 18px 28px;
    border-bottom: 1px solid var(--rule);
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links > li { border-bottom: 1px solid var(--rule); padding: 6px 0; }
  .nav-links > li:last-child { border-bottom: 0; padding-top: 14px; }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; background: var(--sand); padding: 6px 0; margin-top: 6px; }
  .burger { display: block; }
  .hero { padding: 56px 0 72px; }
  .top-strip-inner { justify-content: center; text-align: center; font-size: 10px; }
  .deals-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row, .form-row.triple { grid-template-columns: 1fr; }
  .hero-stats { gap: 24px; }
  .hero-stats .stat strong { font-size: 28px; }
  .cta-phone { font-size: 20px; padding: 14px 22px; }
  .toc ul { columns: 1; }
  .content-page h2 { font-size: 26px; }
}
