/* ============================================================
   LOTUS & FAIRWAYS — DESIGN SYSTEM
   lotusfairways.com
   Version 1.0
   ============================================================ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ── BRAND TOKENS ── */
:root {
  /* Core palette */
  --rose:           #9b3a5a;
  --rose-light:     #c4607a;
  --rose-pale:      #f5e8ed;
  --green:          #2a4a2e;
  --green-light:    #3a6040;
  --bronze:         #8b6a3a;
  --bronze-light:   #c49a5e;
  --deep:           #1a1208;
  --parchment:      #f7f3ec;
  --parchment-dark: #ede8df;
  --white:          #ffffff;
  --slate:          #3d3530;
  --warm-grey:      #7a6e65;
  --rule:           #d4c9b8;

  /* Typography */
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'DM Sans', system-ui, sans-serif;

  /* Spacing scale */
  --space-xs:   4px;
  --space-sm:   8px;
  --space-md:   16px;
  --space-lg:   24px;
  --space-xl:   48px;
  --space-2xl:  80px;
  --space-3xl:  120px;

  /* Layout */
  --max-width:  1200px;
  --nav-height: 66px;

  /* Transitions */
  --transition: 0.2s ease;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(26,18,8,0.08);
  --shadow-md:  0 6px 24px rgba(26,18,8,0.12);
  --shadow-lg:  0 16px 48px rgba(26,18,8,0.16);

  /* Brand gradient */
  --gradient:   linear-gradient(to right, var(--rose), var(--bronze-light), var(--green));
}

/* ── BASE ── */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--parchment);
  color: var(--deep);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.1;
}

h1 { font-size: clamp(2.8rem, 5vw, 5.5rem); }
h2 { font-size: clamp(1.8rem, 3vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }
h4 { font-size: 1.1rem; }

p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--slate);
}

.serif { font-family: var(--font-serif); }
.italic { font-style: italic; }
.eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bronze);
  display: flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--bronze);
  flex-shrink: 0;
}
.eyebrow-rose { color: var(--rose); }
.eyebrow-rose::before { background: var(--rose); }
.eyebrow-green { color: var(--green); }
.eyebrow-green::before { background: var(--green); }

/* ── LAYOUT ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section { padding: var(--space-2xl) var(--space-xl); max-width: var(--max-width); margin: 0 auto; }
.section-full { padding: var(--space-2xl) var(--space-xl); }

.section-header {
  display: flex;
  align-items: baseline;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}
.section-header h2 { flex-shrink: 0; }
.section-rule { flex: 1; height: 1px; background: var(--rule); }
.section-link {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bronze);
  white-space: nowrap;
  transition: color var(--transition);
}
.section-link:hover { color: var(--slate); }

/* ── THE MARK SVG (inline reusable) ── */
.lf-mark { display: block; }

