/* =================================================================
   ABC HYDE PARK HOTEL — v2 Luxury Redesign
   Fonts  : Cormorant Garamond (serif display) + Montserrat (UI)
   Palette: Deep ink · Antique gold · Maroon · Parchment cream
   ================================================================= */

@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;1,600&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ── Variables ─────────────────────────────────────────────────── */
:root {
  --ink:           #1A1612;
  --ink-soft:      #2C2418;
  --ink-mid:       #3D3529;
  --ink-muted:     #7A7062;
  --cream:         #F5F0E8;
  --parchment:     #EDE7D6;
  --white:         #FEFCF7;
  --gold:          #C9A84C;
  --gold-light:    #E8D08A;
  --gold-dark:     #9A7A2E;
  --gold-dim:      rgba(201,168,76,0.15);
  --maroon:        #6B1E2A;
  --maroon-soft:   #8B3040;
  --border:        rgba(201,168,76,0.20);
  --border-mid:    rgba(201,168,76,0.38);
  --border-strong: rgba(201,168,76,0.60);
  --shadow:        0 24px 60px rgba(26,22,18,0.18);
  --shadow-soft:   0 8px 28px rgba(26,22,18,0.10);
}

/* ── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── Typography helpers ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.15;
  font-weight: 400;
}
.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.gold-rule {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px auto;
  max-width: 200px;
}
.gold-rule span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.diamond {
  width: 5px; height: 5px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── HEADER ─────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  display: flex;
  align-items: center;
  background: rgba(26,22,18,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.site-header.scrolled {
  background: rgba(26,22,18,0.98);
  border-bottom-color: var(--border-mid);
}
.header-inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 20px;
}

/* Social */
.header-social {
  display: flex;
  gap: 10px;
}
.header-social a {
  width: 32px; height: 32px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  font-size: 13px;
  transition: border-color 0.2s, color 0.2s;
}
.header-social a:hover { border-color: var(--gold); color: var(--gold); }

/* Logo */
.header-logo {
  display: flex;
  justify-content: center;
}
.header-logo img {
  height: 46px;
  width: auto;
}

/* Book Now button */
.btn-book-now {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  line-height: 1;
  color: var(--white);
  background: linear-gradient(135deg, var(--maroon), #8B2535);
  border-radius: 2px;
  white-space: nowrap;
  transition: opacity 0.15s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 18px rgba(107,30,42,0.32);
}
.btn-book-now i {
  font-size: 11px;
  line-height: 1;
}
.btn-book-now:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(107,30,42,0.38);
}

/* Hamburger */
.nav-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: 2px;
  width: 38px; height: 38px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  transition: border-color 0.2s;
}
.nav-toggle:hover { border-color: var(--gold); }
.nav-toggle span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--cream);
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── SLIDE-OUT NAV ──────────────────────────────────────────────── */
.nav-backdrop {
  position: fixed; inset: 0;
  background: rgba(10,8,6,0.6);
  backdrop-filter: blur(3px);
  z-index: 998;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s;
}
.nav-backdrop.open { opacity: 1; pointer-events: all; }

.nav-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 360px;
  background: #1e1810;
  border-left: 1px solid rgba(201,168,76,0.18);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  padding: 96px 40px 40px;
  overflow-y: auto;
}
.nav-drawer.open { transform: translateX(0); }

/* ── nav links ── */
.nav-drawer ul { list-style: none; margin: 0; padding: 0; }
.nav-drawer li { border-bottom: 1px solid rgba(201,168,76,0.12); }
.nav-drawer li:last-child { border-bottom: none; }
.nav-drawer a {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  font-style: italic;
  color: #d4c4a0;
  padding: 16px 0;
  letter-spacing: 0.4px;
  line-height: 1.2;
  transition: color 0.2s, letter-spacing 0.2s;
  text-decoration: none;
}
.nav-drawer a:hover { color: #f0e0b0; letter-spacing: 0.8px; }
.nav-drawer a.active { color: var(--gold); }

/* ── gold "Check Availability →" special link ── */
.nav-drawer .nav-avail-link {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  color: var(--gold);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 20px 0 4px;
  margin-top: 8px;
  transition: opacity 0.2s;
}
.nav-drawer .nav-avail-link:hover { opacity: 0.75; letter-spacing: 1.5px; }

/* ── tagline & meta ── */
.nav-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(180,160,110,0.6);
  margin: 24px 0 16px;
  line-height: 1.65;
  border-top: 1px solid rgba(201,168,76,0.12);
  padding-top: 22px;
}

.nav-drawer-meta {
  margin-top: auto;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-weight: 400;
  color: #a08868;
  letter-spacing: 0.3px;
  line-height: 1.6;
}
.nav-drawer-meta strong { color: #d4c4a0; font-weight: 600; }

.nav-book-btn,
.nav-drawer a.nav-book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--maroon), #8B2535);
  color: var(--white) !important;          /* beat .nav-drawer a colour */
  font-family: 'Montserrat', sans-serif !important;
  font-size: 10px !important;
  font-style: normal !important;           /* beat italic from .nav-drawer a */
  font-weight: 700 !important;
  letter-spacing: 2.8px !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  border-radius: 2px;
  transition: opacity 0.15s, transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 18px rgba(107,30,42,0.32);
  white-space: nowrap;
  text-decoration: none;
}
.nav-book-btn i,
.nav-drawer a.nav-book-btn i {
  font-size: 11px;                         /* match text cap-height */
  line-height: 1;
  position: relative;
  top: 0;                                  /* ensure no vertical drift */
}
.nav-book-btn:hover,
.nav-drawer a.nav-book-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(107,30,42,0.38);
  letter-spacing: 2.8px !important;       /* prevent hover rule from nav-drawer a */
  color: var(--white) !important;
}

/* ── LAYOUT ────────────────────────────────────────────────────── */
main { padding-top: 72px; }

.section-dark  { background: var(--ink); }
.section-dark2 { background: var(--ink-soft); }
.section-cream { background: var(--cream); }
.section-parchment { background: var(--parchment); }

.wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── HERO ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: calc(100vh - 72px);
  min-height: 580px;
  max-height: 860px;
  overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,22,18,0.28) 0%,
    rgba(26,22,18,0.05) 40%,
    rgba(26,22,18,0.60) 80%,
    rgba(26,22,18,0.88) 100%
  );
}
.hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0 28px 64px;
  max-width: 1320px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.hero-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  text-shadow: 0 2px 30px rgba(26,22,18,0.4);
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: 13px;
  font-weight: 300;
  color: rgba(245,240,232,0.75);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--maroon), #8B2535);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  border-radius: 2px;
  box-shadow: 0 4px 20px rgba(107,30,42,0.38);
  transition: opacity 0.15s, transform 0.15s, box-shadow 0.15s;
}
.btn-primary:hover {
  opacity: 0.88; transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(107,30,42,0.44);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  border: 1px solid rgba(245,240,232,0.35);
  color: var(--cream);
  font-size: 10px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ── HERO BOOKING BAR ──────────────────────────────────────────── */
.hero-booking-bar {
  display: flex;
  align-items: stretch;
  background: rgba(15, 12, 8, 0.72);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 3px;
  margin-bottom: 16px;
  max-width: 720px;
  overflow: hidden;
}
.hbb-field {
  display: flex;
  flex-direction: column;
  padding: 12px 20px;
  flex: 1;
  min-width: 0;
  gap: 4px;
}
.hbb-field label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.hbb-field input,
.hbb-field select {
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 300;
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  width: 100%;
}
.hbb-field input::placeholder { color: rgba(240,232,215,0.45); }
.hbb-field input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(0.5);
  cursor: pointer;
}
.hbb-field select option { background: #1e1810; color: var(--white); }
.hbb-divider {
  width: 1px;
  background: rgba(201,168,76,0.2);
  margin: 10px 0;
  flex-shrink: 0;
}
.hbb-submit {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 28px;
  background: linear-gradient(135deg, var(--maroon), #8B2535);
  color: var(--white);
  border: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
  flex-shrink: 0;
}
.hbb-submit:hover { opacity: 0.88; }

@media (max-width: 680px) {
  .hero-booking-bar {
    flex-direction: column;
    max-width: 100%;
  }
  .hbb-divider { width: 100%; height: 1px; margin: 0 16px; width: auto; }
  .hbb-submit {
    padding: 16px;
    justify-content: center;
  }
}

.hero-next {
  position: absolute;
  right: 28px; top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(26,22,18,0.4);
  backdrop-filter: blur(4px);
  color: white; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
}
.hero-next:hover { border-color: var(--gold); background: rgba(26,22,18,0.65); }

/* Hero scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 28px; right: 28px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  cursor: pointer;
}
.hero-scroll span {
  font-size: 9px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(245,240,232,0.5);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity: 0.6; }
  50% { transform: scaleY(0.6); opacity: 0.3; }
}

/* ── PHOTO STRIP ──────────────────────────────────────────────── */
.photo-strip {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  height: 110px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.photo-strip::-webkit-scrollbar { display: none; }
.photo-strip-item {
  flex: 0 0 140px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.photo-strip-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s;
  filter: brightness(0.85) saturate(0.9);
}
.photo-strip-item:hover img {
  transform: scale(1.1);
  filter: brightness(1) saturate(1.1);
}

/* ── WELCOME SECTION ────────────────────────────────────────────── */
.welcome {
  background: var(--cream);
  padding: 96px 28px;
  text-align: center;
}
.welcome-inner { max-width: 700px; margin: 0 auto; }
.welcome h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-style: italic;
  color: var(--ink);
  margin: 14px 0 28px;
}
.welcome p {
  font-size: 15px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.85;
  margin-bottom: 18px;
}

/* ── ROOMS SECTION ──────────────────────────────────────────────── */
.rooms-section {
  background: var(--ink);
  padding: 96px 0 0;
}
.rooms-header {
  text-align: center;
  padding: 0 28px 64px;
}
.rooms-header h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  font-style: italic;
  color: var(--cream);
  margin: 14px 0 12px;
}
.rooms-header p {
  font-size: 14px; font-weight: 300;
  color: var(--ink-muted);
  max-width: 480px; margin: 0 auto;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.room-card {
  position: relative;
  overflow: hidden;
  height: 560px;
  cursor: pointer;
}
.room-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease, filter 0.5s;
  filter: brightness(0.75) saturate(0.85);
}
.room-card:hover img {
  transform: scale(1.06);
  filter: brightness(0.65) saturate(0.9);
}
.room-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(26,22,18,0.95) 0%,
    rgba(26,22,18,0.4) 50%,
    transparent 100%
  );
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px;
  transition: padding 0.4s;
}
.room-card:hover .room-card-overlay { padding-bottom: 40px; }
.room-card-type {
  font-size: 9px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.room-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px; font-weight: 400;
  color: var(--white);
  margin-bottom: 6px;
}
.room-card-bed {
  font-size: 11px; font-weight: 300;
  color: rgba(245,240,232,0.65);
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.room-card-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 9px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.room-card:hover .room-card-cta { opacity: 1; transform: translateY(0); }
.room-card-divider {
  width: 30px; height: 1px;
  background: var(--gold);
  margin-bottom: 12px;
  transition: width 0.4s;
}
.room-card:hover .room-card-divider { width: 50px; }

/* ── DIRECT BOOKING BANNER ──────────────────────────────────────── */
.booking-banner {
  background: var(--parchment);
  padding: 80px 28px;
}
.booking-banner-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.booking-banner h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-style: italic;
  color: var(--ink);
  margin: 12px 0 20px;
}
.booking-banner p {
  font-size: 14px; font-weight: 300;
  color: var(--ink-mid); line-height: 1.85;
  margin-bottom: 28px;
}
.perks-list {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.perk-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 18px 16px;
  border-top: 2px solid var(--gold);
  box-shadow: 0 2px 0 var(--gold), var(--shadow-soft);
  position: relative;
}
/* Corner brackets */
.perk-item::before, .perk-item::after {
  content: '';
  position: absolute;
  width: 10px; height: 10px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.4;
}
.perk-item::before { top: 5px; left: 5px; border-width: 1px 0 0 1px; }
.perk-item::after  { bottom: 5px; right: 5px; border-width: 0 1px 1px 0; }
.perk-icon { font-size: 20px; margin-bottom: 8px; }
.perk-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px; font-weight: 500;
  color: var(--ink); margin-bottom: 4px;
}
.perk-desc {
  font-size: 12px; font-weight: 300;
  color: var(--ink-muted); line-height: 1.6;
}

/* ── AMENITIES STRIP ────────────────────────────────────────────── */
.amenities-strip {
  background: var(--ink-soft);
  padding: 96px 28px;
}
.amenities-inner {
  max-width: 1320px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.amenity-tile {
  position: relative; overflow: hidden;
  height: 320px;
}
.amenity-tile img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.7) saturate(0.85);
  transition: transform 0.6s ease, filter 0.4s;
}
.amenity-tile:hover img {
  transform: scale(1.05);
  filter: brightness(0.6) saturate(1);
}
.amenity-tile-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 22px;
  background: linear-gradient(to top, rgba(26,22,18,0.9) 0%, transparent 100%);
}
.amenity-tile-label .eyebrow { font-size: 9px; letter-spacing: 2.5px; margin-bottom: 4px; }
.amenity-tile-label h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 400;
  color: var(--cream);
}

