/* ═══════════════════════════════════════════════
   THE NON PUBLIC — Shared Stylesheet
   ═══════════════════════════════════════════════ */

/* ─── Google Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Jost:wght@200;300;400;500&display=swap');

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; font-family: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ─── Design Tokens ─── */
:root {
  --white:   #FAFAF7;
  --cream:   #F4F1EB;
  --black:   #181614;
  --charcoal:#2E2B28;
  --gray:    #6B6560;
  --border:  #E3DED5;
  --accent:  #7A6353;
  --gold:    #B8965A;

  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'Jost', system-ui, sans-serif;

  --ease:    cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:cubic-bezier(0, 0, 0.2, 1);

  --container: 1200px;
  --gutter:    clamp(20px, 5vw, 80px);
  --section:   clamp(80px, 10vw, 140px);
}

/* ─── Base ─── */
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--black);
  line-height: 1.75;
  font-weight: 300;
  overflow-x: hidden;
}

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

.t-eyebrow {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gray);
}

.t-display {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
}

.t-h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 300;
  line-height: 1.08;
}

.t-h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.12;
}

.t-h3 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 300;
  line-height: 1.2;
}

.t-h4 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.3;
}

.t-body {
  font-size: 0.93rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--gray);
}

.t-body-lg {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--charcoal);
}

.t-caption {
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--gray);
}

em { font-style: italic; }

/* ─── Layout ─── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container--wide {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container--narrow {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: var(--section) 0; }
.section--sm { padding: calc(var(--section) * 0.6) 0; }
.section--lg { padding: calc(var(--section) * 1.4) 0; }

/* ─── Header / Navigation ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.site-header.scrolled {
  background: rgba(250, 250, 247, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
  padding: 0 28px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border: none;
  background: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--black);
  transition: all 0.3s var(--ease);
}

.site-header.hero-mode .hamburger span { background: #fff; }
.site-header.hero-mode.scrolled .hamburger span { background: var(--black); }

.hamburger-label {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--black);
  transition: color 0.3s;
}

.site-header.hero-mode .hamburger-label { color: #fff; }
.site-header.hero-mode.scrolled .hamburger-label { color: var(--black); }

.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.header-logo {
  font-family: var(--serif);
  font-size: 0.88rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--black);
  text-align: center;
  transition: color 0.3s;
  white-space: nowrap;
}

.site-header.hero-mode .header-logo { color: #fff; }
.site-header.hero-mode.scrolled .header-logo { color: var(--black); }

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.header-contact {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.65;
  transition: opacity 0.25s, color 0.3s;
}

.header-contact:hover { opacity: 1; }
.site-header.hero-mode .header-contact { color: #fff; }
.site-header.hero-mode.scrolled .header-contact { color: var(--black); }

.btn-apply {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 10px 22px;
  border: 1px solid currentColor;
  color: var(--black);
  transition: background 0.3s var(--ease), color 0.3s;
}

.btn-apply:hover { background: var(--black); color: #fff; }
.site-header.hero-mode .btn-apply { color: #fff; }
.site-header.hero-mode.scrolled .btn-apply { color: var(--black); }
.site-header.hero-mode .btn-apply:hover { background: #fff; color: var(--black); }
.site-header.hero-mode.scrolled .btn-apply:hover { background: var(--black); color: #fff; }

/* ─── Full-Screen Menu Overlay ─── */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--black);
  display: flex;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
}

.menu-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.menu-overlay-inner {
  display: flex;
  width: 100%;
  align-items: center;
}