/* ── NAVIGATION ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--parchment);
  border-bottom: 2px solid var(--rose);
  padding: 0 var(--space-xl);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  transition: background var(--transition), border-color var(--transition);
}

.nav.scrolled {
  background: var(--parchment);
  border-bottom-color: var(--rose);
  box-shadow: var(--shadow-sm);
}

.nav.transparent {
  background: rgba(26,18,8,0.12);
  border-bottom-color: rgba(196,96,122,0.3);
  backdrop-filter: blur(8px);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-brand-text {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
.nav-brand-text .lotus { color: var(--rose); font-style: italic; font-weight: 400; }
.nav-brand-text .amp   { color: var(--bronze); margin: 0 6px; font-style: italic; }
.nav-brand-text .fair  { color: var(--green); }

.nav.transparent .nav-brand-text .lotus { color: var(--rose-light); }
.nav.transparent .nav-brand-text .amp   { color: var(--bronze-light); }
.nav.transparent .nav-brand-text .fair  { color: #7dba8a; }

.nav-divider {
  width: 1px;
  height: 26px;
  background: var(--rule);
}
.nav.transparent .nav-divider { background: rgba(212,201,184,0.2); }

.nav-tagline {
  font-size: 0.6rem;
  color: var(--warm-grey);
  letter-spacing: 0.06em;
}
.nav.transparent .nav-tagline { color: rgba(247,243,236,0.4); }

.nav-links {
  display: flex;
  align-items: stretch;
}

.nav-links li {
  border-left: 1px solid var(--rule);
}
.nav.transparent .nav-links li { border-left-color: rgba(212,201,184,0.12); }

.nav-links a {
  display: flex;
  align-items: center;
  height: var(--nav-height);
  padding: 0 18px;
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  transition: all var(--transition);
}
.nav-links a:hover { background: var(--deep); color: var(--parchment); }
.nav.transparent .nav-links a { color: rgba(247,243,236,0.7); }
.nav.transparent .nav-links a:hover { background: rgba(255,255,255,0.1); color: var(--parchment); }

.nav-links .golf-link a { color: var(--green); }
.nav-links .golf-link a:hover { background: var(--green); color: var(--parchment); }
.nav.transparent .nav-links .golf-link a { color: #7dba8a; }

.nav-links .beyond-link a { color: var(--rose); }
.nav-links .beyond-link a:hover { background: var(--rose); color: var(--parchment); }
.nav.transparent .nav-links .beyond-link a { color: var(--rose-light); }

.nav-links .enquire-link a {
  background: var(--rose);
  color: var(--parchment) !important;
}
.nav-links .enquire-link a:hover { background: var(--rose-light); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  color: var(--deep);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 4px 0;
  transition: all var(--transition);
}

/* ── NAV OFFSET ── */
.nav-offset { padding-top: var(--nav-height); }

/* ── BREADCRUMB ── */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  padding: 14px var(--space-xl);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  color: var(--warm-grey);
}
.breadcrumb a { color: var(--warm-grey); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--rose); }
.breadcrumb-sep { color: var(--rule); }
.breadcrumb-current { color: var(--rose); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  transition: all var(--transition);
  border: none;
}

.btn-rose { background: var(--rose); color: var(--parchment); }
.btn-rose:hover { background: var(--rose-light); }

.btn-green { background: var(--green); color: var(--parchment); }
.btn-green:hover { background: var(--green-light); }

.btn-bronze { background: var(--bronze); color: var(--parchment); }
.btn-bronze:hover { background: var(--bronze-light); color: var(--deep); }

.btn-outline-rose {
  border: 1px solid var(--rose);
  color: var(--rose);
  background: transparent;
}
.btn-outline-rose:hover { background: var(--rose); color: var(--parchment); }

.btn-outline-light {
  border: 1px solid rgba(212,201,184,0.4);
  color: rgba(247,243,236,0.75);
  background: transparent;
}
.btn-outline-light:hover { border-color: var(--parchment); color: var(--parchment); }

.btn-ghost {
  color: var(--rose);
  padding-left: 0;
  padding-right: 0;
  background: none;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
}
.btn-ghost:hover { color: var(--deep); }

/* ── FACTS BAR ── */
.facts-bar {
  background: var(--deep);
  padding: 0 var(--space-xl);
  display: flex;
  overflow-x: auto;
  border-bottom: 1px solid rgba(212,201,184,0.08);
  scrollbar-width: none;
}
.facts-bar::-webkit-scrollbar { display: none; }

.fact-item {
  padding: 18px 32px 18px 0;
  margin-right: 32px;
  border-right: 1px solid rgba(212,201,184,0.1);
  white-space: nowrap;
  flex-shrink: 0;
}
.fact-item:last-child { border-right: none; }
.fact-label {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bronze-light);
  margin-bottom: 4px;
}
.fact-val {
  font-size: 0.82rem;
  color: rgba(247,243,236,0.82);
}

/* ── GRADIENT STRIPE ── */
.gradient-stripe {
  height: 3px;
  background: var(--gradient);
  width: 100%;
}

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--rule);
  overflow: hidden;
  transition: box-shadow var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); }

.card-img {
  position: relative;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  filter: brightness(0.88);
}
.card:hover .card-img img { transform: scale(1.04); }

.card-body { padding: 22px; }

.card-type {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 7px;
}
.card-type-green { color: var(--green); }
.card-type-bronze { color: var(--bronze); }

.card-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--deep);
}

