/* ==========================================================================
   Athiti homepage — design tokens
   Palette per the growth UI plan: deep teal (trust/primary), warm clay
   (cultural accent, used sparingly), sand/rice surfaces, charcoal-teal text.
   Spacing follows an 8px system.
   ========================================================================== */

:root {
  /* Brand */
  --teal-900: #06312f;
  --teal-800: #0a4340;
  --teal-700: #0f5c55;
  --teal-600: #157068;
  --teal-300: #7fb3a9;

  --clay-700: #a8451c;
  --clay-600: #c75c2a;
  --clay-500: #dd7b3f;
  --saffron: #e8a247;

  /* Surfaces */
  --rice: #fdfbf6;
  --sand: #f5efe4;
  --sand-deep: #ece3d3;
  --mist: #e9efe9;

  /* Text */
  --ink: #10302e;
  --ink-soft: #3c5a57;
  --muted: #6b8481;
  --on-dark: #f4f1e9;
  --on-dark-soft: #b6ccc6;

  /* Lines & shadows */
  --line: rgba(16, 48, 46, 0.12);
  --line-strong: rgba(16, 48, 46, 0.22);
  --shadow-sm: 0 2px 8px rgba(6, 49, 47, 0.06);
  --shadow-md: 0 12px 32px rgba(6, 49, 47, 0.09);
  --shadow-lg: 0 28px 64px rgba(6, 49, 47, 0.14);

  /* Type */
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  /* Rhythm */
  --s1: 8px;
  --s2: 16px;
  --s3: 24px;
  --s4: 32px;
  --s5: 48px;
  --s6: 64px;
  --s7: 96px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --ease: cubic-bezier(0.22, 0.68, 0.36, 1);
}

/* ==========================================================================
   Base
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--rice);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 var(--s2);
}

h1 {
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3rem);
}

h3 {
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

p {
  margin: 0 0 var(--s2);
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 3px solid var(--clay-600);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--teal-900);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}

/* ==========================================================================
   Shared components
   ========================================================================== */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  margin: 0 0 var(--s2);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-600);
}

.eyebrow--light {
  color: var(--teal-300);
}

.eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clay-600);
  box-shadow: 0 0 0 4px rgba(199, 92, 42, 0.15);
  flex: none;
}

.section-head {
  max-width: 660px;
  margin-bottom: var(--s5);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-sub {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s1);
  min-height: 46px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease),
    background-color 0.22s var(--ease), border-color 0.22s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--teal-800);
  color: var(--on-dark);
  box-shadow: 0 8px 20px rgba(10, 67, 64, 0.22);
}

.btn--primary:hover {
  background: var(--teal-700);
  box-shadow: 0 14px 28px rgba(10, 67, 64, 0.28);
}

.btn--accent {
  background: var(--clay-600);
  color: #fff;
  box-shadow: 0 8px 20px rgba(199, 92, 42, 0.26);
}

.btn--accent:hover {
  background: var(--clay-700);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}

.btn--ghost:hover {
  background: rgba(16, 48, 46, 0.04);
  border-color: var(--teal-700);
}

/* The ghost button is ink-on-transparent, which disappears entirely on the
   dark photo heroes and bands. Restate it for every dark surface rather than
   patching the one page where it was noticed. */
.phero--photo .btn--ghost,
.band .btn--ghost,
.psec--dark .btn--ghost,
.bundle .btn--ghost,
.planner .btn--ghost,
.final__card--partner .btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.phero--photo .btn--ghost:hover,
.band .btn--ghost:hover,
.psec--dark .btn--ghost:hover,
.bundle .btn--ghost:hover,
.planner .btn--ghost:hover,
.final__card--partner .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
}

.btn--light {
  background: var(--rice);
  color: var(--teal-900);
}

.btn--sm {
  min-height: 40px;
  padding: 9px 18px;
  font-size: 0.82rem;
}

.btn--lg {
  min-height: 54px;
  padding: 15px 30px;
  font-size: 0.95rem;
}

.btn--full {
  width: 100%;
}

.link-quiet {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 8px 4px;
}

.link-quiet:hover {
  color: var(--teal-700);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--teal-700);
  padding: 8px 0;
  min-height: 44px;
}

.link-arrow span {
  transition: transform 0.22s var(--ease);
}

.link-arrow:hover span {
  transform: translateX(4px);
}

.chip {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  vertical-align: middle;
}