.menu-left {
  width: 55%;
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-right {
  width: 45%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.menu-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.menu-close {
  position: absolute;
  top: 28px; right: 28px;
  z-index: 10;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-close::before,
.menu-close::after {
  content: '';
  position: absolute;
  width: 24px; height: 1px;
  background: #fff;
}
.menu-close::before { transform: rotate(45deg); }
.menu-close::after  { transform: rotate(-45deg); }

.menu-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 60px;
}

.menu-nav a {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
  transition: color 0.25s, padding-left 0.25s;
  display: inline-block;
}

.menu-nav a:hover { color: #fff; padding-left: 12px; }

.menu-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu-footer a {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.25s;
}
.menu-footer a:hover { color: rgba(255,255,255,0.9); }

/* ─── Hero (Full Screen) ─── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: #181614;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: kenBurns 20s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes kenBurns {
  from { transform: scale(1.0); }
  to   { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(24,22,20,0.85) 0%,
    rgba(24,22,20,0.4)  40%,
    rgba(24,22,20,0.2)  70%,
    rgba(24,22,20,0.35) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 var(--gutter) 72px;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  font-weight: 400;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 8rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.0;
  letter-spacing: -0.01em;
  max-width: 780px;
  margin-bottom: 36px;
}

.hero-title em { font-style: italic; }

.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}

@keyframes scrollDrop {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1); }
}

.hero-scroll-text {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ─── Enquire Bar (hero bottom) ─── */
.enquire-bar {
  position: relative;
  z-index: 3;
  background: rgba(250,250,247,0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
}

.enquire-bar-inner {
  display: flex;
  align-items: center;
  min-height: 70px;
  gap: 0;
}

.enquire-field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 28px;
  height: 70px;
  border-right: 1px solid var(--border);
}

.enquire-field svg {
  width: 16px; height: 16px;
  opacity: 0.4;
  flex-shrink: 0;
}

.enquire-field input,
.enquire-field span {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--black);
  background: none;
  border: none;
  outline: none;
  width: 100%;
}

.enquire-field span { opacity: 0.45; }

.enquire-submit {
  flex-shrink: 0;
  padding: 0 40px;
  height: 70px;
  background: var(--black);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}

.enquire-submit:hover { background: var(--charcoal); }

/* ─── Destination Multi-Select ─── */
.dest-wrapper { position: relative; }

.dest-popup {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: -1px;
  z-index: 201;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(24,22,20,0.13);
  width: 520px;
  flex-direction: column;
  max-height: 480px;
}
.dest-popup.open { display: flex; }

.dest-search-wrap {
  padding: 16px 20px 12px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.dest-search {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--black);
  background: var(--cream);
  border: none;
  outline: none;
  padding: 9px 14px;
  letter-spacing: 0.02em;
}
.dest-search::placeholder { opacity: 0.45; }

.dest-regions {
  overflow-y: auto;
  flex: 1;
  padding: 8px 0 4px;
}
.dest-regions::-webkit-scrollbar { width: 4px; }
.dest-regions::-webkit-scrollbar-thumb { background: var(--border); }

.dest-region-label {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.38;
  padding: 12px 20px 6px;
  display: block;
  cursor: default;
}
.dest-region-label:first-child { padding-top: 8px; }

.dest-country {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 20px;
  cursor: pointer;
  transition: background 0.12s;
}
.dest-country:hover { background: var(--cream); }
.dest-country.hidden { display: none; }

.dest-check {
  width: 14px;
  height: 14px;
  border: 1px solid rgba(24,22,20,0.3);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
}
.dest-country.selected .dest-check {
  background: var(--black);
  border-color: var(--black);
}
.dest-check-tick {
  display: none;
  width: 8px;
  height: 8px;
}
.dest-country.selected .dest-check-tick { display: block; }

.dest-name {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--black);
  letter-spacing: 0.01em;
}
.dest-country.selected .dest-name { font-weight: 400; }

.dest-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.dest-clear {
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.2s;
}
.dest-clear:hover { opacity: 1; }
.dest-count {
  font-family: var(--sans);
  font-size: 0.72rem;
  color: var(--black);
  opacity: 0.5;
  letter-spacing: 0.04em;
}

@media (max-width: 640px) {
  .dest-popup { width: calc(100vw - 40px); }
}

/* ─── Guests Counter ─── */
.guests-wrapper { position: relative; }

.guests-popup {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: -1px;
  z-index: 201;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(24,22,20,0.13);
  width: 300px;
  flex-direction: column;
  padding: 8px 0 0;
}
.guests-popup.open { display: flex; }

.guests-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.guests-label {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.guests-type {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.02em;
}
.guests-sub {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 300;
  color: var(--black);
  opacity: 0.42;
  letter-spacing: 0.02em;
}

.guests-counter {
  display: flex;
  align-items: center;
  gap: 16px;
}
.guests-btn {
  width: 30px;
  height: 30px;
  border: 1px solid var(--border);
  background: none;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
  font-family: var(--sans);
  font-weight: 300;
  flex-shrink: 0;
}
.guests-btn:hover { background: var(--cream); border-color: var(--black); }
.guests-btn:disabled { opacity: 0.2; cursor: default; border-color: var(--border); background: none; }

.guests-num {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--black);
  min-width: 20px;
  text-align: center;
  font-weight: 400;
}

.guests-divider {
  height: 1px;
  background: var(--border);
  margin: 0 24px;
}

.guests-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px 18px;
  margin-top: 4px;
}
.guests-reset {
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.4;
  cursor: pointer;
  transition: opacity 0.2s;
}
.guests-reset:hover { opacity: 1; }
.guests-done {
  background: var(--black);
  color: #fff;
  border: none;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 9px 20px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.guests-done:hover { opacity: 0.8; }

/* ─── Date Range Calendar ─── */
.cal-wrapper { position: relative; }

.cal-popup {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: -1px;
  z-index: 200;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(24,22,20,0.13);
  padding: 28px 28px 20px;
  min-width: 600px;
  flex-direction: column;
  gap: 0;
}
.cal-popup.open { display: flex; }

.cal-nav-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.cal-nav {
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 1rem;
  cursor: pointer;
  color: var(--black);
  opacity: 0.35;
  padding: 4px 8px;
  transition: opacity 0.2s;
  line-height: 1;
}
.cal-nav:hover { opacity: 1; }

.cal-months {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.cal-month-title {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--black);
  text-align: center;
  margin-bottom: 16px;
  display: block;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1px;
}
.cal-day-hdr {
  text-align: center;
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.35;
  padding-bottom: 10px;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 300;
  cursor: pointer;
  color: var(--black);
  position: relative;
  transition: background 0.15s, color 0.15s;
  border-radius: 0;
  user-select: none;
}
.cal-day:hover:not(.cal-empty):not(.cal-past) { background: var(--cream); }
.cal-day.cal-empty  { cursor: default; pointer-events: none; }
.cal-day.cal-past   { opacity: 0.22; pointer-events: none; }
.cal-day.cal-today  { font-weight: 600; }
.cal-day.cal-start,
.cal-day.cal-end    { background: var(--black); color: #fff; }
.cal-day.cal-range  { background: #f0ece3; }
.cal-day.cal-start  { border-radius: 2px 0 0 2px; }
.cal-day.cal-end    { border-radius: 0 2px 2px 0; }
.cal-day.cal-start.cal-end { border-radius: 2px; }

.cal-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.cal-clear {
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.45;
  cursor: pointer;
  transition: opacity 0.2s;
}
.cal-clear:hover { opacity: 1; }

@media (max-width: 700px) {
  .cal-popup { min-width: calc(100vw - 40px); padding: 20px 16px 16px; }
  .cal-months { grid-template-columns: 1fr; gap: 20px; }
}

/* ─── Vertical Connector ─── */
.v-connector {
  display: flex;
  justify-content: center;
  padding: 60px 0 0;
}

.v-connector-line {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--black), var(--border));
}

/* ─── Section Headers ─── */
.section-header {
  margin-bottom: 64px;
}

.section-header--center {
  text-align: center;
}

.section-header .t-eyebrow {
  display: block;
  margin-bottom: 20px;
}

.section-header .t-h2 {
  margin-bottom: 24px;
}

/* ─── Text Link (underline CTA) ─── */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
  transition: gap 0.3s var(--ease), opacity 0.25s;
}