.card-desc {
  font-size: 0.79rem;
  color: var(--warm-grey);
  line-height: 1.65;
  margin-bottom: 16px;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 13px;
  border-top: 1px solid var(--rule);
}
.card-duration { font-size: 0.69rem; color: var(--warm-grey); }
.card-price {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--bronze);
  font-style: italic;
}

/* ── DESTINATION CARDS (image overlay) ── */
.dest-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.58);
  transition: transform 0.5s ease;
  display: block;
}
.dest-card:hover img { transform: scale(1.04); }
.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,18,8,0.88) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.dest-flag {
  display: inline-block;
  background: var(--rose);
  color: var(--parchment);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 8px;
  align-self: flex-start;
}
.dest-flag-green { background: var(--green); }
.dest-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--parchment);
  margin-bottom: 5px;
}
.dest-name-lg { font-size: 2.2rem; }
.dest-tagline {
  font-size: 0.75rem;
  color: rgba(247,243,236,0.62);
  line-height: 1.5;
}

/* ── SIDEBAR ── */
.sidebar-box {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 28px;
  margin-bottom: 16px;
}
.sidebar-box-title {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}
.sidebar-box-title-green { color: var(--green); }
.sidebar-list { display: flex; flex-direction: column; gap: 10px; }
.sidebar-list li {
  font-size: 0.82rem;
  color: var(--slate);
  line-height: 1.5;
  padding-left: 15px;
  position: relative;
}
.sidebar-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 5px; height: 5px;
  background: var(--rose);
  border-radius: 50%;
}
.sidebar-list-green li::before { background: var(--green); }

/* ── PULL QUOTE ── */
.pull-quote {
  border-left: 3px solid var(--rose);
  padding-left: 22px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--slate);
  margin: 28px 0;
}
.pull-quote-green { border-left-color: var(--green); }
.pull-quote-bronze { border-left-color: var(--bronze); }

/* ── HORIZONTAL RULE ── */
hr.rule {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 56px 0;
}

/* ── BEST TIME CHART ── */
.months-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 4px;
}
.month-block { text-align: center; }
.month-name {
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: 5px;
}
.month-bar { height: 36px; border-radius: 2px; }
.month-bar.peak { background: var(--green); }
.month-bar.shoulder { background: var(--bronze-light); opacity: 0.55; }
.month-bar.low { background: var(--rule); }
.month-label { font-size: 0.5rem; color: var(--warm-grey); margin-top: 4px; line-height: 1.3; }
.bt-legend { display: flex; gap: 20px; margin-top: 16px; flex-wrap: wrap; }
.bt-legend-item { display: flex; align-items: center; gap: 7px; font-size: 0.7rem; color: var(--warm-grey); }
.bt-legend-dot { width: 9px; height: 9px; border-radius: 2px; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--deep);
  cursor: pointer;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--rose); }
.faq-icon {
  font-size: 1.2rem;
  color: var(--rose);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-icon.open { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 0 18px;
  font-size: 0.86rem;
  color: var(--warm-grey);
  line-height: 1.8;
  max-width: 680px;
}
.faq-a.open { display: block; }

/* ── TICKER ── */
.ticker {
  background: var(--deep);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid rgba(212,201,184,0.08);
}
.ticker-inner {
  display: inline-flex;
  animation: ticker 35s linear infinite;
}
.ticker-item {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,243,236,0.35);
  padding: 0 28px;
}
.ticker-item.rose { color: var(--rose-light); }
.ticker-item.gold { color: var(--bronze-light); }
.ticker-item.green { color: #7dba8a; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: var(--space-xl) var(--space-xl);
}
.trust-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}
.trust-item { text-align: center; }
.trust-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--bronze);
  font-style: italic;
}
.trust-label {
  font-size: 0.73rem;
  color: var(--warm-grey);
  margin-top: 6px;
  line-height: 1.5;
}

/* ── ENQUIRY SECTION ── */
.enquiry-section {
  background: var(--deep);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.enquiry-left {
  padding: var(--space-2xl) 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.enquiry-right {
  padding: var(--space-2xl) 64px;
  border-left: 1px solid rgba(212,201,184,0.08);
}

/* Form styles */
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247,243,236,0.45);
  margin-bottom: 7px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,201,184,0.15);
  color: var(--parchment);
  padding: 12px 14px;
  font-size: 0.85rem;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
  border-radius: 0;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus { border-color: var(--rose-light); }
