:root {
  --bg: #fbf7f2;          /* warm off-white */
  --card: #ffffff;        /* clean cards */
  --text: #1b1f24;        /* ink */
  --muted: #5b6775;       /* soft slate */
  --line: rgba(27, 31, 36, 0.10);
  --accent: #1f6f8b;      /* sea teal accent (buttons/links) */
  --accent2: #c26d3b;     /* optional terracotta highlight */
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

.wrap {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  background: rgba(251, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  z-index: 100;
  padding: 16px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

/* Section Background - Visual Breaks */
.section-soft {
  background: linear-gradient(
    180deg,
    rgba(200, 155, 109, 0.08),
    rgba(250, 247, 244, 0.6)
  );
  padding: 3rem 1.5rem;
  border-radius: 24px;
  margin: 2rem 0;
}

.logo {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--text);
  text-decoration: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.logo:hover {
  border: none;
  opacity: 0.8;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-link {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  border: none;
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--text);
  border: none;
}

.nav-link.active {
  color: var(--text);
  font-weight: 600;
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 101;
}

.hamburger-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}

.hamburger-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle--open .hamburger-icon span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle--open .hamburger-icon span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle--open .hamburger-icon span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.hero {
  padding: 72px 0 28px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(31,111,139,0.08), transparent 60%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
}

.hero-copy {
  max-width: 560px;
}

.hero-media {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(27,31,36,0.10);
}

.hero-media::after {
  /* subtle overlay to keep the image calm + premium */
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.00), rgba(255,255,255,0.18));
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: auto;
  display: block;
}

.kicker {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--muted);
  margin: 0 0 10px;
}

h1, h2 {
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  margin: 0 0 10px;
}

.subhead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
}

.note, .small {
  color: var(--muted);
  font-size: 14px;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 6px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.7);
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn:active { transform: translateY(0); }

.main { padding: 28px 0 56px; }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(27,31,36,0.06);
  margin: 0 0 16px;
}

.card h2 {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: 0.01em;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 16px;
  letter-spacing: 0.01em;
  font-weight: 600;
}

/* Story Card */
.story-card {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 28px 24px;
  box-shadow: 0 10px 30px rgba(27,31,36,0.06);
}

.highlight {
  color: var(--text);
  font-weight: 500;
  font-size: 17px;
  margin-top: 16px;
  padding-left: 18px;
  border-left: 3px solid var(--accent);
}

/* Pillar Sections */
.pillar-section {
  margin: 42px 0;
  scroll-margin-top: 80px;
}

.pillar-header {
  margin-bottom: 20px;
}

.pillar-number {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 600;
}

.pillar-header h2 {
  font-size: 28px;
  margin: 6px 0 8px;
  letter-spacing: -0.01em;
}

.pillar-intro {
  color: var(--muted);
  font-size: 16px;
  margin: 0;
}

.cta-card {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(27,31,36,0.06);
  margin-top: 16px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

/* Page Header */
.page-header {
  padding: 28px 0 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}

.page-header h1 {
  font-size: 36px;
  margin: 6px 0 8px;
  letter-spacing: -0.01em;
}

.page-intro {
  color: var(--muted);
  font-size: 18px;
  margin: 0;
}

/* Offerings Section */
.offerings-section {
  margin: 32px 0;
}

.offerings-section h2 {
  font-size: 24px;
  margin: 0 0 20px;
  text-align: center;
}

.offerings-grid {
  grid-template-columns: 1fr;
  gap: 16px;
}

.offering-card {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}

.offering-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(27,31,36,0.10);
}

.offering-card h3 {
  color: var(--text);
  margin: 8px 0 6px;
}

.offering-card p {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
}

ul, ol { margin: 10px 0 0; padding-left: 20px; }
li { margin: 6px 0; }

.footer {
  padding: 22px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

/* Desktop split layout */
@media (min-width: 860px) {
  .grid { grid-template-columns: 1fr 1fr; }

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

  .hero {
    padding: 78px 0 28px;
  }

  .hero-inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 22px;
  }

  .hero-media img {
    /* keeps the portrait looking editorial */
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }
}