.text-link:hover { gap: 16px; }
.text-link--white { color: #fff; border-bottom-color: rgba(255,255,255,0.6); }
.text-link--white:hover { border-bottom-color: #fff; }

.text-link-arrow { font-size: 0.9em; }

/* ─── Primary Button ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 16px 36px;
  border: 1px solid var(--black);
  color: var(--black);
  transition: background 0.3s var(--ease), color 0.3s;
  cursor: pointer;
}

.btn:hover { background: var(--black); color: #fff; }
.btn--filled { background: var(--black); color: #fff; }
.btn--filled:hover { background: transparent; color: var(--black); }
.btn--white { color: #fff; border-color: #fff; }
.btn--white:hover { background: #fff; color: var(--black); }

/* ─── Image Cards ─── */
.card {
  position: relative;
  overflow: hidden;
}

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

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.card:hover .card-img img { transform: scale(1.04); }

.card-body {
  padding: 24px 0 0;
}

.card-location {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 400;
  margin-bottom: 10px;
  display: block;
}

.card-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 12px;
  color: var(--black);
}

.card-desc {
  font-size: 0.84rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 20px;
  font-style: italic;
  font-family: var(--serif);
}

/* ─── Editorial Feature (large alternating) ─── */
.editorial-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  margin-bottom: 2px;
}

.editorial-feature.reverse { direction: rtl; }
.editorial-feature.reverse > * { direction: ltr; }

.editorial-feature__img {
  position: relative;
  overflow: hidden;
}

.editorial-feature__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.editorial-feature:hover .editorial-feature__img img { transform: scale(1.03); }

.editorial-feature__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 8%, 100px) clamp(32px, 6%, 80px);
  background: var(--white);
}

.editorial-feature__body .t-eyebrow { margin-bottom: 20px; }
.editorial-feature__body .t-h2 { margin-bottom: 24px; }
.editorial-feature__body .t-body { margin-bottom: 36px; max-width: 420px; }

/* ─── 3-Col Grid ─── */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Card image aspect ratios */
.aspect-3-4 { aspect-ratio: 3/4; }
.aspect-4-3 { aspect-ratio: 4/3; }
.aspect-16-9 { aspect-ratio: 16/9; }
.aspect-1-1 { aspect-ratio: 1/1; }
.aspect-5-4 { aspect-ratio: 5/4; }
.aspect-2-3 { aspect-ratio: 2/3; }

