:root {
  --blue-deep: #0a1f42;
  --blue-mid: #0f2d5c;
  --blue-soft: #163b6f;
  --blue-ink: #061428;
  --blue-rich: #0c2a55;
  --blue-glow: #1a4480;
  --white: #ffffff;
  --cream: #f3efe4;
  --cream-warm: #ebe4d4;
  --gold: #d09d48;
  --gold-light: #e4b86a;
  --gold-bright: #f2d080;
  --gold-dark: #a87638;
  --gold-rgb: 208, 157, 72;
  --bg: var(--blue-deep);
  --bg-soft: var(--blue-mid);
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: var(--blue-soft);
  --surface-light: var(--cream);
  --text: #e8eef8;
  --text-muted: rgba(210, 220, 238, 0.78);
  --text-dark: var(--blue-deep);
  --text-gold: var(--gold-light);
  --accent: var(--gold);
  --accent-strong: var(--gold-light);
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 70px rgba(5, 12, 28, 0.38);
  --radius: 24px;
  --container: min(1120px, calc(100% - 2rem));
  --transition: 300ms ease;
  --header-bg: #ffffff;
  --header-logo-height: 72px;
  --header-padding-y: 0.75rem;
  --header-height: calc(var(--header-logo-height) + (var(--header-padding-y) * 2));
  --header-inset: 1rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--blue-ink);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

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

.field-error {
  margin-top: 0.4rem;
  font-size: 0.9rem;
  color: #ffd2c9;
}

input.is-invalid,
select.is-invalid,
textarea.is-invalid {
  border-color: rgba(255, 150, 150, 0.75) !important;
  box-shadow: 0 0 0 3px rgba(255, 120, 120, 0.12);
}

.page-shell {
  position: relative;
  overflow-x: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--header-bg);
  border-bottom: 1px solid rgba(10, 31, 66, 0.1);
  box-shadow: 0 4px 24px rgba(10, 31, 66, 0.06);
}

.site-header .container.nav-wrap {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding-left: var(--header-inset);
  padding-right: var(--header-inset);
  box-sizing: border-box;
}

.site-header .nav-wrap {
  padding: var(--header-padding-y) 0;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}

.site-header .brand {
  flex-shrink: 0;
  margin-left: 0;
  justify-self: flex-start;
}

.site-header .site-nav {
  flex-shrink: 0;
  gap: 1.6rem;
  margin-left: auto;
}

.site-header .nav-toggle {
  flex-shrink: 0;
  align-self: center;
}

.site-header .site-nav,
.site-header .nav-toggle {
  align-self: center;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--text);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.brand-logo {
  display: block;
  width: auto;
  height: 88px;
  max-width: min(300px, 72vw);
  object-fit: contain;
}

.site-header .brand {
  align-items: center;
  background: var(--header-bg);
  margin-left: 0;
}

.site-header .brand-logo {
  display: block;
  height: var(--header-logo-height);
  width: auto;
  max-width: min(340px, 78vw);
  object-fit: contain;
  object-position: left center;
  background: var(--header-bg);
}

.footer-brand .brand-logo {
  height: 80px;
  max-width: 280px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a {
  color: #3d4f6e;
  transition: color var(--transition), transform var(--transition);
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--gold);
}

.header-call,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 1rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: 1px solid var(--gold);
  color: var(--blue-deep) !important;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
  transition: transform var(--transition), box-shadow var(--transition);
}

.header-call:hover,
.header-call:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  color: var(--blue-deep) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(var(--gold-rgb), 0.35);
}

.header-call {
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  margin: 6px 0;
  background: var(--blue-deep);
  transition: transform var(--transition), opacity var(--transition);
}

.hero,
.sub-hero {
  position: relative;
  padding: 7rem 0 4.5rem;
}

.hero-home {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
}

.hero-background,
.sub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.32;
  transform: scale(1.05);
}

.hero-background {
  background-image:
    linear-gradient(125deg, rgba(6, 20, 40, 0.92) 0%, rgba(10, 31, 66, 0.78) 45%, rgba(var(--gold-rgb), 0.12) 100%),
    url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=1800&q=80");
}

.sub-hero::before {
  z-index: -1;
}

.sub-hero-retreats::before {
  background-image:
    linear-gradient(120deg, rgba(10, 31, 66, 0.9), rgba(15, 45, 92, 0.58)),
    url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=1800&q=80");
}

.sub-hero-destinations::before {
  background-image:
    linear-gradient(120deg, rgba(10, 31, 66, 0.88), rgba(15, 45, 92, 0.6)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1800&q=80");
}

.sub-hero-about::before {
  background-image:
    linear-gradient(120deg, rgba(10, 31, 66, 0.9), rgba(22, 59, 111, 0.58)),
    url("https://images.unsplash.com/photo-1493558103817-58b2924bce98?auto=format&fit=crop&w=1800&q=80");
}

.sub-hero-contact::before {
  background-image:
    linear-gradient(120deg, rgba(10, 31, 66, 0.88), rgba(15, 45, 92, 0.62)),
    url("https://images.unsplash.com/photo-1527631746610-bca00a040d60?auto=format&fit=crop&w=1800&q=80");
}

.hero-grid,
.split-layout,
.cta-grid,
.contact-layout {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  position: relative;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.sub-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 2.25rem;
}

.sub-hero-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.sub-hero-media img {
  width: 100%;
  height: min(420px, 42vw);
  object-fit: cover;
  transform: scale(1.03);
}

.sub-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 31, 66, 0.2), rgba(10, 31, 66, 0.58));
}