.form-row input::placeholder,
.form-row textarea::placeholder { color: rgba(247,243,236,0.25); }
.form-row select option { background: var(--deep); color: var(--parchment); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.btn-submit {
  width: 100%;
  background: var(--rose);
  color: var(--parchment);
  border: none;
  padding: 16px;
  font-size: 0.73rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  margin-top: 8px;
  transition: background var(--transition);
  cursor: pointer;
}
.btn-submit:hover { background: var(--rose-light); }
.form-note {
  font-size: 0.68rem;
  color: rgba(247,243,236,0.3);
  margin-top: 10px;
  text-align: center;
}

/* ── BEYOND BADGE ── */
.beyond-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(155,58,90,0.18);
  border: 1px solid rgba(196,96,122,0.35);
  padding: 7px 16px;
  align-self: flex-start;
  margin-bottom: 20px;
}
.beyond-badge-dot {
  width: 5px; height: 5px;
  background: var(--rose-light);
  border-radius: 50%;
}
.beyond-badge-text {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rose-light);
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.42);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26,18,8,0.85) 0%, rgba(26,18,8,0.25) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 64px;
  padding-top: var(--nav-height);
}
.hero-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rose-light);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--rose-light);
}
.hero h1 { color: var(--parchment); margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--bronze-light); }
.hero-sub {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(247,243,236,0.72);
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

/* Hero slides */
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.5s ease; }
.hero-slide.active { opacity: 1; }
.hero-indicators {
  position: absolute;
  bottom: 36px; left: 64px;
  display: flex; gap: 8px;
}
.hero-dot {
  width: 24px; height: 2px;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s;
}
.hero-dot.active { background: var(--rose-light); width: 48px; }
.hero-caption {
  position: absolute;
  bottom: 28px; right: 64px;
}
.hero-caption-dest {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(247,243,236,0.45);
}

/* Dest hero (shorter) */
.dest-hero {
  position: relative;
  height: 88vh;
  min-height: 560px;
  overflow: hidden;
}
.dest-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}
.dest-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(26,18,8,0.82) 0%, rgba(26,18,8,0.2) 65%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 72px 64px 90px;
}
.dest-hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(212,201,184,0.22);
  flex-wrap: wrap;
}
.stat-val {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--bronze-light);
  font-style: italic;
}
.stat-label {
  font-size: 0.64rem;
  color: rgba(247,243,236,0.42);
  margin-top: 3px;
}

/* ── GREEN BAND ── */
.green-band {
  background: var(--green);
  padding: var(--space-2xl) var(--space-xl);
}

/* ── FOOTER ── */
footer {
  background: var(--deep);
  color: rgba(247,243,236,0.5);
  padding: 60px var(--space-xl) 28px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(212,201,184,0.08);
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.footer-logo .lotus { color: var(--rose-light); font-style: italic; font-weight: 400; }
.footer-logo .amp   { color: var(--bronze-light); margin: 0 7px; font-style: italic; }
.footer-logo .fair  { color: #7dba8a; }
.footer-desc { font-size: 0.78rem; line-height: 1.8; }
.footer-atol {
  display: inline-block;
  border: 1px solid rgba(212,201,184,0.18);
  padding: 5px 12px;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bronze-light);
  margin-top: 14px;
}
.footer-col h4 {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze-light);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a {
  font-size: 0.78rem;
  color: rgba(247,243,236,0.42);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--parchment); }
.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.68rem; }

/* ── GRIDS ── */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.grid-2-3 { display: grid; grid-template-columns: 2fr 3fr; gap: 64px; align-items: start; }
.grid-3-2 { display: grid; grid-template-columns: 3fr 2fr; gap: 64px; align-items: start; }