/* Mobile: use square crop */
@media (max-width: 720px) {
  .hero-media img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav-inner {
    justify-content: space-between;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: rgba(251, 247, 242, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  .nav-links--open {
    display: flex;
  }

  .nav-link {
    padding: 1rem 1.5rem;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  .nav-whatsapp {
    margin: 0.5rem 1.5rem;
    width: auto;
    display: inline-flex;
  }

  .pillar-header h2 {
    font-size: 24px;
  }
}

/* Tablet navigation */
@media (max-width: 860px) and (min-width: 721px) {
  .nav-links {
    gap: 18px;
  }

  .nav-link {
    font-size: 13px;
  }
}

/* Inspiration Page Specific */
.inspiration-header {
  text-align: center;
  padding: 28px 0 20px;
}

.inspiration-header h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

/* Destinations Grid - More Compact */
.destinations-grid {
  display: grid;
  gap: 20px;
  margin: 24px 0;
}

.destination-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(27,31,36,0.06);
  transition: box-shadow 0.2s ease;
}

.destination-card:hover {
  box-shadow: 0 8px 20px rgba(27,31,36,0.10);
}

/* === Destination Carousel (stable + responsive) === */
.destination-carousel {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(27,31,36,0.08);
}

/* Track holds slides horizontally */
.carousel-track {
  display: flex;
  transition: transform 350ms ease;
  will-change: transform;
}

/* Each slide takes full width of the carousel */
.carousel-slide {
  flex: 0 0 100%;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: clamp(240px, 42vw, 520px); /* responsive travel-friendly height */
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Prev/Next buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(27,31,36,0.12);
  background: rgba(255,255,255,0.86);
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
  display: grid;            /* always visible by default */
  place-items: center;
  z-index: 20;
  box-shadow: 0 6px 18px rgba(27,31,36,0.12);
}

.carousel-btn:hover {
  transform: translateY(-50%) translateY(-1px);
}

.carousel-btn:active {
  transform: translateY(-50%);
}

.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }

/* Optional: hide buttons if only one slide (JS can toggle this) */
.destination-carousel[data-slides="single"] .carousel-btn {
  display: none;
}

/* Carousel Dots */
.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(27,31,36,0.10);
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(27,31,36,0.25);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: transform 150ms ease, background 150ms ease;
}

.carousel-dot.active {
  background: rgba(27,31,36,0.85);
  transform: scale(1.05);
}

/* Destination Content - More Compact */
.destination-content {
  padding: 18px 20px 20px;
}

.destination-name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--text);
}

.destination-caption {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* Responsive: 4 columns on desktop, 2 on tablet, 1 on mobile */
@media (min-width: 1024px) {
  .destinations-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 639px) {
  .inspiration-header h1 {
    font-size: 28px;
  }
}

.destination-group {
  grid-column: 1 / -1; /* Span all columns in the grid */
  margin: 48px 0 24px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.destination-group:first-child {
  margin-top: 0; /* Remove top margin for first group */
}

.destination-group h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--fg);
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.destination-group p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-muted);
  margin: 0 0 8px;
  max-width: 100%;
}

.destination-group .trip-bridge {
  font-size: 15px;
  font-style: italic;
  color: var(--fg-subtle);
  margin-top: 12px;
}
/* =========================
   More Holiday Experiences Slider (Alt 1: minimal labels)
   Paste into styles.css
========================= */

.more-slider {
  margin: 30px 0 46px;
}

.more-rail {
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
  overflow: hidden; /* hides the looping seam */
}

/* Horizontal scroller with auto-scroll */
.more-track {
  display: flex;
  gap: 12px;
  padding: 14px;
  overflow-x: auto;
  scroll-behavior: auto; /* Changed from smooth for auto-scroll */
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
}

/* Hide scrollbar for Chrome, Safari, Edge */
.more-track::-webkit-scrollbar {
  display: none;
}

/* Each item is a clickable card (image + label) */
.more-item {
  flex: 0 0 auto;
  width: 210px;
  border: 0;
  padding: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

@media (min-width: 900px) {
  .more-item {
    width: 240px;
  }
}

.more-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  border-radius: 18px;
  border: 1px solid rgba(27, 31, 36, 0.10);
  box-shadow: 0 12px 28px rgba(27, 31, 36, 0.08);
  transition: transform 140ms ease;
}