.sub-hero-with-media::before {
  background-image:
    linear-gradient(120deg, rgba(10, 31, 66, 0.9), rgba(15, 45, 92, 0.58)),
    var(--sub-hero-image);
}

.hero-copy h1,
.sub-hero h1,
.section-heading h2,
.split-layout h2,
.cta-banner h2,
.contact-panel h2 {
  font-family: "Playfair Display", serif;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

.hero-copy h1 {
  font-size: 50px;
    max-width: 20ch;
  color: #f6f2e8;
}

.sub-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  max-width: 14ch;
  color: var(--gold-bright);
  text-shadow: 0 4px 32px rgba(var(--gold-rgb), 0.22);
}

.section-heading h2,
.split-layout h2,
.cta-banner h2 {
  color: var(--gold-bright);
  text-shadow: 0 2px 28px rgba(var(--gold-rgb), 0.18);
}

.contact-panel h2 {
  color: var(--gold-light);
}

.hero-text,
.sub-hero p,
.section-heading p,
.detail-card p,
.destination-card p,
.info-card p,
.faq-card p,
.story-card p,
.contact-panel p {
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 54px;
  padding: 1rem 1.75rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  white-space: normal;
  max-width: 100%;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
  cursor: pointer;
}

.button:hover,
.slider-button:hover {
  transform: translateY(-2px);
}

.slider-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition);
}

.button-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--blue-deep);
  box-shadow: 0 16px 30px rgba(var(--gold-rgb), 0.28);
}

.button-secondary {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.18);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.trust-row div {
  padding: 1.1rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-row strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-bright);
}

