/* =====================================================================
   RA KASHI TRAVELS - Premium Kashi design system
   Light theme only. Contrast comes from alternating section surfaces.
   ===================================================================== */

:root {
  /* colour */
  --charcoal:  #171A1C;
  --ivory:     #F8F6F0;
  --white:     #FFFDF8;
  --warm-gray: #F1EDE4;
  --gold:      #C89B3C;
  --gold-deep: #9D7629;
  --saffron:   #C98232;
  --text:      #242424;
  --text-muted:#6B6861;
  --border:    #E7E1D6;

  /* 8px spacing scale */
  --s1: 8px;  --s2: 16px; --s3: 24px; --s4: 32px;
  --s5: 40px; --s6: 56px; --s7: 80px; --s8: 112px;

  --radius:    14px;
  --radius-sm: 8px;
  --shadow:    0 1px 2px rgba(23,26,28,.04), 0 8px 24px -12px rgba(23,26,28,.16);
  --shadow-lg: 0 2px 4px rgba(23,26,28,.05), 0 24px 48px -20px rgba(23,26,28,.24);

  --container: 1200px;
  --header-h:  84px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: 'Manrope', 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--charcoal); color: #fff; padding: 12px 20px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ------------------------------------------------------------ typography */

h1, h2, h3, h4 {
  margin: 0 0 var(--s2);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 700; }
h4 { font-size: 1.05rem; font-weight: 700; }
p  { margin: 0 0 var(--s2); }
p:last-child { margin-bottom: 0; }

.heritage {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.eyebrow {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: var(--s1);
}

.lead      { font-size: 1.08rem; color: var(--text-muted); max-width: 62ch; }
.muted     { color: var(--text-muted); }
.prose     { max-width: 68ch; }
.prose h3  { margin-top: var(--s4); }
.prose ul, .prose ol { padding-left: 1.2em; margin: 0 0 var(--s2); }
.prose li  { margin-bottom: 6px; }
.prose a   { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }

/* --------------------------------------------------------------- layout */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--s3);
}

.section { padding-block: var(--s7); }
.section--tight { padding-block: var(--s6); }