/* ─── Full-Bleed Image Section ─── */
.full-bleed {
  position: relative;
  overflow: hidden;
}

.full-bleed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── Manifesto / Intro Section ─── */
.manifesto {
  padding: clamp(80px, 12vw, 160px) 0;
  text-align: center;
}

.manifesto .t-h2 {
  max-width: 820px;
  margin: 0 auto 32px;
  line-height: 1.2;
}

.manifesto .t-body-lg {
  max-width: 620px;
  margin: 0 auto 48px;
}

/* ─── Stats Strip ─── */
.stats-strip {
  display: flex;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item {
  flex: 1;
  padding: 48px 40px;
  text-align: center;
  border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--black);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 400;
}

/* ─── Differentiators Grid ─── */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.diff-item {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.35s;
}

.diff-item:nth-child(3n) { border-right: none; }
.diff-item:nth-child(4), .diff-item:nth-child(5), .diff-item:nth-child(6) { border-bottom: none; }
.diff-item:hover { background: var(--cream); }

.diff-num {
  font-family: var(--sans);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  color: var(--gold);
  font-weight: 400;
  display: block;
  margin-bottom: 20px;
}

.diff-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 16px;
  color: var(--black);
}

.diff-body {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--gray);
}

/* ─── Dark CTA Strip ─── */
.dark-strip {
  background: var(--black);
  color: #fff;
  padding: clamp(80px, 12vw, 160px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.dark-strip__bg {
  position: absolute;
  inset: 0;
}

.dark-strip__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.dark-strip__content {
  position: relative;
  z-index: 1;
}

.dark-strip .t-eyebrow { color: rgba(255,255,255,0.5); margin-bottom: 20px; display: block; }
.dark-strip .t-h2 { color: #fff; margin-bottom: 20px; max-width: 700px; margin-left: auto; margin-right: auto; }
.dark-strip .t-body { color: rgba(255,255,255,0.6); max-width: 500px; margin: 0 auto 48px; }

/* ─── Newsletter ─── */
.newsletter {
  background: var(--cream);
  padding: clamp(70px, 10vw, 120px) 0;
}

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}

.newsletter__left .t-h3 { margin-bottom: 16px; }
.newsletter__left .t-body { max-width: 380px; }

.nl-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.nl-field {
  position: relative;
}

.nl-field input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(24,22,20,0.25);
  color: var(--black);
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 300;
  padding: 14px 0;
  outline: none;
  transition: border-color 0.3s;
}

.nl-field input::placeholder { color: rgba(24,22,20,0.35); }
.nl-field input:focus { border-bottom-color: var(--black); }

.nl-success {
  display: none;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-top: 8px;
}

/* ─── Page Hero (sub pages) ─── */
.page-hero {
  position: relative;
  height: 65vh;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: var(--black);
}

.page-hero__bg {
  position: absolute;
  inset: 0;
}

.page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 18s ease-in-out infinite alternate;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(24,22,20,0.75) 0%,
    rgba(24,22,20,0.25) 60%,
    rgba(24,22,20,0.15) 100%
  );
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter) 64px;
  width: 100%;
}

.page-hero__content .t-eyebrow {
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
  display: block;
}

.page-hero__content .t-h1 { color: #fff; }

/* ─── Breadcrumb ─── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px var(--gutter);
  border-bottom: 1px solid var(--border);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray);
}

.breadcrumb a { transition: color 0.25s; }
.breadcrumb a:hover { color: var(--black); }
.breadcrumb-sep { opacity: 0.4; }

/* ─── Filter Bar ─── */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 0;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-bar::-webkit-scrollbar { display: none; }

.filter-btn {
  flex-shrink: 0;
  padding: 20px 28px;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  border: none;
  border-bottom: 2px solid transparent;
  background: none;
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s;
  margin-bottom: -1px;
}

.filter-btn:hover { color: var(--black); }
.filter-btn.active { color: var(--black); border-bottom-color: var(--black); }

/* ─── Accordion ─── */
.accordion { border-top: 1px solid var(--border); }

.acc-item { border-bottom: 1px solid var(--border); }

.acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  gap: 24px;
}

.acc-trigger-left {
  display: flex;
  align-items: center;
  gap: 28px;
}

.acc-idx {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  color: var(--gray);
  font-weight: 400;
  min-width: 28px;
}

.acc-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--black);
}

.acc-plus {
  width: 18px;
  height: 18px;
  position: relative;
  flex-shrink: 0;
}

.acc-plus::before,
.acc-plus::after {
  content: '';
  position: absolute;
  background: var(--black);
  transition: transform 0.35s var(--ease), opacity 0.35s;
}