.trust-row span {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.glass-card,
.contact-card,
.contact-panel,
.story-card,
.faq-card,
.info-card,
.timeline-step,
.amenity-card,
.checklist div,
.cta-banner {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-card {
  perspective: 1200px;
}

.glass-card {
  padding: 2rem;
  border-radius: var(--radius);
}

.mini-trip-list {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 1.75rem;
}

.mini-trip {
  padding: 1rem 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mini-trip div,
.trip-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.mini-trip h3,
.trip-card h3,
.feature-panel h3,
.proof-card strong {
  margin: 0;
}

.mini-trip p {
  margin: 0.7rem 0 0;
  color: var(--text-muted);
}

.trip-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trip-badge-open {
  background: white;
  color: green;
}

.trip-badge-soft {
  background: rgba(var(--gold-rgb), 0.14);
  color: var(--accent-strong);
}

.proof-grid,
.trip-grid,
.feature-panel-grid {
  display: grid;
  gap: 1.4rem;
}

.proof-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.proof-card,
.feature-panel {
  padding: 1.5rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.proof-card strong {
  display: block;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 0.5rem;
  color: var(--gold-bright);
}

.proof-card span,
.feature-panel p,
.trip-card p,
.trip-price {
  color: var(--text-muted);
}

.trip-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trip-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.trip-card-link,
.destination-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.destination-card-link {
  display: grid;
}

.trip-card-link:hover,
.trip-card-link:focus-visible,
.destination-card-link:hover,
.destination-card-link:focus-visible {
  transform: translateY(-2px);
}

.trip-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.trip-card-content {
  padding: 1.35rem;
}

.trip-price {
  font-weight: 600;
  color: var(--gold-light);
}

.feature-panel h3,
.difference-card h3,
.trip-card h3,
.glass-card h2,
.detail-card h3,
.retreat-card h3,
.destination-card h3,
.timeline-step h3,
.founder-card-content h3,
.info-card h3,
.faq-card h3 {
  color: var(--gold-light);
}

.amenity-card {
  color: var(--gold-light);
}

.footer-grid h3 {
  color: var(--gold);
}

.trip-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.trip-meta span {
  display: inline-flex;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 0.9rem;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
}

.category-pills span {
  display: inline-flex;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-panel-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.legal-stack {
  display: grid;
  gap: 1.25rem;
  min-width: 0;
}

.legal-card {
  padding: 1.7rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  min-width: 0;
}

.legal-card h2,
.legal-card h3 {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: var(--text-muted);
}

.legal-card ul {
  margin: 0.9rem 0 0;
  padding-left: 1.2rem;
}

/* Data tables (Booking & Travel Essential Information) */
.table-wrap {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-top: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-gutter: stable;
  border-radius: 16px;
}

.table-wrap .data-table {
  width: max-content;
  min-width: 100%;
}

.data-table {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.data-table thead th {
  text-align: left;
  padding: 0.95rem 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-strong);
  background: rgba(var(--gold-rgb), 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.data-table tbody td {
  vertical-align: top;
  padding: 0.95rem 1rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.data-table tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}

.data-table tbody tr:last-child td {
  border-bottom: 0;
}

.data-table tbody td:first-child {
  color: var(--text);
  font-weight: 600;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .table-wrap .data-table {
    min-width: 720px;
  }
}

@media (max-width: 760px) {
  .table-wrap {
    background: rgba(255, 255, 255, 0.02);
    outline: 1px solid rgba(255, 255, 255, 0.08);
  }

  .table-wrap:focus-visible {
    outline: 2px solid rgba(var(--gold-rgb), 0.45);
    outline-offset: 4px;
  }

  .table-wrap .data-table {
    border-radius: 0;
    border: 0;
    table-layout: fixed;
  }

  .data-table thead th {
    padding: 0.8rem 0.85rem;
    font-size: 0.74rem;
  }

  .data-table tbody td {
    padding: 0.8rem 0.85rem;
    font-size: 0.92rem;
    white-space: normal;
    word-break: break-word;
  }

  .data-table tbody td:first-child {
    white-space: normal;
  }
}

.itinerary-grid {
  display: grid;
  gap: 1.25rem;
}

.retreat-swiper {
  width: 100%;
  padding: 0.35rem 0.35rem 2.2rem;
  overflow: hidden;
}

.retreat-swiper .swiper-slide {
  height: auto;
}

.retreat-swiper .swiper-wrapper {
  align-items: stretch;
}

.retreat-swiper-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-top: 1rem;
}

.retreat-swiper-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}

.retreat-swiper-arrow {
  display: block;
  width: 0.55rem;
  height: 0.55rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.retreat-swiper-button-prev .retreat-swiper-arrow {
  transform: rotate(-135deg);
  margin-left: 0.15rem;
}

.retreat-swiper-button-next .retreat-swiper-arrow {
  transform: rotate(45deg);
  margin-right: 0.15rem;
}

.retreat-swiper-button:hover,
.retreat-swiper-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(var(--gold-rgb), 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.retreat-swiper-button.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

.retreat-swiper-slide {
  padding-bottom: 1.4rem;
}

.retreat-swiper-pagination {
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-horizontal-gap: 6px;
}

.retreat-swiper-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.28);
  opacity: 1;
  transition:
    transform var(--transition),
    background var(--transition);
}

.retreat-swiper-pagination .swiper-pagination-bullet-active {
  background: rgba(var(--gold-rgb), 0.9);
  transform: scale(1.15);
}

.retreat-swiper-slide {
  position: relative;
}

.retreat-swiper-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: var(--itinerary-bg);
  background-size: cover;
  background-position: center;
  opacity: 0.28;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.03);
  transition:
    opacity var(--transition),
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}

.retreat-swiper-slide > * {
  position: relative;
  z-index: 1;
}

.retreat-slide-content {
  position: relative;
  z-index: 1;
}

.retreat-swiper-slide:hover::after,
.retreat-swiper-slide:focus-within::after {
  opacity: 0.38;
  transform: scale(1.06);
}

/* Scenic stops / highlights — taller slides, full image visible */
.retreat-highlights-swiper {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0.5rem 0.75rem 2.75rem;
}

.retreat-highlights-swiper .swiper-wrapper {
  min-height: clamp(380px, 56vw, 640px);
}

.retreat-highlights-swiper .swiper-slide {
  height: auto !important;
}

.retreat-highlights-swiper .retreat-swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(380px, 56vw, 640px);
  overflow: hidden;
}

.retreat-highlights-swiper .retreat-swiper-slide::after {
  opacity: 1;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: var(--blue-deep);
  transform: none;
  filter: none;
}

.retreat-highlights-swiper .retreat-swiper-slide:hover::after,
.retreat-highlights-swiper .retreat-swiper-slide:focus-within::after {
  opacity: 1;
  transform: none;
}

.retreat-highlights-swiper .retreat-slide-content {
  width: 100%;
  padding: 1.35rem 1.5rem 1.5rem;
  margin-top: auto;
  background: linear-gradient(
    to top,
    rgba(10, 31, 66, 0.96) 0%,
    rgba(10, 31, 66, 0.82) 55%,
    rgba(10, 31, 66, 0.25) 100%
  );
  border-radius: 0 0 24px 24px;
}

.retreat-highlights-swiper .retreat-slide-content h3,
.retreat-highlights-swiper .retreat-slide-content p {
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

/* Itinerary swiper — taller for readability */
.retreat-itinerary-swiper {
  max-width: 960px;
  margin: 0 auto;
  padding: 0.5rem 0.75rem 2.75rem;
}

.retreat-itinerary-swiper .swiper-wrapper {
  min-height: clamp(420px, 58vw, 680px);
}

.retreat-itinerary-swiper .retreat-swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(420px, 58vw, 680px);
  overflow: hidden;
}

.retreat-itinerary-swiper .itinerary-day::before {
  display: none;
}

.retreat-itinerary-swiper .retreat-swiper-slide::after {
  opacity: 1;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: var(--blue-deep);
  transform: none;
  filter: none;
}

.retreat-itinerary-swiper .retreat-swiper-slide:hover::after,
.retreat-itinerary-swiper .retreat-swiper-slide:focus-within::after {
  opacity: 1;
  transform: none;
}

.retreat-itinerary-swiper .retreat-slide-content {
  width: 100%;
  padding: 1.35rem 1.5rem 1.75rem;
  margin-top: auto;
  max-height: 58%;
  overflow-y: auto;
  background: linear-gradient(
    to top,
    rgba(10, 31, 66, 0.97) 0%,
    rgba(10, 31, 66, 0.88) 60%,
    rgba(10, 31, 66, 0.2) 100%
  );
  border-radius: 0 0 24px 24px;
}

.itinerary-swiper {
  display: grid;
  gap: 1rem;
}

.itinerary-swiper-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.itinerary-swiper-controls {
  display: inline-flex;
  gap: 0.6rem;
}

.itinerary-arrow {
  border: 1px solid rgba(var(--gold-rgb), 0.28);
  background: rgba(var(--gold-rgb), 0.14);
  color: var(--text);
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  cursor: pointer;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition);
}

.itinerary-arrow:hover {
  transform: translateY(-1px);
  background: rgba(var(--gold-rgb), 0.2);
  border-color: rgba(var(--gold-rgb), 0.42);
}

.itinerary-dots {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

.itinerary-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition);
}

