/* ==========================================================
   Devbhumi Tours Services — Global Stylesheet
   W3C compliant, mobile-first responsive design
   ========================================================== */

/* ── CSS CUSTOM PROPERTIES ── */
:root {
  --g1: #0a2614;
  --g2: #1a5c35;
  --g3: #2d8a4e;
  --g4: #5aad70;
  --g5: #a8d8b4;
  --g6: #d4ead8;
  --gold: #c8a94a;
  --gold2: #e8c96a;
  --cream: #f4f0e6;
  --stone: #6b6b5e;
  --char: #1c1c1c;
  --dark: #111;
  --white: #ffffff;
  --shadow-sm: 0 2px 12px rgba(0,0,0,.06);
  --shadow-md: 0 8px 28px rgba(0,0,0,.10);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.14);
  --radius: 0px;
  --transition: 0.25s ease;
}

/* ── RESET & BASE ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--char);
  overflow-x: hidden;
  line-height: 1.6;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--g3);
  outline-offset: 2px;
}

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

ul { list-style: none; }

/* ── SKIP LINK (Accessibility) ── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--g3);
  color: #fff;
  padding: .5rem 1rem;
  font-size: .85rem;
  z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* ── TOP BAR ── */
.topbar {
  background: var(--g1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5rem 3rem;
  font-size: .74rem;
  letter-spacing: .04em;
  flex-wrap: wrap;
  gap: .5rem;
}

.topbar-left {
  display: flex;
  gap: 1.8rem;
  align-items: center;
  flex-wrap: wrap;
}

.tb-item {
  display: flex;
  align-items: center;
  gap: .45rem;
  color: rgba(255,255,255,.72);
  font-size: .74rem;
}

.tb-item svg { flex-shrink: 0; }

.tb-item a {
  color: rgba(255,255,255,.72);
  transition: color var(--transition);
}

.tb-item a:hover { color: var(--gold2); }

.topbar-cta {
  background: var(--g3);
  color: #fff;
  padding: .4rem 1.3rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background var(--transition);
  white-space: nowrap;
  display: inline-block;
}

.topbar-cta:hover { background: var(--g4); }

/* ── NAVIGATION ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,.09);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  height: 72px;
  transition: box-shadow var(--transition);
}

.site-nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.10);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .85rem;
  flex-shrink: 0;
}

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

.nav-brand {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--g2);
  letter-spacing: .04em;
  line-height: 1.2;
}

.nav-sub {
  display: block;
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--stone);
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: .1rem;
  align-items: center;
}

.nav-links a {
  color: var(--char);
  font-size: .78rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  font-weight: 500;
  padding: .5rem .95rem;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: .9rem;
  right: .9rem;
  height: 2px;
  background: var(--g3);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--g3);
}

.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  transform: scaleX(1);
}

/* ═══════════════════════════════════════
   NAV DROPDOWN — About
═══════════════════════════════════════ */
.nav-has-drop {
  position: relative;
}

/* Trigger button looks exactly like a nav link */
.nav-drop-trigger {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--char);
  font-size: .78rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: inherit;
  padding: .5rem .95rem;
  position: relative;
  transition: color var(--transition);
}
.nav-drop-trigger:hover,
.nav-drop-trigger[aria-expanded="true"] {
  color: var(--g3);
}

/* Underline bar — mirrors nav link style */
.nav-drop-trigger::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: .9rem;
  right: .9rem;
  height: 2px;
  background: var(--g3);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.nav-drop-trigger[aria-expanded="true"]::after,
.nav-drop-trigger:hover::after {
  transform: scaleX(1);
}

/* Caret rotation */
.nav-drop-caret {
  transition: transform .25s ease;
  flex-shrink: 0;
  margin-top: 1px;
}
.nav-drop-trigger[aria-expanded="true"] .nav-drop-caret {
  transform: rotate(180deg);
}

/* Dropdown panel */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0,0,0,.13), 0 4px 12px rgba(0,0,0,.07);
  min-width: 240px;
  padding: .5rem;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
  z-index: 500;
}

/* Arrow pointer */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background: #fff;
  border-left: 1px solid rgba(0,0,0,.08);
  border-top: 1px solid rgba(0,0,0,.08);
  rotate: 45deg;
  border-radius: 2px 0 0 0;
}

/* Open state */
.nav-has-drop:hover .nav-dropdown,
.nav-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Dropdown items */
.nav-dropdown li { list-style: none; }
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .75rem 1rem;
  border-radius: 10px;
  color: var(--char);
  font-size: .82rem;
  text-decoration: none;
  transition: background .18s, color .18s;
  font-family: 'Jost', sans-serif;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
}
.nav-dropdown a:hover {
  background: rgba(45,138,78,.07);
  color: var(--g2);
}
.nav-dropdown a::after { display: none; } /* suppress underbar */

.nd-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  background: rgba(45,138,78,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nd-text {
  display: flex;
  flex-direction: column;
  gap: .1rem;
}
.nd-text strong {
  font-weight: 600;
  color: var(--g1);
  font-size: .83rem;
  display: block;
}
.nd-text span {
  font-size: .72rem;
  color: var(--stone);
  font-weight: 400;
}

/* Divider between items */
.nav-dropdown li + li {
  border-top: 1px solid rgba(0,0,0,.05);
  margin-top: .15rem;
  padding-top: .15rem;
}

/* ── MOBILE DROPDOWN GROUP ── */
.mob-drop-group {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.mob-drop-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  padding: .6rem 0;
  letter-spacing: .04em;
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-align: left;
}
.mob-drop-trigger:hover { color: var(--gold2); }

.mob-drop-caret {
  transition: transform .25s ease;
  flex-shrink: 0;
}
.mob-drop-trigger[aria-expanded="true"] .mob-drop-caret {
  transform: rotate(180deg);
}

.mob-drop-panel {
  display: flex;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1);
  background: rgba(255,255,255,.04);
  border-radius: 0 0 8px 8px;
}
.mob-drop-panel[aria-hidden="false"] {
  max-height: 300px;
}
.mob-drop-panel a {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .65rem 1.2rem;
  font-family: 'Jost', sans-serif;
  font-size: .92rem;
  color: rgba(255,255,255,.8);
  font-weight: 400;
  border-bottom: 1px solid rgba(255,255,255,.05);
  text-decoration: none;
  transition: color .2s, background .2s;
  letter-spacing: 0;
  text-transform: none;
}
.mob-drop-panel a:hover { color: var(--gold2); background: rgba(255,255,255,.04); }
.mob-drop-panel a:last-child { border-bottom: none; }