.more-item:hover img {
  transform: translateY(-2px);
}

/* Alternative 1: Ultra-minimal label */
.more-label {
  margin: 8px 4px 0;
  font-size: 0.82rem;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: rgba(27, 31, 36, 0.70);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Lightbox */
.more-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 17, 21, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 2000;
}

.more-lightbox.open {
  display: flex;
}

.more-lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 78vh;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.more-lb-close {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.more-lb-cap {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  max-width: min(1100px, 92vw);
  text-align: center;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  font-size: 13px;
}
/* =========================
   End More Holiday Experiences Slider
   ========================= */

/* =========================
   Planning page layout
   ========================= */
.page-hero {
  margin: 2.5rem 0 1.5rem;
  max-width: 60ch;
}

.page-hero .kicker {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.85rem;
  opacity: 0.75;
  margin-bottom: 0.75rem;
}

.page-hero h1 {
  margin: 0 0 0.75rem;
  line-height: 1.05;
}

.page-hero .subhead {
  margin: 0;
  opacity: 0.85;
  font-size: 1.05rem;
  line-height: 1.5;
}

.planning-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 1.25rem;
  align-items: start;
  margin: 1.25rem 0 3rem;
}

.form-card h2 {
  margin-top: 0;
}

.muted {
  opacity: 0.8;
}

.embed-wrap {
  margin-top: 1rem;
  border-radius: 16px;
  overflow: hidden;
  min-height: 620px;
  background: rgba(255, 255, 255, 0.04);
}

/* If you use iframe embeds */
.embed-wrap iframe {
  width: 100%;
  height: 680px;
  border: 0;
}

.support-card h3 {
  margin: 0 0 0.75rem;
}

.steps {
  margin: 0;
  padding-left: 1.15rem;
}

.steps li {
  margin: 0.6rem 0;
}

.bullets {
  margin: 0;
  padding-left: 1.1rem;
}

.bullets li {
  margin: 0.55rem 0;
}

.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 1.1rem 0;
}

.note {
  margin: 0.9rem 0 0;
  opacity: 0.9;
}

/* Mobile */
@media (max-width: 900px) {
  .planning-layout {
    grid-template-columns: 1fr;
  }
  .embed-wrap {
    min-height: 640px;
  }
}

/* =========================
   Two Pillars Layout (Homepage)
   ========================= */
.two-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 16px;
}

.pillar {
  padding: 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.pillar h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.pillar p {
  margin: 0 0 10px;
  color: rgba(0, 0, 0, 0.72);
}

.text-link {
  display: inline-block;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  padding-bottom: 2px;
}

.text-link:hover {
  border-bottom-color: rgba(0, 0, 0, 0.6);
}

@media (min-width: 900px) {
  .two-pillars {
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================
   Deals Page
   ========================= */
.page-head {
  margin: 24px 0 18px;
}

.deals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 18px 0 26px;
}

.deal-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  padding: 18px;
}

.deal-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.deal-card h2 {
  font-size: 18px;
  margin: 0;
}

.deal-tag {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
  color: rgba(0, 0, 0, 0.75);
  white-space: nowrap;
}

.deal-desc {
  margin: 10px 0 12px;
  color: rgba(0, 0, 0, 0.72);
}

.deal-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
}

.btn.small {
  padding: 10px 14px;
  font-size: 14px;
}

.socials-card {
  margin-top: 10px;
}

