:root {
  --green-950: #0a1f18;
  --green-900: #0e2a20;
  --green-800: #14382b;
  --green-700: #1d4a39;
  --gold-500: #c9a24b;
  --gold-400: #d8b86a;
  --gold-300: #e6cf94;
  --ivory: #f7f3ea;
  --ivory-dim: #efe8d9;
  --ink: #1c2420;
  --ink-soft: #4c5a52;
  --white: #ffffff;
  --shadow-lg: 0 24px 60px rgba(10, 31, 24, 0.28);
  --shadow-sm: 0 8px 24px rgba(10, 31, 24, 0.14);
  --radius: 6px;
  --maxw: 1200px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-ui: "Jost", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-ui);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--green-900);
}

.eyebrow {
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-500);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before,
.eyebrow.lined::after {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold-500);
  display: inline-block;
}

.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 2px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--green-950);
  font-weight: 600;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(247, 243, 234, 0.55);
}
.btn-ghost:hover { background: rgba(247, 243, 234, 0.12); border-color: var(--ivory); }
.btn-outline-green {
  background: transparent;
  color: var(--green-800);
  border-color: var(--green-800);
}
.btn-outline-green:hover { background: var(--green-800); color: var(--ivory); }

.topbar {
  background: var(--green-950);
  color: var(--ivory-dim);
  font-size: 13px;
  letter-spacing: 0.05em;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 38px;
  gap: 16px;
}
.topbar a { color: var(--gold-300); text-decoration: none; }
.topbar .note { color: rgba(239, 232, 217, 0.68); font-size: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14, 42, 32, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 162, 75, 0.25);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  background: rgba(10, 31, 24, 0.97);
  box-shadow: 0 10px 30px rgba(10, 31, 24, 0.18);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; min-width: 0; }
.brand-logo {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.brand-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.18));
}
.brand-mark {
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold-400);
  border-radius: 50%;
}
.brand-mark {
  display: grid;
  place-items: center;
  color: var(--gold-300);
  font-family: var(--font-display);
  font-size: 20px;
  flex: 0 0 auto;
}
.brand-name {
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.1;
}
.brand-name small {
  display: block;
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--gold-300);
  margin-top: 4px;
  white-space: nowrap;
}
.main-nav { display: flex; align-items: center; gap: 22px; }
.main-nav .menu { display: flex; align-items: center; gap: 24px; list-style: none; margin: 0; padding: 0; }
.main-nav a {
  color: var(--ivory-dim);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.main-nav a:hover,
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a { color: var(--gold-300); border-color: var(--gold-400); }
.nav-cta { margin-left: 4px; padding: 12px 20px !important; }
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--gold-400);
  color: var(--gold-300);
  padding: 9px 12px;
  border-radius: 3px;
  font: inherit;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--ivory);
}
.hero-bg {
  position: absolute;
  inset: -12% 0;
  background:
    radial-gradient(ellipse at 75% 30%, rgba(216, 184, 106, 0.25), transparent 50%),
    linear-gradient(180deg, rgba(10, 31, 24, 0.55) 0%, rgba(10, 31, 24, 0.25) 45%, rgba(10, 31, 24, 0.82) 100%),
    linear-gradient(160deg, #1d4a39 0%, #0e2a20 38%, #2c5a45 62%, #0a1f18 100%);
  will-change: transform;
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 38%;
  background:
    repeating-linear-gradient(178deg, rgba(216, 184, 106, 0.07) 0 2px, transparent 2px 9px),
    linear-gradient(180deg, transparent, rgba(8, 26, 20, 0.86));
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.6fr);
  gap: 48px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 88px;
}
.hero h1 {
  color: var(--ivory);
  font-size: clamp(38px, 5.2vw, 64px);
  margin: 22px 0 18px;
  max-width: 900px;
}
.hero h1 em { font-style: italic; color: var(--gold-300); }
.lead,
.hero p.lead { max-width: 560px; color: rgba(247, 243, 234, 0.86); font-size: 17px; }
.hero-ctas { margin-top: 34px; display: flex; gap: 16px; flex-wrap: wrap; }
.hero-card,
.journey-sidebar {
  background: rgba(10, 31, 24, 0.74);
  border: 1px solid rgba(201, 162, 75, 0.35);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-lg);
}
.hero-card h2,
.journey-sidebar h2 { color: var(--gold-300); font-size: 22px; margin: 0 0 16px; }
.hero-card .office { padding: 12px 0; border-bottom: 1px solid rgba(247, 243, 234, 0.12); }
.hero-card .office:last-of-type { border-bottom: 0; }
.hero-card .office b { display: block; color: var(--ivory); font-weight: 500; letter-spacing: 0.08em; font-size: 13px; text-transform: uppercase; }
.hero-card .office a { color: var(--gold-300); text-decoration: none; font-size: 17px; }
.wa {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1d8a5c;
  color: var(--white);
  text-decoration: none;
  padding: 12px;
  border-radius: 4px;
  font-size: 14px;
  letter-spacing: 0.08em;
}