.nav-cta {
  background: var(--g3) !important;
  color: #fff !important;
  padding: .44rem 1.4rem !important;
  font-weight: 600 !important;
  border-radius: 50px !important;
  transition: background var(--transition) !important;
  position: relative !important;
  overflow: hidden !important;
}
.nav-cta span { position: relative; z-index: 1; }
.nav-cta::before {
  content: '' !important;
  position: absolute !important;
  top: 0 !important; left: -100% !important;
  width: 60% !important; height: 100% !important;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.28), transparent) !important;
  animation: navBtnShimmer 2.4s infinite !important;
}
@keyframes navBtnShimmer {
  0%   { left: -100%; }
  60%  { left: 140%; }
  100% { left: 140%; }
}
.nav-cta:hover { background: var(--g1) !important; }
.nav-cta::after { display: none !important; }
.topbar-cta { border-radius: 50px; }

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
  aria-label: "Toggle menu";
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--char);
  border-radius: 1px;
  transition: all .3s ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mob-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 190;
  background: var(--g1);
  padding: 5.5rem 2rem 2rem;
  flex-direction: column;
  gap: .35rem;
  overflow-y: auto;
}

.mob-menu[aria-hidden="false"] { display: flex; }

.mob-menu a {
  font-size: 1.1rem;
  color: rgba(255,255,255,.85);
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-weight: 500;
  transition: color var(--transition);
}

.mob-menu a:hover,
.mob-menu a[aria-current="page"] { color: var(--gold2); }

.mob-close {
  position: absolute;
  top: 1.2rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  padding: .3rem;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroZoom 10s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1); }
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5,15,8,.92) 0%,
    rgba(5,15,8,.45) 55%,
    rgba(5,15,8,.12) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 3rem 3.5rem;
  width: 100%;
}

.breadcrumb {
  display: flex;
  gap: .5rem;
  align-items: center;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--gold2); transition: color var(--transition); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,.3); }

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--gold2);
}

/* ── SECTION COMMON ── */
.section { padding: 6rem 3rem; }

.section--white   { background: #fff; }
.section--cream   { background: var(--cream); }
.section--dark    { background: var(--char); }
.section--forest  { background: var(--g1); }

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--g3);
  font-weight: 600;
  margin-bottom: .9rem;
}

.section-tag::before,
.section-tag::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--g4);
}

.section-tag--light { color: var(--gold); }
.section-tag--light::before,
.section-tag--light::after { background: var(--gold); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--g1);
}

.section-title em { font-style: italic; color: var(--g3); }
.section-title--light { color: #fff; }
.section-title--light em { color: var(--gold2); }

.section-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--stone);
  line-height: 1.8;
  margin-top: .8rem;
  max-width: 560px;
}

.section-lead--light { color: rgba(255,255,255,.7); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2.1rem;
  font-family: 'Jost', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

/* Rounded variant — add .btn-rounded to any .btn */
.btn-rounded { border-radius: 50px !important; }

.btn--green  { background: var(--g3); color: #fff; }
.btn--green:hover { background: var(--g1); }

.btn--dark   { background: var(--char); color: #fff; }
.btn--dark:hover { background: #333; }

.btn--gold   { background: var(--gold); color: var(--g1); font-weight: 700; }
.btn--gold:hover { background: var(--gold2); }

.btn--ghost  { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.4); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold2); }

.btn--outline-green {
  background: transparent;
  color: var(--g3);
  border: 1px solid var(--g3);
}
.btn--outline-green:hover { background: var(--g3); color: #fff; }

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

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

/* ── HERO (homepage) ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1626621341517-bbf3d9990a23?w=1800&q=80') center/cover no-repeat;
  animation: heroZoom 12s ease-out forwards;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

/* HTML5 video fills the hero, cropped to cover like background-size:cover */
.hero-video-wrap video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  pointer-events: none;
}

/* Full-bleed YouTube iframe cover trick (kept as fallback) */
.hero-video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 180%;
  height: 180%;
  transform: translate(-50%, -50%);
  border: none;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    155deg,
    rgba(5,15,8,.12) 0%,
    rgba(5,15,8,.58) 50%,
    rgba(5,15,8,.88) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 3rem;
  max-width: 860px;
  animation: heroFadeUp 1.1s .2s ease both;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid rgba(200,169,74,.4);
  background: rgba(200,169,74,.1);
  color: var(--gold2);
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: .38rem .9rem;
  margin-bottom: 1.5rem;
  width: fit-content;
  backdrop-filter: blur(4px);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.02;
  color: #fff;
}

.hero h1 em { display: block; font-style: italic; color: var(--gold2); }

.hero-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,.78);
  max-width: 520px;
  line-height: 1.65;
  margin: 1.3rem 0 2.4rem;
}

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

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
  color: rgba(255,255,255,.4);
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
}

.hero-scroll-hint .vline {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,.3));
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

/* ── HERO SOUND TOGGLE ── */
.hero-sound-btn {
  position: absolute;
  bottom: 2.5rem;
  left: 3rem;
  z-index: 10;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.45);
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s, border-color .25s, transform .2s;
  padding: 0;
  pointer-events: auto;
}

.hero-sound-btn:hover {
  background: rgba(0,0,0,.55);
  border-color: rgba(255,255,255,.7);
  transform: scale(1.08);
}

.hero-sound-btn:focus-visible {
  outline: 2px solid var(--gold2);
  outline-offset: 3px;
}

/* Icon visibility — controlled by .is-unmuted class on the button */
.hero-sound-btn .icon-muted   { display: block; }
.hero-sound-btn .icon-unmuted { display: none;  }

.hero-sound-btn.is-unmuted .icon-muted   { display: none;  }
.hero-sound-btn.is-unmuted .icon-unmuted { display: block; }

/* Gold border + pulse ring when sound is ON */
.hero-sound-btn.is-unmuted {
  border-color: var(--gold2);
  background: rgba(200,169,74,.2);
}

.hero-sound-btn.is-unmuted::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(200,169,74,.4);
  animation: soundPulse 2s ease-out infinite;
}

@keyframes soundPulse {
  0%   { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.5); }
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--char);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-cell {
  padding: 1.8rem 2rem;
  border-right: 1px solid rgba(255,255,255,.08);
  text-align: center;
  transition: background var(--transition);
}

.stat-cell:last-child { border-right: none; }
.stat-cell:hover { background: rgba(255,255,255,.04); }

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-top: .3rem;
}

