/* =========================================================
   Meenakshi Tour N Travels
   Palette pulled from the MTNT mark: magenta + orange,
   set against a peach paper and an aubergine ink.
   ========================================================= */

:root {
  --ink:        #1a0e1c;
  --ink-soft:   #40293f;
  --paper:      #fff6ef;
  --paper-2:    #ffece0;
  --magenta:    #d6006e;
  --magenta-dk: #a3004f;
  --orange:     #f26f21;
  --tea:        #1f4d3d;
  --tea-soft:   #d8e8df;
  --line:       #ecd6c6;
  --muted:      #7a6560;

  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 18px;

  --shadow: 0 1px 0 var(--line), 0 12px 28px -18px rgba(26, 14, 28, .5);

  --font-display: "Bricolage Grotesque", "Trebuchet MS", sans-serif;
  --font-body: "Karla", system-ui, -apple-system, sans-serif;
  --font-mono: "DM Mono", ui-monospace, "Courier New", monospace;

  --wrap: 1160px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.25rem; }

a { color: var(--magenta); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--magenta-dk); }
img, svg, video, iframe { max-width: 100%; }
img { display: block; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }
.section { padding: 72px 0; }
.section--tight { padding: 44px 0; }
.center { text-align: center; }
.muted { color: var(--muted); }
.mono { font-family: var(--font-mono); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 14px;
}

/* ---------------- Header ---------------- */
.topbar {
  background: var(--ink);
  color: #f6e6dd;
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .04em;
}
.topbar .wrap { display: flex; gap: 18px; flex-wrap: wrap; justify-content: space-between; padding-block: 8px; }
.topbar a { color: #ffd9c2; text-decoration: none; }
.topbar a:hover { color: #fff; text-decoration: underline; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 246, 239, .93);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; gap: 20px; padding-block: 14px; }

.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.brand__mark {
  width: 42px; height: 42px; flex: none; border-radius: 50%;
  background: conic-gradient(from 200deg, var(--magenta), var(--orange), var(--magenta));
  display: grid; place-items: center;
  color: #fff; font-family: var(--font-display); font-weight: 800; font-size: .95rem;
  letter-spacing: -.04em;
}
.brand__name { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; line-height: 1.1; letter-spacing: -.02em; }
.brand__tag { font-family: var(--font-mono); font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }

.nav { margin-left: auto; display: flex; align-items: center; gap: 6px; }
.nav a {
  padding: 9px 13px; border-radius: 999px; text-decoration: none;
  color: var(--ink); font-weight: 600; font-size: .95rem;
}
.nav a:hover { background: var(--paper-2); }
.nav a[aria-current="page"] { background: var(--ink); color: var(--paper); }

.nav-toggle {
  margin-left: auto; display: none; background: none; border: 1.5px solid var(--line);
  border-radius: var(--r-sm); padding: 9px 12px; font: inherit; cursor: pointer;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line); padding: 8px;
  }
  .nav.is-open { display: flex; }
  .nav a { border-radius: var(--r-sm); }
}

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: 999px; border: 1.5px solid transparent;
  font-family: var(--font-body); font-weight: 700; font-size: .97rem;
  text-decoration: none; cursor: pointer; transition: transform .12s ease, background .16s ease;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--magenta); color: #fff; }
