/* ============================================================
   POLISH LAYER — premium editorial refinement (v=1)
   Loaded AFTER main.css. Color palette UNCHANGED.
   Scope: typography rhythm, hairline ornaments, hover states,
   card refinement, section pacing, micro-details.
   ============================================================ */

/* ---- Type rhythm ---- */
:root {
  --section-pad-y: clamp(72px, 9vw, 132px);
  --rule-orange: linear-gradient(90deg, transparent, var(--orange) 40%, var(--orange) 60%, transparent);
  --rule-gold:   linear-gradient(90deg, transparent, var(--gold)   40%, var(--gold)   60%, transparent);
  --hairline-strong: rgba(13, 79, 92, 0.18);
  --paper-tex: radial-gradient(1200px 600px at 10% -10%, rgba(212,168,67,.06), transparent 60%),
               radial-gradient(900px 500px at 110% 110%, rgba(232,101,43,.05), transparent 55%);
}

/* Body texture — subtle warmth on the sand bg without shifting hue */
body { background-image: var(--paper-tex); background-attachment: fixed; }

/* Mobile safety: hard-prevent horizontal scrollbar from sub-pixel overflow */
html, body { overflow-x: clip; max-width: 100%; }
@supports not (overflow-x: clip) { html, body { overflow-x: hidden; } }

/* Section padding rhythm */
section { padding-top: var(--section-pad-y); padding-bottom: var(--section-pad-y); }
section + section { border-top: 1px solid var(--hairline); }

/* ---- Section heading lockup ---- */
.section-head {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 18px;
  max-width: 760px;
  margin: 0 auto clamp(40px, 5vw, 64px);
}
.section-head h2 {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 350;
  font-size: clamp(34px, 5.4vw, 64px);
  letter-spacing: -0.035em;
  line-height: 1.02;
  color: var(--ink);
  margin: 0;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}
.section-head h2 .accent { color: var(--orange-deep); font-style: italic; }
.section-head .lead {
  font-size: clamp(15.5px, 1.4vw, 17.5px);
  color: var(--ink-soft);
  max-width: 620px;
  line-height: 1.6;
  margin: 0;
}

/* Editorial mono eyebrow — gold dot leader */
.mono-tag.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--orange-deep);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.mono-tag.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--orange-deep);
}
.mono-tag.eyebrow::after {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,168,67,.15);
}

/* ---- Buttons refined ---- */
.btn {
  padding: 14px 26px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.005em;
  border-radius: 999px;
  position: relative;
  isolation: isolate;
  transition: background .25s var(--ease-out),
              color .25s var(--ease-out),
              border-color .25s var(--ease-out),
              transform .35s var(--ease-spring),
              box-shadow .3s var(--ease-out);
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  box-shadow:
    0 2px 0 0 rgba(122, 42, 20, 0.18),
    0 10px 24px -8px rgba(232, 101, 43, 0.55);
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,.18), transparent 50%);
  opacity: 0;
  transition: opacity .3s var(--ease-out);
  z-index: -1;
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-primary:hover::before { opacity: 1; }
.btn-ghost { border-width: 1.5px; }
.btn-gold-outline {
  border-width: 1.5px;
  position: relative;
}
.btn-gold-outline::after {
  content: '';
  position: absolute; inset: -1px;
  border-radius: inherit;
  border: 1px solid rgba(212, 168, 67, 0.0);
  transition: border-color .3s, transform .3s var(--ease-spring);
  pointer-events: none;
}
.btn-gold-outline:hover::after { border-color: rgba(212, 168, 67, 0.45); transform: scale(1.05); }

/* ---- Hero refinement ---- */
.hero {
  min-height: 84vh;
  border-bottom: 1px solid rgba(212, 168, 67, 0.18);
}
.hero::after {
  content: '';
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: clamp(120px, 20vw, 240px);
  height: 1px;
  background: var(--rule-gold);
  z-index: 4;
  opacity: .55;
  pointer-events: none;
}
.hero-eyebrow {
  background: rgba(247, 243, 236, 0.06);
  border: 1px solid rgba(212, 168, 67, 0.42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  padding: 9px 18px;
}
.hero h1 {
  font-weight: 300;
  letter-spacing: -0.04em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
}
.hero h1 .accent { font-weight: 400; }
.hero h1 .accent-gold { font-weight: 400; }
.hero-sub {
  font-size: clamp(15.5px, 1.45vw, 18px);
  color: rgba(255, 255, 255, 0.78);
  max-width: 580px;
}
.hero-ctas { gap: 14px; }

.hero-stats {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 28px;
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 3vw, 40px);
  max-width: 760px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}