.chip--warn {
  background: rgba(232, 162, 71, 0.2);
  color: #8a5a12;
}

/* The same chip sits on dark sections too — keep it readable there. */
.bundle .chip--warn,
.site-footer .chip--warn {
  background: rgba(232, 162, 71, 0.22);
  color: var(--saffron);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.status::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.status--live {
  background: rgba(21, 112, 104, 0.12);
  color: var(--teal-600);
}

.status--assisted {
  background: rgba(232, 162, 71, 0.18);
  color: #8a5a12;
}

.status--soon {
  background: rgba(16, 48, 46, 0.08);
  color: var(--muted);
}

/* ==========================================================================
   Prototype strip + announcement bar
   ========================================================================== */

.proto-strip {
  position: relative;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  flex-wrap: wrap;
  padding: 8px 48px;
  background: #131c1b;
  color: #d7e2df;
  font-size: 0.74rem;
}

.proto-strip p {
  margin: 0;
}

.proto-strip strong {
  color: var(--saffron);
}

.proto-strip .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--saffron);
  box-shadow: 0 0 0 3px rgba(232, 162, 71, 0.2);
}

.proto-strip__toggle {
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: transparent;
  color: inherit;
  border-radius: var(--radius-pill);
  padding: 3px 12px;
  font-size: 0.7rem;
  font-weight: 700;
}

.proto-strip__toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.proto-strip__close,
.announce__close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 1.25rem;
  line-height: 1;
  opacity: 0.7;
}

.proto-strip__close:hover,
.announce__close:hover {
  opacity: 1;
}

.announce {
  position: relative;
  z-index: 50;
  background: var(--teal-800);
  color: var(--on-dark);
}

.announce__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  flex-wrap: wrap;
  min-height: 46px;
  padding: 9px 44px 9px 0;
  font-size: 0.84rem;
}

.announce p {
  margin: 0;
  color: var(--on-dark-soft);
}

.announce__tag {
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: rgba(232, 162, 71, 0.22);
  color: var(--saffron);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.announce__link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-weight: 700;
  color: #fff;
  box-shadow: inset 0 -1px rgba(255, 255, 255, 0.4);
}

.announce__link:hover {
  box-shadow: inset 0 -1px #fff;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(253, 251, 246, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: var(--s4);
  min-height: 76px;
  transition: min-height 0.3s var(--ease);
}

.site-header.is-stuck .header__inner {
  min-height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.brand__logo {
  height: 34px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--s3);
  margin-right: auto;
}

.nav__link {
  position: relative;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 10px 0;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--clay-600);
  transition: width 0.24s var(--ease);
}

.nav__link:hover::after,
.nav__link.is-active::after {
  width: 100%;
}

.nav__link:hover,
.nav__link.is-active {
  color: var(--ink);
}

.nav__link--partner {
  margin-left: var(--s2);
  padding-left: var(--s3);
  border-left: 1px solid var(--line);
  color: var(--muted);
}

/* --- Destinations dropdown ------------------------------------------------
   The link still navigates to the index, so touch and keyboard users are never
   trapped behind a hover-only menu. The panel is an accelerator, not the only
   route in. */

.nav__group {
  position: relative;
}

.nav__panel {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 30;
  width: 288px;
  padding: var(--s1);
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--rice);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -6px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease),
    visibility 0.2s;
}

.nav__group:hover .nav__panel,
.nav__group:focus-within .nav__panel {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

/* Bridges the gap between link and panel so the pointer can cross it. */
.nav__panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  height: 10px;
}

.nav__panel-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s1);
  min-height: 44px;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  transition: background 0.18s var(--ease);
}

.nav__panel-item:hover {
  background: var(--mist);
}

.nav__panel-all {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 40px;
  margin-top: 4px;
  padding: 8px 12px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal-700);
}

.nav__panel-all span {
  transition: transform 0.2s var(--ease);
}

.nav__panel-all:hover span {
  transform: translateX(3px);
}

.mobile-menu__sub {
  padding-left: var(--s3) !important;
  font-size: 0.92rem !important;
  color: var(--ink-soft);
}

.mobile-menu__sub::before {
  content: "—";
  margin-right: 8px;
  color: var(--muted);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--s2);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
}

.burger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}

.burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  padding: var(--s2) 20px var(--s4);
  border-top: 1px solid var(--line);
  background: var(--rice);
}