/* ── ABOUT SECTION (homepage) ── */
.section--about-bg {
  background: linear-gradient(135deg, #f7f4ee 0%, #edf4f0 50%, #f0ece3 100%);
  position: relative;
}
.section--about-bg::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 35%;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(45,138,78,.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ── ABOUT SECTION ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-wrap { position: relative; }

.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  top: 1.8rem;
  left: -18px;
  background: var(--g1);
  color: var(--gold);
  padding: 1rem 1.3rem;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

.about-badge strong { display: block; font-size: 2rem; line-height: 1; }
.about-badge span   { font-size: .62rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(212,234,216,.7); }

.about-frame {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 160px;
  height: 160px;
  border: 2px solid var(--gold);
  z-index: -1;
}

.about-text p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem;
  line-height: 1.85;
  color: var(--stone);
  margin: 1.2rem 0;
}

.about-lead-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  line-height: 1.9;
  color: #3a3a30;
  margin: 1rem 0 .8rem;
  font-weight: 400;
}

.about-body-text {
  font-size: .92rem;
  line-height: 1.85;
  color: #4a4a40;
  margin-bottom: 1.4rem;
}

.about-body-text strong { color: var(--g2); }
.about-body-text em { color: var(--g3); font-style: italic; }

/* Stat highlights row */
.about-highlights {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--g1);
  padding: 1.5rem 2rem;
  margin: 1.5rem 0;
  border-left: 4px solid var(--gold);
}

.ah-item { text-align: center; flex: 1; }

.ah-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.ah-label {
  display: block;
  font-size: .62rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-top: .3rem;
}

.ah-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.12);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .8rem;
  margin-top: 1.8rem;
}

.feature-item {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  padding: .9rem;
  background: var(--cream);
  border-left: 2px solid var(--g4);
}

.feature-item .icon { font-size: 1.25rem; flex-shrink: 0; }

.feature-text strong {
  display: block;
  color: var(--g1);
  font-weight: 600;
  margin-bottom: .15rem;
  font-size: .85rem;
}

.feature-text span {
  font-size: .81rem;
  color: var(--stone);
  line-height: 1.5;
}

/* ── DESTINATION CARDS ── */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.dest-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--g1);
  display: block;
}

.dest-card img {
  width: 100%;
  height: 265px;
  object-fit: cover;
  display: block;
  transition: transform .6s ease, filter .4s ease;
  filter: brightness(.85);
}

.dest-card:hover img {
  transform: scale(1.07);
  filter: brightness(.68);
}

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,15,8,.9) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.3rem;
}

.dest-cat {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: .3rem;
}

.dest-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #fff;
  font-weight: 600;
}

.dest-meta {
  display: flex;
  gap: 1rem;
  margin-top: .4rem;
  opacity: 0;
  transform: translateY(6px);
  transition: all .3s;
}

.dest-card:hover .dest-meta { opacity: 1; transform: translateY(0); }

.dest-meta span { font-size: .7rem; color: rgba(255,255,255,.65); }

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 3.5rem;
}

.service-card {
  background: var(--cream);
  padding: 1.8rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--g1);
  transform: translateY(101%);
  transition: transform .35s ease;
  z-index: 0;
}

.service-card:hover::before { transform: translateY(0); }
.service-card:hover { box-shadow: var(--shadow-md); }

.service-card > * { position: relative; z-index: 1; }

.service-icon {
  font-size: 2rem;
  margin-bottom: 1.1rem;
  display: block;
}

.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--g1);
  margin-bottom: .65rem;
  line-height: 1.3;
  transition: color var(--transition);
}

.service-card:hover .service-name { color: var(--gold); }

.service-desc {
  font-size: .81rem;
  line-height: 1.7;
  color: var(--stone);
  transition: color var(--transition);
}

.service-card:hover .service-desc { color: rgba(255,255,255,.7); }

.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .9rem;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--g3);
  font-weight: 600;
  transition: color var(--transition);
}

.service-card:hover .service-arrow { color: var(--gold2); }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--char); position: relative; overflow: hidden; }

.testimonials-section::before {
  content: '"';
  position: absolute;
  top: -3rem;
  left: 2rem;
  font-family: 'Playfair Display', serif;
  font-size: 18rem;
  color: rgba(255,255,255,.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.testi-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  padding: 2rem;
  transition: background var(--transition);
}

.testi-card:hover { background: rgba(255,255,255,.09); }

.testi-stars {
  color: var(--gold);
  font-size: .85rem;
  letter-spacing: .08em;
  margin-bottom: 1rem;
}

.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.8;
  color: rgba(255,255,255,.82);
  margin-bottom: 1.5rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: .9rem;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.2rem;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--g2), var(--g4));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  color: #fff;
  font-weight: 700;
}

.testi-name   { font-weight: 600; color: #fff; font-size: .9rem; }
.testi-detail { font-size: .72rem; color: var(--g4); margin-top: .1rem; }

/* ── WHY US GRID ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0,0,0,.08);
  margin-top: 3.5rem;
}

.why-item {
  background: var(--cream);
  padding: 2.5rem 2rem;
  transition: background var(--transition);
}

.why-item:hover { background: #fff; }

.why-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--g5);
  line-height: 1;
  margin-bottom: .5rem;
}

.why-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--g1);
  margin-bottom: .65rem;
}

.why-desc { font-size: .82rem; line-height: 1.75; color: var(--stone); }

/* ── CONTACT SECTION ── */
.contact-section { background: #fff; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── FORM STYLES ── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: .38rem;
  margin-bottom: 1rem;
}

.form-group label {
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--stone);
  font-weight: 600;
}

.form-group label .req { color: #c0392b; margin-left: .2rem; }

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid #ddd;
  padding: .75rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: .88rem;
  color: var(--char);
  background: var(--cream);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  border-radius: 0;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--g3);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(45,138,78,.07);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231,76,60,.07);
}

.form-group input.success,
.form-group select.success,
.form-group textarea.success {
  border-color: var(--g3);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b6b5e' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-error {
  font-size: .72rem;
  color: #e74c3c;
  margin-top: .25rem;
  display: none;
}

.form-error.visible { display: block; }

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

.form-submit {
  width: 100%;
  padding: 1rem;
  font-size: .85rem;
  background: var(--g1);
  color: #fff;
  border: none;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin-top: .5rem;
}

.form-submit:hover { background: var(--g3); }

.form-submit:disabled {
  opacity: .7;
  cursor: not-allowed;
}

.form-note {
  font-size: .74rem;
  color: var(--stone);
  margin-top: .9rem;
  text-align: center;
  line-height: 1.6;
}

.form-note a { color: var(--g3); }

.success-banner {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(45,138,78,.05), rgba(10,38,20,.03));
  border: 1px solid rgba(45,138,78,.15);
}

