/* ============================================================
   Eco Destination Tours Guyana — site stylesheet
   Design system carried over from the Claude Design mockup:
   Cormorant Garamond (display) + Jost (body), deep forest green,
   cream, and antique gold.

   Accessibility pass: the whole scale is set for comfortable
   reading by older travellers — larger type everywhere, heavier
   base weight, darker secondary text, bigger touch targets, and
   soft rounded corners in place of hard edges.
   ============================================================ */

:root {
  --bg: #f6f3ec;
  --ink: #1e2b23;
  --deep: #14271d;
  --forest: #1e4d38;
  --gold: #c9a35e;
  --gold-dark: #a97c33;
  --gold-light: #e8d5a8;
  --beige: #e9e4d6;
  --line: #d0c9b8;
  --body: #35443b;
  --muted: #5b635a;
  --cream-70: rgba(246, 243, 236, 0.78);
  --cream-85: rgba(246, 243, 236, 0.88);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', 'Avenir Next', 'Segoe UI', sans-serif;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--forest); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--gold-dark); }

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

h1, h2, h3, .serif { font-family: var(--serif); font-weight: 500; }

/* ---------- Utility ---------- */

.wrap { max-width: 1200px; margin: 0 auto; padding-left: 32px; padding-right: 32px; }
.wrap-narrow { max-width: 860px; margin: 0 auto; padding-left: 32px; padding-right: 32px; }

.eyebrow {
  font-size: 14px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
}
.on-dark .eyebrow, .eyebrow.on-dark { color: var(--gold); }

.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 50px);
  margin: 0;
  line-height: 1.15;
}

.lede {
  font-family: var(--serif);
  font-size: clamp(26px, 2.8vw, 34px);
  line-height: 1.5;
  margin: 0;
}

.small-caps {
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

.text-body { font-size: 19px; font-weight: 400; line-height: 1.75; color: var(--body); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 19px 46px;
  font-family: var(--sans);
  font-size: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: var(--radius-pill);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  text-align: center;
}
.btn-gold { background: var(--gold); color: var(--deep); }
.btn-gold:hover { background: var(--gold-light); color: var(--deep); }
.btn-outline { border-color: var(--gold); color: var(--gold-dark); background: transparent; }
.btn-outline:hover { background: var(--gold); color: var(--deep); }
.btn-outline-dark { border-color: var(--forest); color: var(--forest); background: transparent; }
.btn-outline-dark:hover { background: var(--forest); color: var(--bg); }
.btn-forest { background: var(--forest); color: var(--bg); }
.btn-forest:hover { background: var(--deep); color: var(--bg); }
.btn[disabled] { opacity: 0.45; pointer-events: none; }

/* Full-width primary CTA used on tour cards */
.btn-card { display: block; width: 100%; margin-top: 14px; padding: 17px 20px; }

.link-caps {
  font-size: 15px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
}
.on-dark .link-caps { color: var(--gold); }

/* ---------- Navigation ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--deep);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  gap: 24px;
}

.nav-brand { display: flex; flex-direction: column; line-height: 1; color: var(--bg); }
.nav-brand:hover { color: var(--bg); }
.nav-brand .brand-main {
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.nav-brand .brand-sub {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 5px;
}

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
}
.nav-links a { color: var(--bg); white-space: nowrap; padding: 6px 0; }
.nav-links a:hover { color: var(--gold-light); }
.nav-links a.active { color: var(--gold); }

.nav-cta {
  border: 2px solid var(--gold);
  border-radius: var(--radius-pill);
  color: var(--gold);
  padding: 13px 30px;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold); color: var(--deep); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--bg);
  cursor: pointer;
  padding: 10px;
}
.nav-toggle svg { display: block; width: 30px; height: 21px; }

@media (max-width: 1120px) {
  .nav { padding: 14px 20px; flex-wrap: wrap; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding-top: 12px;
    border-top: 1px solid rgba(246, 243, 236, 0.15);
    margin-top: 12px;
  }
  .nav.open .nav-links { display: flex; }
  .nav-links a { padding: 16px 4px; border-bottom: 1px solid rgba(246, 243, 236, 0.08); }
  .nav-cta { display: none; }
  .nav.open .nav-cta { display: inline-block; margin: 18px 4px 8px; text-align: center; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  height: 86vh;
  min-height: 580px;
  background: var(--deep);
  overflow: hidden;
}
.hero.hero-short { height: 52vh; min-height: 420px; }
.hero img.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 39, 29, 0.3) 0%, rgba(20, 39, 29, 0.1) 40%, rgba(20, 39, 29, 0.68) 100%);
  pointer-events: none;
}
.hero-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 72px;
  text-align: center;
  color: var(--bg);
  padding: 0 24px;
}
.hero-content .eyebrow { color: var(--gold-light); margin-bottom: 18px; display: block; }
.hero-content h1 {
  font-weight: 500;
  font-size: clamp(46px, 6.2vw, 90px);
  margin: 0;
  line-height: 1.05;
}
.hero-content .hero-sub {
  max-width: 660px;
  margin: 24px auto 0;
  font-weight: 400;
  font-size: 21px;
  line-height: 1.6;
  color: rgba(246, 243, 236, 0.96);
}
.hero-content .hero-actions { margin-top: 36px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

.hero-left .hero-content { text-align: left; left: 48px; right: auto; max-width: 760px; padding: 0; bottom: 56px; }
.hero-left .hero-content h1 { font-size: clamp(40px, 5.2vw, 72px); }
@media (max-width: 720px) {
  .hero-left .hero-content { left: 22px; right: 22px; }
  .hero { min-height: 500px; }
}

/* ---------- Sections ---------- */

.section { padding: 100px 0; }
.section-tight { padding: 72px 0; }
.section-dark { background: var(--deep); color: var(--bg); }
.section-beige { background: var(--beige); }

.section-head { margin-bottom: 56px; }
.section-head .eyebrow { display: block; margin-bottom: 14px; }
.section-head.center { text-align: center; }
.section-head.split-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

/* ---------- Pillars / bordered grid ---------- */

.bordered-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.bordered-grid > div { background: var(--bg); padding: 46px 34px; }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 620px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: minmax(0, 1fr); }
}