/* A bare `display: flex` would defeat the [hidden] attribute the burger
   toggles, so restate it — and never let the drawer survive a resize up
   to desktop, where the burger that closes it is itself hidden. */
.mobile-menu[hidden] {
  display: none;
}

@media (min-width: 901px) {
  .mobile-menu {
    display: none;
  }
}

.mobile-menu a {
  padding: 14px 4px;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--line);
}

.mobile-menu__partner {
  color: var(--clay-700);
  font-weight: 700;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  padding: var(--s7) 0 var(--s6);
  background: linear-gradient(180deg, var(--rice) 0%, var(--sand) 100%);
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(232, 162, 71, 0.18) 0%,
    rgba(232, 162, 71, 0) 68%
  );
  pointer-events: none;
  animation: drift 18s ease-in-out infinite alternate;
}

@keyframes drift {
  to {
    transform: translate3d(-40px, 30px, 0) scale(1.08);
  }
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: var(--s6);
  align-items: center;
}

.hero__lede {
  max-width: 30ch;
  font-size: 1.15rem;
  color: var(--ink-soft);
  margin-bottom: var(--s4);
}

.hero h1 {
  margin-bottom: var(--s3);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  margin-bottom: var(--s5);
}

.hero__reassure {
  display: grid;
  gap: 10px;
  padding-top: var(--s3);
  border-top: 1px solid var(--line);
}

.hero__reassure li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.hero__reassure svg {
  flex: none;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--teal-600);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__media {
  position: relative;
  margin: 0;
}

.hero__media img {
  width: 100%;
  height: clamp(380px, 46vw, 560px);
  object-fit: cover;
  object-position: 55% 50%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}


/* ==========================================================================
   Intent router
   ========================================================================== */

.router {
  padding: var(--s7) 0;
  background: var(--sand);
}

.router__card {
  background: var(--rice);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.router__tabs {
  display: flex;
  gap: 4px;
  padding: 8px;
  background: var(--mist);
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  scrollbar-width: none;
}

.router__tabs::-webkit-scrollbar {
  display: none;
}

.router__tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: none;
  min-height: 44px;
  padding: 10px 20px;
  border: 0;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.router__tab:hover {
  background: rgba(255, 255, 255, 0.6);
}

.router__tab.is-active {
  background: var(--teal-800);
  color: var(--on-dark);
  box-shadow: var(--shadow-sm);
}

.router__tab-ico {
  font-size: 0.8rem;
  opacity: 0.8;
}

.router__form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--s3);
  padding: var(--s4);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  border: 0;
  padding: 0;
  margin: 0;
}

.field--wide {
  grid-column: span 2;
}

.field label,
.field legend {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0;
}

.field input[type="text"],
.field input[type="tel"],
.field input[type="date"],
.field input[type="password"],
.field input[type="email"],
.field input[type="number"],
.field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #fff;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.field input:focus,
.field select:focus {
  outline: none;
  border-color: var(--teal-600);
  box-shadow: 0 0 0 3px rgba(21, 112, 104, 0.14);
}

.field input.is-invalid {
  border-color: var(--clay-700);
  box-shadow: 0 0 0 3px rgba(168, 69, 28, 0.12);
}

.field__hint {
  margin: 0;
  font-size: 0.76rem;
  color: var(--muted);
}