/* ── UTILITIES ── */
.text-parchment { color: var(--parchment); }
.text-rose { color: var(--rose); }
.text-rose-light { color: var(--rose-light); }
.text-green { color: var(--green); }
.text-bronze { color: var(--bronze); }
.text-bronze-light { color: var(--bronze-light); }
.text-warm-grey { color: var(--warm-grey); }
.text-muted { color: rgba(247,243,236,0.45); }

.bg-deep { background: var(--deep); }
.bg-parchment { background: var(--parchment); }
.bg-white { background: var(--white); }
.bg-green { background: var(--green); }
.bg-rose { background: var(--rose); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }
.mt-xl { margin-top: var(--space-xl); }

.gap-2px { gap: 2px; }
.border-rule { border: 1px solid var(--rule); }
.border-top-rule { border-top: 1px solid var(--rule); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .enquiry-section { grid-template-columns: 1fr; }
  .enquiry-left, .enquiry-right { padding: var(--space-2xl) var(--space-xl); }
  .enquiry-right { border-left: none; border-top: 1px solid rgba(212,201,184,0.08); }
}

@media (max-width: 768px) {
  :root { --space-xl: 24px; --space-2xl: 48px; }

  .nav-links, .nav-tagline, .nav-divider { display: none; }
  .nav-toggle { display: block; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--parchment);
    border-bottom: 1px solid var(--rule);
    box-shadow: var(--shadow-md);
    z-index: 999;
  }
  .nav-links.open li { border-left: none; border-bottom: 1px solid var(--rule); }
  .nav-links.open a { height: 52px; padding: 0 var(--space-xl); }

  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-2-3, .grid-3-2 { grid-template-columns: 1fr; gap: var(--space-xl); }
  .form-grid { grid-template-columns: 1fr; }

  .hero-overlay { padding: 0 var(--space-xl); padding-top: var(--nav-height); }
  .dest-hero-overlay { padding: 40px var(--space-xl) 60px; }
  .hero-indicators { left: var(--space-xl); }
  .hero-caption { right: var(--space-xl); }

  .footer-top { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .months-grid { grid-template-columns: repeat(6,1fr); }

  .enquiry-left { padding: var(--space-2xl) var(--space-xl); }
}

@media (max-width: 480px) {
  h1 { font-size: 2.4rem; }
  .hero { min-height: 100svh; }
  .dest-hero-stats { gap: 20px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
}

/* ── CURRENCY TOGGLE ── */
.nav-currency {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 4px;
}
.lf-currency-btn {
  background: none;
  border: none;
  padding: 4px 6px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--warm-grey);
  cursor: pointer;
  border-radius: 3px;
  transition: color var(--transition), background var(--transition);
}
.lf-currency-btn:hover { color: var(--slate); background: var(--parchment-dark); }
.lf-currency-btn.active { color: var(--bronze); font-weight: 600; }
.nav-currency-sep { color: var(--rule); font-size: 0.7rem; user-select: none; }

/* Transparent nav — currency buttons go light */
.nav.transparent .lf-currency-btn { color: rgba(247,243,236,0.6); }
.nav.transparent .lf-currency-btn:hover { color: var(--parchment); background: rgba(255,255,255,0.1); }
.nav.transparent .lf-currency-btn.active { color: #c49a5e; }
.nav.transparent .nav-currency-sep { color: rgba(247,243,236,0.25); }

/* ── SIGNATURE EXPERIENCES SECTION ── */
.sig-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}
@media (max-width: 700px) { .sig-grid { grid-template-columns: 1fr; } }
.sig-card {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  height: 420px;
  cursor: pointer;
  display: block;
  text-decoration: none;
}
.sig-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.sig-card:hover img { transform: scale(1.04); }
.sig-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,18,8,0.78) 0%, rgba(26,18,8,0.15) 55%, transparent 100%);
}
.sig-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-xl);
  z-index: 1;
  color: var(--parchment);
}
.sig-card-content .eyebrow { color: var(--bronze-light); margin-bottom: 10px; }
.sig-card-content h3 { color: var(--white); font-size: clamp(1.4rem, 2.5vw, 2rem); margin-bottom: 8px; }
.sig-card-content p { color: var(--parchment-dark); font-size: 0.88rem; margin-bottom: 14px; }
.sig-card-link { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--bronze-light); font-family: var(--font-sans); }