/* ── LOCATION TEASER ────────────────────────────────────────────── */
.location-teaser {
  background: var(--ink);
  padding: 96px 28px;
}
.location-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.location-text h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-style: italic;
  color: var(--cream);
  margin: 14px 0 20px;
}
.location-text p {
  font-size: 14px; font-weight: 300;
  color: var(--ink-muted); line-height: 1.85;
  margin-bottom: 16px;
}
.transport-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 24px 0 32px;
}
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 11px; font-weight: 500;
  color: var(--parchment);
  letter-spacing: 0.3px;
}
.pill i { color: var(--gold); font-size: 10px; }
.location-image {
  position: relative;
  border-radius: 2px; overflow: hidden;
  height: 420px;
}
.location-image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.85) saturate(0.9);
}
.location-image::before {
  content: '';
  position: absolute; inset: 12px;
  border: 1px solid var(--border-mid);
  z-index: 1; pointer-events: none;
}

/* ── FOOTER ─────────────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  border-top: 1px solid var(--border);
  padding: 56px 28px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand img { height: 52px; margin-bottom: 18px; }
.footer-brand p {
  font-size: 12px; font-weight: 300;
  color: var(--ink-muted); line-height: 1.75;
}
.footer-links h4 {
  font-size: 9px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 13px; font-weight: 300;
  color: var(--ink-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cream); }
.footer-contact h4 {
  font-size: 9px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-contact p {
  font-size: 13px; font-weight: 300;
  color: var(--ink-muted); line-height: 1.8;
}
.footer-contact a:hover { color: var(--cream); }
.footer-social {
  display: flex; gap: 10px; margin-top: 18px;
}
.footer-social a {
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-muted);
  font-size: 13px;
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom {
  max-width: 1100px; margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 10px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink-muted);
  text-align: center;
}

/* ══════════════════════════════════════════════════════════════════
   INNER PAGES
   ══════════════════════════════════════════════════════════════════ */

/* Page Hero */
.page-hero {
  height: 380px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex; align-items: flex-end;
  padding-bottom: 52px;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(26,22,18,0.35) 0%,
    rgba(26,22,18,0.70) 100%
  );
}
.page-hero-content {
  position: relative;
  padding: 0 28px;
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
}
.page-hero-content .eyebrow { margin-bottom: 8px; }
.page-hero-content h1 {
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 400; font-style: italic;
  color: var(--white);
}

/* ── ACCOMMODATION PAGE ─────────────────────────────────────────── */
.acc-intro {
  background: var(--cream);
  padding: 72px 28px;
  text-align: center;
}
.acc-intro-inner { max-width: 680px; margin: 0 auto; }
.acc-intro h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem); font-style: italic;
  color: var(--ink); margin: 14px 0 20px;
}
.acc-intro p { font-size: 14px; font-weight: 300; color: var(--ink-mid); line-height: 1.85; }

.room-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.room-feature:nth-child(odd) .room-feature-image { order: -1; }
.room-feature-image {
  position: relative; overflow: hidden;
}
.room-feature-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.room-feature:hover .room-feature-image img { transform: scale(1.04); }
.room-feature-info {
  padding: 64px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.room-feature:nth-child(odd) .room-feature-info { background: var(--parchment); }
.room-feature:nth-child(even) .room-feature-info { background: var(--cream); }

.room-feature-info .eyebrow { font-size: 9px; letter-spacing: 3px; }
.room-feature-info h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-style: italic; color: var(--ink);
  margin: 10px 0 18px;
}
.room-feature-info p {
  font-size: 14px; font-weight: 300;
  color: var(--ink-mid); line-height: 1.85;
  margin-bottom: 12px;
}
.bed-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: rgba(201,168,76,0.10);
  border: 1px solid var(--border-mid);
  border-radius: 2px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 1px;
  color: var(--gold-dark);
  margin: 6px 0 24px;
}
.btn-outline-dark {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  border: 1px solid var(--border-mid);
  color: var(--ink);
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
  align-self: flex-start;
}
.btn-outline-dark:hover {
  background: rgba(201,168,76,0.08);
  border-color: var(--gold);
}

/* Policies */
.policies-row {
  background: var(--ink-soft);
  padding: 72px 28px;
}
.policies-inner {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.policy-card {
  background: var(--ink);
  border: 1px solid var(--border);
  padding: 28px 26px;
  border-top: 2px solid var(--gold);
  position: relative;
}
.policy-card::before, .policy-card::after {
  content: '';
  position: absolute;
  width: 12px; height: 12px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.3;
}
.policy-card::before { top: 7px; left: 7px; border-width: 1px 0 0 1px; }
.policy-card::after { bottom: 7px; right: 7px; border-width: 0 1px 1px 0; }
.policy-card h3 {
  font-size: 9px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.policy-card p {
  font-size: 13px; font-weight: 300;
  color: var(--ink-muted); line-height: 1.8;
}

/* ── TARIFFS PAGE ───────────────────────────────────────────────── */
.tariffs-wrap {
  background: var(--cream);
  padding: 80px 28px;
}
.tariffs-inner { max-width: 1000px; margin: 0 auto; }
.tariff-lead {
  text-align: center; margin-bottom: 56px;
}
.tariff-lead h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-style: italic;
  color: var(--ink); margin: 12px 0 14px;
}
.tariff-lead p { font-size: 14px; font-weight: 300; color: var(--ink-mid); }

.tariff-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; margin-bottom: 56px;
}
.tariff-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px 24px 36px;
  text-align: center;
  position: relative;
  border-top: 2px solid var(--gold);
  box-shadow: 0 2px 0 var(--gold), var(--shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s;
}
.tariff-card::before, .tariff-card::after {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.35;
}
.tariff-card::before { top: 8px; left: 8px; border-width: 1px 0 0 1px; }
.tariff-card::after { bottom: 8px; right: 8px; border-width: 0 1px 1px 0; }
.tariff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 0 var(--gold), var(--shadow);
}
.tariff-type {
  font-size: 9px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 16px;
}
.tariff-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 500;
  color: var(--ink); line-height: 1;
  margin-bottom: 6px;
}
.tariff-price sup { font-size: 1.6rem; vertical-align: super; }
.tariff-bed {
  font-size: 11px; font-weight: 300;
  color: var(--ink-muted); font-style: italic;
  letter-spacing: 0.3px;
}
.tariff-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-mid), transparent);
  margin: 20px 0;
}
.tariff-card .btn-primary {
  width: 100%; justify-content: center;
  padding: 11px; font-size: 9px;
}