.field__eg {
  border: 0;
  background: transparent;
  /* Negative margin keeps the sentence tight while giving a ~40px hit area. */
  padding: 11px 3px;
  margin: -11px 0;
  color: var(--teal-700);
  font-size: 0.76rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.checkline {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-transform: none;
  letter-spacing: 0;
}

.checkline input {
  width: 18px;
  height: 18px;
  accent-color: var(--teal-700);
}

.checkline--consent {
  align-items: flex-start;
  margin: var(--s1) 0 var(--s2);
  font-size: 0.8rem;
  line-height: 1.5;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  position: relative;
}

.pill input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.pill span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  background: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.pill span:hover {
  border-color: var(--teal-600);
}

.pill input:checked + span {
  background: var(--teal-800);
  border-color: var(--teal-800);
  color: var(--on-dark);
}

.pill input:focus-visible + span {
  outline: 3px solid var(--clay-600);
  outline-offset: 3px;
}

.router__submit {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: var(--s3);
  flex-wrap: wrap;
  padding-top: var(--s1);
  border-top: 1px solid var(--line);
}

.router__note {
  margin: 0;
  max-width: 42ch;
  font-size: 0.8rem;
  color: var(--muted);
}

.router__result {
  padding: var(--s4);
  border-top: 1px solid var(--line);
  background: var(--mist);
}

.router__states {
  margin: var(--s3) 0 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
}

.state-link {
  border: 0;
  background: transparent;
  padding: 4px 6px;
  color: var(--teal-700);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Router result states */

.res__head {
  display: flex;
  align-items: baseline;
  gap: var(--s2);
  flex-wrap: wrap;
  margin-bottom: var(--s3);
}

.res__head h3 {
  margin: 0;
  font-size: 1.3rem;
}

.res__lede {
  margin: 0 0 var(--s3);
  max-width: 66ch;
  color: var(--ink-soft);
}

.res__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: var(--s2);
  margin-bottom: var(--s3);
}

.res-card {
  padding: var(--s3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.res-card h4 {
  margin: 0 0 4px;
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
}

.res-card p {
  margin: 0 0 10px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.res-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s1);
  padding-top: 10px;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
}

.res-card__price {
  font-weight: 700;
}

.skeleton {
  display: grid;
  gap: var(--s2);
}

.skeleton__row {
  height: 78px;
  border-radius: var(--radius);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.5) 25%,
    rgba(255, 255, 255, 0.95) 50%,
    rgba(255, 255, 255, 0.5) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.3s infinite linear;
}

@keyframes shimmer {
  to {
    background-position: -200% 0;
  }
}

.res__form {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
  align-items: flex-end;
  padding: var(--s3);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.6);
}

.res__form .field {
  flex: 1 1 200px;
}

.res__form-prompt {
  flex: 1 0 100%;
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
}

.res__note {
  margin: var(--s2) 0 0;
  font-size: 0.78rem;
  color: var(--muted);
}

/* ==========================================================================
   Travel moments
   ========================================================================== */

.moments {
  padding: var(--s7) 0;
}

.moments__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s3);
}

.moment {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: var(--s3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--rice);
  text-align: left;
  transition: transform 0.26s var(--ease), box-shadow 0.26s var(--ease),
    border-color 0.26s var(--ease);
}

button.moment:hover {
  transform: translateY(-4px);
  border-color: var(--teal-600);
  box-shadow: var(--shadow-md);
}

.moment h3 {
  margin: var(--s1) 0 0;
  font-size: 1.2rem;
}

.moment p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* A wide band rather than a square tile — tall enough to read the scene,
   short enough that the card stays a card. Each focal point is tuned so the
   crop keeps the subject, not the ceiling. */
.moment__art {
  display: block;
  width: 100%;
  height: 148px;
  border-radius: var(--radius);
  background-color: var(--mist);
  background-size: cover;
  background-repeat: no-repeat;
}

.moment__art--1 {
  background-image: url("assets/moment-pilgrimage.jpg");
  background-position: 50% 46%;
}

.moment__art--2 {
  background-image: url("assets/moment-escape.jpg");
  background-position: 50% 56%;
}

.moment__art--3 {
  background-image: url("assets/moment-group.jpg");
  background-position: 50% 62%;
}

.moment__art--4 {
  background-image: url("assets/moment-food.jpg");
  background-position: 50% 68%;
}

.moment__art--5 {
  background-image: url("assets/moment-longstay.jpg");
  background-position: 50% 60%;
}

.moment__go {
  margin-top: auto;
  padding-top: var(--s2);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal-700);
}

.moment__go span {
  display: inline-block;
  transition: transform 0.22s var(--ease);
}

button.moment:hover .moment__go span {
  transform: translateX(4px);
}

.moment--note {
  justify-content: center;
  background: var(--mist);
  border-style: dashed;
}

/* ==========================================================================
   Destinations
   ========================================================================== */

.dest {
  padding: var(--s7) 0;
  background: var(--sand);
}

.dest__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: var(--s3);
  align-items: start;
}

.dest-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--rice);
  overflow: hidden;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.dest-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.dest-card__media {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--mist);
}

.dest-card--feature .dest-card__media {
  height: 280px;
}

.dest-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.dest-card:hover .dest-card__media img {
  transform: scale(1.04);
}

/* Keeps the card's lower edge from glaring against the body when a photo
   runs bright at the bottom. */