@media (min-width: 900px) {
  .deals-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================
   Homepage Refinements
   ========================= */

/* HERO: smaller image, calmer layout */
.hero--compact .hero-inner {
  align-items: center;
  gap: 22px;
}

/* Hero title: smaller + less bold */
.hero h1 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

/* Optional: make subhead a touch calmer */
.hero .subhead {
  font-size: 1.05rem;
  line-height: 1.5;
  max-width: 42ch;
  opacity: 0.9;
}

.hero--compact .hero-media {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  max-height: 420px;
}

.hero--compact .hero-media img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.note.subtle {
  margin-top: 14px;
  opacity: 0.75;
}

/* Optional: make external nav link feel intentional */
.nav-link-external {
  opacity: 0.9;
}
.nav-link-external:hover {
  opacity: 1;
}

/* Reduce repeated link "noise" */
.muted {
  color: rgba(0, 0, 0, 0.68);
  margin-top: 6px;
}

/* Two pillars: tighter, cleaner */
.two-pillars--tight .pillar {
  padding: 16px;
}

.two-pillars--tight .pillar p {
  margin-bottom: 8px;
}

@media (max-width: 720px) {
  .hero--compact .hero-media {
    max-height: 320px;
  }

  .hero--compact .hero-media img {
    max-height: 320px;
  }

  .hero--compact .cta-row {
    flex-direction: column;
    align-items: stretch;
  }
}

/* =========================
   Two Ways Section (Image Cards)
   ========================= */
.two-ways {
  margin: 3rem 0;
}

.two-ways-head h2 {
  margin-bottom: 0.5rem;
}

.two-ways-head p {
  max-width: 70ch;
  opacity: 0.9;
}

.two-ways-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.two-way-card {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  height: 100%;
}

.two-way-media {
  /* consistent image height across cards */
  aspect-ratio: 4 / 3;
  width: 100%;
  background: #f8f8f8;
  position: relative;
  overflow: hidden;
}

.two-way-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Helps prevent awkward crops */
  object-position: center;
}

/* Optional subtle gradient to make images feel premium */
.two-way-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.12), rgba(0,0,0,0));
  pointer-events: none;
}

.two-way-body {
  padding: 1.5rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.two-way-body h3 {
  margin: 0;
  line-height: 1.2;
  font-size: 1.35rem;
}

.two-way-body p {
  margin: 0;
  opacity: 0.88;
  line-height: 1.6;
  font-size: 0.95rem;
}

.two-way-body p.note {
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.two-way-link {
  margin-top: auto;
  padding-top: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: inherit;
  text-decoration: none;
  transition: gap 150ms ease, opacity 150ms ease;
}

.two-way-link:hover {
  gap: 0.5rem;
  opacity: 0.7;
}

/* Custom image cropping options */
.two-way-media.crop-top img {
  object-position: 50% 25%;
}

.two-way-media.crop-left img {
  object-position: 25% 50%;
}

/* For the Latitude card only */
.two-way-card.latitude .two-way-media img {
  object-position: 65% 50%;
}

/* Mobile */
@media (max-width: 860px) {
  .two-ways-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .two-way-body {
    padding: 1.25rem 1.25rem 1.5rem;
  }

  .two-way-body h3 {
    font-size: 1.25rem;
  }
}

/* =========================
   Longer Horizon Section
   ========================= */
.longer-horizon {
  max-width: 68ch;
  margin: 3rem auto;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
}

.longer-horizon h3 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
}

.longer-horizon p {
  margin: 0 0 1rem;
  line-height: 1.65;
}

.longer-horizon .note {
  margin-top: 1.5rem;
}

/* =========================
   Site Footer
   ========================= */
.site-footer {
  margin-top: 3rem;
  padding: 2.5rem 0 1.75rem;
  background: rgba(255, 255, 255, 0.70);
  border-top: 1px solid rgba(0,0,0,0.08);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: start;
}

.footer-kicker {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  opacity: 0.7;
  margin: 0 0 0.4rem;
}

.footer-title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 550;
}

.footer-desc {
  margin: 0 0 0.9rem;
  opacity: 0.85;
  line-height: 1.55;
  max-width: 52ch;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.footer-link {
  text-decoration: none;
  font-weight: 600;
}

.footer-sep {
  opacity: 0.45;
}

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

.footer-col h4 {
  margin: 0 0 0.7rem;
  font-size: 0.95rem;
  font-weight: 650;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.footer-col a {
  text-decoration: none;
  opacity: 0.9;
}

.footer-col a:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.6);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  opacity: 0.9;
}

.social-icon:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.9);
}