.pillar-num { font-family: var(--serif); font-size: 40px; color: var(--gold-dark); font-style: italic; }
.pillar-title { font-size: 17px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; margin: 14px 0 12px; }
.pillar-body { font-size: 17px; font-weight: 400; line-height: 1.7; color: var(--body); }

.bordered-grid.on-dark { background: rgba(246, 243, 236, 0.15); border-color: rgba(246, 243, 236, 0.15); }
.bordered-grid.on-dark > div { background: var(--deep); }

/* ---------- Cards ---------- */

.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 44px 36px; }
.card-grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card-grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 980px) { .card-grid, .card-grid.cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .card-grid, .card-grid.cols-2, .card-grid.cols-4 { grid-template-columns: minmax(0, 1fr); } }

.tour-card { display: flex; flex-direction: column; }
.tour-card .card-media { position: relative; height: 300px; overflow: hidden; background: var(--beige); border-radius: var(--radius); }
.tour-card .card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.tour-card:hover .card-media img { transform: scale(1.04); }
.tour-card .card-body { padding: 24px 0 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.tour-card .card-title-row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.tour-card .card-title { font-family: var(--serif); font-size: 28px; line-height: 1.2; }
.tour-card .card-tag {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  white-space: nowrap;
  font-weight: 500;
}
.on-dark .card-tag, .section-dark .card-tag { color: var(--gold); }
.tour-card .card-text { font-size: 17px; font-weight: 400; line-height: 1.65; color: var(--body); flex: 1; }
.section-dark .tour-card .card-text { color: rgba(246, 243, 236, 0.85); }
.section-dark .tour-card .card-title { color: var(--bg); }
.tour-card .card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 13.5px;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 500;
}
.section-dark .tour-card .card-meta { color: rgba(246, 243, 236, 0.65); }
.tour-card .card-price { font-family: var(--serif); font-size: 27px; color: var(--forest); }
.section-dark .tour-card .card-price { color: var(--gold-light); }
.tour-card .card-price .per { font-family: var(--sans); font-size: 14px; color: var(--muted); letter-spacing: 0.06em; }
.section-dark .tour-card .card-price .per { color: rgba(246, 243, 236, 0.65); }

/* Status badges */
.badge {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 7px 16px;
  border: 1px solid currentColor;
  border-radius: var(--radius-pill);
}
.badge-book { color: var(--forest); }
.badge-inquiry { color: var(--gold-dark); }
.section-dark .badge-book { color: var(--gold-light); }