.success-banner.visible { display: block; }
.success-banner .check { font-size: 3rem; display: block; margin-bottom: 1rem; }

.success-banner h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--g1);
  margin-bottom: .8rem;
}

.success-banner p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--stone);
  font-style: italic;
  line-height: 1.7;
}

/* Contact info blocks */
.ci-block { display: flex; flex-direction: column; gap: 1.2rem; }

.ci-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.ci-icon-wrap {
  width: 44px;
  height: 44px;
  background: rgba(45,138,78,.1);
  border: 1px solid rgba(45,138,78,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.ci-text strong {
  display: block;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--g3);
  margin-bottom: .3rem;
  font-weight: 600;
}

.ci-text span,
.ci-text a {
  font-size: .86rem;
  color: var(--stone);
  line-height: 1.7;
  transition: color var(--transition);
}

.ci-text a:hover { color: var(--g3); }

/* Override ci-text colours when on dark background (contact info panel) */
.contact-info-side .ci-text strong {
  color: var(--gold2);
}

.contact-info-side .ci-text span,
.contact-info-side .ci-text a {
  color: rgba(255,255,255,.85);
}

.contact-info-side .ci-text a:hover {
  color: var(--gold2);
}

.contact-info-side .ci-icon-wrap {
  background: rgba(200,169,74,.15);
  border-color: rgba(200,169,74,.3);
}

/* ── CONTACT DETAILS BAR ── */
.contact-bar {
  background: var(--g1);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.contact-bar-cell {
  padding: 2rem 1.8rem;
  border-right: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: background var(--transition);
}

.contact-bar-cell:hover { background: rgba(255,255,255,.04); }
.contact-bar-cell:last-child { border-right: none; }

.cb-icon {
  width: 46px;
  height: 46px;
  background: rgba(45,138,78,.2);
  border: 1px solid rgba(45,138,78,.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.cb-label {
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: .35rem;
}

.cb-value {
  color: rgba(255,255,255,.8);
  font-size: .86rem;
  line-height: 1.6;
}

.cb-value a {
  color: rgba(255,255,255,.8);
  transition: color var(--transition);
  display: block;
}

.cb-value a:hover { color: var(--gold2); }

/* ── MAP SECTION ── */
.map-section { background: var(--cream); }

.map-container { position: relative; }

.map-container iframe {
  display: block;
  width: 100%;
  height: 480px;
  border: none;
}

.map-card {
  position: absolute;
  top: 2.5rem;
  left: 3rem;
  background: #fff;
  padding: 1.8rem 2rem;
  box-shadow: var(--shadow-lg);
  max-width: 300px;
  border-top: 3px solid var(--g3);
  z-index: 10;
}

.map-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--g1);
  margin-bottom: 1rem;
}

.map-card-row {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: .8rem;
}

.map-card-row span:first-child { font-size: .95rem; flex-shrink: 0; margin-top: .05rem; }

.map-card-text strong {
  display: block;
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--g2);
  margin-bottom: .15rem;
}

.map-card-text span { font-size: .82rem; color: var(--stone); line-height: 1.6; }

.directions-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--g3);
  color: #fff;
  padding: .6rem 1.2rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-top: .5rem;
  transition: background var(--transition);
}

.directions-link:hover { background: var(--g2); }

/* ── CTA SECTION ── */
.cta-section {
  background: var(--char);
  text-align: center;
  padding: 6rem 3rem;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(200,169,74,.12) 0%, transparent 65%);
  pointer-events: none;
}

/* Subtle top border accent */
.cta-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ── QUICK STRIP ── */
.quick-strip {
  background: var(--g2);
  padding: 3.5rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.qs-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #fff;
}

.qs-text p { color: rgba(255,255,255,.65); font-size: .88rem; margin-top: .3rem; }

.qs-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-white {
  background: #fff;
  color: var(--g2);
  padding: .85rem 1.8rem;
  font-family: 'Jost', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: none;
  cursor: pointer;
}

.btn-white:hover { background: var(--cream); }

.btn-outline-w {
  border: 1px solid rgba(255,255,255,.5);
  color: #fff;
  background: transparent;
  padding: .85rem 1.8rem;
  font-family: 'Jost', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.btn-outline-w:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* ── FOOTER ── */
footer {
  background: #181818;
  padding: 4.5rem 3rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1.2rem;
}

.footer-logo-wrap img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: .98rem;
  color: var(--gold);
  display: block;
}

.footer-tagline {
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-top: .1rem;
  display: block;
}

.footer-about {
  font-size: .82rem;
  line-height: 1.75;
  color: rgba(255,255,255,.72);
  margin-bottom: 1.5rem;
  max-width: 280px;
}

.footer-socials { display: flex; gap: .7rem; }

.footer-social {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  color: rgba(255,255,255,.65);
  transition: all var(--transition);
  font-weight: 700;
}

.footer-social:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h4 {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.footer-col ul { display: flex; flex-direction: column; gap: .62rem; }

.footer-col ul a {
  color: rgba(255,255,255,.68);
  font-size: .82rem;
  transition: color var(--transition);
}

.footer-col ul a:hover { color: var(--gold2); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: .9rem;
}

.footer-contact-item .fci-icon { font-size: .95rem; flex-shrink: 0; margin-top: .05rem; }

.footer-contact-item .fci-text {
  font-size: .78rem;
  color: rgba(255,255,255,.72);
  line-height: 1.6;
}

.footer-contact-item a {
  color: rgba(255,255,255,.72);
  transition: color var(--transition);
}

.footer-contact-item a:hover { color: var(--gold2); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p { font-size: .74rem; color: rgba(255,255,255,.62); }
.footer-bottom a { color: var(--gold); }

/* ── ABOUT PAGE SPECIFIC ── */
.mvp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.mvp-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  padding: 2.5rem 2rem;
  transition: background var(--transition);
}

.mvp-card:hover { background: rgba(255,255,255,.1); }

.mvp-card-icon { font-size: 2.5rem; margin-bottom: 1.2rem; display: block; }

.mvp-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.mvp-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255,255,255,.72);
  font-style: italic;
}

.apart-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.apart-item {
  background: #fff;
  padding: 2rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  transition: transform var(--transition), box-shadow var(--transition);
  border-left: 3px solid transparent;
}

.apart-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--g3);
}

.apart-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--g5);
  line-height: 1;
  flex-shrink: 0;
  min-width: 50px;
}

.apart-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--g1);
  margin-bottom: .5rem;
}

.apart-content p { font-size: .83rem; line-height: 1.75; color: var(--stone); }