/* the alternating surface rhythm - never two of the same back to back */
.bg-ivory     { background: var(--ivory); }
.bg-white     { background: var(--white); }
.bg-warm      { background: var(--warm-gray); }
.bg-charcoal  { background: var(--charcoal); color: #EDE9E1; }
.bg-charcoal h1, .bg-charcoal h2, .bg-charcoal h3 { color: #fff; }
.bg-charcoal .muted, .bg-charcoal .lead { color: #A9A49A; }
.bg-charcoal .eyebrow { color: var(--gold); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s3);
  margin-bottom: var(--s5);
}
.section-head__text { max-width: 60ch; }
.section-head h2 { margin-bottom: 10px; }
.section-head p  { margin: 0; color: var(--text-muted); }
.section-head--center { flex-direction: column; align-items: center; text-align: center; }
.section-head--center .section-head__text { text-align: center; }

.grid { display: grid; gap: var(--s3); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s6);
  align-items: center;
}
.split--reverse .split__media { order: 2; }

/* -------------------------------------------------------------- buttons */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn:active { transform: translateY(1px); }

.btn--primary  { background: var(--gold); color: #1A1407; }
.btn--primary:hover  { background: var(--gold-deep); color: #fff; }

.btn--dark     { background: var(--charcoal); color: #fff; }
.btn--dark:hover { background: #000; }

.btn--ghost    { background: transparent; border-color: var(--border); color: var(--charcoal); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-deep); }

.btn--light    { background: #fff; color: var(--charcoal); }
.btn--light:hover { background: var(--gold); }

.btn--wa       { background: #1FA855; color: #fff; }
.btn--wa:hover { background: #178644; }

.btn--block { width: 100%; justify-content: center; }
.btn--lg    { padding: 16px 30px; font-size: 1rem; }

.link-more {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--gold-deep); font-size: .95rem;
}
.link-more:hover { color: var(--charcoal); }
.link-more svg { width: 16px; height: 16px; transition: transform .18s ease; }
.link-more:hover svg { transform: translateX(3px); }

/* ---------------------------------------------------------------- cards */

.card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.card:hover { border-color: var(--gold); box-shadow: var(--shadow); }

.card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--warm-gray);
}
.card__media--portrait { aspect-ratio: 4 / 5; }
.card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.card:hover .card__media img { transform: scale(1.05); }

.card__tag {
  position: absolute; top: 12px; left: 12px;
  background: rgba(23,26,28,.86); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .04em;
  padding: 6px 11px; border-radius: 999px;
}
.card__price {
  position: absolute; bottom: 12px; right: 12px;
  background: var(--gold); color: #1A1407;
  font-size: .82rem; font-weight: 800;
  padding: 6px 12px; border-radius: 999px;
}

.card__body { padding: var(--s3); display: flex; flex-direction: column; flex: 1; gap: 10px; }
.card__title { font-size: 1.12rem; font-weight: 700; margin: 0; color: var(--charcoal); }
.card__text  { margin: 0; font-size: .93rem; color: var(--text-muted); }

.card__meta {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: auto; padding-top: 4px;
}
.spec {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .78rem; font-weight: 600; color: var(--text-muted);
  background: var(--ivory);
  border: 1px solid var(--border);
  padding: 5px 10px; border-radius: 999px;
}
.spec svg { width: 13px; height: 13px; color: var(--gold-deep); }

.card__foot {
  padding: 0 var(--s3) var(--s3);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}

/* icon tile used by trust / why / safety blocks */
.icon-tile {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--ivory);
  border: 1px solid var(--border);
  color: var(--gold-deep);
  flex: none;
}
.icon-tile svg { width: 22px; height: 22px; }
.icon-tile--gold { background: var(--gold); border-color: var(--gold-deep); color: #1A1407; }

.feature {
  display: flex; gap: var(--s2);
  padding: var(--s3);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 100%;
}
.feature h3 { font-size: 1.02rem; margin-bottom: 6px; }
.feature p  { font-size: .91rem; color: var(--text-muted); margin: 0; }

/* --------------------------------------------------------------- header */

.header {
  position: sticky; top: 0; z-index: 90;
  background: rgba(255,253,248,.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .2s ease, padding .2s ease;
}
.header.is-stuck { box-shadow: 0 6px 24px -14px rgba(23,26,28,.4); }

.header__bar {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s3);
  height: var(--header-h);
  transition: height .2s ease;
}
.header.is-stuck .header__bar { height: 68px; }

.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand img { height: 74px; width: auto; }
.brand__name { font-weight: 800; letter-spacing: -.02em; line-height: 1.1; font-size: 1.02rem; color: var(--charcoal); }
.brand__tag  { font-size: .72rem; color: var(--gold-deep); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav a {
  padding: 9px 13px; border-radius: 8px;
  font-size: .94rem; font-weight: 600; color: var(--text);
}
.nav a:hover { background: var(--ivory); color: var(--gold-deep); }
.nav a.is-active { color: var(--gold-deep); }

.header__actions { display: flex; align-items: center; gap: 10px; flex: none; }
.icon-btn {
  width: 42px; height: 42px; display: grid; place-items: center;
  border-radius: 50%; border: 1px solid var(--border); background: #fff; color: var(--charcoal);
}
.icon-btn:hover { border-color: var(--gold); color: var(--gold-deep); }
.icon-btn svg { width: 19px; height: 19px; }

.burger { display: none; width: 44px; height: 44px; border: 1px solid var(--border); background: #fff; border-radius: 10px; }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--white);
  padding: var(--s2) var(--s3) var(--s3);
}
.mobile-nav.is-open { display: block; }
.mobile-nav a { display: block; padding: 12px 4px; border-bottom: 1px solid var(--border); font-weight: 600; }
.mobile-nav .btn { margin-top: var(--s2); }

/* ----------------------------------------------------------------- hero */

.hero {
  position: relative;
  min-height: 640px;
  display: flex; align-items: center;
  padding-block: var(--s7);
  background: var(--charcoal);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(23,26,28,.94) 0%, rgba(23,26,28,.78) 42%, rgba(23,26,28,.45) 100%);
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--s6); align-items: center;
}
.hero h1 { color: #fff; margin-bottom: var(--s2); }
.hero__sub { color: #D8D3C9; font-size: 1.1rem; max-width: 46ch; margin-bottom: var(--s4); }
.hero__points { display: flex; flex-wrap: wrap; gap: var(--s2); margin-bottom: var(--s4); }
.hero__point {
  display: inline-flex; align-items: center; gap: 8px;
  color: #EDE9E1; font-size: .88rem; font-weight: 600;
  border: 1px solid rgba(237,233,225,.24); border-radius: 999px; padding: 7px 14px;
}
.hero__point svg { width: 15px; height: 15px; color: var(--gold); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* animated route line in the hero */
.route-line { position: absolute; right: -40px; bottom: 40px; width: 460px; opacity: .5; z-index: 1; pointer-events: none; }
.route-line path { stroke-dasharray: 6 10; }
.route-line .plane { animation: fly 9s ease-in-out infinite; }
@keyframes fly {
  0%   { offset-distance: 0%;   opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}

/* ----------------------------------------------------------------- forms */

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: var(--s4);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.form-card h2, .form-card h3 { margin-bottom: 6px; }

.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--s2); }
.field > label { font-size: .84rem; font-weight: 700; color: var(--charcoal); }
.field .hint { font-size: .78rem; color: var(--text-muted); }

input[type=text], input[type=email], input[type=tel], input[type=date],
input[type=number], input[type=password], input[type=search], select, textarea {
  width: 100%;
  font: inherit;
  font-size: .95rem;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
textarea { min-height: 120px; resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,155,60,.18);
}
input[aria-invalid=true], textarea[aria-invalid=true], select[aria-invalid=true] { border-color: #C0392B; }

.error-msg { color: #A93226; font-size: .82rem; font-weight: 600; }

.check-row { display: flex; flex-wrap: wrap; gap: var(--s2); margin-bottom: var(--s2); }
.check {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--border); border-radius: 999px;
  padding: 9px 15px; font-size: .88rem; font-weight: 600; cursor: pointer; background: #fff;
}
.check:has(input:checked) { border-color: var(--gold); background: #FCF7EC; color: var(--gold-deep); }
.check input { accent-color: var(--gold-deep); width: 16px; height: 16px; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: var(--s3); font-weight: 600; font-size: .93rem; }
.alert--success { background: #EAF6EE; border: 1px solid #BEE0CB; color: #1E6B3A; }
.alert--error   { background: #FBEDEC; border: 1px solid #F0CBC7; color: #A93226; }

.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0 var(--s2); }
.form-grid .field--full { grid-column: 1 / -1; }

/* ------------------------------------------------------------- carousels */

.carousel { position: relative; min-width: 0; }
.carousel .swiper { overflow-x: hidden; }
.carousel .swiper-slide { height: auto; display: flex; }
.carousel .swiper-slide > * { width: 100%; }

.carousel__nav { display: flex; gap: 8px; }
.car-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--border); background: #fff; color: var(--charcoal);
  display: grid; place-items: center; cursor: pointer;
  transition: border-color .15s ease, color .15s ease, opacity .15s ease;
}
.car-btn:hover { border-color: var(--gold); color: var(--gold-deep); }
.car-btn.swiper-button-disabled { opacity: .35; cursor: default; }
.car-btn svg { width: 17px; height: 17px; }

.carousel__dots { display: flex; justify-content: center; gap: 6px; margin-top: var(--s3); }
.carousel__dots .swiper-pagination-bullet {
  width: 7px; height: 7px; border-radius: 999px; background: var(--border); opacity: 1; transition: width .2s ease, background .2s ease;
}
.carousel__dots .swiper-pagination-bullet-active { width: 22px; background: var(--gold); }

.empty-state {
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: var(--s5);
  text-align: center;
  color: var(--text-muted);
  background: rgba(255,255,255,.5);
}
.empty-state strong { display: block; color: var(--charcoal); margin-bottom: 4px; }

/* ----------------------------------------------------------- components */

.stat-row { display: flex; flex-wrap: wrap; gap: var(--s5); margin-top: var(--s4); }
.stat__num { font-size: 2rem; font-weight: 800; color: var(--charcoal); line-height: 1; letter-spacing: -.03em; }
.stat__label { font-size: .85rem; color: var(--text-muted); margin-top: 6px; }

.stars { display: inline-flex; gap: 2px; }
.stars .star { width: 15px; height: 15px; fill: #D8D2C6; }
.stars .star.is-on { fill: var(--gold); }

.review-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: var(--s3); height: 100%; display: flex; flex-direction: column; gap: 14px;
}
.review-card__text { font-size: .95rem; color: var(--text); margin: 0; flex: 1; }
.review-card__who { display: flex; align-items: center; gap: 12px; }
.review-card__who img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.review-card__name { font-weight: 700; font-size: .93rem; color: var(--charcoal); }
.review-card__loc  { font-size: .8rem; color: var(--text-muted); }

.rating-badge {
  display: inline-flex; align-items: center; gap: 14px;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: #fff; padding: var(--s3) var(--s4);
}
.rating-badge__num { font-size: 2.6rem; font-weight: 800; line-height: 1; color: var(--charcoal); }

/* asymmetric why-choose-us grid */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s3); }
.why-grid__feature { grid-row: span 2; display: flex; flex-direction: column; justify-content: flex-end;
  border-radius: var(--radius); overflow: hidden; position: relative; min-height: 420px; background: var(--charcoal); }
.why-grid__feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .58; }
.why-grid__feature-body { position: relative; padding: var(--s3); color: #fff;
  background: linear-gradient(to top, rgba(23,26,28,.95), rgba(23,26,28,0)); }
.why-grid__feature-body h3 { color: #fff; }
.why-grid__feature-body p { color: #C9C4BA; font-size: .92rem; margin: 0; }

/* how booking works */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s3); position: relative; }
.steps::before {
  content: ''; position: absolute; top: 28px; left: 12%; right: 12%;
  border-top: 2px dashed var(--border); z-index: 0;
}
.step { position: relative; z-index: 1; text-align: left; }
.step__num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--charcoal); color: var(--gold);
  display: grid; place-items: center; font-weight: 800; font-size: 1.15rem;
  margin-bottom: var(--s2); border: 4px solid var(--warm-gray);
}
.step h3 { font-size: 1.05rem; margin-bottom: 6px; }
.step p  { font-size: .91rem; color: var(--text-muted); margin: 0; }

/* comparison table */
.compare-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); background: #fff; }
.compare { width: 100%; border-collapse: collapse; min-width: 640px; }
.compare th, .compare td { padding: 16px; text-align: left; border-bottom: 1px solid var(--border); font-size: .93rem; }
.compare thead th { background: var(--ivory); font-weight: 700; color: var(--charcoal); vertical-align: bottom; }
.compare tbody th { font-weight: 700; color: var(--text-muted); font-size: .85rem; width: 180px; }
.compare img { width: 100%; max-width: 160px; border-radius: var(--radius-sm); margin-bottom: 10px; aspect-ratio: 16/9; object-fit: cover; }
.compare tr:last-child td, .compare tr:last-child th { border-bottom: 0; }