.dest-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(6, 49, 47, 0) 55%,
    rgba(6, 49, 47, 0.32) 100%
  );
}

/* Focal points, so the crop keeps the subject at every breakpoint. */
.dest-card[data-dest="kodagu"] img {
  object-position: 55% 50%;
}

.dest-card[data-dest="coastal"] img {
  object-position: 55% 50%;
}

.dest-card[data-dest="nashik"] img {
  object-position: 40% 58%;
}

.dest-card__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: var(--s3);
  flex: 1;
}

.dest-card__body h3 {
  margin: 0;
  font-size: 1.5rem;
}

.dest-card__why {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.dest-card__services {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--s1);
}

.dest-card__services li {
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  color: var(--muted);
}

.dest-card__body > .btn,
.dest-card__body > .link-arrow {
  margin-top: auto;
}

.dest__legend {
  margin: var(--s4) 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 2.2;
}

/* ==========================================================================
   Bundle / itinerary
   ========================================================================== */

.bundle {
  padding: var(--s7) 0;
  background: var(--teal-900);
  color: var(--on-dark);
}

.bundle__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: var(--s6);
  align-items: center;
}

.bundle h2 {
  color: #fff;
  max-width: 15ch;
}

.bundle__intro p {
  color: var(--on-dark-soft);
  max-width: 46ch;
}

.bundle__sub {
  font-size: 0.85rem;
  opacity: 0.75;
}

.itin {
  position: relative;
  display: grid;
  gap: 10px;
}

.itin::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 34px;
  bottom: 34px;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(232, 162, 71, 0.7),
    rgba(127, 179, 169, 0.35)
  );
}

.itin__step {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  transition: background 0.24s var(--ease), border-color 0.24s var(--ease);
}

.itin__step:hover {
  background: rgba(255, 255, 255, 0.09);
}

.itin__step.is-open {
  border-color: rgba(232, 162, 71, 0.5);
  background: rgba(255, 255, 255, 0.09);
}

.itin__head {
  display: flex;
  align-items: center;
  gap: var(--s2);
  width: 100%;
  min-height: 64px;
  padding: 14px var(--s2);
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
}

.itin__node {
  position: relative;
  z-index: 1;
  flex: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--saffron);
  background: var(--teal-900);
  transition: background 0.24s var(--ease), transform 0.24s var(--ease);
}

.itin__step.is-open .itin__node {
  background: var(--saffron);
  transform: scale(1.2);
}

.itin__label {
  display: grid;
  gap: 2px;
  margin-right: auto;
}

.itin__day {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-300);
}

.itin__title {
  font-family: var(--serif);
  font-size: 1.05rem;
}

.itin__status {
  flex: none;
}

.itin__step .status--live {
  background: rgba(127, 179, 169, 0.2);
  color: #9fd3c8;
}

.itin__step .status--assisted {
  background: rgba(232, 162, 71, 0.2);
  color: var(--saffron);
}

.itin__body {
  display: none;
  padding: 0 var(--s2) var(--s3) 50px;
}

.itin__step.is-open .itin__body {
  display: block;
  animation: fade-up 0.3s var(--ease) both;
}

.itin__body p {
  margin: 0 0 6px;
  font-size: 0.88rem;
  color: var(--on-dark-soft);
}

.itin__owner {
  font-size: 0.76rem !important;
  color: var(--teal-300) !important;
}

.itin__foot {
  margin: var(--s2) 0 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
}

/* ==========================================================================
   Trust
   ========================================================================== */

.trust {
  padding: var(--s7) 0;
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s3);
}

.proof {
  padding: var(--s3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--rice);
  transition: border-color 0.24s var(--ease), transform 0.24s var(--ease);
}

.proof:hover {
  border-color: var(--teal-600);
  transform: translateY(-3px);
}

.proof h3 {
  margin: var(--s2) 0 6px;
  font-size: 1.25rem;
}

.proof p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.proof__state {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof__state--now {
  background: rgba(21, 112, 104, 0.12);
  color: var(--teal-600);
}

.proof__state--build {
  background: rgba(232, 162, 71, 0.2);
  color: #8a5a12;
}

.proof--callout {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--mist);
  border-style: dashed;
}

/* ==========================================================================
   How it works
   ========================================================================== */

.how {
  padding: var(--s7) 0;
  background: var(--sand);
}