.hero-stat + .hero-stat::before {
  content: '';
  position: absolute;
  left: calc(-1 * clamp(8px, 1.5vw, 20px));
  top: 8px; bottom: 8px;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.hero-stat .num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 350;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.hero-stat .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
@media (max-width: 560px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .hero-stat:nth-child(3)::before { display: none; }
}

/* ---- Trust strip refined ---- */
.trust {
  background: var(--paper);
  border-top: none;
  border-bottom: 1px solid var(--hairline);
  padding: 28px 0;
  position: relative;
}
.trust::before {
  content: '';
  position: absolute; left: 50%; top: 0;
  transform: translate(-50%, -50%);
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  border: 1px solid var(--paper);
  box-shadow: 0 0 0 4px rgba(212,168,67,.12);
}
.trust .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(16px, 4vw, 48px);
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  flex: 1 1 180px;
  min-width: 0;
}
.trust-badge + .trust-badge::before {
  content: '';
  position: absolute;
  left: calc(-1 * clamp(8px, 2vw, 24px));
  top: 50%; transform: translateY(-50%);
  width: 1px; height: 32px;
  background: var(--hairline);
}
.trust-badge .icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--orange-soft);
  color: var(--orange-deep);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.trust-badge .icon svg { width: 18px; height: 18px; }
.trust-badge .text { display: flex; flex-direction: column; min-width: 0; }
.trust-badge .text strong {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.trust-badge .text span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ---- Adventure cards refined ---- */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.adv-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color .3s var(--ease-out),
              box-shadow .35s var(--ease-out),
              transform .4s var(--ease-spring);
}
.adv-card::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  pointer-events: none;
  transition: border-color .3s var(--ease-out);
}
.adv-card:hover {
  border-color: rgba(212, 168, 67, 0.4);
  box-shadow: 0 24px 60px -28px rgba(20, 18, 16, 0.22);
  transform: translateY(-4px);
}
.adv-card:hover::after { border-color: rgba(232, 101, 43, 0.18); }
.adv-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--teal-deep);
}
.adv-img img,
.adv-img svg {
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.adv-card:hover .adv-img img,
.adv-card:hover .adv-img svg { transform: scale(1.05); }
.adv-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20, 18, 16, 0.55) 100%);
  pointer-events: none;
}
.adv-img .badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--hairline);
}
.adv-img .badge.popular { background: var(--orange); color: var(--paper); border-color: var(--orange); }
.adv-img .badge.value { background: var(--teal-deep); color: var(--gold); border-color: var(--teal-deep); }
.adv-img .badge.luxury { background: var(--gold); color: var(--teal-deep); border-color: var(--gold); }
.adv-img .badge.thrill { background: var(--orange-deep); color: var(--paper); border-color: var(--orange-deep); }
.adv-img .badge.new, .adv-img .badge.heritage { background: var(--paper); color: var(--ink); }
.adv-img .price-pill {
  position: absolute;
  bottom: 14px; right: 14px;
  z-index: 2;
  display: flex;
  align-items: baseline;
  gap: 6px;
  background: rgba(247, 243, 236, 0.94);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(212, 168, 67, 0.4);
}
.adv-img .price-pill .from {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.adv-img .price-pill .num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: var(--orange-deep);
  line-height: 1;
}
.adv-body {
  padding: 24px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.adv-body h3 {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}
.adv-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.adv-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.adv-meta svg { width: 11px; height: 11px; opacity: 0.7; }
.adv-body p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.adv-actions {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.adv-actions .price-line {
  font-size: 12.5px;
  color: var(--ink-soft);
}
.adv-actions .price-line strong {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  color: var(--ink);
  margin-left: 4px;
}
.adv-actions .btn-row { display: flex; gap: 8px; }
.adv-actions .btn-row .btn { white-space: nowrap; }

/* ---- Why us — editorial tile refinement ---- */
.why { background: var(--bg-warm); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  overflow: hidden;
  background: var(--paper);
}
.why-tile {
  padding: 32px 28px;
  position: relative;
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--paper);
  transition: background .3s var(--ease-out);
}
.why-tile:hover { background: var(--bg-warm); }
.why-tile.alt, .why-tile.alt2 { background: var(--paper); }
.why-tile:nth-child(3n) { border-right: none; }
.why-tile:nth-last-child(-n+3) { border-bottom: none; }
@media (max-width: 880px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-tile { border-right: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
  .why-tile:nth-child(2n) { border-right: none; }
  .why-tile:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-tile { border-right: none !important; }
  .why-tile:last-child { border-bottom: none; }
}
.why-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--orange-soft);
  color: var(--orange-deep);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  position: relative;
}
.why-icon::after {
  content: '';
  position: absolute;
  inset: -3px;
  border: 1px solid rgba(232, 101, 43, 0.18);
  border-radius: 13px;
}
.why-icon svg { width: 22px; height: 22px; }
.why-tile h4 {
  margin: 0 0 10px;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.2;
}
.why-tile p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ---- Packages refined ---- */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  align-items: stretch;
}
.pkg-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color .3s, box-shadow .3s, transform .4s var(--ease-spring);
}
.pkg-card:hover {
  border-color: rgba(212, 168, 67, 0.4);
  box-shadow: 0 24px 60px -28px rgba(20, 18, 16, 0.2);
  transform: translateY(-4px);
}
.pkg-card.featured {
  border-color: var(--orange);
  box-shadow: 0 24px 60px -28px rgba(232, 101, 43, 0.32);
  background: linear-gradient(180deg, var(--paper) 0%, var(--orange-soft) 100%);
}
.pkg-card.featured:hover { box-shadow: 0 30px 70px -28px rgba(232, 101, 43, 0.45); }
.pkg-card .ribbon {
  position: absolute;
  top: 16px; right: 16px;
  z-index: 2;
  background: var(--orange);
  color: var(--paper);
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
}
.pkg-img { aspect-ratio: 16 / 9; overflow: hidden; }
.pkg-img img, .pkg-img svg { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.pkg-card:hover .pkg-img img, .pkg-card:hover .pkg-img svg { transform: scale(1.04); }
.pkg-body { padding: 26px 26px 24px; display: flex; flex-direction: column; gap: 16px; flex: 1; }
.pkg-body h3 {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.pkg-price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--hairline);
}
.pkg-price-row .from {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.pkg-price-row .num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 32px;
  color: var(--orange-deep);
  letter-spacing: -0.02em;
  line-height: 1;
}
.pkg-price-row .unit {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-left: 2px;
}
.pkg-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.pkg-features li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
}
.pkg-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px; height: 6px;
  border-left: 1.5px solid var(--orange);
  border-bottom: 1.5px solid var(--orange);
  transform: rotate(-45deg);
}
.pkg-body .btn { align-self: flex-start; margin-top: 8px; }