.section { padding: 88px 0; }
.section.tinted { background: var(--ivory-dim); }
.section-head { text-align: center; margin-bottom: 48px; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); margin: 14px 0 0; }
.section-head p { color: var(--ink-soft); max-width: 660px; margin: 12px auto 0; }
.more-link { margin-top: 40px; }

.card-row,
.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}
.pkg-grid.enhanced { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.pkg-grid.short-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.content-grid > .pagination { grid-column: 1 / -1; }
.t-card,
.pkg-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  color: inherit;
  position: relative;
}
.t-card:hover,
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.t-card a,
.pkg-card a { color: inherit; text-decoration: none; display: flex; flex-direction: column; height: 100%; }
.t-media {
  min-height: 190px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(140deg, #2c5a45, #0e2a20 70%);
}
.t-media.has-image { background: var(--green-900); }
.t-media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.pkg-card .t-media { min-height: 245px; }
.packages-hero {
  background-size: cover;
  background-position: center;
}
.t-card:hover img,
.pkg-card:hover img { transform: scale(1.035); }
.t-media .ph-label {
  position: absolute;
  bottom: 10px;
  right: 12px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}
.t-media .glyph {
  font-size: 18px;
  color: rgba(247, 243, 234, 0.9);
  font-family: var(--font-display);
  text-align: center;
  padding: 20px;
}
.t-body,
.pkg-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.t-body h2,
.t-body h3,
.pkg-body h2 { font-size: 24px; margin: 0 0 8px; }
.t-body p,
.pkg-body p { color: var(--ink-soft); font-size: 14.5px; flex: 1; margin: 0 0 16px; }
.card-meta,
.pkg-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 12px;
}
.t-link {
  margin-top: auto;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 600;
}
.t-link::after { content: " ->"; }
.pkg-route { font-size: 13px; color: var(--ink-soft); letter-spacing: 0.04em; }
.pkg-price { font-family: var(--font-display); font-style: italic; font-size: 18px; color: var(--green-800); margin-bottom: 14px; }