/* ---------- Split sections ---------- */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}
.split.reverse { grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); }
.split-media { height: 500px; overflow: hidden; background: var(--beige); border-radius: var(--radius-lg); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-copy { display: flex; flex-direction: column; gap: 24px; }
.split-copy .eyebrow { display: block; }
.split-copy h2 { margin: 0; }
.split-copy p { margin: 0; }
@media (max-width: 900px) {
  .split, .split.reverse { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .split.reverse .split-media { order: -1; }
  .split-media { height: 340px; }
}

.stat-pair { display: flex; gap: 36px; margin-top: 8px; flex-wrap: wrap; }
.stat-pair .stat-num { font-family: var(--serif); font-size: 36px; color: var(--forest); }
.stat-pair .stat-label { font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); font-weight: 500; }

/* ---------- Facts strip ---------- */

.facts-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 48px; text-align: center; }
@media (max-width: 900px) { .facts-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px; } }
@media (max-width: 520px) { .facts-grid { grid-template-columns: minmax(0, 1fr); } }
.fact-stat { font-family: var(--serif); font-size: 52px; color: var(--forest); line-height: 1.1; }
.fact-label { font-size: 16px; font-weight: 400; line-height: 1.6; color: var(--body); margin-top: 10px; }

/* ---------- Quote ---------- */

.quote-block { text-align: center; }
.quote-mark { font-family: var(--serif); font-size: 84px; line-height: 0.4; color: var(--gold); }
.quote-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.5;
  margin: 18px 0 26px;
}
.quote-attr { font-size: 14px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); font-weight: 500; }

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

.cta-band { position: relative; height: 460px; overflow: hidden; background: var(--deep); }
.cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 39, 29, 0.58);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  text-align: center;
  padding: 0 24px;
}
.cta-overlay h2 {
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 60px);
  color: var(--bg);
  margin: 0;
  max-width: 940px;
}

/* ---------- Traveler alert (international guests) ---------- */

.traveler-alert {
  background: #fbf4e3;
  border: 1px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 40px 42px;
}
.traveler-alert .ta-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.traveler-alert .ta-title { font-family: var(--serif); font-size: clamp(26px, 3vw, 34px); font-weight: 500; margin: 0; }
.traveler-alert .ta-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px 40px; }
@media (max-width: 800px) { .traveler-alert .ta-list { grid-template-columns: minmax(0, 1fr); } .traveler-alert { padding: 30px 24px; } }
.traveler-alert .ta-list li {
  position: relative;
  padding-left: 34px;
  font-size: 17.5px;
  line-height: 1.65;
  color: var(--body);
}
.traveler-alert .ta-list li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 9px;
  width: 15px;
  height: 9px;
  border-left: 2.5px solid var(--gold-dark);
  border-bottom: 2.5px solid var(--gold-dark);
  transform: rotate(-45deg);
}
.traveler-alert .ta-list strong { color: var(--ink); font-weight: 500; }
.traveler-alert .ta-foot { margin-top: 24px; font-size: 16px; color: var(--muted); }

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