.tariff-notes {
  background: var(--parchment);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
  font-size: 13px; font-weight: 300;
  color: var(--ink-mid); line-height: 1.85;
  margin-bottom: 56px;
}
.tariff-notes strong { color: var(--ink); font-weight: 600; }

.policies-dark {
  background: var(--ink);
  padding: 80px 28px;
}
.policies-dark-inner {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.policy-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem); font-style: italic;
  color: var(--gold); margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.policy-block p, .policy-block li {
  font-size: 13px; font-weight: 300;
  color: var(--ink-muted); line-height: 1.85;
  margin-bottom: 12px;
}
.policy-block ul { list-style: none; }
.policy-block li::before { content: '◆ '; color: var(--gold); font-size: 7px; }
.payment-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.payment-badge {
  background: var(--ink-soft);
  border: 1px solid var(--border);
  padding: 5px 12px;
  font-size: 11px; font-weight: 700;
  color: var(--cream); letter-spacing: 0.5px;
  border-radius: 2px;
}

/* ── THINGS TO DO ───────────────────────────────────────────────── */
.things-intro {
  background: var(--cream); padding: 72px 28px; text-align: center;
}
.things-intro-inner { max-width: 680px; margin: 0 auto; }
.things-intro h2 { font-size: clamp(1.6rem, 2.5vw, 2rem); font-style: italic; color: var(--ink); margin: 12px 0 18px; }
.things-intro p { font-size: 14px; font-weight: 300; color: var(--ink-mid); line-height: 1.85; }

.map-wrap {
  height: 480px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; display: block; }

.places-section {
  background: var(--ink); padding: 80px 28px;
}
.places-header { text-align: center; margin-bottom: 48px; }
.places-header h2 { font-size: clamp(1.5rem, 2.2vw, 1.9rem); font-style: italic; color: var(--cream); margin: 12px 0; }
.places-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.place-card {
  background: var(--ink-soft);
  border: 1px solid var(--border);
  padding: 24px 22px 22px;
  position: relative;
  transition: transform 0.25s, border-color 0.25s;
}
.place-card::before, .place-card::after {
  content: '';
  position: absolute;
  width: 10px; height: 10px;
  border-color: var(--gold);
  border-style: solid; opacity: 0.3;
}
.place-card::before { top: 6px; left: 6px; border-width: 1px 0 0 1px; }
.place-card::after { bottom: 6px; right: 6px; border-width: 0 1px 1px 0; }
.place-card:hover { transform: translateY(-3px); border-color: var(--border-mid); }
.place-cat {
  font-size: 9px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px;
}
.place-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 400;
  color: var(--cream); margin-bottom: 8px;
}
.place-card p { font-size: 13px; font-weight: 300; color: var(--ink-muted); line-height: 1.65; margin-bottom: 12px; }
.place-dist { font-size: 11px; color: var(--gold-dark); font-weight: 500; letter-spacing: 0.3px; }

/* ── LOCATION PAGE ──────────────────────────────────────────────── */
.location-intro { background: var(--cream); padding: 72px 28px; text-align: center; }
.location-intro-inner { max-width: 680px; margin: 0 auto; }
.location-intro h2 { font-size: clamp(1.6rem, 2.5vw, 2rem); font-style: italic; color: var(--ink); margin: 12px 0 18px; }
.location-intro p { font-size: 14px; font-weight: 300; color: var(--ink-mid); line-height: 1.85; margin-bottom: 12px; }

.transport-section {
  background: var(--ink); padding: 80px 28px;
}
.transport-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start;
}
.transport-map { border-radius: 2px; overflow: hidden; height: 420px; border: 1px solid var(--border); }
.transport-map iframe { width: 100%; height: 100%; border: none; }
.transport-links h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem); font-style: italic;
  color: var(--cream); margin-bottom: 6px;
}
.transport-list { list-style: none; margin: 20px 0 28px; }
.transport-list li {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
  font-size: 13px; font-weight: 300;
  color: var(--ink-muted);
}
.transport-list li:last-child { border-bottom: none; }
.transport-list li::before { content: '◆'; color: var(--gold); font-size: 7px; margin-top: 4px; flex-shrink: 0; }
.address-block {
  background: var(--ink-soft);
  border: 1px solid var(--border);
  border-left: 2px solid var(--gold);
  padding: 20px 22px;
}
.address-block p { font-size: 13px; font-weight: 300; color: var(--ink-muted); line-height: 1.8; }
.address-block a { color: var(--gold); text-decoration: underline; font-size: 12px; }

.airports-section { background: var(--parchment); padding: 80px 28px; }
.airports-inner { max-width: 1100px; margin: 0 auto; }
.airports-inner h2 { font-size: clamp(1.5rem, 2.2vw, 1.9rem); font-style: italic; color: var(--ink); text-align: center; margin-bottom: 48px; }
.airports-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.airport-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px 24px;
  border-top: 2px solid var(--maroon);
  box-shadow: 0 2px 0 rgba(107,30,42,0.3), var(--shadow-soft);
}
.airport-card h3 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.1rem, 1.5vw, 1.3rem); font-weight: 500; color: var(--ink); margin-bottom: 4px; }
.airport-code { font-size: 10px; font-weight: 700; letter-spacing: 2px; color: var(--ink-muted); margin-bottom: 12px; text-transform: uppercase; }
.airport-card p { font-size: 13px; font-weight: 300; color: var(--ink-mid); line-height: 1.75; }

/* ── CONTACT PAGE ───────────────────────────────────────────────── */
.contact-wrap {
  background: var(--parchment);
  padding: 80px 28px;
}
.contact-inner {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 3fr 2fr;
  gap: 64px;
}
.contact-form-area h2 { font-size: clamp(1.5rem, 2.2vw, 1.9rem); font-style: italic; color: var(--ink); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.form-field label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--ink-muted);
}
.form-field input,
.form-field textarea {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.30);
  border-radius: 2px;
  padding: 14px 16px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px; font-weight: 300;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-field input:focus, .form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.10);
}
.form-field textarea { height: 150px; resize: vertical; }
.btn-submit {
  width: 100%; padding: 16px;
  background: linear-gradient(135deg, var(--maroon), #8B2535);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  border: none; border-radius: 2px; cursor: pointer;
  box-shadow: 0 4px 18px rgba(107,30,42,0.30);
  transition: opacity 0.15s, transform 0.15s, box-shadow 0.15s;
  margin-top: 4px;
}
.btn-submit:hover {
  opacity: 0.88; transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(107,30,42,0.38);
}
.contact-info-area h2 { font-size: clamp(1.4rem, 2vw, 1.8rem); font-style: italic; color: var(--ink); margin-bottom: 22px; }
.contact-info-area p { font-size: 13px; font-weight: 300; color: var(--ink-mid); line-height: 1.8; margin-bottom: 24px; }
.contact-detail { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.contact-detail-item { display: flex; flex-direction: column; gap: 3px; }
.contact-detail-item .clabel {
  font-size: 9px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold-dark);
}
.contact-detail-item .cvalue { font-size: 14px; font-weight: 300; color: var(--ink); }
.whatsapp-btn {
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: white;
  padding: 13px 20px; border-radius: 2px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 10px;
  transition: opacity 0.15s;
}
.whatsapp-btn:hover { opacity: 0.88; }
.directions-btn {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--border-mid); color: var(--ink);
  padding: 12px 20px; border-radius: 2px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  transition: border-color 0.2s, background 0.2s;
}
.directions-btn:hover { background: rgba(201,168,76,0.08); border-color: var(--gold); }
.contact-social { display: flex; gap: 10px; margin-top: 20px; }
.contact-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--border-mid);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-mid); font-size: 14px;
  transition: border-color 0.2s, color 0.2s;
}
.contact-social a:hover { border-color: var(--gold); color: var(--gold-dark); }