.how__switch {
  display: flex;
  justify-content: center;
  gap: 4px;
  width: fit-content;
  margin: 0 auto var(--s5);
  padding: 6px;
  border-radius: var(--radius-pill);
  background: var(--mist);
}

.how__tab {
  min-height: 44px;
  padding: 10px 24px;
  border: 0;
  border-radius: var(--radius-pill);
  background: transparent;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink-soft);
  transition: background 0.22s var(--ease), color 0.22s var(--ease);
}

.how__tab.is-active {
  background: var(--rice);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--s3);
  counter-reset: step;
}

.step {
  position: relative;
  padding: var(--s3) var(--s3) var(--s3) 0;
}

.step::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--clay-600), rgba(199, 92, 42, 0.1));
}

.step__num {
  display: block;
  margin-bottom: var(--s1);
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--clay-600);
}

.step h3 {
  margin-bottom: 6px;
}

.step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ==========================================================================
   WhatsApp planner preview
   ========================================================================== */

.planner {
  padding: var(--s7) 0;
  background: var(--teal-800);
  color: var(--on-dark);
}

.planner__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: var(--s6);
  align-items: center;
}

.planner h2 {
  color: #fff;
  max-width: 16ch;
}

.planner__copy p {
  color: var(--on-dark-soft);
  max-width: 48ch;
}

.planner__points {
  display: grid;
  gap: 10px;
  margin: var(--s3) 0;
}

.planner__points li {
  padding-left: var(--s2);
  border-left: 2px solid var(--saffron);
  font-size: 0.92rem;
  color: var(--on-dark-soft);
}

.planner__points strong {
  color: #fff;
}

.planner__caveat {
  padding: var(--s2);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.16);
  font-size: 0.84rem;
}

.planner__demo {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: var(--s3);
  align-items: start;
}

.phone {
  border-radius: var(--radius-lg);
  background: #efeae2;
  color: var(--ink);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.phone__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px var(--s2);
  background: var(--teal-900);
  color: #fff;
  font-size: 0.86rem;
}

.phone__avatar {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--clay-600);
  font-weight: 700;
}

.phone__meta {
  display: block;
  font-size: 0.7rem;
  opacity: 0.7;
}

.phone__body {
  display: grid;
  gap: 10px;
  padding: var(--s3) var(--s2);
  min-height: 260px;
  background-image: radial-gradient(
    rgba(16, 48, 46, 0.06) 1px,
    transparent 1px
  );
  background-size: 16px 16px;
}

.msg {
  max-width: 84%;
  margin: 0;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.86rem;
  line-height: 1.5;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(8px);
}

.msg.is-shown {
  animation: msg-in 0.4s var(--ease) both;
}

@keyframes msg-in {
  to {
    opacity: 1;
    transform: none;
  }
}

.msg--in {
  justify-self: start;
  background: #fff;
  border-bottom-left-radius: 4px;
}

.msg--out {
  justify-self: end;
  background: #d7f0dd;
  border-bottom-right-radius: 4px;
}

.phone__foot {
  margin: 0;
  padding: 10px var(--s2);
  background: #fff;
  font-size: 0.72rem;
  color: var(--muted);
}

.crm {
  padding: var(--s3);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(0, 0, 0, 0.16);
}

.crm__title {
  margin: 0 0 var(--s2);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-300);
}

.crm__chips {
  display: grid;
  gap: 8px;
}

.crm-chip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

.crm-chip em {
  flex: none;
  white-space: nowrap;
  font-style: normal;
  font-size: 0.7rem;
  opacity: 0.8;
}

.crm-chip.is-done {
  color: #9fd3c8;
  border-color: rgba(159, 211, 200, 0.3);
}

.crm-chip.is-active {
  color: var(--teal-900);
  background: var(--saffron);
  border-color: var(--saffron);
  font-weight: 700;
}

.crm__sla {
  margin: var(--s2) 0 0;
  font-size: 0.74rem;
  color: var(--on-dark-soft);
}

/* ==========================================================================
   Partners
   ========================================================================== */

.partners {
  padding: var(--s7) 0;
}

.partners__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: var(--s6);
  align-items: start;
}

.partners__copy > p {
  max-width: 48ch;
  color: var(--ink-soft);
}

.partners__benefits {
  display: grid;
  gap: var(--s3);
  margin: var(--s4) 0;
}

.partners__benefits li {
  padding-left: var(--s3);
  border-left: 2px solid var(--clay-600);
}