.footer { background: var(--deep); color: var(--cream-70); padding: 70px 48px 40px; }
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: minmax(0, 1fr); } .footer { padding: 56px 24px 32px; } }
.footer-brand { font-family: var(--serif); font-size: 27px; font-weight: 600; color: var(--bg); }
.footer p { font-size: 16px; font-weight: 400; line-height: 1.7; margin: 12px 0 0; max-width: 320px; }
.footer-col { display: flex; flex-direction: column; gap: 14px; font-size: 16px; font-weight: 400; }
.footer-col-title { font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.footer-col a { color: var(--cream-70); }
.footer-col a:hover { color: var(--gold-light); }
.footer-base {
  max-width: 1200px;
  margin: 48px auto 0;
  border-top: 1px solid rgba(246, 243, 236, 0.15);
  padding-top: 24px;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-base .note { color: rgba(246, 243, 236, 0.55); }

/* ---------- Page header (interior pages) ---------- */

.page-head { padding: 80px 0 30px; }
.page-head .eyebrow { display: block; margin-bottom: 16px; }
.page-head h1 { font-size: clamp(40px, 5.2vw, 66px); margin: 0; line-height: 1.1; }
.page-head .intro { max-width: 680px; margin-top: 20px; }

/* ---------- Filters ---------- */

.filter-bar { display: flex; flex-wrap: wrap; gap: 12px; margin: 36px 0 48px; align-items: center; }
.filter-label { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-right: 6px; font-weight: 500; }
.chip {
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--body);
  font-family: var(--sans);
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 12px 24px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.chip:hover { border-color: var(--gold-dark); color: var(--gold-dark); }
.chip.active { background: var(--forest); border-color: var(--forest); color: var(--bg); }

/* ---------- Detail page ---------- */

.detail-hero { position: relative; height: 62vh; min-height: 460px; background: var(--deep); overflow: hidden; }
.detail-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 64px;
  align-items: start;
}
@media (max-width: 980px) { .detail-layout { grid-template-columns: minmax(0, 1fr); } }

.detail-main h2 {
  font-size: clamp(29px, 3.2vw, 38px);
  margin: 56px 0 18px;
}
.detail-main h2:first-child { margin-top: 0; }
.detail-main p { margin: 0 0 18px; }

.fact-sheet {
  position: sticky;
  top: 110px;
  background: var(--beige);
  border-radius: var(--radius-lg);
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.fact-sheet .fs-price { font-family: var(--serif); font-size: 42px; color: var(--forest); line-height: 1.1; }
.fact-sheet .fs-price-note { font-size: 15px; color: var(--muted); margin-top: 5px; }
.fact-row {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
}
.fact-row:last-of-type { border-bottom: none; }
.fact-row .fr-label { font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); padding-top: 3px; font-weight: 500; }
.fact-row .fr-value { color: var(--ink); font-weight: 400; line-height: 1.55; }
.fact-sheet .btn { margin-top: 24px; }
.fact-sheet .fs-smallprint { font-size: 14px; color: var(--muted); margin-top: 16px; line-height: 1.55; }

/* Itinerary */
.itinerary { display: flex; flex-direction: column; }
.itin-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.itin-row .itin-time { font-family: var(--serif); font-size: 24px; color: var(--gold-dark); }
.itin-row .itin-what { font-size: 18px; font-weight: 400; line-height: 1.65; color: var(--body); }
@media (max-width: 560px) { .itin-row { grid-template-columns: 96px 1fr; gap: 16px; } }

.section-dark .itin-row { border-color: rgba(246, 243, 236, 0.14); }
.section-dark .itin-row .itin-time { color: var(--gold); }
.section-dark .itin-row .itin-what { color: var(--cream-85); }

/* Include / exclude lists */
.incl-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
@media (max-width: 680px) { .incl-grid { grid-template-columns: minmax(0, 1fr); } }
.incl-list { list-style: none; margin: 0; padding: 0; }
.incl-list li {
  padding: 12px 0 12px 34px;
  position: relative;
  font-size: 17.5px;
  color: var(--body);
  border-bottom: 1px solid var(--line);
}
.incl-list li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 21px;
  width: 15px;
  height: 9px;
  border-left: 2px solid var(--forest);
  border-bottom: 2px solid var(--forest);
  transform: rotate(-45deg);
}
.incl-list.excl li::before {
  border: none;
  width: 14px;
  height: 2px;
  background: var(--gold-dark);
  top: 25px;
  transform: none;
}

/* Notice / callout */
.notice {
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm);
  background: var(--beige);
  padding: 24px 30px;
  font-size: 17px;
  color: var(--body);
  line-height: 1.7;
  margin: 28px 0;
}
.notice strong { color: var(--ink); font-weight: 500; }
.notice.on-dark { background: rgba(246, 243, 236, 0.07); color: var(--cream-85); }

/* ---------- Compare table ---------- */

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius); }
.compare-table { border-collapse: collapse; width: 100%; min-width: 900px; font-size: 16px; }
.compare-table th, .compare-table td {
  border: 1px solid var(--line);
  padding: 17px 20px;
  text-align: left;
  vertical-align: top;
  font-weight: 400;
  color: var(--body);
  line-height: 1.6;
}
.compare-table thead th {
  background: var(--deep);
  color: var(--bg);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 500;
  vertical-align: bottom;
}
.compare-table thead th .th-tag { display: block; font-family: var(--sans); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-top: 6px; }
.compare-table tbody th {
  background: var(--beige);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  width: 156px;
  min-width: 156px;
}
.compare-table .price { font-family: var(--serif); font-size: 21px; color: var(--forest); }

/* ---------- Forms & booking ---------- */

.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: minmax(0, 1fr); } }
.form-grid .full { grid-column: 1 / -1; }