.social-icon:focus-visible {
  outline: 3px solid rgba(46, 111, 143, 0.25);
  outline-offset: 3px;
}

.footer-cred {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.footer-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.logo-chip {
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 999px;
  padding: 0.35rem 0.6rem;
  font-size: 0.82rem;
  opacity: 0.85;
  background: rgba(255,255,255,0.6);
}

.footer-team {
  opacity: 0.88;
  line-height: 1.55;
  max-width: 78ch;
}

.footer-compliance {
  padding: 1.1rem 1.1rem 1.0rem;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.65);
}

.compliance-title {
  margin: 0 0 0.35rem;
  font-weight: 650;
}

.compliance-text,
.compliance-note {
  margin: 0.35rem 0 0;
  line-height: 1.55;
  opacity: 0.88;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-size: 0.95rem;
}

.footer-small {
  opacity: 0.8;
}

.footer-small a {
  text-decoration: none;
}

.footer-small a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Mobile */
@media (max-width: 860px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-columns {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .footer-columns {
    grid-template-columns: 1fr;
  }
}

.trip-form-card {
  padding: 1.4rem;
}

.trip-form-head h1 {
  margin-bottom: 0.4rem;
}

/* Honeypot spam protection field - must be hidden */
input.hp-field,
input[name="_gotcha"] {
  position: absolute !important;
  left: -9999px !important;
  top: 0 !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
  overflow: hidden !important;
}

.form-progress {
  height: 8px;
  border-radius: 999px;
  background: rgba(0,0,0,0.08);
  overflow: hidden;
  margin: 1rem 0 1.25rem;
}

.form-progress-bar {
  height: 100%;
  width: 12%;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  transition: width 200ms ease;
}

.form-section {
  border: 0;
  padding: 0;
  margin: 0 0 1.25rem;
}

.form-section legend {
  font-weight: 650;
  margin-bottom: 0.75rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.field-full {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.12);
  background: #fff;
  outline: none;
  transition: box-shadow 160ms ease, border-color 160ms ease;
  font-size: 1rem;
  font-family: inherit;
  box-sizing: border-box;
  height: 48px;
  min-width: 0;
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23555' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.field textarea {
  resize: vertical;
  min-height: 96px;
  height: auto;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(0,0,0,0.22);
  box-shadow: 0 0 0 4px rgba(0,0,0,0.08);
}

.help {
  margin: 0.35rem 0 0;
  font-size: 0.9rem;
  opacity: 0.78;
  line-height: 1.45;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.5rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(255,255,255,0.65);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
}

.chip input {
  width: 16px;
  height: 16px;
}

.form-details {
  margin: 0 0 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.58);
  padding: 0.9rem 1rem;
}

.form-details summary {
  cursor: pointer;
  font-weight: 650;
}

.consent {
  margin-top: 0.75rem;
}

.check {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-weight: 600;
}

.check input {
  margin-top: 0.25rem;
}