.btn--primary:hover { background: var(--magenta-dk); color: #fff; }
.btn--ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--ink); color: var(--paper); }
.btn--orange { background: var(--orange); color: #23130a; }
.btn--orange:hover { background: #d95f14; color: #fff; }
.btn--sm { padding: 8px 15px; font-size: .86rem; }
.btn[disabled], .btn.is-disabled { opacity: .45; pointer-events: none; }

/* ---------------- Hero: the availability desk ---------------- */
.hero {
  background:
    radial-gradient(120% 90% at 88% 0%, rgba(242, 111, 33, .22), transparent 58%),
    radial-gradient(80% 80% at 5% 100%, rgba(214, 0, 110, .14), transparent 60%),
    var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 56px 0 64px;
}
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero p.lede { font-size: 1.13rem; max-width: 46ch; color: var(--ink-soft); }
.hero__stats { display: flex; gap: 26px; margin-top: 28px; flex-wrap: wrap; }
.hero__stat b { display: block; font-family: var(--font-display); font-size: 1.7rem; }
.hero__stat span { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

@media (max-width: 900px) { .hero__grid { grid-template-columns: 1fr; gap: 34px; } }

/* Date checker card */
.checker {
  background: var(--ink); color: var(--paper);
  border-radius: var(--r-lg); padding: 26px;
  box-shadow: 0 26px 50px -30px rgba(26, 14, 28, .85);
}
.checker h2 { font-size: 1.35rem; color: #fff; margin-bottom: 4px; }
.checker p { color: #cbb2be; font-size: .92rem; margin-top: 0; }
.checker label {
  display: block; font-family: var(--font-mono); font-size: .68rem;
  letter-spacing: .14em; text-transform: uppercase; color: #e5b9cf; margin-bottom: 6px;
}
.checker__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
.checker input, .checker select {
  width: 100%; padding: 12px 13px; border-radius: var(--r-md);
  border: 1.5px solid #4a2f45; background: #2a1a2c; color: #fff;
  font-family: var(--font-mono); font-size: 1rem;
}
.checker .btn { width: 100%; }

/* ---------------- Cards ---------------- */
.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr)); }
.grid--2 { grid-template-columns: repeat(auto-fill, minmax(min(360px, 100%), 1fr)); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: var(--shadow); transition: transform .16s ease;
}
.card:hover { transform: translateY(-3px); }
.card__media { aspect-ratio: 16 / 10; background: var(--paper-2); position: relative; }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__tag {
  position: absolute; top: 12px; left: 12px;
  background: var(--ink); color: var(--paper);
  font-family: var(--font-mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 999px;
}
.card__body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card__body h3 { margin: 0; }
.card__meta { font-family: var(--font-mono); font-size: .76rem; letter-spacing: .06em; color: var(--muted); text-transform: uppercase; }
.card__foot {
  margin-top: auto; padding-top: 14px; border-top: 1px dashed var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.price { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; }
.price small { font-family: var(--font-mono); font-size: .68rem; font-weight: 400; color: var(--muted); display: block; letter-spacing: .1em; text-transform: uppercase; }

/* ---------------- Availability strip (signature) ---------------- */
.avail {
  border: 1px solid var(--line); border-radius: var(--r-lg); background: #fff;
  padding: 20px; display: grid; grid-template-columns: 220px 1fr auto; gap: 22px; align-items: center;
  box-shadow: var(--shadow); margin-bottom: 16px;
}
.avail__id { display: flex; gap: 14px; align-items: center; }
.avail__thumb { width: 74px; height: 56px; border-radius: var(--r-md); object-fit: cover; background: var(--paper-2); flex: none; }
.avail__name { font-family: var(--font-display); font-weight: 700; font-size: 1.02rem; line-height: 1.15; }
.avail__plate {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em;
  color: var(--muted); text-transform: uppercase;
}

.strip { display: flex; gap: 3px; align-items: flex-end; overflow-x: auto; padding-bottom: 4px; }
.strip__day {
  flex: 1 0 22px; min-width: 22px; height: 46px; border-radius: 3px;
  display: flex; flex-direction: column; justify-content: flex-end; align-items: center;
  font-family: var(--font-mono); font-size: .58rem; padding-bottom: 3px;
  border: 1px solid transparent;
}
.strip__day--free { background: var(--tea-soft); color: var(--tea); border-color: #b9d6c8; }
.strip__day--busy {
  color: #fff; border-color: var(--magenta-dk);
  background: repeating-linear-gradient(135deg, var(--magenta) 0 5px, var(--magenta-dk) 5px 10px);
}
.strip__legend { display: flex; gap: 16px; font-family: var(--font-mono); font-size: .7rem; color: var(--muted); margin: 6px 0 18px; flex-wrap: wrap; }
.strip__legend i { width: 13px; height: 13px; border-radius: 3px; display: inline-block; vertical-align: -2px; margin-right: 6px; }

.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; margin-top: 10px; }
.cal-grid__weekday {
  font-family: var(--font-mono); font-size: .62rem; text-transform: uppercase; letter-spacing: .04em;
  color: var(--muted); text-align: center; padding-bottom: 4px;
}
.cal-grid__month {
  grid-column: 1 / -1; font-family: var(--font-body); font-weight: 700; font-size: .82rem;
  color: var(--ink); margin: 10px 0 2px; padding-top: 6px; border-top: 1px solid var(--line);
}
.cal-grid__month:first-of-type { border-top: none; margin-top: 0; padding-top: 0; }
.cal-grid__pad { visibility: hidden; }
.cal-grid__day {
  aspect-ratio: 1; border-radius: 5px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: .72rem; border: 1px solid transparent; min-height: 30px;
}
.cal-grid__day--free { background: var(--tea-soft); color: var(--tea); border-color: #b9d6c8; }
.cal-grid__day--busy {
  color: #fff; border-color: var(--magenta-dk);
  background: repeating-linear-gradient(135deg, var(--magenta) 0 5px, var(--magenta-dk) 5px 10px);
}
.cal-grid__day--unknown {
  color: var(--ink); border-color: #d8cdb8; border-style: dashed;
  background: repeating-linear-gradient(135deg, #f3ead2 0 5px, #ebdfc0 5px 10px);
}

.avail__action { text-align: right; }
.avail__status {
  font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em;
  text-transform: uppercase; margin-bottom: 8px; display: block;
}
.avail__status--free { color: var(--tea); }
.avail__status--busy { color: var(--magenta); }

@media (max-width: 900px) {
  .avail { grid-template-columns: 1fr; gap: 16px; }
  .avail__action { text-align: left; }
}

.feed-note {
  font-family: var(--font-mono); font-size: .74rem; color: var(--muted);
  border-left: 3px solid var(--orange); padding: 8px 12px; background: var(--paper-2);
  border-radius: 0 var(--r-sm) var(--r-sm) 0; margin-bottom: 22px;
}
.feed-note--stale { border-left-color: var(--magenta); }

/* ---------------- Forms ---------------- */
.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 700px) { .form__row { grid-template-columns: 1fr; } }

.field label {
  display: block; font-family: var(--font-mono); font-size: .7rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid var(--line);
  border-radius: var(--r-md); background: #fff; font-family: var(--font-body); font-size: 1rem;
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--magenta); outline: none; box-shadow: 0 0 0 3px rgba(214, 0, 110, .12); }
.field textarea { min-height: 120px; resize: vertical; }
.field .hint { font-size: .82rem; color: var(--muted); margin-top: 5px; }
.field--error input, .field--error select, .field--error textarea { border-color: var(--magenta); }
.field .error { color: var(--magenta-dk); font-size: .84rem; margin-top: 5px; font-weight: 600; }

.flash { padding: 13px 16px; border-radius: var(--r-md); margin-bottom: 16px; font-weight: 600; }
.flash--success { background: var(--tea-soft); color: var(--tea); }
.flash--error   { background: #ffe1ec; color: var(--magenta-dk); }
.flash--info    { background: var(--paper-2); color: var(--ink-soft); }

/* ---------------- Summary panel ---------------- */
.panel {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 24px; box-shadow: var(--shadow);
}
.panel--ink { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.panel--ink h3 { color: #fff; }

.summary-line { display: flex; justify-content: space-between; gap: 16px; padding: 9px 0; border-bottom: 1px dashed rgba(255,255,255,.18); font-size: .95rem; }
.panel:not(.panel--ink) .summary-line { border-bottom-color: var(--line); }
.summary-line--total { border-bottom: none; font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; padding-top: 14px; }
.summary-line span:last-child { font-family: var(--font-mono); }

/* ---------------- Tables ---------------- */
.table { width: 100%; border-collapse: collapse; font-size: .93rem; }
.table th {
  text-align: left; font-family: var(--font-mono); font-size: .7rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
  padding: 10px 12px; border-bottom: 1.5px solid var(--line); white-space: nowrap;
}
.table td { padding: 12px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.table tr:hover td { background: var(--paper-2); }
.table-scroll { overflow-x: auto; }

.badge {
  display: inline-block; font-family: var(--font-mono); font-size: .68rem;
  letter-spacing: .1em; text-transform: uppercase; padding: 4px 9px; border-radius: 999px;
}
.badge--confirmed { background: var(--tea-soft); color: var(--tea); }
.badge--pending   { background: #ffe8cf; color: #8a4b06; }
.badge--cancelled { background: #f1e3e8; color: var(--muted); }
.badge--draft     { background: #eee; color: var(--muted); }
.badge--completed { background: #e2e8f5; color: #2c3f66; }
.badge--quoted    { background: #f3e6d8; color: #8a5a1f; }

/* ---------------- Itinerary ---------------- */
.itin { list-style: none; padding: 0; margin: 0; }
.itin li { display: grid; grid-template-columns: 74px 1fr; gap: 20px; padding: 20px 0; border-top: 1px solid var(--line); }
.itin li:first-child { border-top: none; }
.itin__day {
  font-family: var(--font-mono); font-size: .7rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--magenta); padding-top: 4px;
}
.itin h4 { font-family: var(--font-display); font-size: 1.08rem; margin: 0 0 6px; }

.tick { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.tick li { padding-left: 26px; position: relative; }
.tick li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--tea); font-weight: 700;
}
.tick--no li::before { content: "×"; color: var(--magenta); }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--ink); color: #dcc6d1; padding: 56px 0 28px; margin-top: 60px; }
.site-footer h4 { color: #fff; font-size: .95rem; margin-bottom: 14px; }
.site-footer a { color: #ffc9a8; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.site-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: .93rem; }
.site-footer__base {
  margin-top: 40px; padding-top: 18px; border-top: 1px solid #3a2338;
  font-family: var(--font-mono); font-size: .74rem; color: #a08c97;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
@media (max-width: 780px) { .site-footer__grid { grid-template-columns: 1fr; gap: 28px; } }

/* Floating WhatsApp */
.wa {
  position: fixed; right: 18px; bottom: 18px; z-index: 60;
  background: #128c7e; color: #fff; border-radius: 999px;
  padding: 12px 18px; font-weight: 700; text-decoration: none;
  box-shadow: 0 10px 24px -10px rgba(0,0,0,.5);
}
.wa:hover { background: #0e7062; color: #fff; }

/* ---------------- Custom quote builder ---------------- */
.stop-row {
  display: grid; grid-template-columns: 1fr 90px auto; gap: 10px; align-items: center;
  /* mobile layout in the responsive block at the end of this file */
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 10px; margin-bottom: 8px;
}
.stop-row select, .stop-row input {
  padding: 10px 11px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  font-family: var(--font-body); font-size: 1rem; background: #fff;
}
.stop-row__remove {
  width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid var(--line);
  background: #fff; color: var(--magenta-dk); font-size: 1.1rem; line-height: 1; cursor: pointer;
}
.stop-row__remove:hover { background: #ffe1ec; border-color: var(--magenta); }

/* ---------------- Region tabs (Domestic / International) ---------------- */
.region-tabs { display: inline-flex; gap: 3px; background: var(--paper-2); border-radius: 999px; padding: 4px; }
.region-tabs a {
  padding: 8px 16px; border-radius: 999px; text-decoration: none; font-weight: 700;
  font-size: .88rem; color: var(--ink-soft);
}
.region-tabs a[aria-current="page"] { background: var(--ink); color: var(--paper); }

/* ---------------- Northeast India homepage feature ---------------- */
.ne-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.ne-feature__art { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); background: var(--paper-2); }
.ne-feature__art svg { width: 100%; height: auto; display: block; }
.ne-stat-row { display: flex; gap: 24px; margin-top: 22px; flex-wrap: wrap; }
@media (max-width: 900px) { .ne-feature { grid-template-columns: 1fr; gap: 28px; } }

/* ---------------- Homepage CTA row (replaces the old hero checker) ---------------- */
.cta-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.cta-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px 22px; text-decoration: none; color: inherit; display: flex; flex-direction: column;
  gap: 10px; box-shadow: var(--shadow); transition: transform .15s ease;
}
.cta-card:hover { transform: translateY(-3px); }
.cta-card__icon {
  width: 46px; height: 46px; border-radius: var(--r-md); display: grid; place-items: center;
  font-size: 1.3rem; color: #fff;
}
.cta-card h3 { margin: 0; font-size: 1.15rem; }
.cta-card p { margin: 0; color: var(--muted); font-size: .92rem; }
.cta-card span.go { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--magenta); margin-top: auto; }
@media (max-width: 860px) { .cta-row { grid-template-columns: 1fr; } }

/* ---------------- Logo image (falls back to the monogram if not uploaded) ---------------- */
.brand__logo-img { height: 42px; width: auto; display: block; }
.admin-brand__logo-img { height: 36px; width: auto; display: block; }

.split { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } }
.sticky { position: sticky; top: 96px; }
.stack { display: grid; gap: 14px; }
.row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.empty { text-align: center; padding: 60px 20px; color: var(--muted); }
.empty h3 { color: var(--ink); }

/* ---------------- Hero photo slideshow ---------------- */
.hero-slideshow {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 720 / 560; background: var(--paper-2); border: 1px solid var(--line);
  box-shadow: 0 26px 50px -30px rgba(26, 14, 28, .5);
}
.hero-slideshow__track { position: relative; width: 100%; height: 100%; }
.hero-slideshow__slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s ease;
  margin: 0;
}
.hero-slideshow__slide.is-active { opacity: 1; }
.hero-slideshow__slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-slideshow__slide figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 34px 20px 16px;
  background: linear-gradient(0deg, rgba(26,14,28,.72), transparent);
  color: #fff; font-family: var(--font-mono); font-size: .78rem; letter-spacing: .04em;
}
.hero-slideshow__dots {
  position: absolute; left: 0; right: 0; bottom: 14px; display: flex; justify-content: center; gap: 7px; z-index: 2;
}
.hero-slideshow__dots button {
  width: 8px; height: 8px; border-radius: 999px; border: none; padding: 0;
  background: rgba(255,255,255,.55); cursor: pointer;
}
.hero-slideshow__dots button.is-active { background: #fff; width: 22px; }
@media (prefers-reduced-motion: reduce) {
  .hero-slideshow__slide { transition: none; }
}

/* ---------------- Itinerary day photo ---------------- */
.itin__photo {
  width: 100%; max-width: 260px; aspect-ratio: 16/10; object-fit: cover;
  border-radius: var(--r-md); margin-bottom: 10px; display: block;
}

/* ---------------- Itinerary day editor row (admin) ---------------- */
.day-row { display: grid; grid-template-columns: 1fr 1.4fr 200px; gap: 14px; align-items: flex-end; margin-bottom: 14px; }
@media (max-width: 820px) { .day-row { grid-template-columns: 1fr; } }

/* =========================================================================
   MOBILE REFINEMENTS
   Everything below tunes the layout for phones. Ordered widest-first so the
   narrower queries win. Kept at the end of the file so it overrides the
   desktop rules above without needing !important.
   ========================================================================= */

/* Stop iOS inflating text on rotate, and never let a long unbroken string
   (a URL in an enquiry, a long hotel name) push the layout sideways. */
html { -webkit-text-size-adjust: 100%; }
body { overflow-wrap: break-word; }

@media (max-width: 900px) {
  /* Sticky side panels fight for space on a phone — let them scroll away. */
  .sticky { position: static; top: auto; }
}

@media (max-width: 760px) {
  /* Tighten the vertical rhythm — desktop padding wastes a lot of a small screen. */
  .section { padding: 44px 0; }
  .section--tight { padding: 30px 0; }
  .hero { padding: 32px 0 40px; }
  .wrap { padding-inline: 18px; }

  h1 { line-height: 1.08; }
  h2 { line-height: 1.12; }

  /* The hero photo is 720x560 on desktop; that's too tall on a phone. */
  .hero-slideshow { aspect-ratio: 4 / 3; }
  .hero-slideshow__slide figcaption { font-size: .72rem; padding: 26px 14px 12px; }

  /* Two-up date fields stack. */
  .checker__row { grid-template-columns: 1fr; }

  /* Itinerary days: the 74px day-label gutter eats too much width. */
  .itin li { grid-template-columns: 1fr; gap: 8px; padding: 16px 0; }
  .itin__day { padding-top: 0; }
  .itin__photo { max-width: 100%; }

  /* Booking summary lines wrap instead of squashing the amount. */
  .summary-line { flex-wrap: wrap; gap: 4px 16px; }
  .summary-line span:last-child { font-weight: 700; }

  /* Panels and cards get a little more breathing room per pixel. */
  .panel { padding: 18px; }
  .card__body { padding: 16px; }

  /* Availability strip: make the horizontal scroll obvious rather than clipped. */
  .strip { padding-bottom: 8px; }
  .avail { padding: 16px; }

  /* Region tabs wrap rather than overflowing. */
  .region-tabs { display: flex; flex-wrap: wrap; }

  /* Floating WhatsApp button: smaller, and clear of the iPhone home bar. */
  .wa {
    right: 14px; bottom: calc(14px + env(safe-area-inset-bottom, 0px));
    padding: 11px 16px; font-size: .92rem;
  }

  /* Keep the logo from ever overflowing a narrow header. */
  .brand__logo-img { height: 34px; max-width: 62vw; object-fit: contain; }
}

@media (max-width: 620px) {
  /* Trip-builder stop rows: destination on its own line, nights + remove beside it. */
  .stop-row { grid-template-columns: 1fr auto; grid-template-areas: "dest dest" "nights remove"; }
  .stop-row select { grid-area: dest; }
  .stop-row input { grid-area: nights; width: 100%; }
  .stop-row__remove { grid-area: remove; justify-self: end; }

  /* Buttons in a row go full width so they're easy to hit and don't half-wrap. */
  .row > .btn { flex: 1 1 100%; }
  .row > .btn.btn--sm { flex: 0 1 auto; }
}

@media (max-width: 420px) {
  body { font-size: 16px; }
  .hero__stats { gap: 18px; }
  .hero__stat b { font-size: 1.45rem; }
  .btn { padding: 12px 18px; }
}

/* ---- Tap targets: 44px is the accessible minimum for touch ---- */
@media (pointer: coarse) {
  .btn { min-height: 44px; }
  .btn--sm { min-height: 44px; padding: 10px 16px; }
  .nav a { min-height: 44px; display: flex; align-items: center; }
  .brand { min-height: 44px; align-items: center; }
  .stop-row__remove { width: 44px; height: 44px; }

  /* Text links sitting in tight lists — pad them out so a thumb can land on
     one without hitting its neighbour. Covers the footer, the dark contact
     sidebar, and the thin utility bar at the very top. */
  .site-footer ul { gap: 2px; }
  .site-footer ul li a,
  .panel--ink ul li a,
  .contact-links li a { display: inline-flex; align-items: center; min-height: 44px; }
  .topbar a { display: inline-flex; align-items: center; min-height: 44px; }
  .topbar .wrap { padding-block: 0; }

  /* Region tabs and builder dropdowns were a couple of pixels short. */
  .region-tabs a { min-height: 44px; display: inline-flex; align-items: center; }
  .stop-row select, .stop-row input { min-height: 44px; }

  /* Breadcrumb links in the eyebrow line above a page title. */
  .eyebrow a { display: inline-flex; align-items: center; min-height: 44px; }

  /* Slideshow dots: keep the small visual dot, give it a full-size hit area. */
  .hero-slideshow__dots { gap: 2px; bottom: 4px; }
  .hero-slideshow__dots button {
    min-width: 44px; min-height: 44px; background: none; position: relative;
  }
  .hero-slideshow__dots button::after {
    content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    width: 8px; height: 8px; border-radius: 999px; background: rgba(255,255,255,.55);
    transition: width .2s ease;
  }
  .hero-slideshow__dots button.is-active::after { background: #fff; width: 22px; }

  /* Inside dense admin tables a slightly shorter control is acceptable —
     the rows are already scrollable and closely packed by design. */
  .table td .btn--sm { min-height: 38px; }
}

/* Checkboxes and radios inherit a 13px UA default that trips iOS's
   zoom-on-focus threshold. Match the rest of the form controls. */
input[type="checkbox"], input[type="radio"] { font-size: 1rem; }

/* Screen-reader-only / honeypot: takes up no space and cannot widen the page. */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  overflow: hidden; white-space: nowrap;
}

/* ---------------- Domestic / International zone switch (in the nav) ---------------- */
.zone-switch {
  display: inline-flex; gap: 3px; background: var(--paper-2); border-radius: 999px;
  padding: 4px; margin-right: 6px;
}
.zone-switch a {
  padding: 7px 14px; border-radius: 999px; text-decoration: none; font-weight: 700;
  font-size: .84rem; color: var(--ink-soft); font-family: var(--font-mono);
  letter-spacing: .02em;
}
.zone-switch a[aria-current="page"] { background: var(--magenta); color: #fff; }
@media (max-width: 860px) {
  .zone-switch { margin: 4px 0 8px; width: fit-content; }
}

/* ---------------- Homepage chooser (Domestic / International) ---------------- */
.chooser-hero { padding-bottom: 20px; }
.chooser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.chooser-card {
  display: block; text-decoration: none; color: inherit;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow); transition: transform .16s ease;
}
.chooser-card:hover { transform: translateY(-4px); }
.chooser-card__art {
  aspect-ratio: 16/9; display: grid; place-items: center; font-size: 4.5rem;
}
.chooser-card__art--domestic { background: linear-gradient(135deg, var(--tea-soft), #bcd7c8); }
.chooser-card__art--international { background: linear-gradient(135deg, #ffe2c9, #ffd0ac); }
.chooser-card__body { padding: 26px; }
.chooser-card__body h2 { margin: 4px 0 10px; }
.chooser-card__body p { margin: 0 0 20px; }
@media (max-width: 760px) {
  .chooser-grid { grid-template-columns: 1fr; }
}

/* ---------------- Welcome-in animation for landing pages ----------------
   Applied to a hero wrapper's direct children — each one fades up and in,
   staggered a beat apart. Pure CSS, so it can't delay the page or block
   anything; the content is already there and interactive, this only
   changes how it looks for the first half-second.
   Respects prefers-reduced-motion: anyone who's asked their system to
   limit motion gets the content immediately, fully visible, no animation —
   this isn't optional politeness, some people get real physical symptoms
   (vestibular disorders) from motion like this. */
.reveal > * {
  opacity: 0;
  animation: reveal-in .7s cubic-bezier(.16,.8,.3,1) forwards;
}
.reveal > *:nth-child(1) { animation-delay: .05s; }
.reveal > *:nth-child(2) { animation-delay: .16s; }
.reveal > *:nth-child(3) { animation-delay: .27s; }
.reveal > *:nth-child(4) { animation-delay: .38s; }
.reveal > *:nth-child(n+5) { animation-delay: .45s; }

/* For a second group that should visibly follow the first (e.g. cards below
   an intro paragraph) — without this, both groups would start counting their
   delay from page load independently and could finish out of order. */
.reveal--wave2 > *:nth-child(1) { animation-delay: .32s; }
.reveal--wave2 > *:nth-child(2) { animation-delay: .43s; }
.reveal--wave2 > *:nth-child(n+3) { animation-delay: .54s; }

@keyframes reveal-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal > * {
    opacity: 1;
    animation: none;
    transform: none;
  }
}