/* ---- Locations — editorial card stack ---- */
.loc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.loc-card {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--teal-deep);
  text-decoration: none;
  transition: transform .5s var(--ease-spring), box-shadow .35s var(--ease-out);
}
.loc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px -28px rgba(20, 18, 16, 0.32);
}
.loc-card > img,
.loc-card > svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.loc-card:hover > img,
.loc-card:hover > svg { transform: scale(1.06); }
.loc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(7, 47, 56, 0.55) 60%, rgba(7, 47, 56, 0.92) 100%);
  z-index: 1;
}
.loc-body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 24px 24px 22px;
  color: var(--paper);
}
.loc-body .country {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  padding: 4px 10px;
  background: rgba(212, 168, 67, 0.16);
  border: 1px solid rgba(212, 168, 67, 0.36);
  border-radius: 4px;
}
.loc-body h3 {
  margin: 0 0 10px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--paper);
  line-height: 1.05;
}
.loc-body p {
  margin: 0 0 16px;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 280px;
}
.loc-body .loc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}
.loc-body .loc-link::after {
  content: '→';
  transition: transform .3s var(--ease-out);
}
.loc-card:hover .loc-link::after { transform: translateX(4px); }
.loc-body .meta {
  display: flex;
  gap: 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

/* ---- Process — editorial step ladder ---- */
.process { background: var(--teal-deep); color: var(--paper); position: relative; }
.process::before, .process::after { display: none; }
.process .section-head h2 { color: var(--paper); }
.process .section-head h2 .accent { color: var(--gold); }
.process .section-head .lead { color: rgba(255, 255, 255, 0.72); }
.process .mono-tag.eyebrow { color: var(--gold); }
.process .mono-tag.eyebrow::before { background: var(--gold); }
.process .mono-tag.eyebrow::after { background: var(--orange); box-shadow: 0 0 0 3px rgba(232,101,43,.18); }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.step {
  padding: 32px 28px 28px;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.step:last-child { border-right: none; }
@media (max-width: 720px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step { border-right: 1px solid rgba(255, 255, 255, 0.1); border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .step:nth-child(2n) { border-right: none; }
  .step:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .step:last-child { border-bottom: none; }
}
.step .num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 350;
  font-size: 56px;
  line-height: 1;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
  letter-spacing: -0.04em;
}
.step h4 {
  margin: 0 0 8px;
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--paper);
}
.step p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

/* ---- Reviews refined ---- */
.reviews-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 48px;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  overflow: hidden;
  background: var(--paper);
}
.rs-cell {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--hairline);
  position: relative;
  transition: background .3s;
}
.rs-cell:last-child { border-right: none; }
.rs-cell:hover { background: var(--bg-warm); }
.rs-cell .num {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 38px);
  color: var(--orange-deep);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.rs-cell .label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