.partners__benefits h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}

.partners__benefits p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.partners__note {
  padding: var(--s2);
  border-radius: var(--radius);
  background: var(--mist);
  font-size: 0.84rem;
  color: var(--ink-soft);
}

.partner-form {
  display: grid;
  gap: var(--s3);
  padding: var(--s4);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--rice);
  box-shadow: var(--shadow-md);
}

.partner-form h3 {
  margin: 0;
  font-size: 1.4rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s2);
}

.partner-form__foot {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq {
  padding: var(--s7) 0;
  background: var(--sand);
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: var(--s6);
  align-items: start;
}

.faq__intro p {
  color: var(--ink-soft);
  max-width: 40ch;
}

.faq__list {
  display: grid;
  gap: 10px;
}

.qa {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--rice);
  overflow: hidden;
  transition: border-color 0.22s var(--ease);
}

.qa[open] {
  border-color: var(--teal-600);
}

.qa summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s2);
  min-height: 56px;
  padding: 14px var(--s3);
  font-size: 0.98rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.qa summary::-webkit-details-marker {
  display: none;
}

.qa summary::after {
  content: "+";
  flex: none;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--clay-600);
  transition: transform 0.24s var(--ease);
}

.qa[open] summary::after {
  transform: rotate(45deg);
}

.qa p {
  margin: 0;
  padding: 0 var(--s3) var(--s3);
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ==========================================================================
   Final CTA
   ========================================================================== */

.final {
  padding: var(--s7) 0;
}

.final__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s3);
}

.final__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s1);
  padding: var(--s5);
  border-radius: var(--radius-lg);
}

.final__card h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  max-width: 14ch;
}

.final__card p {
  max-width: 40ch;
  margin-bottom: var(--s3);
}

.final__card .btn {
  margin-top: auto;
}

.final__card--guest {
  background: var(--sand-deep);
}

.final__card--guest p {
  color: var(--ink-soft);
}

.final__card--partner {
  background: var(--teal-900);
  color: var(--on-dark);
}

.final__card--partner h2 {
  color: #fff;
}

.final__card--partner p {
  color: var(--on-dark-soft);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  padding: var(--s6) 0 var(--s4);
  background: #0b1a19;
  color: var(--on-dark-soft);
  font-size: 0.88rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: var(--s4);
  padding-bottom: var(--s5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
  height: 32px;
  width: auto;
  margin-bottom: var(--s2);
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer__brand p {
  max-width: 34ch;
}

.footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: var(--s3) 0 var(--s2);
}

.footer__social a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  color: var(--on-dark-soft);
  transition: color 0.22s var(--ease), background-color 0.22s var(--ease),
    border-color 0.22s var(--ease), transform 0.22s var(--ease);
}

.footer__social a:hover {
  color: #0b1a19;
  background: var(--saffron);
  border-color: var(--saffron);
  transform: translateY(-2px);
}

.footer__social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer__legal-note {
  font-size: 0.78rem;
  opacity: 0.75;
}

.footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__col h3 {
  margin-bottom: var(--s1);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
}

.footer__col a {
  display: flex;
  align-items: center;
  padding: 8px 0;
  min-height: 40px;
  color: var(--on-dark-soft);
  transition: color 0.2s var(--ease);
}

.footer__col a:hover {
  color: var(--saffron);
}

.footer__hours {
  margin-top: var(--s1);
  font-size: 0.78rem;
  opacity: 0.7;
}

.footer__base {
  display: flex;
  justify-content: space-between;
  gap: var(--s2);
  flex-wrap: wrap;
  padding-top: var(--s3);
  font-size: 0.78rem;
  opacity: 0.7;
}

.footer__base p {
  margin: 0;
}

/* ==========================================================================
   Sticky mobile CTA, toasts, devtools
   ========================================================================== */

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 35;
  display: none;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(253, 251, 246, 0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform 0.3s var(--ease);
}

.sticky-cta.is-visible {
  transform: none;
}

.toasts {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  display: grid;
  gap: 10px;
  width: min(360px, calc(100vw - 40px));
}

.toast {
  padding: 14px 16px;
  border-radius: var(--radius);
  background: var(--teal-900);
  color: var(--on-dark);
  box-shadow: var(--shadow-lg);
  font-size: 0.86rem;
  animation: toast-in 0.32s var(--ease) both;
}