/* ══ RESPONSIVE ════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .tariff-grid { grid-template-columns: repeat(2, 1fr); }
  .airports-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .booking-banner-inner { grid-template-columns: 1fr; gap: 40px; }
  .location-inner { grid-template-columns: 1fr; gap: 40px; }
  .amenities-inner { grid-template-columns: 1fr; }
  .room-feature { grid-template-columns: 1fr; }
  .room-feature:nth-child(odd) .room-feature-image { order: 0; }
  .room-feature-image { height: 320px; }
  .room-feature-info { padding: 40px 28px; }
  .policies-inner { grid-template-columns: 1fr; }
  .policies-dark-inner { grid-template-columns: 1fr; }
  .transport-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .places-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .header-social { display: none; }
  .rooms-grid { grid-template-columns: 1fr; }
  .tariff-grid { grid-template-columns: 1fr 1fr; }
  .perks-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .airports-grid { grid-template-columns: 1fr; }
  .places-grid { grid-template-columns: 1fr; }
  .hero-content h1 { font-size: 2.4rem; }
  .nav-drawer { width: 100%; }
}

/* ══ ANIMATIONS ════════════════════════════════════════════════════ */
main { animation: fadeUp 0.5s ease both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── LANDSCAPE MOBILE — prevent font size explosion ────────────── */
@media screen and (max-height: 500px) and (orientation: landscape) {
  .hero-content h1 { font-size: 1.8rem !important; }
  .hero-content { padding-bottom: 32px; }
  .hero { min-height: 320px; }
  .section-heading,
  .welcome-text h2,
  .rooms-intro h2,
  .booking-banner-inner h2,
  .location-teaser h2,
  .acc-intro h2,
  .tariff-lead h2,
  .things-intro h2,
  .location-intro h2,
  .airports-inner h2 {
    font-size: 1.6rem !important;
  }
  .footer-contact p,
  .footer-links a,
  .footer-brand p { font-size: 13px !important; }
  .tariff-price { font-size: 2rem !important; }
  .nav-drawer a { font-size: 20px; }
}

/* ═══════════════════════════════════════════════════════════════════
   FLOATING WHATSAPP BUTTON — bottom-left, label expands rightward
   Hidden when nav drawer is open (.nav-drawer-open on body)
   Hidden on contact page (.hide-wa-float)
   ═══════════════════════════════════════════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 96px;                  /* sits above the Ava chat button */
  left: 28px;                    /* ← left side, clear of right-side drawer */
  z-index: 900;                  /* below nav drawer (z-index 999) */
  display: flex;
  align-items: center;
  text-decoration: none;
  filter: drop-shadow(0 4px 16px rgba(37,211,102,0.35));
  transition: filter 0.25s, transform 0.25s, opacity 0.25s;
  /* gentle idle pulse */
  animation: waPulse 3.2s ease-in-out infinite;
}
@keyframes waPulse {
  0%, 100% { transform: translateY(0);    filter: drop-shadow(0 4px 16px rgba(37,211,102,0.35)); }
  50%       { transform: translateY(-4px); filter: drop-shadow(0 8px 22px rgba(37,211,102,0.50)); }
}
.wa-float:hover {
  animation: none;
  transform: translateY(-3px);
  filter: drop-shadow(0 8px 24px rgba(37,211,102,0.55));
}

/* Icon circle */
.wa-float-icon {
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.45rem;
  flex-shrink: 0;
  transition: background 0.2s;
  position: relative;
  z-index: 1;
}
.wa-float:hover .wa-float-icon { background: #1db954; }

/* Label — expands to the RIGHT of the icon */
.wa-float-label {
  background: #25D366;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  height: 52px;
  line-height: 52px;
  border-radius: 0 26px 26px 0;
  white-space: nowrap;
  max-width: 0;
  overflow: hidden;
  padding: 0;
  margin-left: -6px;             /* tucks behind the circle edge */
  transition: max-width 0.38s cubic-bezier(0.4,0,0.2,1),
              padding   0.38s cubic-bezier(0.4,0,0.2,1);
}
.wa-float:hover .wa-float-label {
  max-width: 150px;
  padding: 0 18px 0 14px;
}

/* Hide while nav drawer is open */
body.nav-open .wa-float {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

/* Hide on contact page (already has a dedicated WA button) */
.hide-wa-float .wa-float { display: none; }

@media (max-width: 640px) {
  .wa-float { bottom: 86px; left: 18px; }
  .wa-float-icon { width: 46px; height: 46px; font-size: 1.25rem; }
  .wa-float-label { display: none; }
}

/* ═══════════════════════════════════════════════════════════════════
   PAYMENTS PAGE
   ═══════════════════════════════════════════════════════════════════ */
.pay-wrap {
  background: var(--parchment);
  padding: 72px 28px 96px;
  min-height: calc(100vh - 72px);
}
.pay-inner {
  max-width: 680px;
  margin: 0 auto;
}

/* ─── Step card ─── */
.pay-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 36px 40px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-soft);
  position: relative;
}
@media (max-width: 640px) { .pay-card { padding: 28px 22px; } }
.pay-card[hidden] { display: none !important; }

.pay-step-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}
.pay-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 28px;
}

/* ─── Pay form fields ─── */
.pay-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
@media (max-width: 520px) { .pay-form-row { grid-template-columns: 1fr; } }
.pay-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.pay-field label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.pay-field input,
.pay-field textarea,
.pay-field select {
  background: var(--cream);
  border: 1px solid rgba(201,168,76,0.30);
  border-radius: 2px;
  padding: 13px 15px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.pay-field input:focus,
.pay-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.10);
}
.pay-field textarea { height: 100px; resize: vertical; }