@media (max-width: 720px) {
  .reviews-stats { grid-template-columns: repeat(2, 1fr); }
  .rs-cell:nth-child(2n) { border-right: none; }
  .rs-cell:nth-child(-n+2) { border-bottom: 1px solid var(--hairline); }
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.review-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color .3s, box-shadow .3s;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 14px; right: 24px;
  font-family: 'Fraunces', serif;
  font-size: 80px;
  line-height: 0.7;
  color: var(--gold);
  opacity: 0.18;
  font-style: italic;
}
.review-card:hover {
  border-color: rgba(212, 168, 67, 0.4);
  box-shadow: 0 20px 50px -22px rgba(20, 18, 16, 0.18);
}
.review-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 0.1em;
}
.review-card .text {
  margin: 0;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 350;
  font-size: 16.5px;
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: -0.005em;
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid var(--hairline);
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 18px;
  flex-shrink: 0;
}
.review-avatar.alt { background: var(--teal-deep); color: var(--gold); }
.review-avatar.alt2 { background: var(--gold); color: var(--teal-deep); }
.review-author .info { display: flex; flex-direction: column; line-height: 1.2; }
.review-author .info strong { font-size: 14px; font-weight: 600; color: var(--ink); }
.review-author .info span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 3px;
}

/* ---- FAQ refined ---- */
.faq { background: var(--bg-warm); }
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  background: var(--paper);
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid var(--hairline);
  background: var(--paper);
}
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background .25s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--bg-warm); }
.faq-item .q {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.faq-item .toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--orange-deep);
  display: grid; place-items: center;
  font-size: 18px;
  font-weight: 400;
  border: 1px solid var(--hairline);
  flex-shrink: 0;
  transition: background .3s, color .3s, border-color .3s, transform .3s;
}
.faq-item[open] .toggle {
  background: var(--orange);
  color: var(--paper);
  border-color: var(--orange);
  transform: rotate(45deg);
}
.faq-item .answer {
  padding: 0 26px 24px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ---- Final CTA refined ---- */
.final {
  background: var(--teal-deep);
  position: relative;
  border-top: 1px solid rgba(212, 168, 67, 0.18);
}
.final::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 0% 100%, rgba(232, 101, 43, 0.16), transparent 55%),
    radial-gradient(700px 400px at 100% 0%, rgba(212, 168, 67, 0.1), transparent 55%);
  pointer-events: none;
}
.final-inner { gap: 56px; align-items: stretch; }
.final h2 {
  font-weight: 300;
  font-size: clamp(36px, 5.4vw, 64px);
  letter-spacing: -0.04em;
  font-variation-settings: 'opsz' 144, 'SOFT' 30;
}
.final-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 168, 67, 0.32);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.final-card .row {
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  transition: background .25s, border-color .25s;
}
.final-card a.row:hover {
  background: rgba(212, 168, 67, 0.1);
  border-color: rgba(212, 168, 67, 0.32);
}

/* ---- Section divider — gold dot ornament ---- */
section + section::before {
  /* override: skip when adjacent to .process which has its own treatment */
  /* default = nothing extra */
}

/* Adventure card on small screens — compact spacing */
@media (max-width: 540px) {
  .adv-body { padding: 20px 20px 18px; }
  .adv-body h3 { font-size: 20px; }
  .pkg-body { padding: 22px; }
  .review-card { padding: 24px; }
  .faq-item summary { padding: 18px 20px; gap: 12px; }
  .faq-item .q { font-size: 15.5px; }
  .faq-item .answer { padding: 0 20px 20px; }
}