.itinerary-dot:hover {
  transform: scale(1.12);
  border-color: rgba(var(--gold-rgb), 0.35);
}

.itinerary-dot.is-active {
  background: rgba(var(--gold-rgb), 0.8);
  border-color: rgba(var(--gold-rgb), 0.95);
}

.itinerary-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding: 0.25rem 4vw 0.75rem;
  scroll-padding: 0 4vw;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.itinerary-track::-webkit-scrollbar {
  height: 10px;
}

.itinerary-track::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.itinerary-slide {
  opacity: 0.72;
  transform: scale(0.985);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 700ms cubic-bezier(0.22, 1, 0.36, 1);
  filter: saturate(0.98);
}

.itinerary-slide.is-active {
  opacity: 1;
  transform: scale(1);
  filter: saturate(1.06);
}

.itinerary-track:focus-visible {
  outline: 2px solid rgba(var(--gold-rgb), 0.45);
  outline-offset: 6px;
  border-radius: 20px;
}

.itinerary-day {
  position: relative;
  padding: 1.7rem;
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 0%, rgba(var(--gold-rgb), 0.14), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 60px rgba(2, 8, 20, 0.28);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.itinerary-day h3 {
  margin-top: 0;
}

.itinerary-day::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(var(--gold-rgb), 0.22), transparent 45%, rgba(15, 45, 92, 0.35));
  opacity: 0;
  transition: opacity var(--transition);
}

.itinerary-day:hover,
.itinerary-day:focus-within {
  transform: translateY(-3px);
  border-color: rgba(var(--gold-rgb), 0.34);
  box-shadow: 0 28px 90px rgba(2, 8, 20, 0.42);
}

.itinerary-day:hover::before,
.itinerary-day:focus-within::before {
  opacity: 1;
}

.itinerary-day .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(var(--gold-rgb), 0.12);
  border: 1px solid rgba(var(--gold-rgb), 0.22);
  color: var(--accent-strong);
  margin-bottom: 1rem;
}

.itinerary-day ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.itinerary-day p,
.itinerary-day li {
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .itinerary-slide {
    flex-basis: 92%;
  }
}

@media (max-width: 520px) {
  .itinerary-day {
    padding: 1.25rem;
  }
}