.toast strong {
  display: block;
  margin-bottom: 3px;
  color: #fff;
}

.toast--out {
  animation: toast-out 0.3s var(--ease) forwards;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
}

@keyframes toast-out {
  to {
    opacity: 0;
    transform: translateY(10px);
  }
}

.devtools {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 70;
  width: min(330px, calc(100vw - 40px));
  padding: var(--s2);
  border-radius: var(--radius);
  background: #131c1b;
  color: #d7e2df;
  box-shadow: var(--shadow-lg);
  font-size: 0.78rem;
}

.devtools__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--s2);
}

.devtools__head button {
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 1.1rem;
}

.devtools__row {
  margin-bottom: var(--s2);
}

.devtools__label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
}

.devtools__seg {
  display: flex;
  gap: 4px;
  padding: 3px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
}

.devtools__seg button {
  flex: 1;
  min-height: 34px;
  border: 0;
  border-radius: var(--radius-pill);
  background: transparent;
  color: inherit;
  font-size: 0.74rem;
  font-weight: 600;
}

.devtools__seg button.is-active {
  background: var(--saffron);
  color: #131c1b;
}

.devtools__log {
  max-height: 160px;
  overflow-y: auto;
  display: grid;
  gap: 3px;
  padding: 8px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.35);
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.7rem;
}

.devtools__log li {
  color: #9fd3c8;
}

.devtools__empty {
  color: rgba(255, 255, 255, 0.4) !important;
}

.devtools__foot {
  margin: 0;
  font-size: 0.68rem;
  opacity: 0.55;
}

.devtools__foot code {
  color: var(--saffron);
}

/* ==========================================================================
   Scroll reveal
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   Responsive — tablet
   ========================================================================== */

@media (max-width: 1080px) {
  .nav {
    gap: var(--s2);
  }

  .nav__link {
    font-size: 0.82rem;
  }

  .hero__grid,
  .bundle__grid,
  .planner__grid,
  .partners__grid,
  .faq__grid {
    grid-template-columns: 1fr;
    gap: var(--s5);
  }

  .hero {
    padding-top: var(--s5);
  }

  .hero__lede {
    max-width: 46ch;
  }

  .dest__grid {
    grid-template-columns: 1fr 1fr;
  }

  .dest-card--feature {
    grid-column: 1 / -1;
  }

  .dest-card--feature .dest-card__media {
    height: 220px;
  }

  .moments__grid,
  .trust__grid {
    grid-template-columns: 1fr 1fr;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .nav,
  .header__actions .btn,
  .header__actions .link-quiet {
    display: none;
  }

  .burger {
    display: flex;
  }

  .brand {
    margin-right: auto;
  }

  .router__form {
    grid-template-columns: 1fr 1fr;
  }

  .field--wide {
    grid-column: 1 / -1;
  }

  .planner__demo {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Responsive — mobile
   ========================================================================== */

@media (max-width: 640px) {
  :root {
    --s7: 64px;
    --s6: 48px;
  }

  .container {
    width: calc(100% - 32px);
  }

  .proto-strip {
    padding: 8px 40px;
    font-size: 0.68rem;
  }

  .announce__inner {
    justify-content: flex-start;
    text-align: left;
    font-size: 0.78rem;
  }

  .hero {
    padding-top: var(--s4);
  }

  .hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__ctas .btn {
    width: 100%;
  }

  .hero__media img {
    height: 300px;
  }

  .router__form {
    grid-template-columns: 1fr;
    padding: var(--s3);
  }

  .router__submit .btn {
    width: 100%;
  }

  .moments__grid,
  .trust__grid,
  .dest__grid,
  .steps,
  .final__grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .final__card {
    padding: var(--s4);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s3);
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .sticky-cta {
    display: block;
  }

  body {
    padding-bottom: 0;
  }

  .toasts {
    right: 16px;
    left: 16px;
    bottom: 84px;
    width: auto;
  }

  .devtools {
    left: 16px;
    right: 16px;
    bottom: 84px;
    width: auto;
  }
}

/* ==========================================================================
   Reduced motion — disable stagger, drift, shimmer and reveal offsets
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .msg {
    opacity: 1;
    transform: none;
  }

  .btn:hover,
  button.moment:hover,
  .dest-card:hover,
  .dest-card:hover .dest-card__media img,
  .proof:hover,
  .footer__social a:hover {
    transform: none;
  }
}