/* Subtle scroll-cued reveal — keep additive (works with existing .reveal) */
@media (prefers-reduced-motion: no-preference) {
  .adv-card, .pkg-card, .loc-card, .review-card { will-change: transform; }
}

/* ============================================================
   SPECIFICITY BOOST — overrides legacy body[data-page="home"]
   rules from main.css that have higher selector weight.
   ============================================================ */

/* Process step — typographic numbers, no filled square */
body[data-page="home"] .step,
body .step {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 32px 28px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
body[data-page="home"] .step:last-child,
body .step:last-child { border-right: none; }
body[data-page="home"] .step .num,
body .step .num {
  width: auto;
  height: auto;
  background: transparent;
  border-radius: 0;
  display: block;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 350;
  font-size: 56px;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 18px;
  letter-spacing: -0.04em;
  padding: 0;
  text-align: left;
}
body[data-page="home"] .step h4,
body .step h4 {
  font-style: normal;
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.01em;
}

/* Reviews stats — flush borders, no gap-trick gradient */
body[data-page="home"] .reviews-stats {
  background: var(--paper);
  gap: 0;
  margin-bottom: 48px;
}
body[data-page="home"] .rs-cell {
  border-right: 1px solid var(--hairline);
  padding: 28px 20px;
}
body[data-page="home"] .rs-cell:last-child { border-right: none; }
body[data-page="home"] .rs-cell .num { font-size: clamp(28px, 3vw, 38px); margin-bottom: 8px; }

/* Review cards — refined italic body, gold quote mark */
body[data-page="home"] .review-card {
  position: relative;
  border-radius: 14px;
  padding: 28px;
  gap: 18px;
}
body[data-page="home"] .review-card::before {
  content: '"';
  position: absolute;
  top: 14px; right: 24px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 80px;
  line-height: 0.7;
  color: var(--gold);
  opacity: 0.18;
  pointer-events: none;
}
body[data-page="home"] .review-card .text {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 350;
  font-size: 16.5px;
  line-height: 1.5;
  letter-spacing: -0.005em;
}
body[data-page="home"] .review-card:hover {
  border-color: rgba(212, 168, 67, 0.4);
  box-shadow: 0 20px 50px -22px rgba(20, 18, 16, 0.18);
  transform: none;
}

/* FAQ — unified card style with hairline dividers */
body[data-page="home"] .faq-list {
  gap: 0;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  background: var(--paper);
  overflow: hidden;
}
body[data-page="home"] .faq-item {
  border: none;
  border-bottom: 1px solid var(--hairline);
  border-radius: 0;
  background: var(--paper);
  box-shadow: none;
}
body[data-page="home"] .faq-item:last-child { border-bottom: none; }
body[data-page="home"] .faq-item[open] {
  background: var(--bg-warm);
  border-color: var(--hairline);
  box-shadow: none;
}
body[data-page="home"] .faq-item summary { padding: 22px 26px; }
body[data-page="home"] .faq-item .q {
  font-style: normal;
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.01em;
}
body[data-page="home"] .faq-item .toggle {
  background: var(--bg);
  color: var(--orange-deep);
  border: 1px solid var(--hairline);
  font-size: 18px;
}
body[data-page="home"] .faq-item[open] .toggle {
  background: var(--orange);
  color: var(--paper);
  border-color: var(--orange);
}

/* Featured package — restore ribbon + soft gradient bg */
body[data-page="home"] .pkg-card.featured {
  border-color: var(--orange);
  box-shadow: 0 24px 60px -28px rgba(232, 101, 43, 0.32);
  background: linear-gradient(180deg, var(--paper) 0%, var(--orange-soft) 100%);
}
body[data-page="home"] .pkg-card .ribbon {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 5;
  background: var(--orange);
  color: var(--paper);
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(232, 101, 43, 0.32);
}

/* Pkg-features bullets — orange dots already in main; keep as is */

/* Why-grid responsive */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .why-tile:nth-child(3n) { border-right: 1px solid var(--hairline); }
  .why-tile:nth-child(2n) { border-right: none; }
  .why-tile:nth-last-child(-n+3) { border-bottom: 1px solid var(--hairline); }
  .why-tile:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr !important; }
  .why-tile { border-right: none !important; }
  .why-tile:last-child { border-bottom: none !important; }
}