/* ─── Booking summary ─── */
.booking-summary {
  background: var(--cream);
  border: 1px solid var(--border-mid);
  border-left: 3px solid var(--gold);
  padding: 20px 22px;
  margin-bottom: 28px;
}
.booking-summary .bs-ref {
  font-size: 9px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 6px;
}
.booking-summary .bs-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-style: italic;
  color: var(--ink);
  margin-bottom: 14px;
}
.bs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.bs-item dt {
  font-size: 9px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--ink-muted); margin-bottom: 2px;
}
.bs-item dd {
  font-size: 13px; font-weight: 400;
  color: var(--ink); margin: 0;
}
.bs-balance {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  margin-top: 16px;
  padding-top: 16px;
}
.bs-balance-label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--ink-muted);
}
.bs-balance-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 400;
  color: var(--ink);
}

/* ─── Payment method tabs ─── */
.pay-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 28px;
}
.pay-tab-btn {
  border: 1px solid var(--border-mid);
  border-radius: 2px;
  background: var(--cream);
  padding: 16px 12px;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
  font-family: 'Montserrat', sans-serif;
}
.pay-tab-btn:hover { border-color: var(--gold); }
.pay-tab-btn.active {
  border-color: var(--gold);
  background: #faf5e8;
  box-shadow: 0 0 0 1px var(--border-mid);
}
.pay-tab-icon { font-size: 1.3rem; display: block; margin-bottom: 5px; }
.pay-tab-title {
  font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink); display: block; margin-bottom: 2px;
}
.pay-tab-sub { font-size: 11px; font-weight: 300; color: var(--ink-muted); }

.pay-tab-panel[hidden] { display: none !important; }

/* ─── Info callout ─── */
.pay-info {
  display: flex;
  gap: 12px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 2px solid var(--gold);
  padding: 16px 18px;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.75;
}
.pay-info strong { color: var(--ink); font-weight: 500; }
.pay-info a { color: var(--gold-dark); text-decoration: underline; }

/* ─── Bank details ─── */
.bank-detail-block {
  background: var(--cream);
  border: 1px solid var(--border-mid);
  padding: 20px 22px;
  margin-bottom: 20px;
}
.bank-detail-block dt {
  font-size: 9px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 12px; margin-bottom: 2px;
}
.bank-detail-block dt:first-child { margin-top: 0; }
.bank-detail-block dd {
  font-size: 15px; font-weight: 600;
  color: var(--ink); margin: 0;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.3px;
}

/* ─── Upload zone ─── */
.upload-zone {
  border: 2px dashed rgba(201,168,76,0.40);
  border-radius: 2px;
  padding: 28px;
  text-align: center;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
  margin: 4px 0 14px;
}
.upload-zone:hover,
.upload-zone.drag-over { border-color: var(--gold); background: rgba(201,168,76,0.04); }
.upload-zone input[type="file"] {
  position: absolute; inset: 0;
  opacity: 0; width: 100%; cursor: pointer;
}
.upload-zone-icon { font-size: 1.6rem; margin-bottom: 8px; display: block; }
.upload-zone p {
  font-size: 13px; font-weight: 300;
  color: var(--ink-muted); margin: 0;
  line-height: 1.6;
}
.upload-zone strong { color: var(--gold-dark); font-weight: 600; }
.upload-file-name {
  font-size: 12px; color: var(--gold-dark);
  font-weight: 500; margin-top: 8px;
}

/* ─── Feedback messages ─── */
.pay-msg {
  font-size: 13px; font-weight: 400;
  padding: 13px 16px;
  border-radius: 2px;
  margin-bottom: 14px;
  line-height: 1.6;
  display: flex; gap: 10px; align-items: flex-start;
}
.pay-msg[hidden] { display: none !important; }
.pay-msg-error   { background: #fdf0ef; border: 1px solid #e8b4b0; color: #8b2020; }
.pay-msg-success { background: #edf7f2; border: 1px solid #9fd6b6; color: #1a5c2a; }

/* ─── Back link ─── */
.pay-back-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--ink-muted);
  cursor: pointer;
  margin-top: 20px;
  transition: color 0.2s;
  background: none; border: none; padding: 0;
  font-family: 'Montserrat', sans-serif;
}
.pay-back-link:hover { color: var(--gold-dark); }

/* ─── Confirmed state ─── */
.pay-confirmed {
  text-align: center;
  padding: 20px 0;
}
.pay-confirmed-icon { font-size: 2.8rem; display: block; margin-bottom: 16px; }
.pay-confirmed h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem; font-style: italic; font-weight: 400;
  color: var(--ink); margin-bottom: 12px;
}
.pay-confirmed p {
  font-size: 13px; font-weight: 300;
  color: var(--ink-mid); line-height: 1.85;
  max-width: 400px; margin: 0 auto 24px;
}

/* ─── Stripe lock badge ─── */
.stripe-badge {
  font-size: 11px; font-weight: 300;
  color: var(--ink-muted);
  margin-top: 10px;
  display: flex; align-items: center; gap: 5px;
}

/* ═══════════════════════════════════════════════════════════════════
   LEGAL PAGES — Privacy Policy & Terms of Service
   ═══════════════════════════════════════════════════════════════════ */
.legal-wrap {
  background: var(--parchment);
  padding: 72px 28px 96px;
}
.legal-inner {
  max-width: 820px;
  margin: 0 auto;
}
.legal-meta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-mid);
}
.legal-section {
  margin-bottom: 48px;
}
.legal-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(201,168,76,0.20);
}
.legal-section p {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.9;
  margin-bottom: 14px;
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}
.legal-section ul li {
  font-size: 14px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.9;
  padding: 4px 0 4px 20px;
  position: relative;
}
.legal-section ul li::before {
  content: '◆';
  color: var(--gold);
  font-size: 7px;
  position: absolute;
  left: 0;
  top: 10px;
}
.legal-section a {
  color: var(--gold-dark);
  text-decoration: underline;
}
.legal-section strong {
  font-weight: 600;
  color: var(--ink);
}
.legal-callout {
  background: var(--cream);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.8;
}
.legal-callout strong { color: var(--ink); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════════════
   AVA — Virtual Concierge Chat Widget
   Positioned bottom-left, sits above the WhatsApp float button.
   ═══════════════════════════════════════════════════════════════════ */

#ava-widget {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 950;  /* just below WA float so they don't clash */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Trigger button — matches the maroon CTA style */
.ava-trigger {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 18px;
  background: linear-gradient(135deg, var(--maroon), #8B2535);
  color: var(--white);
  border: none;
  border-radius: 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(107,30,42,0.38);
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  white-space: nowrap;
}
.ava-trigger:hover     { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(107,30,42,0.48); }
.ava-trigger.active    { opacity: 0.85; }
.ava-trigger-icon      { font-size: 13px; line-height: 1; }
.ava-trigger-label     { line-height: 1; }

/* Chat panel */
.ava-panel {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 0;
  width: 340px;
  max-height: 520px;
  background: #1e1810;
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  opacity: 0;
  transform: translateY(12px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.ava-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

/* Header */
.ava-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: #141008;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  flex-shrink: 0;
}
.ava-header-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ava-avatar {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--maroon), #8B2535);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 13px;
  flex-shrink: 0;
}
.ava-name {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--cream);
  line-height: 1.1;
}
.ava-status {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.ava-dot {
  width: 6px;
  height: 6px;
  background: #4caf7d;
  border-radius: 50%;
  display: inline-block;
  animation: avaPulse 2.5s ease-in-out infinite;
}
@keyframes avaPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}
.ava-close {
  background: none;
  border: none;
  color: var(--ink-muted);
  font-size: 14px;
  cursor: pointer;
  padding: 4px;
  transition: color 0.15s;
}
.ava-close:hover { color: var(--cream); }

/* Message area */
.ava-messages {
  flex: 1;
  overflow-y: auto;
  padding: 14px 14px 6px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(201,168,76,0.2) transparent;
}
.ava-messages::-webkit-scrollbar { width: 4px; }
.ava-messages::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.2); border-radius: 2px; }