.acc-plus::before { width: 1px; height: 100%; top: 0; left: 50%; }
.acc-plus::after  { width: 100%; height: 1px; top: 50%; left: 0; }

.acc-item.open .acc-plus::before { transform: rotate(90deg); opacity: 0; }

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
}

.acc-body-inner {
  padding: 0 0 36px 56px;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--gray);
  max-width: 640px;
}

/* ─── Testimonial ─── */
.testimonial {
  padding: clamp(60px, 8vw, 100px) 0;
  text-align: center;
}

.testimonial-quote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  max-width: 800px;
  margin: 0 auto 32px;
  color: var(--charcoal);
}

.testimonial-attr {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 400;
}

/* ─── Membership Tier Cards ─── */
.tier-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.tier-card {
  padding: 52px 40px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.35s;
}

.tier-card:hover { background: var(--cream); }
.tier-card.featured { background: var(--black); color: #fff; }

.tier-card.featured .tier-name,
.tier-card.featured .tier-desc,
.tier-card.featured .tier-price,
.tier-card.featured .tier-price-sub,
.tier-card.featured .tier-benefit { color: rgba(255,255,255,0.85); }

.tier-card.featured .tier-name { color: #fff; }
.tier-card.featured .tier-divider { background: rgba(255,255,255,0.15); }

.tier-badge {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--gold);
  background: rgba(184,150,90,0.12);
  padding: 6px 14px;
  display: inline-block;
  width: fit-content;
}

.tier-name {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--black);
  line-height: 1.1;
}

.tier-desc {
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--gray);
}

.tier-price {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--black);
  line-height: 1;
}

.tier-price-sub {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--gray);
}

.tier-divider {
  height: 1px;
  background: var(--border);
}

.tier-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tier-benefit {
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--charcoal);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.tier-benefit::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.8em;
  margin-top: 2px;
}

/* ─── Process Steps ─── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: var(--border);
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.step-num {
  width: 56px;
  height: 56px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--black);
  background: var(--white);
  position: relative;
  z-index: 1;
}

.step-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--black);
}

.step-body {
  font-size: 0.83rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--gray);
}

/* ─── Form ─── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 32px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group--full { grid-column: 1 / -1; }

.form-label {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 400;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  color: var(--black);
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 300;
  padding: 14px 0;
  outline: none;
  transition: border-color 0.3s;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(24,22,20,0.3); }
.form-input:focus,
.form-textarea:focus,
.form-select:focus { border-bottom-color: var(--black); }

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

/* ─── Footer ─── */
.site-footer {
  background: var(--black);
  color: #fff;
  padding: 80px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 40px;
}

.footer-brand__logo {
  font-family: var(--serif);
  font-size: 0.9rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #fff;
  display: block;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.83rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.45);
  max-width: 280px;
}

.footer-col__title {
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 400;
  margin-bottom: 24px;
}

.footer-col__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col__links a {
  font-size: 0.83rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  transition: color 0.25s;
}

.footer-col__links a:hover { color: #fff; }

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s, background 0.25s;
}

.footer-social a:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
}

.footer-social svg { width: 14px; height: 14px; fill: rgba(255,255,255,0.6); }
.footer-social a:hover svg { fill: #fff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.06em;
}

.footer-legal {
  display: flex;
  gap: 28px;
}

.footer-legal a {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  transition: color 0.25s;
}

.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.32s; }
.reveal-d4 { transition-delay: 0.44s; }
.reveal-d5 { transition-delay: 0.56s; }
.reveal-d6 { transition-delay: 0.68s; }

/* ─── WhatsApp Float ─── */
.wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

.wa-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.4);
}