/* accordion */
.accordion { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: #fff; }
.acc-item + .acc-item { border-top: 1px solid var(--border); }
.acc-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--s2);
  padding: 18px var(--s3); background: none; border: 0; cursor: pointer;
  font: inherit; font-weight: 700; font-size: 1rem; color: var(--charcoal); text-align: left;
}
.acc-q:hover { color: var(--gold-deep); }
.acc-q svg { width: 18px; height: 18px; flex: none; transition: transform .2s ease; color: var(--gold-deep); }
.acc-item.is-open .acc-q svg { transform: rotate(45deg); }
.acc-a { display: none; padding: 0 var(--s3) 20px; color: var(--text-muted); font-size: .95rem; max-width: 76ch; }
.acc-item.is-open .acc-a { display: block; }

/* gallery */
.masonry { columns: 4; column-gap: var(--s2); }
.masonry figure { break-inside: avoid; margin: 0 0 var(--s2); border-radius: var(--radius); overflow: hidden; position: relative; background: var(--warm-gray); }
.masonry img { width: 100%; transition: transform .5s ease; }
.masonry figure:hover img { transform: scale(1.04); }
.masonry figcaption {
  position: absolute; inset: auto 0 0 0; padding: 26px 16px 14px; color: #fff; font-size: .85rem;
  background: linear-gradient(to top, rgba(23,26,28,.9), transparent);
  opacity: 0; transition: opacity .25s ease;
}
.masonry figure:hover figcaption, .masonry figure:focus-within figcaption { opacity: 1; }