/* Message bubbles */
.ava-msg {
  margin-bottom: 10px;
  max-width: 88%;
  animation: avaMsgIn 0.2s ease both;
}
@keyframes avaMsgIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ava-msg p {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  margin: 0;
  padding: 10px 13px;
  border-radius: 2px;
}
.ava-msg a { color: var(--gold); }
.ava-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.28);
  color: var(--gold-light) !important;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 3px 9px;
  border-radius: 20px;
  margin: 2px 1px;
  transition: background 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.ava-inline-link:hover {
  background: rgba(201,168,76,0.22);
  border-color: var(--gold);
}
.ava-msg--ava p strong { color: #f0e0b8; font-weight: 600; }
.ava-msg--ava p em    { color: #d4c4a0; font-style: italic; }

.ava-msg--ava {
  align-self: flex-start;
}
.ava-msg--ava p {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.15);
  color: #d4c4a0;
  border-radius: 2px 12px 12px 2px;
}

.ava-msg--guest {
  margin-left: auto;
}
.ava-msg--guest p {
  background: linear-gradient(135deg, var(--maroon), #8B2535);
  color: var(--white);
  border-radius: 12px 2px 2px 12px;
}

/* Quick reply buttons on the welcome message */
.ava-quick-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.ava-quick-btns button {
  background: transparent;
  border: 1px solid rgba(201,168,76,0.30);
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 5px 10px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.ava-quick-btns button:hover {
  background: rgba(201,168,76,0.10);
  border-color: var(--gold);
}

/* Contextual action buttons (Book Now / WhatsApp) */
.ava-action-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  max-width: 100%;
  margin-bottom: 10px;
}
.ava-btn-book,
.ava-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: opacity 0.15s, transform 0.15s;
  white-space: nowrap;
}
.ava-btn-book:hover,
.ava-btn-wa:hover { opacity: 0.88; transform: translateY(-1px); }

.ava-btn-book {
  background: linear-gradient(135deg, var(--maroon), #8B2535);
  color: var(--white);
}
.ava-btn-wa {
  background: #25D366;
  color: var(--white);
}

/* Directions button — teal/maps colour, same wide format as availability */
.ava-btn-directions {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: linear-gradient(135deg, #0f4c75, #1a6a9a);
  border: 1px solid rgba(255,255,255,0.12);
  color: #e8f4fc !important;
  text-decoration: none;
  border-radius: 2px;
  width: 100%;
  transition: opacity 0.2s;
  box-sizing: border-box;
}
.ava-btn-directions:hover { opacity: 0.9; }
.ava-btn-directions > i:first-child { color: #7ec8e3; font-size: 14px; flex-shrink: 0; }
.ava-btn-directions span { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.ava-btn-directions strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #b8dff0;
}
.ava-btn-directions small {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 300;
  color: rgba(184,223,240,0.7);
}

/* Pre-filled availability deep link — wider, shows date summary */
.ava-btn-avail {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: linear-gradient(135deg, var(--ink-soft), var(--ink));
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--cream) !important;
  text-decoration: none;
  border-radius: 2px;
  width: 100%;
  transition: border-color 0.2s, opacity 0.15s;
  box-sizing: border-box;
}
.ava-btn-avail:hover { border-color: var(--gold); opacity: 0.92; }
.ava-btn-avail > i:first-child {
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
}
.ava-btn-avail span {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ava-btn-avail strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
}
.ava-btn-avail small {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 300;
  color: rgba(212,196,160,0.75);
  letter-spacing: 0.2px;
}
.ava-btn-arrow {
  color: var(--gold-dark);
  font-size: 11px;
  flex-shrink: 0;
}

/* Typing indicator */
.ava-typing {
  padding: 10px 14px 4px;
  display: flex;
  gap: 4px;
  align-items: center;
  flex-shrink: 0;
}
.ava-typing span {
  width: 6px;
  height: 6px;
  background: rgba(201,168,76,0.5);
  border-radius: 50%;
  animation: avaTyping 1.2s ease-in-out infinite;
}
.ava-typing span:nth-child(2) { animation-delay: 0.2s; }
.ava-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes avaTyping {
  0%, 80%, 100% { transform: scale(0.7); opacity: 0.4; }
  40%           { transform: scale(1);   opacity: 1;   }
}

/* Input row */
.ava-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-top: 1px solid rgba(201,168,76,0.12);
  background: #141008;
  flex-shrink: 0;
}
#ava-input {
  flex: 1;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 2px;
  padding: 9px 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--cream);
  outline: none;
  transition: border-color 0.2s;
}
#ava-input::placeholder { color: rgba(212,196,160,0.35); }
#ava-input:focus        { border-color: rgba(201,168,76,0.45); }
#ava-send {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--maroon), #8B2535);
  border: none;
  border-radius: 2px;
  color: var(--white);
  font-size: 12px;
  cursor: pointer;
  flex-shrink: 0;
  transition: opacity 0.15s;
}
#ava-send:hover { opacity: 0.88; }

/* Hide widget when nav drawer is open (same as WA float) */
body.nav-open #ava-widget {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s, transform 0.25s;
}

/* Mobile adjustments */
@media (max-width: 640px) {
  #ava-widget { bottom: 18px; left: 18px; }
  .ava-trigger-label { display: none; }
  .ava-trigger { padding: 13px; border-radius: 50%; }
  .ava-panel {
    width: calc(100vw - 36px);
    max-height: 460px;
  }
}