.promise-list { display: flex; flex-direction: column; gap: 1.1rem; margin-top: 2rem; }

.promise-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem;
  background: var(--cream);
  border-left: 3px solid var(--g3);
}

.promise-item .pi-icon { font-size: 1.3rem; flex-shrink: 0; }
.promise-item strong { display: block; color: var(--g1); font-weight: 600; font-size: .9rem; margin-bottom: .25rem; }
.promise-item span { font-size: .82rem; color: var(--stone); line-height: 1.6; }

/* ── DESTINATION PAGE ── */
.region-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--g1);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.region-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0,0,0,.1);
}

.dest-region { margin-bottom: 4rem; }

.dest-card-full {
  background: #fff;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.dest-card-full:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.dest-card-img-wrap { position: relative; overflow: hidden; }

.dest-card-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .6s ease;
}

.dest-card-full:hover .dest-card-img-wrap img { transform: scale(1.06); }

.dest-card-tag {
  position: absolute;
  top: .9rem;
  left: .9rem;
  background: var(--g1);
  color: var(--gold2);
  font-size: .6rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  font-weight: 600;
}

.dest-card-body { padding: 1.4rem; }
.dest-card-name { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--g1); margin-bottom: .5rem; }
.dest-card-desc { font-size: .82rem; color: var(--stone); line-height: 1.7; margin-bottom: 1rem; }

.dest-card-meta { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.dest-meta-tag { font-size: .75rem; color: var(--g3); font-weight: 500; }

.dest-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .9rem 1.4rem;
  border-top: 1px solid rgba(0,0,0,.06);
  background: var(--cream);
}

.dest-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--g1);
  font-weight: 700;
}

.dest-price small { font-family: 'Jost', sans-serif; font-size: .7rem; color: var(--stone); font-weight: 400; }

.dest-enquire {
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--g3);
  font-weight: 600;
  transition: color var(--transition);
}

.dest-enquire:hover { color: var(--g1); }

.dgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ── SERVICES PAGE ── */
.service-big-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.service-big-card {
  background: #fff;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.8rem;
  padding: 2.2rem 2rem;
  align-items: start;
  transition: transform var(--transition), box-shadow var(--transition), border-left var(--transition);
  border-left: 4px solid transparent;
}

.service-big-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-left-color: var(--g3);
}

.service-big-icon {
  width: 64px;
  height: 64px;
  background: var(--g1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.service-big-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--g1);
  margin-bottom: .6rem;
}

.service-big-card p { font-size: .84rem; line-height: 1.75; color: var(--stone); }

.service-big-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-top: .9rem;
}

.service-big-card ul li {
  font-size: .82rem;
  color: var(--stone);
  display: flex;
  align-items: flex-start;
  gap: .5rem;
}

.service-big-card ul li::before {
  content: '✓';
  color: var(--g3);
  font-weight: 700;
  flex-shrink: 0;
}

/* PROCESS STEPS */
.process-section { background: var(--cream); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 3.5rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--g4), transparent);
  z-index: 0;
}

.process-step { text-align: center; position: relative; z-index: 1; }

.process-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--g3);
  box-shadow: 0 4px 16px rgba(45,138,78,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--g2);
  transition: background var(--transition), box-shadow var(--transition);
}

.process-step:hover .process-num {
  background: var(--g3);
  color: #fff;
  box-shadow: 0 6px 22px rgba(45,138,78,.28);
}

.process-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--g1);
  margin-bottom: .5rem;
}

.process-desc { font-size: .78rem; color: var(--stone); line-height: 1.6; padding: 0 .5rem; }

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.faq-item { background: #fff; overflow: hidden; }

.faq-question {
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: var(--g1);
  font-size: .9rem;
  transition: background var(--transition);
  gap: 1rem;
}

.faq-question:hover { background: var(--cream); }

.faq-question .faq-icon {
  font-size: 1.2rem;
  color: var(--g3);
  transition: transform .3s ease;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}

.faq-answer p {
  font-size: .84rem;
  color: var(--stone);
  line-height: 1.75;
  padding: 0 1.5rem 1.2rem;
}

.faq-item.open .faq-question { background: var(--g1); color: #fff; }
.faq-item.open .faq-question .faq-icon { color: var(--gold); transform: rotate(45deg); }
.faq-item.open .faq-answer { max-height: 300px; }

/* ── CONTACT PAGE SPECIFIC ── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
}

.contact-form-side { padding: 5rem 4rem; background: #fff; }
.contact-info-side {
  background: var(--char);
  padding: 5rem 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-info-side .section-title { color: #fff; }
.contact-info-side p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,.65);
  font-style: italic;
  line-height: 1.8;
}

.info-divider { border: none; border-top: 1px solid rgba(255,255,255,.1); }

.hours-table { display: flex; flex-direction: column; gap: 0; }

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: .55rem 0;
  border-bottom: 1px dashed rgba(255,255,255,.08);
  font-size: .82rem;
}

.hours-row .day { color: rgba(255,255,255,.52); }
.hours-row .time { color: var(--gold2); font-weight: 500; }

.social-row {
  display: flex;
  gap: .7rem;
  flex-wrap: wrap;
  margin-top: .8rem;
}

.social-chip {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem 1rem;
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.6);
  font-size: .78rem;
  font-weight: 500;
  transition: all var(--transition);
}

.social-chip:hover { border-color: var(--gold); color: var(--gold2); }

/* Hero pills */
.hero-pills {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8);
  font-size: .72rem;
  letter-spacing: .08em;
  padding: .38rem .9rem;
  backdrop-filter: blur(4px);
}

/* Stats page row */
.stats-section { background: var(--char); }
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1100px;
  margin: 0 auto;
}

.stats-item {
  text-align: center;
  padding: 3rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,.1);
  transition: background var(--transition);
}

.stats-item:last-child { border-right: none; }
.stats-item:hover { background: rgba(255,255,255,.04); }
.stats-big { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 800; color: var(--gold); line-height: 1; }
.stats-lbl { font-size: .78rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-top: .5rem; }

/* Why grid for about/services */
.why-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why-items { display: flex; flex-direction: column; gap: 1.1rem; }

.why-item-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem;
  background: var(--cream);
  border-left: 3px solid var(--g3);
}

.why-item-icon { font-size: 1.4rem; flex-shrink: 0; }
.why-item-row strong { display: block; color: var(--g1); font-weight: 600; font-size: .9rem; margin-bottom: .3rem; }
.why-item-row span  { font-size: .82rem; color: var(--stone); line-height: 1.6; }