.filter-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: var(--s4); }
.filter-row a, .chip {
  padding: 9px 16px; border-radius: 999px; border: 1px solid var(--border);
  font-size: .88rem; font-weight: 600; background: #fff; color: var(--text);
}
.filter-row a:hover { border-color: var(--gold); color: var(--gold-deep); }
.filter-row a.is-active { background: var(--charcoal); border-color: var(--charcoal); color: #fff; }

/* page banner on inner pages */
.page-banner { position: relative; background: var(--charcoal); padding-block: var(--s6); overflow: hidden; }
.page-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.page-banner__inner { position: relative; z-index: 2; }
.page-banner h1 { color: #fff; margin-bottom: 10px; }
.page-banner p  { color: #C9C4BA; max-width: 62ch; margin: 0; }
.crumbs { font-size: .84rem; color: #A9A49A; margin-bottom: var(--s2); }
.crumbs a:hover { color: var(--gold); }
.crumbs span { margin-inline: 6px; opacity: .6; }

/* dark CTA strip */
.cta-strip { text-align: center; }
.cta-strip h2 { max-width: 20ch; margin-inline: auto; }
.cta-strip p  { max-width: 56ch; margin-inline: auto; }
.cta-strip__btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: var(--s4); }

/* spec grid on vehicle detail */
.spec-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: var(--s2); }
.spec-box { border: 1px solid var(--border); border-radius: var(--radius); padding: var(--s3); background: #fff; }
.spec-box__label { font-size: .78rem; color: var(--text-muted); font-weight: 600; margin-bottom: 4px; }
.spec-box__value { font-size: 1.05rem; font-weight: 800; color: var(--charcoal); }

.tick-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.tick-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; }
.tick-list svg { width: 18px; height: 18px; flex: none; margin-top: 2px; color: var(--gold-deep); }
.tick-list--no svg { color: #B4ADA2; }

.itinerary { display: grid; gap: var(--s2); }
.itin-day { display: grid; grid-template-columns: 92px 1fr; gap: var(--s3);
  border: 1px solid var(--border); border-radius: var(--radius); padding: var(--s3); background: #fff; }
.itin-day__n { font-weight: 800; color: var(--gold-deep); font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; }
.itin-day h3 { font-size: 1.05rem; margin-bottom: 6px; }
.itin-day p { font-size: .93rem; color: var(--text-muted); margin: 0; }

/* areas list */
.areas { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s2); }
.area {
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px var(--s2);
}
.area strong { font-size: .95rem; font-weight: 700; }
.area span { font-size: .8rem; color: var(--text-muted); }

/* --------------------------------------------------------------- footer */

.footer { background: var(--charcoal); color: #B5B0A6; padding-block: var(--s7) var(--s3); }
.footer a { color: #D8D3C9; }
.footer a:hover { color: var(--gold); }
.footer h4 { color: #fff; font-size: .88rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: var(--s2); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.5fr; gap: var(--s5); }
.footer__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: .92rem; }
.footer__brand img { height: 56px; margin-bottom: var(--s2); }
.footer__bottom {
  margin-top: var(--s6); padding-top: var(--s3); border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: var(--s2); justify-content: space-between; font-size: .85rem;
}
.socials { display: flex; gap: 10px; margin-top: var(--s3); }
.socials a {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,.18);
}
.socials a:hover { background: var(--gold); border-color: var(--gold); color: #1A1407; }
.socials svg { width: 17px; height: 17px; }

.newsletter { display: flex; gap: 8px; margin-top: var(--s2); }
.newsletter input { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18); color: #fff; }
.newsletter input::placeholder { color: #8D887F; }

/* ------------------------------------------------- sticky mobile CTA bar */

.mobile-cta { display: none; }

/* --------------------------------------------------- scroll reveal (JS) */

[data-reveal] { opacity: 0; transform: translateY(16px); }
[data-reveal].is-in { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s ease; }

/* ---------------------------------------------------------- responsive */

@media (max-width: 1080px) {
  .nav { display: none; }
  .burger { display: grid; place-items: center; margin-left: auto; }
  .header__actions .btn { display: none; }
  .hero__inner { grid-template-columns: 1fr; gap: var(--s5); }
  .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid__feature { grid-row: span 1; min-height: 300px; }
  .masonry { columns: 3; }
  .areas { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--s4); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: var(--s4); }
  .steps::before { display: none; }
}

@media (max-width: 760px) {
  :root { --s7: 56px; --s6: 40px; }
  .brand img { height: 54px; }
  .section { padding-block: var(--s7); }
  .split, .grid-2, .grid-3, .grid-4, .form-grid { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .section-head .carousel__nav { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .masonry { columns: 2; }
  .areas { grid-template-columns: 1fr 1fr; }
  .hero { min-height: 0; }
  .form-card { padding: var(--s3); }
  .itin-day { grid-template-columns: 1fr; gap: 8px; }
  .footer__grid { grid-template-columns: 1fr; }
  body { padding-bottom: 72px; }

  .mobile-cta {
    display: grid; grid-template-columns: repeat(3, 1fr);
    position: fixed; inset: auto 0 0 0; z-index: 95;
    background: var(--charcoal);
    border-top: 1px solid rgba(255,255,255,.12);
  }
  .mobile-cta a {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px;
    padding: 11px 6px; color: #EDE9E1; font-size: .74rem; font-weight: 700;
  }
  .mobile-cta a + a { border-left: 1px solid rgba(255,255,255,.12); }
  .mobile-cta svg { width: 19px; height: 19px; color: var(--gold); }
  .mobile-cta a.is-primary { background: var(--gold); color: #1A1407; }
  .mobile-cta a.is-primary svg { color: #1A1407; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
  .route-line .plane { animation: none; }
}

@media print {
  .header, .footer, .mobile-cta, .carousel__nav { display: none; }
}