.feature-list {
  margin: 1.2rem 0 1.5rem;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1.4rem;
  margin: 0.65rem 0;
  color: var(--text-muted);
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 0.65rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

/* Allow horizontal scroll inside table wrappers (overflow:hidden on section blocks it on iOS) */
.section:has(.table-wrap) {
  overflow: visible;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.section > .container {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.section-dark,
.section-shade-deep {
  background: linear-gradient(165deg, var(--blue-ink) 0%, var(--blue-rich) 55%, #0a2248 100%);
}

.section-dark::before,
.section-shade-deep::before {
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(var(--gold-rgb), 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 100%, rgba(26, 68, 128, 0.35), transparent 50%);
}

.section-shade-blue {
  background: linear-gradient(180deg, #0d2850 0%, var(--blue-mid) 50%, var(--blue-deep) 100%);
}

.section-shade-blue::before {
  background: radial-gradient(circle at 15% 20%, rgba(74, 130, 210, 0.2), transparent 42%);
}

.section-shade-gold {
  background: linear-gradient(145deg, #1c1606 0%, var(--blue-deep) 38%, var(--blue-rich) 100%);
}

.section-shade-gold::before {
  background:
    radial-gradient(ellipse 70% 55% at 50% -10%, rgba(var(--gold-rgb), 0.28), transparent 60%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(var(--gold-rgb), 0.1), transparent 50%);
}

.section-shade-slate {
  background: linear-gradient(180deg, #0b1e3d 0%, #122a52 50%, var(--blue-ink) 100%);
}

.section-shade-slate::before {
  background:
    linear-gradient(90deg, transparent, rgba(var(--gold-rgb), 0.06), transparent),
    radial-gradient(circle at 80% 30%, rgba(42, 92, 168, 0.25), transparent 45%);
}

.section-shade-cream {
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
  color: var(--text-dark);
  --text: var(--text-dark);
  --text-muted: #4a5568;
  --line: rgba(10, 31, 66, 0.1);
}

.section-shade-cream::before {
  background:
    radial-gradient(circle at 90% 10%, rgba(var(--gold-rgb), 0.14), transparent 35%),
    radial-gradient(circle at 5% 90%, rgba(10, 31, 66, 0.06), transparent 40%);
}

.section-shade-cream .section-heading h2,
.section-shade-cream .split-layout h2 {
  color: var(--blue-deep);
  text-shadow: none;
}

.section-shade-cream .hero-text,
.section-shade-cream .section-heading p,
.section-shade-cream .split-layout p,
.section-shade-cream p {
  color: var(--text-muted);
}

.section-shade-cream .eyebrow {
  color: var(--gold-dark);
}

.section-shade-cream .feature-panel h3 {
  color: var(--blue-deep);
}

.section-shade-cream .proof-card,
.section-shade-cream .feature-panel,
.section-shade-cream .category-pills span,
.section-shade-cream .checklist div {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(10, 31, 66, 0.1);
  box-shadow: 0 18px 50px rgba(10, 31, 66, 0.08);
}

.section-shade-cream .proof-card strong {
  color: var(--gold);
}

.section-shade-cream .category-pills span {
  color: var(--blue-deep);
}

.section-shade-cream .checklist div {
  color: var(--blue-deep);
  font-weight: 600;
}

.section-shade-cream .legal-card,
.section-shade-cream .faq-card,
.section-shade-cream .info-card {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(10, 31, 66, 0.1);
  color: var(--blue-deep);
}

.section-shade-cream .legal-card h2,
.section-shade-cream .legal-card h3,
.section-shade-cream .faq-card h3,
.section-shade-cream .info-card h3 {
  color: var(--blue-deep);
}

.section-shade-cream .legal-card p,
.section-shade-cream .legal-card li,
.section-shade-cream .faq-card p {
  color: #4a5568;
}

.section-shade-gold .checklist div {
  border-color: rgba(var(--gold-rgb), 0.28);
  background: rgba(255, 255, 255, 0.07);
}

.mini-trip h3 {
  color: var(--gold-light);
}

.section-accent {
  background: linear-gradient(155deg, #1a1508 0%, var(--blue-deep) 35%, var(--blue-mid) 100%);
}

.section-accent::before {
  background:
    radial-gradient(ellipse 90% 60% at 20% 0%, rgba(var(--gold-rgb), 0.22), transparent 55%),
    radial-gradient(ellipse 50% 50% at 100% 100%, rgba(26, 68, 128, 0.3), transparent 50%);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.text-gold {
  color: var(--gold-light);
}

.value-grid,
.retreat-grid,
.amenity-grid,
.faq-grid,
.facility-grid,
.destination-grid {
  display: grid;
  gap: 1.4rem;
}

.value-grid,
.facility-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.retreat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.retreat-card,
.destination-card,
.detail-card {
  display: grid;
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.retreat-card img,
.destination-card img,
.detail-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.retreat-card div,
.destination-card div {
  padding: 1.4rem;
}

.retreat-card h3,
.destination-card h2,
.detail-card h2 {
  margin-top: 0;
}

.retreat-card a {
  display: inline-block;
  margin-top: 0.8rem;
  color: var(--accent-strong);
}

.split-layout {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.amenity-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.amenity-card {
  padding: 1.35rem 1.2rem;
  border-radius: 20px;
  font-weight: 600;
}

.difference-section {
  position: relative;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.difference-card {
  position: relative;
  padding: 2rem 1.75rem 1.85rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.difference-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0.85;
}

.difference-number {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(var(--gold-rgb), 0.35);
  margin-bottom: 1.25rem;
}

.difference-card h3 {
  margin-bottom: 0.85rem;
}

.difference-card p {
  color: var(--text-muted);
  max-width: 36ch;
}

.cta-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.contact-card {
  padding: 2rem;
  border-radius: var(--radius);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-card label {
  display: block;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.contact-card input,
.contact-card select,
.contact-card textarea {
  width: 100%;
  margin-top: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.95rem 1rem;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}

.contact-card input:focus,
.contact-card select:focus,
.contact-card textarea:focus {
  border-color: rgba(var(--gold-rgb), 0.78);
  background: rgba(255, 255, 255, 0.07);
}

.form-status {
  min-height: 1.5rem;
  margin: 1rem 0 0;
  color: var(--accent-strong);
}

.contact-layout {
  grid-template-columns: 0.8fr 1.2fr;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 1rem;
}

.contact-panel {
  padding: 1.8rem;
  border-radius: var(--radius);
}

.contact-panel a {
  display: block;
  margin: 0.4rem 0;
  color: var(--text);
}

.retreat-stack {
  display: grid;
  gap: 1.6rem;
}

.detail-card {
  grid-template-columns: 0.85fr 1.15fr;
}

.detail-card div {
  padding: 2rem;
}

/* Retreat detail — image fills its column in side-by-side layout */
[data-page="retreat-detail"] .retreat-stack .detail-card img {
  display: block;
  width: 100%;
  min-width: 0;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center center;
}

[data-page="retreat-detail"] .retreat-stack .detail-card {
  align-items: stretch;
}

[data-page="retreat-detail"] .retreat-stack .detail-card div > .button {
  margin-top: 1.25rem;
}

[data-page="retreat-detail"] .retreat-stack .detail-card div > .button + .button {
  /* margin-left: 1rem; */
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.timeline-step {
  border-radius: 24px;
  padding: 1.5rem;
}

.timeline-step span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(var(--gold-rgb), 0.16);
  color: var(--accent-strong);
  font-weight: 700;
}

.checklist {
  display: grid;
  gap: 1rem;
}

.checklist div {
  border-radius: 20px;
  padding: 1.2rem 1.3rem;
  font-weight: 600;
}

.story-card {
  padding: 2rem;
  border-radius: var(--radius);
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.founder-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.founder-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.founder-card-content {
  padding: 1.7rem;
}

.founder-card-content h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: 1.7rem;
}

.founder-card-content p:last-of-type {
  color: var(--text-muted);
}

.founder-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(1rem, env(safe-area-inset-top)) 1rem max(1rem, env(safe-area-inset-bottom));
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  z-index: 100;
}

.founder-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.founder-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 10, 18, 0.78);
  backdrop-filter: blur(10px);
}

.founder-modal-dialog {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  width: min(1000px, 100%);
  margin: auto;
  border-radius: 28px;
  padding: 2rem;
  background: linear-gradient(180deg, rgba(8, 20, 34, 0.98), rgba(10, 25, 40, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.founder-modal-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.8rem;
  align-items: start;
}

.founder-modal-copy {
  grid-column: 1;
  grid-row: 1;
}

.founder-swiper {
  grid-column: 2;
  grid-row: 1;
}

.founder-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 1.6rem;
  cursor: pointer;
}

.founder-modal-title {
  margin-top: -0.25rem;
  margin-bottom: 1rem;
  color: var(--accent-strong);
  font-weight: 700;
}

.founder-swiper {
  display: grid;
  gap: 1rem;
}

.founder-swiper-track {
  position: relative;
  min-height: 430px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  touch-action: pan-y pinch-zoom;
}

.founder-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(36px);
  transition: opacity 350ms ease, transform 350ms ease;
}

.founder-slide.is-active {
  opacity: 1;
  transform: translateX(0);
}

.founder-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-slide-caption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(4, 10, 18, 0.62);
  color: var(--text);
}

.founder-swiper-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.founder-swiper-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  flex: 1;
}

.founder-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.26);
  cursor: pointer;
  padding: 0;
}

.founder-dot.is-active {
  background: var(--accent-strong);
}

.faq-card,
.info-card {
  border-radius: 24px;
  padding: 1.6rem;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: var(--radius);
}

.cta-banner .button {
  flex-shrink: 0;
  min-width: 11.5rem;
}

.site-footer {
  position: relative;
  padding: 2rem 0 3rem;
  background: #ffffff;
  border-top: 1px solid rgba(10, 31, 66, 0.1);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 2rem;
}

.footer-grid h3 {
  margin-top: 0;
  color: var(--gold);
  font-weight: 700;
}

.footer-grid a,
.footer-grid p {
  display: block;
  color: #1a1a1a;
  margin: 0.45rem 0;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--gold);
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0.85rem 0 1rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0;
  border: 1px solid rgba(10, 31, 66, 0.14);
  border-radius: 50%;
  color: var(--blue-deep);
  background: rgba(255, 255, 255, 0.72);
  transition: transform var(--transition), color var(--transition), border-color var(--transition),
    background var(--transition);
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--gold);
  border-color: rgba(var(--gold-rgb), 0.45);
  background: #fff;
  transform: translateY(-2px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-vision-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-different-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.about-carry-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-closing-line {
  margin: 2.5rem auto 0;
  max-width: 52ch;
  text-align: center;
  font-size: 1.12rem;
  color: var(--text-muted);
}

.about-founders-note h3 {
  margin-top: 0;
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  color: var(--gold-light);
}

[data-tilt] {
  transform-style: preserve-3d;
  transition: transform 180ms ease;
}

body.nav-open {
  overflow: hidden;
}

body.founder-modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
}

@media (max-width: 980px) {
  .hero-grid,
  .split-layout,
  .cta-grid,
  .contact-layout,
  .detail-card,
  .footer-grid,
  .sub-hero-grid {
    grid-template-columns: 1fr;
  }

  .sub-hero-media {
    display: none;
  }

  .sub-hero-with-media::before {
    opacity: 0.42;
  }

  .retreat-grid,
  .trip-grid,
  .proof-grid,
  .feature-panel-grid,
  .difference-grid,
  .value-grid,
  .facility-grid,
  .timeline,
  .faq-grid,
  .founder-grid,
  .founder-modal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-home {
    min-height: auto;
  }

  .hero-copy h1 {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(1120px, calc(100% - 1.25rem));
  }

  :root {
    --header-logo-height: 58px;
    --header-padding-y: 0.55rem;
    --header-inset: 0.625rem;
  }

  .brand {
    gap: 0.7rem;
  }

  .brand-logo {
    height: 72px;
    max-width: min(260px, 78vw);
  }

  .site-header .brand-logo {
    max-width: min(300px, 82vw);
  }

  .footer-brand .brand-logo {
    height: 68px;
  }

  .hero,
  .sub-hero {
    padding: 5.5rem 0 3.5rem;
  }

  .section {
    padding: 4rem 0;
  }

  .hero-copy h1,
  .sub-hero h1 {
    max-width: 100%;
  }

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

  .hero-actions .button,
  .cta-banner .button,
  .contact-card .button {
    width: 100%;
    min-width: 0;
    min-height: 56px;
    padding: 1.05rem 1.5rem;
    font-size: 1.05rem;
  }

  .glass-card,
  .contact-card,
  .story-card,
  .contact-panel,
  .faq-card,
  .info-card,
  .timeline-step,
  .cta-banner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .site-header .site-nav {
    margin-left: 0;
    gap: 0.75rem;
  }

  .site-nav {
    position: fixed;
    inset: calc(var(--header-height) + 12px) 1rem auto;
    display: grid;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(10, 31, 66, 0.1);
    border-radius: 24px;
    box-shadow: 0 16px 40px rgba(10, 31, 66, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity var(--transition), transform var(--transition);
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .header-call,
  .nav-cta {
    width: 100%;
    justify-content: center;
    white-space: normal;
    min-height: 54px;
    padding: 1rem 1.25rem;
    line-height: 1.35;
  }

  .nav-toggle {
    display: block;
  }

  body.nav-open .nav-toggle span:first-child {
    transform: translateY(8px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:last-child {
    transform: translateY(-8px) rotate(-45deg);
  }

  .about-vision-grid,
  .about-carry-grid {
    grid-template-columns: 1fr;
  }

  .trust-row,
  .form-row,
  .retreat-grid,
  .trip-grid,
  .proof-grid,
  .feature-panel-grid,
  .difference-grid,
  .value-grid,
  .facility-grid,
  .destination-grid,
  .faq-grid,
  .amenity-grid,
  .founder-grid,
  .founder-modal-grid {
    grid-template-columns: 1fr;
  }

  .slider-controls {
    position: absolute;
    right: 1.25rem;
    bottom: 1.25rem;
    left: 1.25rem;
    margin-top: 0;
    justify-content: space-between;
    z-index: 4;
  }

  .testimonial-slider {
    min-height: 390px;
    padding-bottom: 0.5rem;
  }

  .testimonial-slide {
    padding: 1.4rem 1.25rem 5.75rem;
  }

  .testimonial-slide p {
    font-size: 1rem;
    max-width: none;
  }

  .mini-trip div,
  .trip-card-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .category-pills {
    margin-bottom: 1.25rem;
  }

  .cta-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  .detail-card img,
  .trip-card img,
  .retreat-card img,
  .destination-card img,
  .founder-card img {
    height: 220px;
  }

  .footer-grid {
    gap: 1.5rem;
  }

  .founder-modal {
    align-items: flex-start;
    padding-top: max(0.75rem, env(safe-area-inset-top));
  }

  .founder-modal-dialog {
    width: 100%;
    margin: 0.5rem auto 1.5rem;
    padding: 3.25rem 1.15rem 1.25rem;
  }

  .founder-modal-close {
    top: 0.65rem;
    right: 0.65rem;
    z-index: 3;
  }

  .founder-modal-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .founder-swiper {
    grid-column: auto;
    grid-row: auto;
  }

  .founder-modal-copy h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
    padding-right: 2.5rem;
  }

  .founder-swiper-track {
    min-height: 220px;
    height: min(52vw, 280px);
  }

  .founder-swiper-controls {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .founder-swiper-controls .slider-button {
    flex: 1;
    min-width: 5.5rem;
  }

  /* Retreat detail page — mobile */
  [data-page="retreat-detail"] .sub-hero {
    padding: 4.5rem 0 2.5rem;
    text-align: left;
  }

  [data-page="retreat-detail"] .sub-hero h1 {
    font-size: clamp(1.6rem, 7vw, 2.1rem);
    max-width: none;
    line-height: 1.12;
  }

  [data-page="retreat-detail"] .sub-hero .hero-text,
  [data-page="retreat-detail"] .sub-hero p {
    font-size: 0.98rem;
  }

  [data-page="retreat-detail"] .section {
    padding: 3.25rem 0;
  }

  [data-page="retreat-detail"] .section-heading {
    margin-bottom: 1.75rem;
  }

  [data-page="retreat-detail"] .section-heading h2 {
    font-size: clamp(1.4rem, 5.2vw, 1.8rem);
  }

  [data-page="retreat-detail"] .section-heading p {
    font-size: 0.95rem;
  }

  [data-page="retreat-detail"] .detail-card {
    grid-template-columns: 1fr;
  }

  [data-page="retreat-detail"] .retreat-stack .detail-card img {
    height: min(50vw, 240px);
    min-height: min(50vw, 240px);
    object-fit: cover;
  }

  [data-page="retreat-detail"] .detail-card div {
    padding: 1.25rem 1.1rem 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }

  [data-page="retreat-detail"] .detail-card .button {
    width: 100%;
    justify-content: center;
    min-height: 56px;
    padding: 1.05rem 1.35rem;
    font-size: 1rem;
  }

  [data-page="retreat-detail"] .retreat-stack .detail-card div > .button + .button {
    margin-left: 0;
    margin-top: 0.85rem;
  }

  [data-page="retreat-detail"] .cta-banner .button {
    width: 100%;
    min-width: 0;
  }

  [data-page="retreat-detail"] .detail-card h2 {
    font-size: 1.25rem;
  }

  [data-page="retreat-detail"] .feature-list {
    margin: 0.75rem 0 0.5rem;
  }

  [data-page="retreat-detail"] .legal-card {
    padding: 1.2rem 1.05rem;
  }

  [data-page="retreat-detail"] .legal-stack {
    gap: 1rem;
  }

  [data-page="retreat-detail"] .legal-card h2 {
    font-size: 1.2rem;
  }

  [data-page="retreat-detail"] .legal-card h3 {
    font-size: 1.05rem;
  }

  /* Swipers — stacked image on top, text below (mobile-friendly) */
  .retreat-highlights-swiper,
  .retreat-itinerary-swiper {
    padding: 0 0 3rem;
    max-width: 100%;
    width: 100%;
  }

  .retreat-highlights-swiper .swiper-wrapper,
  .retreat-itinerary-swiper .swiper-wrapper {
    min-height: auto;
    align-items: stretch;
  }

  .retreat-highlights-swiper .retreat-swiper-slide,
  .retreat-itinerary-swiper .retreat-swiper-slide {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-start;
    min-height: auto;
    overflow: hidden;
    border-radius: 20px;
  }

  .retreat-highlights-swiper .retreat-swiper-slide:hover::after,
  .retreat-highlights-swiper .retreat-swiper-slide:focus-within::after,
  .retreat-itinerary-swiper .retreat-swiper-slide:hover::after,
  .retreat-itinerary-swiper .retreat-swiper-slide:focus-within::after {
    opacity: 1;
    transform: none;
  }

  .retreat-highlights-swiper .retreat-swiper-slide::after,
  .retreat-itinerary-swiper .retreat-swiper-slide::after {
    position: relative;
    inset: auto;
    flex: 0 0 auto;
    width: 100%;
    height: min(46vw, 210px);
    min-height: min(46vw, 210px);
    border-radius: 20px 20px 0 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    transform: none;
    filter: none;
  }

  .retreat-highlights-swiper .retreat-slide-content,
  .retreat-itinerary-swiper .retreat-slide-content {
    flex: 1 1 auto;
    margin-top: 0;
    max-height: none;
    overflow: visible;
    padding: 1rem 1.05rem 1.1rem;
    background: rgba(10, 31, 66, 0.94);
    border-radius: 0;
  }

  .retreat-itinerary-swiper .retreat-slide-content h3 {
    font-size: 1.02rem;
    line-height: 1.28;
    margin-bottom: 0.45rem;
  }

  .retreat-itinerary-swiper .retreat-slide-content p,
  .retreat-itinerary-swiper .retreat-slide-content li {
    font-size: 0.86rem;
    line-height: 1.48;
  }

  .retreat-itinerary-swiper .retreat-slide-content ul {
    margin: 0.55rem 0 0;
    padding-left: 1rem;
  }

  .retreat-itinerary-swiper .retreat-slide-content .eyebrow {
    font-size: 0.68rem;
    padding: 0.35rem 0.6rem;
    margin-bottom: 0.55rem;
  }

  .retreat-highlights-swiper .retreat-slide-content h3 {
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
  }

  .retreat-highlights-swiper .retreat-slide-content p {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .retreat-highlights-swiper .retreat-slide-content .eyebrow {
    font-size: 0.68rem;
    margin-bottom: 0.35rem;
  }

  .retreat-swiper-controls {
    gap: 0.75rem;
    margin-top: 1.15rem;
    padding-top: 0.25rem;
  }

  .retreat-swiper-button {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 480px) {
  [data-page="retreat-detail"] .sub-hero {
    padding: 4rem 0 2rem;
  }

  [data-page="retreat-detail"] .section {
    padding: 2.75rem 0;
  }

  .retreat-highlights-swiper .retreat-swiper-slide::after,
  .retreat-itinerary-swiper .retreat-swiper-slide::after {
    height: min(44vw, 190px);
    min-height: min(44vw, 190px);
  }

  .retreat-itinerary-swiper .retreat-slide-content {
    padding: 0.9rem 0.95rem 1rem;
  }

  .retreat-itinerary-swiper .retreat-slide-content h3 {
    font-size: 0.96rem;
  }

  [data-page="retreat-detail"] .detail-card img {
    height: min(48vw, 200px);
  }

  .table-wrap .data-table {
    min-width: 640px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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

.sub-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 768px) {
  .sub-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .sub-hero-media img {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }
}