/* ═══════════════════════════════════════
   HOME DESTINATION GRID
═══════════════════════════════════════ */
.dest-grid-home {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.dest-card--large { grid-row: span 2; }
.dest-card--large img { height: 100% !important; min-height: 380px; }
.dest-tagline { font-size: .76rem; color: rgba(255,255,255,.7); font-style: italic; font-family: 'Cormorant Garamond',serif; margin: .2rem 0 .3rem; }

/* ═══════════════════════════════════════
   OFFER / WHAT WE OFFER CARDS
═══════════════════════════════════════ */
.offer-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; margin-top: 3.5rem; }
.offer-card { background: #fff; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease; border-bottom: 3px solid var(--card-color, var(--g3)); }
.offer-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.offer-card-img { position: relative; height: 220px; overflow: hidden; }
.offer-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; display: block; }
.offer-card:hover .offer-card-img img { transform: scale(1.06); }
.offer-card-icon { position: absolute; bottom: -22px; right: 1.5rem; width: 48px; height: 48px; background: var(--card-color, var(--g3)); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; border-radius: 50%; box-shadow: 0 4px 16px rgba(0,0,0,.2); z-index: 2; }
.offer-card-body { padding: 2.2rem 2rem 1.8rem; }
.offer-card-body h3 { font-family: 'Playfair Display',serif; font-size: 1.25rem; color: var(--g1); margin-bottom: .7rem; }
.offer-card-body p { font-size: .88rem; color: var(--stone); line-height: 1.75; margin-bottom: 1rem; }
.offer-card-body ul { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.4rem; }
.offer-card-body ul li { font-size: .82rem; color: #4a4a40; padding-left: 1.2rem; position: relative; line-height: 1.5; }
.offer-card-body ul li::before { content: '✓'; position: absolute; left: 0; color: var(--card-color, var(--g3)); font-weight: 700; font-size: .8rem; }
.offer-link { display: inline-flex; align-items: center; gap: .4rem; font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--card-color, var(--g3)); border-bottom: 1px solid var(--card-color, var(--g3)); padding-bottom: 2px; transition: gap .2s ease; }
.offer-link:hover { gap: .8rem; }

/* ═══════════════════════════════════════
   WHY CHOOSE US — CARD GRID
═══════════════════════════════════════ */
.why-cards-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.8rem; }
.why-card { background: #fff; padding: 2.2rem 1.8rem; border-top: 3px solid transparent; box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; position: relative; overflow: hidden; }
.why-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: var(--g3); transition: width .4s ease; }
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-top-color: var(--g3); }
.why-card:hover::after { width: 100%; }
.why-card-icon { font-size: 2.4rem; margin-bottom: 1.1rem; display: block; }
.why-card h3 { font-family: 'Playfair Display',serif; font-size: 1.05rem; color: var(--g1); margin-bottom: .65rem; line-height: 1.3; }
.why-card p { font-size: .83rem; color: var(--stone); line-height: 1.75; }

/* ═══════════════════════════════════════
   FOOTER LOGO CIRCLE
═══════════════════════════════════════ */
.footer-logo-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid rgba(200,169,74,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  padding: 4px;
}
.footer-logo-circle img { width: 100%; height: 100%; object-fit: contain; }
.footer-brand-col .footer-about { max-width: 100%; margin-bottom: 1rem; }

.footer-inline-contacts { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1.4rem; padding: 1rem 1.2rem; background: rgba(255,255,255,.04); border-left: 2px solid var(--gold); }
.fic-item { font-size: .8rem; color: rgba(255,255,255,.8); display: flex; align-items: center; gap: .5rem; transition: color var(--transition); }
.fic-item:hover { color: var(--gold2); }

.footer-map-col .footer-address-text { font-size: .8rem; color: rgba(255,255,255,.68); line-height: 1.6; margin-bottom: .9rem; }
.footer-map-wrap { width: 100%; height: 160px; overflow: hidden; border: 1px solid rgba(255,255,255,.1); margin-bottom: .8rem; }
.footer-map-wrap iframe { width: 100%; height: 100%; border: none; display: block; filter: grayscale(30%) brightness(.85); transition: filter .3s ease; }
.footer-map-wrap:hover iframe { filter: none; }
.footer-dir-btn { display: inline-flex; align-items: center; gap: .4rem; font-size: .75rem; color: var(--gold2); letter-spacing: .08em; text-transform: uppercase; font-weight: 600; border: 1px solid rgba(200,169,74,.35); padding: .4rem .9rem; transition: all var(--transition); border-radius: 4px; }
.footer-dir-btn:hover { background: rgba(200,169,74,.12); border-color: var(--gold2); }