.wa-btn svg { width: 26px; height: 26px; fill: #fff; }

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .tier-cards { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}

@media (max-width: 900px) {
  :root { --section: clamp(60px, 8vw, 100px); }

  .editorial-feature { grid-template-columns: 1fr; min-height: auto; }
  .editorial-feature.reverse { direction: ltr; }
  .editorial-feature__img { height: 55vw; min-height: 280px; }

  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-item:nth-child(3n) { border-right: 1px solid var(--border); }
  .diff-item:nth-child(2n) { border-right: none; }
  .diff-item:nth-child(4), .diff-item:nth-child(5), .diff-item:nth-child(6) { border-bottom: 1px solid var(--border); }
  .diff-item:nth-child(5), .diff-item:nth-child(6) { border-bottom: none; }
  .newsletter-inner { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .stats-strip { flex-wrap: wrap; }
  .stat-item { min-width: 50%; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .menu-right { display: none; }
  .menu-left { width: 100%; padding: 100px 40px; }
  .enquire-bar-inner { flex-wrap: wrap; }
  .enquire-field { width: 100%; border-right: none; border-bottom: 1px solid var(--border); }
  .enquire-submit { width: 100%; }
  .header-inner { padding: 0 20px; }
}

@media (max-width: 640px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .diff-item:nth-child(n) { border-right: none; border-bottom: 1px solid var(--border); }
  .diff-item:last-child { border-bottom: none; }
  .nl-row { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group--full { grid-column: auto; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-title { font-size: 2.8rem; }
  .page-hero { height: 55vh; }
  .process-steps { grid-template-columns: 1fr; }
  .btn-apply { display: none; }
  .header-contact { display: none; }
}

/* ─── Helpers ─── */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mt-64 { margin-top: 64px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--border); }
::-webkit-scrollbar-thumb:hover { background: var(--gray); }

/* ═══════════════════════════════════════════════════════
   ENQUIRY FORM MODAL
   ═══════════════════════════════════════════════════════ */

/* Overlay */
.enquiry-overlay {
  position: fixed;
  inset: 0;
  background: rgba(24, 22, 20, 0.93);
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: 20px;
}
.enquiry-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Modal card */
.enquiry-modal {
  background: var(--cream);
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(24px);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.enquiry-overlay.open .enquiry-modal {
  transform: translateY(0);
}

/* Close button */
.enquiry-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--black);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
  transition: opacity 0.2s;
  z-index: 2;
  padding: 4px 8px;
}
.enquiry-close:hover { opacity: 1; }

/* Progress bar */
.enquiry-progress {
  height: 2px;
  background: var(--border);
  width: 100%;
}
.enquiry-progress-bar {
  height: 100%;
  background: var(--gold);
  transition: width 0.4s cubic-bezier(0.16,1,0.3,1);
  width: 25%;
}

/* Step container */
.enquiry-step {
  padding: 56px 56px 48px;
}
@media (max-width: 640px) {
  .enquiry-step { padding: 48px 28px 36px; }
}

/* Step eyebrow */
.enquiry-eyebrow-step {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

/* Step heading */
.enquiry-title {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 300;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 36px;
}
.enquiry-title em {
  font-style: italic;
  color: var(--gold);
}

/* Fields */
.enquiry-fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.enquiry-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 480px) {
  .enquiry-row { grid-template-columns: 1fr; }
}
.enquiry-field-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.enquiry-field-wrap label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.55;
}
.enquiry-field-wrap input,
.enquiry-field-wrap select,
.enquiry-field-wrap textarea {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--black);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.enquiry-field-wrap input:focus,
.enquiry-field-wrap select:focus,
.enquiry-field-wrap textarea:focus {
  border-bottom-color: var(--gold);
}
.enquiry-field-wrap input::placeholder,
.enquiry-field-wrap textarea::placeholder {
  color: rgba(24,22,20,0.3);
}
.enquiry-field-wrap select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B8965A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}
.enquiry-field-wrap select option { color: var(--black); background: var(--cream); }
.enquiry-field-wrap textarea {
  resize: none;
  line-height: 1.6;
}

/* Experience chips */
.enquiry-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.enquiry-chip {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  background: transparent;
  border: 1px solid var(--border);
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.2s;
}
.enquiry-chip:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.enquiry-chip.active {
  background: var(--black);
  border-color: var(--black);
  color: var(--cream);
}

/* Navigation */
.enquiry-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.enquiry-back {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.4;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s;
}
.enquiry-back:hover { opacity: 0.8; }
.enquiry-next,
.enquiry-submit-btn {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--black);
  border: none;
  cursor: pointer;
  padding: 16px 36px;
  transition: background 0.2s, color 0.2s;
}
.enquiry-next:hover,
.enquiry-submit-btn:hover { background: var(--gold); }
.enquiry-submit-btn.loading { opacity: 0.6; pointer-events: none; }

/* First step (no back button) */
.enquiry-step[data-step="1"] .enquiry-next {
  margin-left: auto;
  display: block;
}

/* Success screen */
.enquiry-success-screen {
  padding: 72px 56px;
  text-align: center;
}
@media (max-width: 640px) {
  .enquiry-success-screen { padding: 56px 28px; }
}
.enquiry-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  font-size: 22px;
  color: var(--gold);
}
.enquiry-success-msg {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7;
  color: var(--black);
  opacity: 0.7;
  max-width: 400px;
  margin: 0 auto 40px;
}
.enquiry-close-final {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--black);
  border: none;
  cursor: pointer;
  padding: 16px 36px;
  transition: background 0.2s;
}
.enquiry-close-final:hover { background: var(--gold); }

/* Error notice */
.enquiry-error-msg {
  font-family: var(--sans);
  font-size: 13px;
  color: #b94a4a;
  margin-top: 16px;
  text-align: center;
  display: none;
}
.enquiry-error-msg a { color: inherit; text-decoration: underline; }