/* ══════════════════════════════════════════════════
   TRANSFER SECTION — Two-panel premium layout
══════════════════════════════════════════════════ */
.transfer-section {
  background: var(--ink);
  padding: 80px 0 80px;
  position: relative;
  overflow: hidden;
}
.transfer-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 400px at 20% 50%, rgba(107,30,42,0.12), transparent 60%),
    radial-gradient(ellipse 600px 400px at 80% 50%, rgba(201,168,76,0.07), transparent 60%);
  pointer-events: none;
}
.transfer-inner { max-width: 980px; position: relative; }

/* Header */
.transfer-header { text-align: center; margin-bottom: 52px; }
.transfer-header .eyebrow { color: var(--gold-dark); }
.transfer-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
  margin: 14px 0 16px;
  line-height: 1.2;
}
.transfer-intro {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.9;
  max-width: 540px;
  margin: 0 auto;
}

/* Two-panel body */
.transfer-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.transfer-body::before {
  content: '';
  position: absolute;
  top: 16px; left: 16px;
  width: 16px; height: 16px;
  border-top: 1px solid rgba(201,168,76,0.35);
  border-left: 1px solid rgba(201,168,76,0.35);
  pointer-events: none;
}
.transfer-body::after {
  content: '';
  position: absolute;
  bottom: 16px; right: 16px;
  width: 16px; height: 16px;
  border-bottom: 1px solid rgba(201,168,76,0.35);
  border-right: 1px solid rgba(201,168,76,0.35);
  pointer-events: none;
}

/* ── Left info panel ── */
.transfer-info-panel {
  padding: 44px 40px;
  border-right: 1px solid rgba(201,168,76,0.15);
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* Route diagram */
.transfer-route {
  display: flex;
  align-items: center;
  gap: 16px;
}
.tr-col { flex: 1; }
.tr-col-right { text-align: right; }
.tr-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.tr-airports {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.tr-code {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--cream);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 3px;
  padding: 4px 8px;
}
.tr-hotel-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--cream);
  line-height: 1.2;
}
.tr-hotel-addr {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 300;
  color: var(--ink-muted);
  margin-top: 4px;
}

/* Arrow / car connector */
.tr-arrow-col { flex-shrink: 0; }
.tr-arrow-line {
  display: flex;
  align-items: center;
  gap: 4px;
  color: rgba(201,168,76,0.4);
}
.tr-dot {
  width: 5px; height: 5px;
  background: rgba(201,168,76,0.4);
  border-radius: 50%;
  flex-shrink: 0;
}
.tr-line {
  width: 18px;
  height: 1px;
  background: rgba(201,168,76,0.3);
}
.tr-car-icon {
  font-size: 16px;
  color: var(--gold);
  opacity: 0.7;
  flex-shrink: 0;
}

/* Perks list */
.transfer-perks-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.transfer-perk {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.tp-i {
  color: var(--gold);
  font-size: 12px;
  margin-top: 3px;
  width: 14px;
  flex-shrink: 0;
  opacity: 0.8;
}
.transfer-perk div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.transfer-perk strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.3px;
}
.transfer-perk span {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.5;
}

.transfer-powered {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: rgba(184,168,152,0.5);
  letter-spacing: 0.5px;
  margin-top: auto;
}
.transfer-powered strong { color: rgba(184,168,152,0.7); font-weight: 600; }

/* ── Right panel — widget host ── */
.transfer-form-panel {
  padding: 36px 36px 32px;
  background: rgba(255,255,255,0.018);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.tf-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
}
.tf-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.7;
  margin: 0;
}
/* Widget wrapper — neutralise the white card by giving it a transparent bg frame */
.tf-widget-wrap {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
/* Override widget internals to blend better */
.tf-widget-wrap #welcomepickups {
  border-radius: 2px;
  overflow: hidden;
}

/* Mobile */
@media (max-width: 720px) {
  .transfer-body { grid-template-columns: 1fr; }
  .transfer-info-panel { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.15); padding: 32px 24px; }
  .transfer-form-panel { padding: 32px 24px; }
  .transfer-route { flex-direction: column; align-items: flex-start; gap: 10px; }
  .tr-arrow-col { transform: rotate(90deg); align-self: center; }
  .tr-col-right { text-align: left; }
}
.tf-select {
  appearance: none;
  -webkit-appearance: none;
  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='%23C9A84C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.tf-select option { background: #1a1208; color: #f0e8d8; }

/* Hide the "Book a transfer" heading injected by the Welcome Pickups widget —
   we already have our own "Book a Transfer" title above it */
.tf-widget-wrap #welcomepickups h2,
.tf-widget-wrap #welcomepickups h3,
.tf-widget-wrap #welcomepickups [class*="title"],
.tf-widget-wrap #welcomepickups [class*="header"] {
  display: none !important;
}

/* Transfer right panel — CTA version */
.tf-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 400;
  color: var(--cream);
}
.tf-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: var(--ink-muted);
  line-height: 1.7;
  margin: 0;
}
.tf-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 2px;
  background: rgba(255,255,255,0.02);
  transition: border-color .15s, background .15s;
}
.tf-option:hover { border-color: rgba(201,168,76,0.4); background: rgba(201,168,76,0.04); }
.tf-option-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 13px;
  flex-shrink: 0;
}
.tf-option-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.tf-option-text strong {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: .2px;
}
.tf-option-text span {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 300;
  color: var(--ink-muted);
}
.tf-option-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 2px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .15s, transform .15s;
  flex-shrink: 0;
}
.tf-option-btn:hover { opacity: .85; transform: translateY(-1px); }
.tf-btn-primary {
  background: linear-gradient(135deg, var(--maroon), #8B2535);
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(107,30,42,.35);
}
.tf-btn-outline {
  border: 1px solid rgba(201,168,76,.4);
  color: var(--gold) !important;
  background: transparent;
}
.tf-btn-outline:hover { background: rgba(201,168,76,.08); border-color: var(--gold); }

.tf-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,.15), transparent);
  margin: 4px 0;
}

.tf-reassurance {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.tf-reassure-item {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: var(--ink-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: .75;
}
.tf-reassure-item i { color: var(--gold); font-size: 9px; opacity: .7; }

.tf-powered {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 300;
  color: rgba(184,168,152,.45);
  margin-top: auto;
}
.tf-powered strong { color: rgba(184,168,152,.65); font-weight: 600; }
.tf-powered-link { color: inherit; text-decoration: none; border-bottom: 1px solid rgba(184,168,152,.3); transition: border-color .15s; }
.tf-powered-link:hover { border-color: var(--gold); }