.field { display: flex; flex-direction: column; gap: 9px; }
.field label { font-size: 14px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--body); font-weight: 500; }
.field label .req { color: var(--gold-dark); }
.field input, .field select, .field textarea {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--forest); }
.field textarea { resize: vertical; min-height: 110px; }
.field .hint { font-size: 15px; color: var(--muted); line-height: 1.55; }
.field.error input, .field.error select { border-color: #a4432c; }
.field .error-msg { font-size: 15px; color: #a4432c; display: none; }
.field.error .error-msg { display: block; }

.radio-cards { display: flex; flex-direction: column; gap: 14px; }
.radio-card {
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 22px 24px;
  cursor: pointer;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.radio-card:hover { border-color: var(--gold-dark); }
.radio-card.selected { border-color: var(--forest); background: #fdfcf8; box-shadow: inset 0 0 0 1.5px var(--forest); }
.radio-card input { margin-top: 5px; accent-color: var(--forest); width: 20px; height: 20px; flex-shrink: 0; }
.radio-card .rc-title { font-weight: 500; font-size: 18.5px; }
.radio-card .rc-sub { font-size: 15.5px; color: var(--muted); margin-top: 4px; line-height: 1.55; }
.radio-card .rc-price { margin-left: auto; font-family: var(--serif); font-size: 21px; color: var(--forest); white-space: nowrap; }

.check-row { display: flex; gap: 14px; align-items: flex-start; font-size: 16.5px; color: var(--body); line-height: 1.6; }
.check-row input { margin-top: 4px; accent-color: var(--forest); flex-shrink: 0; width: 20px; height: 20px; }

/* Booking stepper */
.stepper { display: flex; gap: 0; margin-bottom: 48px; overflow-x: auto; }
.step-dot {
  flex: 1;
  min-width: 110px;
  text-align: center;
  position: relative;
  padding-top: 32px;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.step-dot::before {
  content: '';
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--line);
  z-index: 2;
}
.step-dot::after {
  content: '';
  position: absolute;
  top: 14px;
  left: calc(-50% + 8px);
  right: calc(50% + 8px);
  height: 1.5px;
  background: var(--line);
}
.step-dot:first-child::after { display: none; }
.step-dot.done { color: var(--forest); }
.step-dot.done::before { background: var(--forest); }
.step-dot.current { color: var(--ink); font-weight: 500; }
.step-dot.current::before { background: var(--gold); box-shadow: 0 0 0 5px rgba(201, 163, 94, 0.25); }

.booking-panel { background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-lg); padding: 46px 46px 42px; }
@media (max-width: 640px) { .booking-panel { padding: 30px 22px; } }
.booking-panel h2 { font-size: 31px; margin: 0 0 10px; }
.booking-panel .panel-sub { font-size: 17.5px; color: var(--muted); margin: 0 0 32px; line-height: 1.65; }
.booking-panel h3.group-label {
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
  margin: 40px 0 16px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
}
.booking-nav { display: flex; justify-content: space-between; gap: 16px; margin-top: 40px; flex-wrap: wrap; }

.estimate-bar {
  background: var(--deep);
  color: var(--bg);
  border-radius: var(--radius);
  padding: 22px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.estimate-bar .eb-label { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 500; }
.estimate-bar .eb-amount { font-family: var(--serif); font-size: 34px; color: var(--bg); }
.estimate-bar .eb-note { font-size: 14.5px; color: rgba(246, 243, 236, 0.7); flex-basis: 100%; }

.review-block { border: 1.5px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; overflow: hidden; }
.review-block .rb-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--beige);
  padding: 14px 20px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--body);
  font-weight: 500;
}
.review-block .rb-head button {
  background: none;
  border: none;
  color: var(--gold-dark);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}
.review-block .rb-body { padding: 18px 20px; font-size: 16px; color: var(--body); line-height: 1.7; }

/* Confirmation */
.confirm-wrap { text-align: center; padding: 40px 0 20px; }
.confirm-ref {
  font-family: var(--serif);
  font-size: 44px;
  color: var(--forest);
  letter-spacing: 0.04em;
  margin: 18px 0 6px;
}

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

.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 26px 4px;
  font-family: var(--serif);
  font-size: 24px;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-family: var(--serif); font-size: 30px; color: var(--gold-dark); flex-shrink: 0; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item .faq-body { padding: 0 4px 28px; font-size: 17.5px; color: var(--body); line-height: 1.75; max-width: 800px; }

/* ---------- Misc ---------- */

.divider-gold { width: 60px; height: 2px; background: var(--gold); border: none; margin: 0; }

.concept-tag {
  position: absolute;
  bottom: 12px;
  right: 14px;
  z-index: 3;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 243, 236, 0.6);
  pointer-events: none;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold);
  color: var(--deep);
  padding: 14px 22px;
  font-size: 16px;
  z-index: 100;
}
.skip-link:focus { left: 0; }

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