/* ═══════════════════════════════════════════════════════
   MOBILE-FIRST RESPONSIVE OVERRIDES
   Breakpoints: 1100 · 900 · 768 · 640 · 480 · 375
   ═══════════════════════════════════════════════════════ */

/* ─── Tablet landscape (≤ 1024px) ─── */
@media (max-width: 1024px) {
  .menu-left { padding: 80px 56px; }
  .menu-nav a { font-size: clamp(1.9rem, 3.5vw, 3rem); }
  .editorial-feature__body { padding: clamp(32px, 6%, 72px) clamp(24px, 5%, 60px); }
}

/* ─── Tablet portrait (≤ 768px) ─── */
@media (max-width: 768px) {
  /* Container gutter */
  .container { padding-left: clamp(16px, 4vw, 40px); padding-right: clamp(16px, 4vw, 40px); }
  .container--narrow { padding-left: clamp(16px, 4vw, 40px); padding-right: clamp(16px, 4vw, 40px); }

  /* Header */
  .header-inner { padding: 0 16px; height: 60px; }
  .header-contact { display: none; }

  /* Menu overlay — full screen, scrollable */
  .menu-overlay-inner { flex-direction: column; align-items: stretch; overflow-y: auto; }
  .menu-left { width: 100%; padding: 88px 32px 48px; }
  .menu-right { display: none; }
  .menu-nav { gap: 4px; margin-bottom: 40px; }
  .menu-nav a { font-size: clamp(1.8rem, 6vw, 2.6rem); line-height: 1.3; }
  .menu-close { top: 20px; right: 20px; }
  .menu-footer { flex-direction: row; flex-wrap: wrap; gap: 16px 28px; }

  /* Hero */
  .hero { height: 95svh; min-height: 560px; }
  .hero-content { padding: 0 clamp(16px, 5vw, 40px); }
  .hero-eyebrow { font-size: 0.58rem; margin-bottom: 16px; }
  .hero-scroll-hint { display: none; }

  /* Enquire bar — full-width stacked */
  .enquire-bar-inner { flex-direction: column; }
  .enquire-field { width: 100%; border-right: none; border-bottom: 1px solid var(--border); height: 62px; padding: 0 20px; }
  .enquire-submit { width: 100%; height: 58px; }

  /* Destination popup */
  .dest-popup { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: calc(100vw - 32px); max-height: 70vh; overflow-y: auto; z-index: 9999; }

  /* Calendar popup */
  .cal-popup { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: calc(100vw - 32px); max-height: 85vh; overflow-y: auto; z-index: 9999; }
  .cal-months { grid-template-columns: 1fr; gap: 16px; }

  /* Guests popup */
  .guests-popup { width: calc(100vw - 32px); left: 50%; transform: translateX(-50%); right: auto; }

  /* Manifesto */
  .manifesto { padding: 64px 0; }

  /* Stats */
  .stats-strip { flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; min-width: 50%; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:last-child, .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }

  /* Editorial feature */
  .editorial-feature { grid-template-columns: 1fr; min-height: auto; }
  .editorial-feature.reverse { direction: ltr; }
  .editorial-feature__img { height: 56vw; min-height: 260px; }
  .editorial-feature__body { padding: 40px 24px 48px; }

  /* Diff grid */
  .diff-grid { grid-template-columns: 1fr 1fr; }
  .diff-item { padding: 36px 28px; }

  /* Filter bar — touch-friendly */
  .filter-bar { padding: 0 16px; gap: 8px; }
  .filter-btn { padding: 9px 18px; font-size: 0.62rem; white-space: nowrap; flex-shrink: 0; }

  /* Destination grid / cards */
  .grid-3 { grid-template-columns: 1fr 1fr; gap: 20px; }
  .grid-4 { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* Section padding */
  .section-header { margin-bottom: 40px; }

  /* Page hero */
  .page-hero { height: 52vh; min-height: 340px; }
  .page-hero__content { padding: 0 20px 32px; }
  .page-hero__content .t-h1 { font-size: clamp(2.2rem, 7vw, 4rem); }

  /* Newsletter */
  .newsletter-inner { grid-template-columns: 1fr; gap: 40px; }
  .nl-row { grid-template-columns: 1fr; gap: 12px; }

  /* Tier cards */
  .tier-cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  /* Process steps */
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* WhatsApp button */
  .wa-btn { width: 50px; height: 50px; bottom: 20px; right: 16px; }
  .wa-btn svg { width: 22px; height: 22px; }

  /* Enquiry modal step padding */
  .enquiry-step { padding: 44px 24px 36px; }
  .enquiry-success-screen { padding: 56px 24px; }
}

/* ─── Mobile (≤ 640px) ─── */
@media (max-width: 640px) {
  /* Typography */
  .t-h1 { font-size: clamp(2.4rem, 9vw, 3.4rem); }
  .t-h2 { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .t-h3 { font-size: clamp(1.4rem, 5vw, 2rem); }
  .t-body-lg { font-size: 1rem; }

  /* Hero */
  .hero-title { font-size: clamp(2.4rem, 9vw, 3.4rem); line-height: 1.08; }

  /* Header */
  .header-inner { height: 56px; }
  .btn-apply { display: none; }

  /* Enquire bar fields — slightly smaller */
  .enquire-field { height: 56px; }
  .enquire-submit { height: 54px; }

  /* Grids — single column */
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 20px; }
  .diff-grid { grid-template-columns: 1fr; }
  .diff-item { padding: 32px 24px; border-right: none !important; }
  .diff-item:last-child { border-bottom: none; }

  /* Stat strip — 2 cols */
  .stat-item { padding: 32px 20px; }
  .stat-number { font-size: clamp(2rem, 8vw, 3rem); }

  /* Editorial feature */
  .editorial-feature__img { height: 64vw; min-height: 220px; }
  .editorial-feature__body { padding: 32px 20px 40px; }

  /* Manifesto text */
  .manifesto { padding: 56px 0; }
  .manifesto .t-h2 { font-size: clamp(1.8rem, 7vw, 2.4rem); }

  /* Section header */
  .section-header { margin-bottom: 32px; }

  /* Filter bar */
  .filter-bar { padding: 0 12px; }

  /* Cards */
  .card-body { padding: 18px 0 0; }
  .aspect-3-4 { aspect-ratio: 4/3; } /* landscape on mobile is better */

  /* Page hero */
  .page-hero { height: 48vh; min-height: 300px; }
  .page-hero__content .t-eyebrow { font-size: 0.58rem; }

  /* Process steps */
  .process-steps { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand p { max-width: 100%; }

  /* Newsletter form */
  .nl-row { grid-template-columns: 1fr; }

  /* Testimonial */
  .testimonial-quote { font-size: clamp(1.4rem, 5vw, 2rem); }

  /* Dark strip */
  .dark-strip .t-h2 { font-size: clamp(1.8rem, 7vw, 2.4rem); }

  /* WhatsApp */
  .wa-btn { bottom: 16px; right: 12px; }
}

/* ─── Small mobile (≤ 480px) ─── */
@media (max-width: 480px) {
  /* Container */
  .container { padding-left: 16px; padding-right: 16px; }
  .container--narrow { padding-left: 16px; padding-right: 16px; }

  /* Menu */
  .menu-left { padding: 80px 24px 40px; }
  .menu-nav a { font-size: 1.9rem; }

  /* Hero */
  .hero-title { font-size: clamp(2rem, 10vw, 2.8rem); }
  .hero-eyebrow { display: none; }

  /* Stats */
  .stat-item { padding: 28px 16px; }

  /* Enquire */
  .enquire-field { padding: 0 14px; }

  /* Enquiry modal */
  .enquiry-step { padding: 36px 18px 28px; }
  .enquiry-row { grid-template-columns: 1fr; }
  .enquiry-chips { gap: 8px; }
  .enquiry-chip { padding: 7px 12px; font-size: 0.7rem; }
  .enquiry-title { font-size: clamp(1.6rem, 7vw, 2.2rem); margin-bottom: 24px; }

  /* Footer */
  .footer-legal { flex-wrap: wrap; gap: 12px 20px; }
}

/* ─── Extra small (≤ 375px) ─── */
@media (max-width: 375px) {
  .hero-title { font-size: 1.9rem; }
  .menu-nav a { font-size: 1.7rem; }
  .t-h2 { font-size: 1.7rem; }
  .header-logo { font-size: 0.72rem; letter-spacing: 0.18em; }
  .stat-item { padding: 24px 12px; }
}

/* ─── Touch targets — ensure min 44px tap area ─── */
@media (max-width: 768px) {
  .hamburger { padding: 12px; min-height: 44px; min-width: 44px; align-items: center; }
  .menu-close { width: 48px; height: 48px; }
  .filter-btn { min-height: 40px; }
  .text-link { min-height: 40px; display: inline-flex; align-items: center; }
  .btn-primary, .btn { min-height: 50px; padding: 14px 32px; }
  .enquiry-next, .enquiry-submit-btn, .enquiry-back, .enquiry-close-final { min-height: 50px; }
  .enquiry-close { min-height: 40px; padding: 8px 14px; }
}

/* ─── Safe area insets (notch/home-bar) ─── */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .wa-btn { bottom: calc(20px + env(safe-area-inset-bottom)); }
  .enquire-submit { padding-bottom: calc(0px + env(safe-area-inset-bottom)); }
  .site-footer { padding-bottom: calc(40px + env(safe-area-inset-bottom)); }
}