.ph-1 { background: linear-gradient(140deg, #2c5a45, #0e2a20 70%); }
.ph-2 { background: linear-gradient(150deg, #6d4f2a, #2a1d10 75%); }
.ph-3 { background: linear-gradient(135deg, #3f7257, #15302a 70%); }
.ph-4 { background: linear-gradient(155deg, #2a6f80, #0e2a35 75%); }
.ph-5 { background: linear-gradient(140deg, #555a2e, #1c2410 75%); }
.ph-6 { background: linear-gradient(150deg, #7a3b3b, #2a1212 75%); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.panel {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 360px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  color: var(--ivory);
  box-shadow: var(--shadow-sm);
  background: linear-gradient(140deg, #2c5a45, #0e2a20 70%);
  background-size: cover;
  background-position: center;
}
.panel-journeys { background: linear-gradient(150deg, #6d4f2a, #2a1d10 75%); }
.panel::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 28%, rgba(8, 24, 18, 0.86)); }
.panel > * { position: relative; }
.panel h2 { color: var(--ivory); font-size: 32px; margin: 0 0 10px; }
.panel p { color: rgba(247, 243, 234, 0.86); max-width: 420px; margin: 0 0 20px; }
.panel .btn { align-self: flex-start; }

.home-hero .hero-copy { max-width: 760px; }
.home-hero-card p {
  color: rgba(247, 243, 234, 0.76);
  margin: -6px 0 12px;
}
.home-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.home-stat-row span {
  background: rgba(10, 31, 24, 0.58);
  border: 1px solid rgba(201, 162, 75, 0.32);
  border-radius: 999px;
  color: rgba(247, 243, 234, 0.86);
  font-size: 12px;
  letter-spacing: 0.12em;
  padding: 9px 14px;
  text-transform: uppercase;
}
.home-stat-row b { color: var(--gold-300); font-weight: 600; }
.home-icon,
.card-icon,
.step-icon,
.panel-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(201, 162, 75, 0.62);
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  color: var(--gold-300);
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1;
  background: rgba(10, 31, 24, 0.56);
}
.home-icon::before,
.card-icon::before,
.step-icon::before,
.panel-icon::before { content: "◇"; }
.icon-water::before { content: "≋"; }
.icon-boat::before { content: "◠"; }
.icon-hills::before { content: "▲"; }
.icon-leaf::before { content: "✦"; }
.icon-heart::before { content: "♥"; }
.icon-wild::before { content: "◌"; }
.icon-villa::before { content: "□"; }
.icon-phone::before { content: "☎"; }
.icon-concierge::before { content: "✓"; }
.icon-compass::before { content: "⌖"; }
.icon-map::before { content: "◆"; }
.icon-shield::before { content: "◈"; }
.icon-spark::before { content: "✧"; }
.journey-ribbon {
  background: var(--green-950);
  border-top: 1px solid rgba(201, 162, 75, 0.24);
  border-bottom: 1px solid rgba(201, 162, 75, 0.24);
  padding: 18px 0;
}
.journey-ribbon .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.journey-ribbon span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(247, 243, 234, 0.84);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.journey-ribbon .home-icon {
  width: 30px;
  height: 30px;
  font-size: 15px;
  background: rgba(247, 243, 234, 0.06);
}
.card-icon {
  position: absolute;
  top: 166px;
  right: 18px;
  z-index: 2;
  background: var(--green-950);
  box-shadow: var(--shadow-sm);
}
.home-steps .step {
  position: relative;
  padding-top: 82px;
}
.home-steps .step-icon {
  position: absolute;
  top: 28px;
  right: 28px;
  background: var(--green-900);
}
.panel-icon {
  margin-bottom: 16px;
  background: rgba(10, 31, 24, 0.72);
}
.home-luxury-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 24px;
}
.lux-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  color: inherit;
  display: grid;
  grid-column: span 4;
  grid-template-rows: 56% 44%;
  min-height: 100%;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.lux-card.large {
  color: var(--ivory);
  grid-column: span 8;
  grid-row: span 2;
  grid-template-rows: 1fr;
  min-height: 0;
}
.lux-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.lux-media {
  background: var(--green-900);
  overflow: hidden;
}
.lux-card.large .lux-media {
  position: absolute;
  inset: 0;
}
.lux-card.large::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(216, 184, 106, 0.2), transparent 36%),
    linear-gradient(180deg, rgba(10, 31, 24, 0.08) 20%, rgba(10, 31, 24, 0.9) 100%);
  z-index: 1;
}
.lux-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.lux-card:hover .lux-media img { transform: scale(1.04); }
.lux-body {
  display: flex;
  flex-direction: column;
  padding: 28px;
}
.lux-card.large .lux-body {
  justify-content: flex-end;
  max-width: 520px;
  position: relative;
  z-index: 2;
}
.lux-body span,
.destination-tile span {
  color: var(--gold-500);
  font-size: 11px;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.lux-body h3 {
  font-size: 30px;
  margin-bottom: 10px;
}
.lux-card.large .lux-body h3 {
  color: var(--ivory);
  font-size: clamp(34px, 4vw, 48px);
}
.lux-body p {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 18px;
}
.lux-card.large .lux-body p {
  color: rgba(247, 243, 234, 0.84);
  font-size: 16px;
}
.lux-body b {
  color: var(--gold-500);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-top: auto;
  text-transform: uppercase;
}
.lux-body b::after { content: " ->"; }
.home-destination-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 250px;
  gap: 22px;
}
.destination-tile {
  background: var(--green-900);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  color: var(--ivory);
  min-height: 100%;
  overflow: hidden;
  position: relative;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.destination-tile.tall { grid-row: span 2; }
.destination-tile.wide { grid-column: span 2; }
.destination-tile:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.destination-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.destination-tile:hover img { transform: scale(1.04); }
.destination-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 31, 24, 0.05) 15%, rgba(10, 31, 24, 0.88) 100%);
}
.destination-tile div {
  bottom: 0;
  left: 0;
  padding: 26px;
  position: absolute;
  right: 0;
  z-index: 2;
}
.destination-tile h3 {
  color: var(--ivory);
  font-size: 32px;
  margin-bottom: 8px;
}
.destination-tile p {
  color: rgba(247, 243, 234, 0.82);
  font-size: 14.5px;
}
.destination-tile.extension::after {
  background: linear-gradient(180deg, rgba(63, 27, 24, 0.08) 15%, rgba(43, 18, 16, 0.9) 100%);
}

.trust-bar { background: var(--green-950); padding: 44px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 28px; text-align: center; }
.trust-item .ic,
.trust-item .home-icon {
  margin: 0 auto 12px;
  background: rgba(247, 243, 234, 0.06);
}
.trust-item .ic { font-family: var(--font-display); font-size: 28px; color: var(--gold-400); margin-bottom: 10px; }
.trust-item b { color: var(--ivory); display: block; font-weight: 500; letter-spacing: 0.06em; font-size: 14px; }
.trust-item span { color: rgba(239, 232, 217, 0.68); font-size: 12.5px; }

.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.quote {
  background: var(--white);
  border-top: 2px solid var(--gold-400);
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.quote p { font-family: var(--font-display); font-size: 19px; font-style: italic; color: var(--green-800); }
.quote footer { margin-top: 16px; font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
.stars { color: var(--gold-500); letter-spacing: 3px; margin-bottom: 12px; }

.page-hero {
  background: linear-gradient(180deg, rgba(10, 31, 24, 0.78), rgba(10, 31, 24, 0.5)), linear-gradient(150deg, #1d4a39, #0a1f18 80%);
  color: var(--ivory);
  padding: 110px 0 72px;
  text-align: center;
}
.page-hero h1 { color: var(--ivory); font-size: clamp(34px, 4.6vw, 54px); margin: 16px auto 0; max-width: 900px; }
.page-hero p { color: rgba(247, 243, 234, 0.82); max-width: 700px; margin: 14px auto 0; }
.destinations-hero {
  background-size: cover;
  background-position: center;
}
.about-hero {
  background-size: cover;
  background-position: center;
}
.about-intro .split {
  align-items: center;
}
.about-intro h2,
.about-service-map h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin: 14px 0 16px;
}
.about-intro p,
.about-service-map p {
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.about-signature {
  background: var(--green-950);
  color: var(--ivory);
  border-radius: var(--radius);
  padding: 38px;
  border: 1px solid rgba(201, 162, 75, 0.34);
  box-shadow: var(--shadow-lg);
}
.about-signature span {
  display: block;
  color: var(--gold-300);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.about-signature p {
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 30px;
  font-style: italic;
  line-height: 1.2;
  margin-bottom: 22px;
}
.about-signature b {
  color: rgba(247, 243, 234, 0.78);
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.quality-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 30px;
  border-top: 2px solid var(--gold-400);
}
.quality-card span {
  color: var(--gold-500);
  font-family: var(--font-display);
  font-size: 34px;
  font-style: italic;
  line-height: 1;
}
.quality-card h3 {
  font-size: 24px;
  margin: 18px 0 10px;
}
.quality-card p {
  color: var(--ink-soft);
  font-size: 14.5px;
}
.about-service-map {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) 1fr;
  gap: 42px;
  align-items: center;
}
.about-beliefs {
  background: linear-gradient(135deg, var(--green-900), var(--green-950));
}
.belief-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.belief-grid div {
  border-top: 1px solid rgba(201, 162, 75, 0.5);
  padding-top: 22px;
}
.belief-grid b {
  color: var(--gold-300);
  display: block;
  font-family: var(--font-display);
  font-size: 25px;
  margin-bottom: 10px;
}
.belief-grid p {
  color: rgba(247, 243, 234, 0.76);
  font-size: 14.5px;
}
.concierge-hero {
  background-size: cover;
  background-position: center;
}
.concierge-lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 42px;
  align-items: center;
}
.concierge-lead h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin: 14px 0 16px;
}
.concierge-lead p {
  color: var(--ink-soft);
  max-width: 720px;
}
.concierge-note,
.concierge-sidebar {
  background: var(--green-950);
  color: var(--ivory);
  border: 1px solid rgba(201, 162, 75, 0.34);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 32px;
}
.concierge-note span,
.concierge-sidebar span {
  color: var(--gold-300);
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.concierge-note b {
  color: var(--ivory);
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 12px;
}
.concierge-note p,
.concierge-sidebar li,
.concierge-contact-card p {
  color: rgba(247, 243, 234, 0.78);
}
.steps.concierge-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.concierge-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 34px;
  align-items: start;
}
.concierge-form {
  max-width: none;
}
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.concierge-sidebar {
  position: sticky;
  top: 110px;
}
.concierge-sidebar ul {
  display: grid;
  gap: 13px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.concierge-sidebar li {
  border-bottom: 1px solid rgba(247, 243, 234, 0.1);
  padding-bottom: 12px;
}
.concierge-contact-card {
  border-top: 1px solid rgba(201, 162, 75, 0.42);
  margin-top: 24px;
  padding-top: 22px;
}
.concierge-contact-card b {
  color: var(--gold-300);
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 8px;
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.support-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 30px;
  border-top: 2px solid var(--gold-400);
}
.support-card span {
  color: var(--gold-500);
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.support-card h3 {
  font-size: 26px;
  margin-bottom: 10px;
}
.support-card p {
  color: var(--ink-soft);
  font-size: 14.5px;
  margin-bottom: 18px;
}
.support-card a {
  color: var(--green-800);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration-color: var(--gold-500);
}
.destinations-intro { padding-bottom: 52px; }
.route-card {
  background: var(--green-950);
  color: var(--ivory);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201, 162, 75, 0.32);
}
.route-card span {
  display: block;
  color: var(--gold-300);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.route-card ol {
  list-style: none;
  display: grid;
  gap: 12px;
  counter-reset: route;
  margin: 0;
  padding: 0;
}
.route-card li {
  counter-increment: route;
  display: flex;
  gap: 12px;
  align-items: center;
  color: rgba(247, 243, 234, 0.86);
}
.route-card li::before {
  content: counter(route, decimal-leading-zero);
  font-family: var(--font-display);
  color: var(--gold-300);
  font-size: 22px;
}
.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.destination-grid.compact { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.destination-card {
  display: grid;
  grid-template-rows: 260px 1fr;
  min-height: 100%;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.destination-card.large {
  grid-column: span 2;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: 1fr;
  min-height: 390px;
}
.destination-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.destination-media { overflow: hidden; background: var(--green-900); }
.destination-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.destination-card:hover .destination-media img { transform: scale(1.04); }
.destination-copy { padding: 28px; display: flex; flex-direction: column; }
.destination-copy span {
  color: var(--gold-500);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.destination-copy h3 { font-size: 30px; margin: 0 0 10px; }
.destination-copy p { color: var(--ink-soft); font-size: 15px; margin: 0 0 18px; }
.destination-copy b {
  margin-top: auto;
  color: var(--green-800);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.experiences-hero {
  background-size: cover;
  background-position: center;
}
.experience-intro { padding-bottom: 52px; }
.experience-selector {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border-top: 2px solid var(--gold-400);
  overflow: hidden;
}
.experience-selector a {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px 24px;
  text-decoration: none;
  border-bottom: 1px solid rgba(28, 36, 32, 0.08);
}
.experience-selector a:last-child { border-bottom: 0; }
.experience-selector span {
  color: var(--gold-500);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.experience-selector b {
  color: var(--green-800);
  font-family: var(--font-display);
  font-size: 23px;
}
.experience-selector a:hover { background: var(--ivory-dim); }
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.experience-card {
  display: grid;
  grid-template-rows: 260px 1fr;
  min-height: 100%;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.experience-card.large {
  grid-column: span 3;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: 1fr;
  min-height: 390px;
}
.experience-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.experience-media { overflow: hidden; background: var(--green-900); }
.experience-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.experience-card:hover .experience-media img { transform: scale(1.04); }
.experience-copy { padding: 28px; display: flex; flex-direction: column; }
.experience-copy span {
  color: var(--gold-500);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.experience-copy h3 { font-size: 31px; margin: 0 0 10px; }
.experience-copy p { color: var(--ink-soft); font-size: 15px; margin: 0 0 18px; }
.experience-copy b {
  margin-top: auto;
  color: var(--green-800);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.hero-image-wrap { margin-top: -38px; position: relative; z-index: 2; }
.single-featured-image { width: 100%; max-height: 620px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.single-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 52px;
  align-items: start;
}
.prose { max-width: 780px; }
.prose h2 { font-size: 32px; margin: 44px 0 16px; }
.prose h3 { font-size: 25px; margin: 32px 0 12px; }
.prose p,
.prose li { color: var(--ink-soft); font-size: 16.5px; }
.prose p { margin: 0 0 18px; }
.prose a { color: var(--green-800); text-decoration-color: var(--gold-500); }
.journey-sidebar {
  position: sticky;
  top: 110px;
  color: var(--ivory);
}
.detail-row { border-top: 1px solid rgba(247, 243, 234, 0.14); padding: 14px 0; }
.detail-row span { display: block; color: rgba(239, 232, 217, 0.7); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; }
.detail-row b { color: var(--ivory); font-weight: 500; }

.faq { max-width: 780px; margin: 0 auto; }
.faq details {
  background: var(--white);
  border: 1px solid rgba(28, 36, 32, 0.08);
  border-radius: var(--radius);
  margin-bottom: 12px;
  padding: 18px 22px;
}
.faq summary { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--green-800); cursor: pointer; }
.faq details p { margin-top: 12px; color: var(--ink-soft); }

.journal-hero {
  background-size: cover;
  background-position: center;
}
.journal-intro .split {
  align-items: center;
}
.journal-intro h2 {
  font-size: clamp(30px, 4vw, 46px);
  margin: 14px 0 16px;
}
.journal-intro p {
  color: var(--ink-soft);
  max-width: 640px;
  margin-bottom: 16px;
}
.journal-planner,
.seo-list {
  background: var(--green-950);
  color: var(--ivory);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(201, 162, 75, 0.32);
}
.journal-planner span {
  display: block;
  color: var(--gold-300);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.journal-planner ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px;
}
.journal-planner li {
  color: rgba(247, 243, 234, 0.86);
  border-bottom: 1px solid rgba(247, 243, 234, 0.1);
  padding-bottom: 11px;
}
.journal-planner li:last-child { border-bottom: 0; padding-bottom: 0; }
.journal-topic-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.journal-topic-strip a {
  background: var(--white);
  border: 1px solid rgba(20, 56, 43, 0.14);
  border-radius: 999px;
  color: var(--green-800);
  font-size: 12px;
  letter-spacing: 0.14em;
  padding: 11px 17px;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.journal-topic-strip a:hover {
  border-color: var(--gold-500);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.journal-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.journal-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.journal-card a {
  color: inherit;
  display: grid;
  grid-template-rows: 250px 1fr;
  height: 100%;
  text-decoration: none;
}
.journal-card-large {
  grid-column: span 2;
}
.journal-card-large a {
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-rows: 1fr;
  min-height: 390px;
}
.journal-media {
  background: var(--green-900);
  overflow: hidden;
}
.journal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.journal-card:hover .journal-media img {
  transform: scale(1.04);
}
.journal-copy {
  display: flex;
  flex-direction: column;
  padding: 28px;
}
.journal-copy span {
  color: var(--gold-500);
  font-size: 11px;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.journal-copy h2,
.journal-copy h3 {
  margin: 0 0 10px;
}
.journal-copy h2 { font-size: 34px; }
.journal-copy h3 { font-size: 26px; }
.journal-copy p {
  color: var(--ink-soft);
  font-size: 15px;
  margin: 0 0 18px;
}
.journal-copy b {
  color: var(--green-800);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  margin-top: auto;
  text-transform: uppercase;
}
.seo-list {
  background: var(--white);
  color: var(--ink);
}
.seo-list p {
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.seo-list p:last-child { margin-bottom: 0; }
.seo-list b { color: var(--green-800); }

.cta-band { background: linear-gradient(135deg, var(--green-800), var(--green-950)); text-align: center; padding: 76px 0; }
.cta-band h2 { color: var(--ivory); font-size: clamp(28px, 3.6vw, 40px); margin: 12px 0 0; }
.cta-band p { color: rgba(247, 243, 234, 0.78); margin: 14px auto 28px; max-width: 580px; }
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  background: #1d8a5c;
  color: var(--white);
  text-decoration: none;
  padding: 13px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow-lg);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer { background: var(--green-950); color: rgba(239, 232, 217, 0.76); padding: 64px 0 28px; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 44px; }
.site-footer h4 { color: var(--gold-300); font-family: var(--font-ui); font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; margin: 0 0 16px; }
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: rgba(239, 232, 217, 0.78); text-decoration: none; }
.site-footer a:hover { color: var(--gold-300); }
.footer-bottom { border-top: 1px solid rgba(239, 232, 217, 0.12); padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12.5px; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }

.pagination { margin-top: 30px; text-align: center; }
.pagination .nav-links { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; }
.pagination a,
.pagination span {
  border: 1px solid rgba(20, 56, 43, 0.18);
  padding: 8px 12px;
  text-decoration: none;
  color: var(--green-800);
  background: var(--white);
}

@media (max-width: 1080px) {
  .main-nav .menu { gap: 16px; }
  .main-nav a { letter-spacing: 0.1em; }
}

@media (max-width: 960px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-card { max-width: 460px; }
  .split,
  .single-layout { grid-template-columns: 1fr; }
  .quality-grid,
  .belief-grid { grid-template-columns: 1fr 1fr; }
  .about-service-map { grid-template-columns: 1fr; }
  .concierge-lead,
  .concierge-form-layout { grid-template-columns: 1fr; }
  .concierge-sidebar { position: static; }
  .concierge-steps,
  .support-grid { grid-template-columns: 1fr 1fr; }
  .home-luxury-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: auto; }
  .lux-card,
  .lux-card.large { grid-column: span 1; grid-row: span 1; grid-template-rows: 260px 1fr; min-height: 0; }
  .lux-card.large .lux-media { position: static; }
  .lux-card.large::after { display: none; }
  .lux-card.large .lux-body h3 { color: var(--green-900); font-size: 30px; }
  .lux-card.large .lux-body p { color: var(--ink-soft); font-size: 15px; }
  .home-destination-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 280px; }
  .destination-tile.tall,
  .destination-tile.wide { grid-column: span 1; grid-row: span 1; }
  .destination-grid,
  .destination-grid.compact { grid-template-columns: 1fr 1fr; }
  .destination-card.large { grid-column: span 2; grid-template-columns: 1fr; grid-template-rows: 280px 1fr; min-height: 0; }
  .experience-grid { grid-template-columns: 1fr 1fr; }
  .experience-card.large { grid-column: span 2; grid-template-columns: 1fr; grid-template-rows: 280px 1fr; min-height: 0; }
  .journal-grid { grid-template-columns: 1fr 1fr; }
  .journal-card-large { grid-column: span 2; }
  .journal-card-large a { grid-template-columns: 1fr; grid-template-rows: 280px 1fr; min-height: 0; }
  .pkg-grid.enhanced,
  .pkg-grid.short-grid { grid-template-columns: 1fr 1fr; }
  .journey-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--green-950);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid rgba(201, 162, 75, 0.25);
  }
  .main-nav.open { display: flex; }
  .main-nav .menu { flex-direction: column; align-items: stretch; gap: 14px; }
  .nav-toggle { display: block; }
  .nav-cta { align-self: flex-start; margin-left: 0; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .topbar .container { align-items: flex-start; padding-top: 8px; padding-bottom: 8px; }
  .topbar .note { display: none; }
  .brand-logo,
  .brand-logo img { width: 44px; height: 44px; }
  .home-stat-row { gap: 8px; }
  .home-stat-row span { width: 100%; text-align: center; }
  .journey-ribbon .container { justify-content: flex-start; }
  .journey-ribbon span { width: calc(50% - 8px); }
  .card-icon { top: 172px; }
  .home-luxury-grid,
  .home-destination-grid { grid-template-columns: 1fr; }
  .lux-card,
  .lux-card.large { grid-column: span 1; grid-template-columns: 1fr; grid-template-rows: 240px 1fr; }
  .home-destination-grid { grid-auto-rows: 300px; }
  .brand-name { font-size: 16px; letter-spacing: 0.08em; }
  .brand-name small { letter-spacing: 0.16em; }
  .hero { min-height: auto; }
  .hero .container { padding-top: 54px; padding-bottom: 64px; gap: 30px; }
  .hero h1 { font-size: 40px; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  .section { padding: 64px 0; }
  .quality-grid,
  .belief-grid { grid-template-columns: 1fr; }
  .about-signature { padding: 28px; }
  .about-signature p { font-size: 25px; }
  .concierge-steps,
  .support-grid { grid-template-columns: 1fr; }
  .concierge-note,
  .concierge-sidebar { padding: 26px; }
  .form-actions .btn { width: 100%; text-align: center; }
  .card-row,
  .content-grid,
  .quote-grid { grid-template-columns: 1fr; }
  .destination-grid,
  .destination-grid.compact { grid-template-columns: 1fr; }
  .destination-card.large { grid-column: span 1; }
  .experience-grid { grid-template-columns: 1fr; }
  .experience-card.large { grid-column: span 1; }
  .journal-grid { grid-template-columns: 1fr; }
  .journal-card-large { grid-column: span 1; }
  .journal-card a,
  .journal-card-large a { grid-template-columns: 1fr; grid-template-rows: 230px 1fr; }
  .journal-copy h2 { font-size: 28px; }
  .experience-selector a { grid-template-columns: 1fr; gap: 4px; }
  .pkg-grid.enhanced,
  .pkg-grid.short-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: block; }
  .whatsapp-float { left: 18px; right: 18px; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-bg { transform: none !important; }
}


/* ===== Refinements 2026-06-17 ===== */
/* Slimmer header / menu bar */
.site-header .container { min-height: 54px; }
.brand-logo,
.brand-logo img,
.brand-logo .custom-logo { width: 38px; height: 38px; }
.brand-name { font-size: 16px; }
.brand-name small { font-size: 8px; letter-spacing: 0.2em; margin-top: 2px; }

/* Curated Luxury Journeys grid — stop tile text clipping (desktop) */
@media (min-width: 961px) {
  .home-luxury-grid { grid-auto-rows: 290px; }
  .lux-card { grid-template-rows: 45% 55%; }
  .lux-body { padding: 18px 24px; }
  .lux-body h3 { font-size: 22px; line-height: 1.15; margin-bottom: 6px; }
  .lux-body p { font-size: 14px; line-height: 1.4; margin-bottom: 12px; }
}


/* ===== Polish 2026-06-17 : hero text legibility over imagery ===== */
.hero h1, .hero .lead,
.page-hero h1, .page-hero p { text-shadow: 0 1px 10px rgba(8, 24, 18, 0.32); }


/* ===== Slim header v2 (sleek menu bar; pins WP custom-logo) ===== */
.site-header .container { min-height: 58px !important; padding-top: 6px; padding-bottom: 6px; }
.brand { gap: 12px; align-items: center; }
.brand-logo, .brand-logo img,
.custom-logo-link, .custom-logo-link img, .custom-logo {
  width: 46px !important; height: 46px !important; max-height: 46px !important; object-fit: contain;
}
.brand-name { font-size: 15px !important; line-height: 1.05; }
.brand-name small { font-size: 8px !important; letter-spacing: 0.18em; }


/* ===== Lux small cards v3 : small luxury cards show full text incl. Discover (large card unchanged) ===== */
@media (min-width: 961px) {
  .lux-card:not(.large) { grid-template-rows: 38% 62%; }
  .lux-card:not(.large) .lux-body { padding: 16px 20px; }
  .lux-card:not(.large) .lux-body h3 { font-size: 19px; line-height: 1.15; margin-bottom: 5px; }
  .lux-card:not(.large) .lux-body p { font-size: 13.5px; line-height: 1.35; margin-bottom: 8px; }
  .lux-card:not(.large) .lux-body b { margin-top: 4px; }
}


/* ===== Packages fix v1 ===== */
/* Honeymoon card: portrait image -> show the dinner table, not the sea band */
.t-media-package_honeymoon img { object-position: center 80%; }
/* Clearer Enquire CTA on package cards */
.pkg-card .pkg-body .btn { display: block; width: 100%; text-align: center; }


/* ===== Author feature v1 : journal 'Meet the author' card ===== */
.author-feature .author-card { max-width: 760px; margin: 0 auto; }
.author-feature .author-card img { width: 100%; height: auto; display: block; border-radius: 16px; box-shadow: 0 18px 50px rgba(10,31,24,.14); }


/* ===== Footer explore v1 : Journal / About links in footer brand column ===== */
.footer-explore { margin-top: 16px; font-size: 14px; display: flex; gap: 10px; align-items: center; }
.footer-explore a { font-family: var(--font-ui); }
.footer-explore span { opacity: .5; }


/* ===== Concierge form v1 : full styling for the 'Tell Us About Your Trip' enquiry form ===== */
.form-card { background: #fff; border: 1px solid rgba(20,56,43,.1); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 40px; }
.concierge-form .section-head { text-align: left; max-width: none; margin: 0 0 26px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-ui); font-size: 12px; letter-spacing: .07em; text-transform: uppercase; color: var(--ink-soft); font-weight: 500; }
.field input, .field select, .field textarea { font-family: var(--font-ui); font-size: 15px; color: var(--ink); background: var(--ivory); border: 1px solid rgba(20,56,43,.18); border-radius: 8px; padding: 12px 14px; width: 100%; transition: border-color .15s, box-shadow .15s, background .15s; }
.field input::placeholder, .field textarea::placeholder { color: #9aa69f; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--green-700); background: #fff; box-shadow: 0 0 0 3px rgba(29,74,57,.13); }
.field textarea { resize: vertical; min-height: 122px; line-height: 1.5; }
.field select { appearance: none; -webkit-appearance: none; cursor: pointer; padding-right: 38px; background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%231d4a39' stroke-width='1.6' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.checks { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 10px; margin-top: 2px; }
.checks label { display: flex; align-items: center; gap: 9px; padding: 11px 14px; border: 1px solid rgba(20,56,43,.18); border-radius: 8px; background: var(--ivory); cursor: pointer; font-family: var(--font-ui); font-size: 14px; color: var(--ink); transition: border-color .15s, background .15s, box-shadow .15s; }
.checks label:hover { border-color: var(--gold-500); }
.checks input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--green-700); flex: none; margin: 0; }
.checks label:has(input:checked) { border-color: var(--green-700); background: #fff; box-shadow: var(--shadow-sm); font-weight: 500; }
.form-note { margin-top: 16px; font-size: 12.5px; line-height: 1.55; color: var(--ink-soft); }
@media (max-width: 720px) {
  .form-card { padding: 26px; }
  .form-grid { grid-template-columns: 1fr; }
  .checks { grid-template-columns: 1fr 1fr; }
}


/* ===== Events feature layout v1 : two equal hero features (Wellness + Weddings) + wide tiles ===== */
@media (min-width: 961px) {
  .home-luxury-grid .lux-card.large { grid-column: span 6; }
  .home-luxury-grid .lux-card.wide { grid-column: span 6; grid-row: span 1; }
}


/* ===== Experience tiles + single hero v1 ===== */
.experience-card { grid-template-rows: 300px 1fr; }
.experience-card.large { min-height: 420px; }
.single-hero.has-image { min-height: 420px; }


/* ===== Home middle tiles taller v1 : row 3 (Houseboats, Honeymoons, Munnar) slightly taller ===== */
@media (min-width: 961px) {
  .home-luxury-grid { grid-template-rows: 230px 230px 360px; }
}


/* ===== Enquiry form banner v1 ===== */
.sih-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-banner { border-radius: 8px; padding: 14px 18px; margin-bottom: 22px; font-family: var(--font-ui); font-size: 15px; line-height: 1.5; }
.form-banner.success { background: rgba(29,74,57,.10); border: 1px solid var(--green-700); color: var(--green-900); }
.form-banner.error { background: rgba(168,50,50,.08); border: 1px solid #b34a4a; color: #8a2f2f; }