/* ═══════════════════════════════════════
   FLOATING WHATSAPP BUTTON
═══════════════════════════════════════ */
.whatsapp-fab { position: fixed; bottom: 5.5rem; right: 1.6rem; z-index: 999; background: #25d366; color: #fff; display: flex; align-items: center; gap: .6rem; padding: .75rem 1.2rem .75rem .9rem; border-radius: 50px; box-shadow: 0 4px 20px rgba(37,211,102,.45); animation: waPulse 2.5s infinite; font-family: 'Jost',sans-serif; font-size: .82rem; font-weight: 600; transition: transform .2s ease; text-decoration: none; }
.whatsapp-fab:hover { transform: scale(1.06) translateY(-2px); }
.whatsapp-fab svg { flex-shrink: 0; }
.whatsapp-label { white-space: nowrap; }
@keyframes waPulse {
  0%   { box-shadow: 0 4px 20px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.4); }
  60%  { box-shadow: 0 4px 20px rgba(37,211,102,.45), 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 4px 20px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}

/* ═══════════════════════════════════════
   SCROLL TO TOP BUTTON
═══════════════════════════════════════ */
.scroll-top-btn { position: fixed; bottom: 1.6rem; right: 1.6rem; z-index: 999; width: 46px; height: 46px; background: var(--g2); color: #fff; border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; box-shadow: 0 4px 16px rgba(0,0,0,.25); opacity: 0; transform: translateY(20px); pointer-events: none; transition: opacity .3s ease, transform .3s ease, background .2s ease; }
.scroll-top-btn.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top-btn:hover { background: var(--g1); transform: translateY(-3px); }

/* ── RESPONSIVE BREAKPOINTS ── */
@media (max-width: 1100px) {
  .services-grid  { grid-template-columns: repeat(2, 1fr); }
  .dest-grid      { grid-template-columns: repeat(2, 1fr); }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
  .service-big-grid { grid-template-columns: 1fr; }
  .offer-grid     { grid-template-columns: 1fr; }
  .why-cards-grid { grid-template-columns: repeat(2,1fr); }
  .dest-grid-home { grid-template-columns: repeat(2,1fr); }
  .dest-card--large { grid-row: span 1; }
  .dest-card--large img { min-height: 265px; }
}

@media (max-width: 900px) {
  /* Topbar */
  .topbar { display: none; }

  /* Nav */
  .site-nav { padding: 0 1.2rem; top: 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Mobile menu — sits below navbar, not over it */
  .mob-menu {
    top: 72px;
    padding: 2rem 2rem 2rem;
  }

  .mob-close { display: none; }

  /* Sections */
  .section  { padding: 4rem 1.5rem; }
  .page-hero-content { padding: 0 1.5rem 2.5rem; }

  /* Grids */
  .about-grid     { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .mvp-grid       { grid-template-columns: 1fr; gap: 1.5rem; }
  .apart-grid     { grid-template-columns: 1fr; }
  .testi-grid     { grid-template-columns: 1fr 1fr; }
  .why-grid       { grid-template-columns: 1fr 1fr; }
  .why-grid-2     { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-cards-grid { grid-template-columns: 1fr 1fr; }
  .stats-bar      { grid-template-columns: 1fr 1fr; }
  .stats-row      { grid-template-columns: 1fr 1fr; }
  .stats-item     { border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat-cell      { border-bottom: 1px solid rgba(255,255,255,.08); }
  .contact-bar    { grid-template-columns: 1fr 1fr; }
  .contact-split  { grid-template-columns: 1fr; }
  .contact-form-side { padding: 3.5rem 2rem; }
  .contact-info-side { padding: 3.5rem 2rem; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .dgrid          { grid-template-columns: 1fr 1fr; }
  .process-steps  { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .process-steps::before { display: none; }
  .quick-strip    { flex-direction: column; align-items: flex-start; }
  .map-card       { position: static; max-width: 100%; box-shadow: none; }
  .about-badge,.about-frame { display: none; }
  .about-img-wrap img { height: 300px; }
  .hero-content   { padding: 0 1.5rem; }
  .hero-scroll-hint { display: none; }
  .offer-grid     { grid-template-columns: 1fr; }
  .dest-grid-home { grid-template-columns: 1fr 1fr; }
  .dest-card--large { grid-row: span 1; }
  .whatsapp-label { display: none; }
  .whatsapp-fab   { padding: .85rem; border-radius: 50%; }
}

@media (max-width: 600px) {
  .services-grid  { grid-template-columns: 1fr; }
  .dest-grid      { grid-template-columns: 1fr; }
  .testi-grid     { grid-template-columns: 1fr; }
  .why-grid       { grid-template-columns: 1fr; }
  .why-cards-grid { grid-template-columns: 1fr; }
  .stats-bar      { grid-template-columns: 1fr 1fr; }
  .contact-bar    { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; }
  .dgrid          { grid-template-columns: 1fr; }
  .process-steps  { grid-template-columns: 1fr; }
  .hero h1        { font-size: 2.4rem; }
  .hero-actions   { flex-direction: column; }
  .form-row       { grid-template-columns: 1fr; }
  .qs-actions     { flex-direction: column; }
  .feature-grid   { grid-template-columns: 1fr; }
  .hero-pills     { flex-direction: column; }
  .service-big-card { grid-template-columns: 1fr; gap: 1rem; }
  .dest-grid-home { grid-template-columns: 1fr; }
  .offer-grid     { grid-template-columns: 1fr; }
  .about-highlights { flex-direction: column; gap: .8rem; }
  .ah-divider     { width: 80%; height: 1px; }
}

/* ── PRINT STYLES ── */
@media print {
  .topbar, .site-nav, .hamburger, .mob-menu, .hero-scroll-hint { display: none !important; }
  .hero { height: auto; min-height: 0; }
  body { font-size: 12pt; }
}

/* ═══════════════════════════════════════
   LEGAL PAGES (Terms & Refund)
═══════════════════════════════════════ */
.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

/* Sticky TOC sidebar */
.legal-toc { position: sticky; top: 90px; }

.toc-inner {
  background: var(--cream);
  border-left: 3px solid var(--g3);
  padding: 1.8rem 1.5rem;
}

.toc-title {
  font-family: 'Playfair Display', serif;
  font-size: .9rem;
  color: var(--g1);
  margin-bottom: 1.2rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.toc-inner nav { display: flex; flex-direction: column; gap: .1rem; }

.toc-inner nav a {
  font-size: .78rem;
  color: var(--stone);
  padding: .35rem .5rem;
  border-radius: 3px;
  transition: all var(--transition);
  line-height: 1.4;
}

.toc-inner nav a:hover { background: rgba(45,138,78,.08); color: var(--g2); padding-left: 1rem; }

.toc-updated {
  font-size: .68rem;
  color: rgba(107,107,94,.6);
  margin-top: 1.2rem;
  padding-top: .8rem;
  border-top: 1px solid rgba(0,0,0,.08);
  letter-spacing: .05em;
}

/* Legal content area */
.legal-intro {
  background: linear-gradient(135deg, #f0f7f2, #e8f4ec);
  border-left: 4px solid var(--g3);
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
}

.legal-intro p { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; line-height: 1.85; color: #2a4a30; }
.legal-intro strong { color: var(--g2); }

.legal-section {
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(0,0,0,.07);
}

.legal-section:last-child { border-bottom: none; }

.legal-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--g1);
  margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--g5);
  display: flex;
  align-items: center;
  gap: .7rem;
}

.legal-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--g2);
  margin: 1.5rem 0 .7rem;
}

.legal-section p {
  font-size: .9rem;
  line-height: 1.85;
  color: #3a3a30;
  margin-bottom: .9rem;
}

.legal-section a { color: var(--g3); text-decoration: underline; }
.legal-section a:hover { color: var(--g1); }

.legal-list {
  margin: .8rem 0 1rem 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.legal-list li {
  font-size: .88rem;
  color: #3a3a30;
  padding-left: 1.6rem;
  position: relative;
  line-height: 1.65;
}

.legal-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--g3);
  font-size: .8rem;
  top: .05em;
}

.legal-note {
  background: rgba(200,169,74,.1);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.2rem;
  font-size: .84rem;
  line-height: 1.7;
  color: #3a3a30;
  margin: 1.2rem 0;
}

.legal-note strong { color: var(--g1); }

/* Legal tables */
.legal-table-wrap { overflow-x: auto; margin: 1.2rem 0; }

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .85rem;
}

.legal-table th {
  background: var(--g1);
  color: #fff;
  padding: .75rem 1rem;
  text-align: left;
  font-family: 'Jost', sans-serif;
  font-size: .75rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-table td {
  padding: .75rem 1rem;
  border-bottom: 1px solid rgba(0,0,0,.07);
  color: #3a3a30;
  vertical-align: middle;
}

.legal-table tr:hover td { background: rgba(45,138,78,.04); }

.row-green td:first-child { border-left: 3px solid #27ae60; }
.row-yellow td:first-child { border-left: 3px solid #f39c12; }
.row-orange td:first-child { border-left: 3px solid #e67e22; }
.row-red td:first-child { border-left: 3px solid #e74c3c; }

/* Contact box in legal pages */
.legal-contact-box {
  background: var(--g1);
  padding: 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.lcb-row {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  font-size: .86rem;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
}

.lcb-row span:first-child { font-size: 1.1rem; flex-shrink: 0; margin-top: .05rem; }
.lcb-row a { color: var(--gold2); }
.lcb-row a:hover { color: #fff; }
.lcb-row strong { color: #fff; display: block; margin-bottom: .1rem; }

/* ── REFUND SUMMARY CARDS ── */
.refund-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.rs-card {
  padding: 1.8rem 1.5rem;
  text-align: center;
  border-top: 3px solid transparent;
}

.rs-card--green  { background: #f0faf4; border-top-color: #27ae60; }
.rs-card--yellow { background: #fffbf0; border-top-color: #f39c12; }
.rs-card--red    { background: #fdf5f5; border-top-color: #e74c3c; }
.rs-card--blue   { background: #f0f5ff; border-top-color: #3498db; }

.rs-icon { font-size: 2rem; margin-bottom: .8rem; display: block; }

.rs-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--g1);
  margin-bottom: .5rem;
}

.rs-card p { font-size: .8rem; color: var(--stone); line-height: 1.6; }

/* Refund steps */
.refund-steps { display: flex; flex-direction: column; gap: 1.2rem; margin: 1.2rem 0; }

.refund-step {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.2rem;
  background: var(--cream);
  border-left: 3px solid var(--g3);
}

.rs-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--g4);
  line-height: 1;
  flex-shrink: 0;
  min-width: 36px;
}

.refund-step strong { display: block; color: var(--g1); font-weight: 600; font-size: .9rem; margin-bottom: .3rem; }
.refund-step p { font-size: .83rem; color: var(--stone); line-height: 1.65; margin: 0; }

/* Legal responsive */
@media (max-width: 1000px) {
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
  .toc-inner nav { flex-direction: row; flex-wrap: wrap; }
  .toc-inner nav a { flex-basis: 48%; }
  .refund-summary { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 600px) {
  .refund-summary { grid-template-columns: 1fr 1fr; }
  .toc-inner nav a { flex-basis: 100%; }
}
/* ═══════════════════════════════════════════════
   FAQ REDESIGN — services.html clean white layout
═══════════════════════════════════════════════ */
.faq-section-redesign { padding-bottom: 7rem; }

.faq-rd-wrap {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 5rem;
  align-items: start;
  margin-top: 1rem;
}

/* ── Left sticky label column ── */
.faq-rd-label {
  position: sticky;
  top: 100px;
}

.faq-rd-label .section-title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.faq-rd-sub {
  font-family: 'Jost', sans-serif;
  font-size: .88rem;
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.faq-rd-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: 'Jost', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--g2);
  border-bottom: 2px solid var(--g3);
  padding-bottom: 3px;
  text-decoration: none;
  transition: color .2s, border-color .2s, gap .2s;
}
.faq-rd-cta:hover {
  color: var(--g3);
  gap: .7rem;
}

/* ── Right accordion column ── */
.faq-rd-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(0,0,0,.08);
}

.faq-rd-item {
  border-bottom: 1px solid rgba(0,0,0,.08);
  overflow: hidden;
}

.faq-rd-question {
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0;
  text-align: left;
  font-family: 'Jost', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--char);
  transition: color .2s;
}
.faq-rd-question:hover { color: var(--g2); }
.faq-rd-item.open .faq-rd-question { color: var(--g2); }

.faq-rd-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--stone);
  transition: transform .3s cubic-bezier(.4,0,.2,1),
              background .25s, border-color .25s, color .25s;
}
.faq-rd-item.open .faq-rd-icon {
  transform: rotate(180deg);
  background: var(--g2);
  border-color: var(--g2);
  color: #fff;
}

.faq-rd-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}
.faq-rd-item.open .faq-rd-answer { max-height: 300px; }

.faq-rd-answer p {
  font-family: 'Jost', sans-serif;
  font-size: .87rem;
  color: var(--stone);
  line-height: 1.85;
  padding: 0 0 1.5rem 0;
  border-left: 3px solid var(--g4);
  padding-left: 1rem;
  margin: 0;
}
.faq-rd-answer a { color: var(--g3); text-decoration: underline; }

/* Responsive */
@media (max-width: 900px) {
  .faq-rd-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .faq-rd-label { position: static; }
  .faq-rd-label .section-title { font-size: 1.8rem; }
}
/* ═══════════════════════════════════════════════════
   CONTACT PAGE — BOOKING BANNER & QUERY NOTE
═══════════════════════════════════════════════════ */
.contact-booking-banner {
  background: linear-gradient(135deg, var(--g1) 0%, var(--g2) 100%);
  padding: 1.4rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  border-bottom: 3px solid var(--gold);
}

.cbb-left {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.cbb-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.cbb-left strong {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .2rem;
}

.cbb-left span {
  font-family: 'Jost', sans-serif;
  font-size: .82rem;
  color: rgba(255,255,255,.72);
  line-height: 1.5;
}

.cbb-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--gold2);
  color: var(--g1);
  padding: .7rem 1.6rem;
  border-radius: 50px;
  font-family: 'Jost', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform .15s, opacity .2s;
}
.cbb-btn:hover { transform: translateY(-2px); opacity: .9; }

.contact-booking-note {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  background: rgba(45,138,78,.06);
  border: 1px solid rgba(45,138,78,.18);
  border-radius: 4px;
  padding: .75rem 1rem;
  font-family: 'Jost', sans-serif;
  font-size: .82rem;
  color: var(--g2);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}
.contact-booking-note a { color: var(--g3); font-weight: 600; text-decoration: underline; }

@media (max-width: 768px) {
  .contact-booking-banner { padding: 1.2rem 1.5rem; flex-direction: column; align-items: flex-start; }
  .cbb-btn { width: 100%; justify-content: center; }
}