.form-actions {
  margin-top: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

@media (max-width: 720px) {
  .trip-form-card {
    padding: 1.1rem;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Form Validation & Error Handling
   ========================= */

/* Error state for input fields */
.field input.error,
.field textarea.error,
.field select.error {
  border-color: #d32f2f;
  background: rgba(211, 47, 47, 0.05);
  box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

.field input.error:focus,
.field textarea.error:focus,
.field select.error:focus {
  border-color: #d32f2f;
  box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.15);
}

/* Error message styling */
.error-message {
  color: #d32f2f;
  font-size: 0.875rem;
  margin: 0.5rem 0 0;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.error-message::before {
  content: "⚠";
  font-size: 1rem;
}

/* Consent checkbox error */
.consent input[type="checkbox"].error {
  outline: 2px solid #d32f2f;
  outline-offset: 2px;
}

/* Form-level messages */
.form-message {
  padding: 1rem 1.25rem;
  border-radius: 12px;
  margin: 0 0 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-message-error {
  background: rgba(211, 47, 47, 0.1);
  border: 1px solid rgba(211, 47, 47, 0.3);
  color: #c62828;
}

.form-message-error::before {
  content: "⚠";
  font-size: 1.5rem;
}

.form-message-success {
  background: rgba(46, 125, 50, 0.1);
  border: 1px solid rgba(46, 125, 50, 0.3);
  color: #2e7d32;
}

.form-message-success::before {
  content: "✓";
  font-size: 1.5rem;
}

/* Loading state for submit button */
.btn.loading {
  opacity: 0.7;
  cursor: not-allowed;
  position: relative;
}

.btn.loading::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: translateY(-50%) rotate(360deg); }
}

/* Focus visible improvements */
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(46, 111, 143, 0.25);
  outline-offset: 2px;
}

/* Smooth transitions */
.field input,
.field textarea,
.field select {
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

/* ===================================
   WhatsApp & Contact Options
   =================================== */

/* WhatsApp nav link: subtle and consistent */
.nav-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.6);
}

.nav-whatsapp:hover {
  background: rgba(255,255,255,0.9);
}

.wa-icon svg {
  display: block;
  opacity: 0.85;
}

/* Contact options card */
.contact-options {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.contact-options h2 {
  margin-bottom: 8px;
  font-size: 1.5rem;
}

.contact-options .muted {
  margin-top: 0;
  margin-bottom: 20px;
  opacity: 0.85;
  font-size: 1rem;
}

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.contact-options .fineprint {
  margin-top: 16px;
  margin-bottom: 0;
  font-size: 0.95rem;
  opacity: 0.75;
}

/* Sidebar contact actions */
.support-card .contact-actions {
  margin: 16px 0;
}

.support-card .contact-actions .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.support-card .fineprint {
  margin-top: 12px;
  margin-bottom: 0;
  font-size: 0.9rem;
  opacity: 0.75;
}

/* WhatsApp icon link in sidebar */
.whatsapp-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  margin: 20px 0;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  transition: all 200ms ease;
}

.whatsapp-link:hover {
  background: rgba(37, 211, 102, 0.05);
  transform: translateY(-2px);
}

.whatsapp-link svg {
  transition: transform 200ms ease;
}

.whatsapp-link:hover svg {
  transform: scale(1.1);
}

.whatsapp-link span {
  font-weight: 600;
  font-size: 1rem;
  color: #25D366;
}

/* Mobile: stack nicely */
@media (max-width: 720px) {
  .contact-actions a {
    width: 100%;
    justify-content: center;
  }

  .nav-whatsapp {
    padding: 8px 10px;
    font-size: 0.9rem;
  }

  .contact-options h2 {
    font-size: 1.25rem;
  }
}

/* ===================================
   Planning Page Hero
   =================================== */

.planning-hero {
  position: relative;
  width: 100%;
  height: 400px;
  margin: 0 0 3rem;
  overflow: hidden;
  border-radius: 16px;
}

.planning-hero picture {
  display: block;
  width: 100%;
  height: 100%;
}

.planning-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.planning-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
  color: white;
}

.planning-hero-content .kicker {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.planning-hero-content h1 {
  color: white;
  font-size: 2rem;
  margin: 0 0 0.75rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.planning-hero-content .subhead {
  color: rgba(255,255,255,0.95);
  font-size: 1.125rem;
  margin: 0;
  max-width: 600px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* Subtle form sections */
.form-section legend {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(0,0,0,0.5);
  margin-bottom: 1rem;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .planning-hero {
    height: 320px;
    margin: 0 0 2rem;
  }

  .planning-hero-content {
    padding: 1.5rem;
  }

  .planning-hero-content h1 {
    font-size: 1.5rem;
  }

  .planning-hero-content .subhead {
    font-size: 1rem;
  }
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-mark {
  width: 18px;
  height: 18px;
  opacity: 0.9;
}

/* Travel, thoughtfully */
.mindful-card {
  position: relative;
  overflow: hidden;
}

.mindful-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 400px at 15% 10%, rgba(255, 255, 255, 0.06), transparent 60%);
  pointer-events: none;
}

.mindful-list {
  margin: 0.75rem 0 1rem;
  padding-left: 1.1rem;
}

.mindful-list li {
  margin: 0.4rem 0;
  line-height: 1.5;
}