/* ═══════════════════════════════════════════════════════════════
   RESORT BOOKING — PREMIUM STYLESHEET
   Design: Airbnb/Booking.com feel with luxury resort aesthetics
══════════════════════════════════════════════════════════════ */

/* ─── Variables ──────────────────────────────────────────────── */
:root {
  --navy:        #0f172a;
  --navy-light:  #1e293b;
  --gold:        #b8962e;
  --gold-light:  #fef3c7;
  --white:       #ffffff;
  --bg:          #fafaf8;
  --text:        #111827;
  --text-muted:  #6b7280;
  --border:      #e5e7eb;
  --border-dark: #d1d5db;
  --star:        #e8474c;
  --success:     #16a34a;
  --error:       #dc2626;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 8px rgba(0,0,0,.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.14), 0 2px 10px rgba(0,0,0,.08);
  --shadow-xl:   0 20px 60px rgba(0,0,0,.25);
  --radius:      12px;
  --radius-sm:   8px;
  --radius-lg:   16px;
  --transition:  0.2s ease;
}

/* ─── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
h1,h2,h3 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.25; }
h2 { font-size: 1.4rem; font-weight: 600; margin-bottom: 20px; }

/* ─── Navigation ─────────────────────────────────────────────── */
/* ─── Site Header ────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, #1a4731 0%, #0f2e1e 100%);
  /* 3D raised feel: strong top highlight, deep bottom shadow */
  border-top: 3px solid #4a9e6e;
  border-bottom: 3px solid #081a10;
  box-shadow:
    0 2px 0 rgba(255,255,255,0.06) inset,
    0 6px 24px rgba(0,0,0,0.45),
    0 2px 6px rgba(0,0,0,0.3);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow:
    0 2px 0 rgba(255,255,255,0.06) inset,
    0 10px 32px rgba(0,0,0,0.55),
    0 3px 8px rgba(0,0,0,0.35);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ── Logo + Branding ── */
.header-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.logo-wrap {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.15);
  /* subtle inner glow so it pops off the dark header */
  box-shadow:
    0 2px 8px rgba(0,0,0,0.4),
    0 0 0 1px rgba(255,255,255,0.06) inset;
  background: rgba(255,255,255,0.08);
  position: relative;
}
.logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}
.logo-fallback {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold) 0%, #a07828 100%);
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  letter-spacing: 0.02em;
}

/* Vertical divider between logo and text */
.brand-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-left: 16px;
  border-left: 2px solid;
  border-image: linear-gradient(to bottom, transparent, rgba(212,175,55,0.7), transparent) 1;
}
.brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.15;
  white-space: nowrap;
  /* Shimmering gold gradient */
  background: linear-gradient(
    105deg,
    #f5e27a 0%,
    #d4af37 25%,
    #fff8dc 50%,
    #d4af37 75%,
    #b8860b 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 4s linear infinite;
  /* Soft glow behind the letters */
  filter: drop-shadow(0 1px 6px rgba(212,175,55,0.45));
}
@keyframes goldShimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.brand-tagline {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: transparent;
  background: linear-gradient(90deg, rgba(212,175,55,0.55), rgba(255,248,220,0.75), rgba(212,175,55,0.55));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  padding-left: 18px;
}
/* Small decorative diamond before tagline */
.brand-tagline::before {
  content: '◆';
  position: absolute;
  left: 0;
  font-size: 0.45rem;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #d4af37, #f5e27a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Right: Phone + CTA ── */
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-phone:hover { color: rgba(255,255,255,0.95); }
.nav-phone i { font-size: 0.75rem; color: var(--gold); }

.btn-book-now {
  background: linear-gradient(135deg, var(--gold) 0%, #a37a28 100%);
  color: #fff;
  padding: 10px 24px;
  border-radius: 7px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow:
    0 2px 0 rgba(255,255,255,0.18) inset,
    0 4px 14px rgba(0,0,0,0.35),
    0 1px 3px rgba(0,0,0,0.25);
  transition: all var(--transition);
  border-bottom: 2px solid rgba(0,0,0,0.25);
}
.btn-book-now:hover {
  background: linear-gradient(135deg, #d4a94a 0%, #b88830 100%);
  box-shadow:
    0 2px 0 rgba(255,255,255,0.2) inset,
    0 6px 20px rgba(0,0,0,0.4),
    0 1px 3px rgba(0,0,0,0.25);
  transform: translateY(-1px);
}
.btn-book-now:active { transform: translateY(0); }

/* ─── Buttons ────────────────────────────────────────────────── */
.btn-primary {
  background: var(--navy);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--navy-light);
  box-shadow: 0 4px 14px rgba(15,23,42,0.3);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }

.btn-reserve {
  width: 100%;
  background: linear-gradient(135deg, #e8474c 0%, #c0392b 100%);
  color: var(--white);
  padding: 15px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(232,71,76,0.35);
  margin-top: 4px;
}
.btn-reserve:hover {
  background: linear-gradient(135deg, #d63f44 0%, #a93226 100%);
  box-shadow: 0 6px 20px rgba(232,71,76,0.45);
  transform: translateY(-1px);
}

.btn-show-more {
  background: none;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: underline;
  padding: 8px 0;
  margin-top: 8px;
  transition: opacity var(--transition);
}
.btn-show-more:hover { opacity: 0.7; }

.btn-text-small {
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: underline;
  padding: 4px 0;
  margin-top: 4px;
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.share-btn:hover { background: var(--bg); color: var(--navy); }

/* ─── Section 2 — Gallery ────────────────────────────────────── */
.gallery-section {
  max-width: 1280px;
  margin: 24px auto 0;
  padding: 0 24px;
}

@keyframes tileReveal {
  from {
    opacity: 0;
    transform: scale(0.88) translateY(20px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
    filter: blur(0);
  }
}

/* Wrapper clips the rounded corners and holds the button above the grid */
.gallery-wrap {
  position: relative;
  border: 2px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.gallery-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 4px;
  background: var(--border-dark);
  height: 380px;
}

.gallery-tile {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  animation: tileReveal 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: calc(var(--i) * 80ms);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
}
.gallery-tile:hover .gallery-img { transform: scale(1.07); }

.gallery-tile-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  opacity: 0;
  transition: all 0.25s ease;
}
.gallery-tile:hover .gallery-tile-overlay {
  background: rgba(0,0,0,0.22);
  opacity: 1;
}

.show-all-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 5;
  background: white;
  color: var(--navy);
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: all var(--transition);
  border: 1.5px solid rgba(0,0,0,0.12);
  letter-spacing: 0.01em;
}
.show-all-btn:hover {
  background: var(--navy);
  color: white;
  box-shadow: 0 4px 18px rgba(0,0,0,0.35);
  transform: translateY(-1px);
}

/* ─── Gallery Modal ──────────────────────────────────────────── */
.gallery-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 250;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(6px);
  align-items: flex-start;
  justify-content: center;
  padding: 24px 16px 40px;
  overflow-y: auto;
}
.gallery-modal-overlay.open { display: flex; }

.gallery-modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 1100px;
  box-shadow: var(--shadow-xl);
  animation: slideUp 0.3s ease;
  overflow: hidden;
}

.gallery-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: white;
  z-index: 1;
}
.gallery-modal-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.gallery-modal-header h3 i { color: var(--gold); }

.gallery-modal-close {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg);
  color: var(--navy);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1.5px solid var(--border-dark);
  transition: all var(--transition);
}
.gallery-modal-close:hover { background: var(--navy); color: white; border-color: var(--navy); }

.gallery-modal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 20px 20px 28px;
}
.gm-tile {
  aspect-ratio: 4 / 3;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.gm-tile:hover { border-color: var(--navy); box-shadow: var(--shadow-md); }
.gm-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.gm-tile:hover img { transform: scale(1.06); }
.gm-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  opacity: 0;
  transition: all 0.25s;
}
.gm-tile:hover .gm-overlay { background: rgba(0,0,0,0.2); opacity: 1; }

/* ─── Section 3 — Property Highlights Strip ─────────────────── */
.highlights-section {
  max-width: 1280px;
  margin: 16px auto 0;
  padding: 0 24px;
}

.highlights-heading {
  margin-bottom: 14px;
}
.highlights-heading h2 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.highlights-heading h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 22px;
  background: var(--gold);
  border-radius: 4px;
  flex-shrink: 0;
}
.highlights-heading p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0 0 0 14px;
}

.highlights-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  background: var(--white);
  border: 2px solid var(--border-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.highlight-card {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 200px;
  min-width: 0;
  padding: 16px 20px;
  background: var(--white);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.highlight-card:hover { background: #f8faf9; }
/* Remove right border on last card in each visual row */
.highlight-card:last-child { border-right: none; }

.hc-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(26, 71, 49, 0.12); /* fallback */
  background: color-mix(in srgb, var(--hc-color, #1a4731) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--hc-color, #1a4731);
}

.hc-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.hc-body strong {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  white-space: normal;
  word-break: break-word;
}
.hc-body span {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ─── Section 4 — Property Guide (Tabs) ─────────────────────── */
.guide-section {
  max-width: 1280px;
  margin: 16px auto 0;
  padding: 0 24px;
}

.guide-heading {
  margin-bottom: 14px;
}
.guide-heading h2 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.guide-heading h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 22px;
  background: var(--gold);
  border-radius: 4px;
  flex-shrink: 0;
}
.guide-heading p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0 0 0 14px;
}

.guide-box {
  background: var(--white);
  border: 2px solid var(--border-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

/* Tab navigation bar */
.tab-nav {
  display: flex;
  border-bottom: 2px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
  background: var(--bg);
}
.tab-nav::-webkit-scrollbar { display: none; }

.tab-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 20px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
  white-space: nowrap;
}
.tab-btn:hover { color: var(--text); background: rgba(0,0,0,0.03); }
.tab-btn.active {
  color: var(--navy);
  font-weight: 600;
  border-bottom-color: var(--gold);
  background: var(--white);
}
.tab-btn i { font-size: 0.88rem; }

/* Tab panel container */
.tab-panels { padding: 28px 32px; }

.tab-panel {
  display: none;
  animation: tabFadeIn 0.22s ease;
}
.tab-panel.active { display: block; }

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

/* Intro sentence at top of each panel */
.tp-intro {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

/* 2-column item grid */
.tp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 32px;
}

.tp-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.tp-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(26,71,49,0.08);
  background: color-mix(in srgb, var(--tc, #1a4731) 10%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  color: var(--tc, #1a4731);
}

.tp-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 1px;
}
.tp-body strong {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}
.tp-body span {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Amenities icon grid */
.tp-amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.tp-amenity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 10px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.tp-amenity:hover { border-color: var(--border-dark); box-shadow: var(--shadow-sm); }
.tp-amenity i { font-size: 1.25rem; }
.tp-amenity span {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}

/* ─── Section 5 — Availability ──────────────────────────────── */
.avail-section {
  max-width: 1280px;
  margin: 16px auto 0;
  padding: 0 24px;
}
.avail-heading { margin-bottom: 14px; }
.avail-heading h2 {
  font-size: 1.35rem; font-weight: 600; color: var(--navy);
  margin: 0 0 4px; display: flex; align-items: center; gap: 10px;
}
.avail-heading h2::before {
  content: ''; display: inline-block; width: 4px; height: 22px;
  background: var(--gold); border-radius: 4px; flex-shrink: 0;
}
.avail-heading p { font-size: .88rem; color: var(--text-muted); margin: 0 0 0 14px; }

.avail-box {
  background: var(--white);
  border: 2px solid var(--border-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

/* ── Search Card (dark, premium, standalone) ── */
.avail-search-card {
  display: flex;
  align-items: center;
  gap: 0;
  background: linear-gradient(135deg, #0f2e1e 0%, #1a4731 100%);
  border-radius: var(--radius-lg);
  padding: 16px 16px 16px 20px;
  box-shadow: 0 8px 32px rgba(15,46,30,.45), 0 2px 8px rgba(0,0,0,.2);
  border: 1px solid rgba(255,255,255,.08);
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.asc-fields {
  display: flex;
  align-items: center;
  flex: 1;
  background: rgba(255,255,255,.07);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  overflow: visible;
  flex-wrap: wrap;
}

/* Individual field */
.asc-field {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  flex: 1;
  min-width: 140px;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background .15s;
  position: relative;
}
.asc-field:hover { background: rgba(255,255,255,.06); }
.asc-field:focus-within { background: rgba(255,255,255,.1); }

.asc-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: #7ecba1;
  font-size: .9rem;
  flex-shrink: 0;
}

.asc-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.asc-body label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
  cursor: pointer;
}
.asc-body input,
.asc-body span {
  font-size: .92rem;
  font-weight: 500;
  color: white;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0;
  width: 100%;
  white-space: nowrap;
}
.asc-body input::placeholder { color: rgba(255,255,255,.4); font-weight: 400; }

/* Arrow between dates */
.asc-arrow {
  color: rgba(255,255,255,.3);
  font-size: .75rem;
  flex-shrink: 0;
  padding: 0 2px;
}

/* Divider before guests field */
.asc-divider {
  width: 1px; height: 36px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
  margin: 0 4px;
}

/* Guests field extras */
.asc-field-guests { user-select: none; }
.asc-chevron {
  font-size: .7rem;
  color: rgba(255,255,255,.4);
  margin-left: auto;
  transition: transform .2s;
  flex-shrink: 0;
}
.asc-field-guests.open .asc-chevron { transform: rotate(180deg); }

/* Guests dropdown panel */
.as-guests-panel {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  width: 320px;
  background: var(--white);
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 8px 0 4px;
  z-index: 300;
}
.asc-field-guests.open .as-guests-panel { display: block; }

.asg-row {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}
.asg-row-rooms { border-top: 2px solid var(--border-dark); border-bottom: none; margin-top: 4px; }
.asg-label strong { display: block; font-size: .9rem; color: var(--text); font-weight: 600; }
.asg-label span { font-size: .78rem; color: var(--text-muted); }
.asg-counter { display: flex; align-items: center; gap: 14px; }
.asg-counter span { font-size: 1rem; font-weight: 600; min-width: 20px; text-align: center; }
.asg-btn {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid var(--border-dark);
  color: var(--navy); font-size: 1.1rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); line-height: 1;
}
.asg-btn:hover:not(:disabled) { background: var(--navy); color: white; border-color: var(--navy); }
.asg-btn:disabled { opacity: .3; cursor: not-allowed; }

.asg-child-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 20px; background: #fafaf8;
  border-bottom: 1px solid var(--border); gap: 12px;
}
.asg-child-row label { font-size: .82rem; color: var(--text-muted); white-space: nowrap; }
.asg-child-age {
  padding: 6px 10px; border: 1.5px solid var(--border-dark);
  border-radius: var(--radius-sm); font-size: .85rem; font-weight: 500;
  color: var(--text); background: var(--white); cursor: pointer; min-width: 140px;
}
.asg-child-age:focus { outline: none; border-color: var(--gold); }

.asg-done {
  display: block; width: calc(100% - 40px); margin: 12px 20px;
  padding: 11px; background: var(--navy); color: white;
  border-radius: var(--radius); font-size: .88rem; font-weight: 600;
  text-align: center; transition: background var(--transition);
}
.asg-done:hover { background: #1e3a5f; }

/* Check Availability button */
.asc-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 24px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius);
  font-size: .9rem; font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 14px rgba(184,150,46,.35);
}
.asc-btn:hover { background: #a0801f; color: white; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(184,150,46,.5); }

/* ── Results Card (separate white card) ── */
.avail-results-card {
  background: var(--white);
  border: 2px solid var(--border-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  min-height: 120px;
}

/* No-dates prompt */
.avail-prompt {
  display: flex; align-items: center; gap: 20px;
  padding: 36px 32px;
}
.avail-prompt-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: #fef3c7;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--gold); flex-shrink: 0;
}
.avail-prompt strong { display: block; font-size: .95rem; color: var(--text); margin-bottom: 4px; font-weight: 600; }
.avail-prompt span { font-size: .84rem; color: var(--text-muted); line-height: 1.5; }
.avail-prompt.hidden { display: none; }

/* Room list */
.room-list { padding: 24px; display: flex; flex-direction: column; gap: 20px; }
.room-list.hidden { display: none; }

/* Room card */
.room-card {
  display: flex;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition);
  background: var(--white);
}
.room-card:hover { box-shadow: var(--shadow-md); border-color: var(--border-dark); }

/* Photo side */
.rc-photo {
  position: relative;
  width: 260px;
  min-height: 200px;
  flex-shrink: 0;
  overflow: hidden;
  background: #e2e8f0;
}

/* Slider track */
.rs-track {
  position: absolute;
  inset: 0;
  cursor: pointer;
}
.rs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .8s ease;
}
.rs-slide.active { opacity: 1; }
.rs-slide img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.rs-track:hover .rs-slide.active img { transform: scale(1.04); transition: transform 4s ease; }

/* Dot indicators */
.rs-dots {
  position: absolute;
  bottom: 36px; left: 0; right: 0;
  display: flex; justify-content: center; gap: 5px;
  z-index: 2;
}
.rs-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.45);
  transition: background .3s, transform .3s;
  flex-shrink: 0;
}
.rs-dot.active { background: white; transform: scale(1.4); }
.rc-photo-badge {
  position: absolute;
  bottom: 10px; left: 10px;
  background: rgba(0,0,0,.65);
  color: white;
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
  backdrop-filter: blur(4px);
}
.rc-avail-badge {
  position: absolute;
  top: 10px; left: 10px;
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: .02em;
}
.rc-avail-badge.available { background: #dcfce7; color: #166534; }
.rc-avail-badge.limited   { background: #fef9c3; color: #854d0e; }
.rc-avail-badge.sold-out  { background: #fee2e2; color: #991b1b; }

/* Details side */
.rc-details {
  flex: 1;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.rc-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.rc-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 600; color: var(--navy); margin: 0; }
.rc-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.rc-badge {
  font-size: .75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--bg);
  border: 1px solid var(--border-dark);
  color: var(--text-muted);
  white-space: nowrap;
}
.rc-desc { font-size: .85rem; color: var(--text-muted); line-height: 1.55; margin: 0; }

/* Amenities row */
.rc-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.rc-amenity {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .78rem;
  color: var(--text-muted);
}
.rc-amenity i { font-size: .8rem; color: var(--navy); }

/* Perks */
.rc-perks { display: flex; flex-wrap: wrap; gap: 6px; }
.rc-perk {
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.rc-perk.green { background: #dcfce7; color: #166534; }
.rc-perk.blue  { background: #dbeafe; color: #1e40af; }
.rc-perk.gold  { background: #fef3c7; color: #92400e; }

/* Price + CTA row */
.rc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.rc-price-block { display: flex; flex-direction: column; gap: 2px; }
.rc-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
}
.rc-price span { font-size: .8rem; font-weight: 400; color: var(--text-muted); }
.rc-total { font-size: .78rem; color: var(--text-muted); }
.rc-no-dates {
  font-size: .82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.rc-count-badge {
  font-size: .78rem;
  font-weight: 600;
  color: #1a4731;
  background: #dcfce7;
  padding: 3px 10px;
  border-radius: 20px;
}
.btn-room-book {
  padding: 11px 24px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 700;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn-room-book:hover { background: #a0801f; color: white; transform: translateY(-1px); }
.btn-room-book:disabled {
  background: var(--border);
  color: var(--text-muted);
  cursor: not-allowed;
  transform: none;
}
.btn-room-select-dates {
  padding: 11px 20px;
  background: var(--bg);
  color: var(--text-muted);
  border: 1.5px dashed var(--border-dark);
  border-radius: var(--radius);
  font-size: .84rem;
  font-weight: 500;
  transition: all var(--transition);
}
.btn-room-select-dates:hover { border-color: var(--gold); color: var(--navy); }

/* Room photo modal */
.room-photo-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0,0,0,.9);
  align-items: center;
  justify-content: center;
}
.room-photo-modal.open { display: flex; }
.rpm-inner {
  position: relative;
  max-width: 900px;
  width: 100%;
  margin: 0 24px;
}
.rpm-img { width: 100%; max-height: 75vh; object-fit: contain; border-radius: var(--radius); }
.rpm-close {
  position: absolute;
  top: -44px; right: 0;
  color: white; font-size: 1.4rem; opacity: .8;
}
.rpm-close:hover { opacity: 1; }
.rpm-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  color: white;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  backdrop-filter: blur(4px);
  transition: background var(--transition);
}
.rpm-nav:hover { background: rgba(255,255,255,.3); }
.rpm-prev { left: -56px; }
.rpm-next { right: -56px; }
.rpm-counter { text-align: center; color: rgba(255,255,255,.6); font-size: .82rem; margin-top: 12px; }
.rpm-thumbs {
  display: flex; gap: 8px; justify-content: center;
  margin-top: 12px; overflow-x: auto; padding-bottom: 4px;
}
.rpm-thumb {
  width: 60px; height: 44px; border-radius: 6px; overflow: hidden;
  flex-shrink: 0; cursor: pointer; opacity: .55;
  border: 2px solid transparent;
  transition: opacity var(--transition), border-color var(--transition);
}
.rpm-thumb img { width: 100%; height: 100%; object-fit: cover; }
.rpm-thumb.active { opacity: 1; border-color: white; }

/* Responsive */
@media (max-width: 768px) {
  .avail-section { padding: 0 16px; }
  .avail-search-card { flex-direction: column; padding: 14px; gap: 10px; }
  .asc-fields { flex-direction: column; }
  .asc-field { border-bottom: 1px solid rgba(255,255,255,.1); border-radius: 0; }
  .asc-divider { display: none; }
  .asc-arrow { display: none; }
  .asc-btn { width: 100%; justify-content: center; }
  .as-guests-panel { left: 0; right: 0; width: auto; }
  .room-card { flex-direction: column; }
  .rc-photo { width: 100%; height: 200px; }
  .rpm-prev { left: -10px; }
  .rpm-next { right: -10px; }
  .rpm-inner { margin: 0 60px; }
}

/* ─── Main Layout ────────────────────────────────────────────── */
.main-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}

/* ─── Property Details ───────────────────────────────────────── */
.property-details { min-width: 0; }

.prop-header { margin-bottom: 24px; }
.prop-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 10px;
}
.prop-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.prop-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.stars-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--star);
  font-weight: 700;
}
.stars-badge i { font-size: 0.8rem; }
.meta-dot { color: var(--border-dark); }
.meta-link { font-weight: 500; color: var(--navy); text-decoration: underline; text-underline-offset: 2px; cursor: pointer; }

.divider { border: none; border-top: 1px solid var(--border); margin: 28px 0; }

/* ─── Quick Stats ────────────────────────────────────────────── */
.quick-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.stat-item i { color: var(--navy); font-size: 0.9rem; }
.stat-item strong { color: var(--text); }

/* ─── Highlights ─────────────────────────────────────────────── */
.highlights { display: flex; flex-direction: column; gap: 20px; }
.highlight-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.highlight-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--navy);
}
.highlight-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.highlight-body strong { font-size: 0.95rem; font-weight: 600; }
.highlight-body span { font-size: 0.875rem; color: var(--text-muted); }

/* ─── Description ────────────────────────────────────────────── */
.desc-text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #374151;
  white-space: pre-line;
}
.desc-text.truncated {
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ─── Amenities ──────────────────────────────────────────────── */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text);
  padding: 10px 0;
}
.amenity-item i {
  width: 22px;
  text-align: center;
  color: var(--navy);
  font-size: 1rem;
}

/* ─── Reviews ────────────────────────────────────────────────── */
.reviews-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.reviews-header i { color: var(--star); }
.reviews-header h2 { margin: 0; font-size: 1.3rem; }

.review-bars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 40px;
  margin-bottom: 32px;
}
.review-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
}
.review-bar-row span:first-child { min-width: 100px; color: var(--text-muted); }
.review-bar-row span:last-child { min-width: 24px; font-weight: 600; }
.bar-track {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  background: var(--navy);
  border-radius: 4px;
}

.reviews-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.review-card {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}
.reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.reviewer-info strong { display: block; font-size: 0.9rem; }
.reviewer-info span { font-size: 0.8rem; color: var(--text-muted); }
.review-card p { font-size: 0.875rem; color: #374151; line-height: 1.65; }

/* ─── Location ───────────────────────────────────────────────── */
.location-address {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.location-address i { color: var(--star); }
.map-placeholder {
  background: linear-gradient(135deg, #e8f0fe 0%, #dde7f7 100%);
  border-radius: var(--radius);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--border-dark);
}
.map-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--navy);
}
.map-inner i { font-size: 2.5rem; opacity: 0.4; }
.map-inner strong { font-size: 0.9rem; }
.map-inner span { font-size: 0.82rem; color: var(--text-muted); }

/* ─── House Rules ────────────────────────────────────────────── */
.rules-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.rule-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--white);
}
.rule-item i { color: var(--navy); margin-top: 2px; width: 16px; text-align: center; }
.rule-item div { display: flex; flex-direction: column; gap: 2px; }
.rule-item strong { font-size: 0.875rem; font-weight: 600; }
.rule-item span { font-size: 0.8rem; color: var(--text-muted); }

/* ─── Booking Widget ─────────────────────────────────────────── */
.widget-wrapper {
  position: sticky;
  top: 88px;
}
.booking-widget {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
}
.widget-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 8px;
}
.widget-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  font-family: 'Playfair Display', serif;
}
.widget-currency { font-size: 1.1rem; font-family: 'Inter', sans-serif; }
.widget-per-night { font-size: 0.9rem; font-weight: 400; color: var(--text-muted); margin-left: 4px; }
.widget-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.widget-rating i { color: var(--star); font-size: 0.8rem; }
.widget-rating strong { color: var(--text); }

/* Date Grid */
.date-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 0;
}
.date-field {
  padding: 12px 14px;
}
.date-field-left { border-right: 1px solid var(--border-dark); }
.date-field label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.date-field input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  background: transparent;
  cursor: pointer;
}
.date-field input::placeholder { color: #9ca3af; }
.date-grid:focus-within { border-color: var(--navy); }

/* Guests Field */
.guests-field {
  border: 1.5px solid var(--border-dark);
  border-top: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  margin-bottom: 16px;
  overflow: hidden;
}
.guests-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  cursor: pointer;
  transition: background var(--transition);
}
.guests-header:hover { background: var(--bg); }
.guests-header label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 2px;
  cursor: pointer;
}
.guests-header span { font-size: 0.9rem; font-weight: 500; }
.guests-header i { color: var(--text-muted); font-size: 0.75rem; transition: transform var(--transition); }
.guests-header i.open { transform: rotate(180deg); }

.guests-panel {
  display: none;
  padding: 12px 14px 14px;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.guests-panel.open { display: block; }

.guest-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.guest-row:last-of-type { border-bottom: none; }
.guest-row div:first-child { display: flex; flex-direction: column; gap: 1px; }
.guest-row strong { font-size: 0.875rem; font-weight: 600; }
.guest-row span { font-size: 0.78rem; color: var(--text-muted); }

.counter {
  display: flex;
  align-items: center;
  gap: 12px;
}
.counter-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--border-dark);
  color: var(--text);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-weight: 300;
}
.counter-btn:hover:not(:disabled) { border-color: var(--navy); color: var(--navy); background: var(--bg); }
.counter-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.counter span { font-size: 0.9rem; font-weight: 600; min-width: 18px; text-align: center; }

/* Availability Message */
.availability-msg {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.availability-msg.available { background: #dcfce7; color: #166534; }
.availability-msg.unavailable { background: #fee2e2; color: #991b1b; }

/* Price Breakdown */
.price-breakdown {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-bottom: 16px;
  font-size: 0.875rem;
}
.breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  color: #374151;
}
.breakdown-total { padding-top: 8px; }
.breakdown-total span, .breakdown-total strong { font-size: 0.95rem; }

.widget-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 10px;
  margin-bottom: 14px;
}

.direct-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  background: var(--gold-light);
  color: #92400e;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 600;
}
.direct-badge i { font-size: 0.75rem; }

/* ─── Section 6 — Meet the Team ─────────────────────────────── */
.team-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px 56px;
}

/* Intro row */
.team-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.team-heading h2 {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
  line-height: 1.2;
}
.team-heading p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 560px;
  margin: 0;
}
.team-intro-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  border-radius: 40px;
  padding: 10px 20px;
  font-size: .82rem;
  font-weight: 600;
  color: #166534;
  white-space: nowrap;
  flex-shrink: 0;
}
.team-intro-badge i { font-size: 1rem; }

/* Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

/* Card */
.team-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-md);
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: default;
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.team-card > img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .6s ease;
  display: block;
}
.team-card:hover > img { transform: scale(1.07); }

/* Dark gradient overlay */
.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 20, 12, 0.92) 0%,
    rgba(5, 20, 12, 0.4)  45%,
    transparent           75%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 18px;
}

.team-role-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin: 0 0 8px;
  line-height: 1.2;
}

.team-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  font-weight: 500;
  transition: color .2s;
  text-decoration: none;
}
.team-phone i { font-size: .72rem; }
.team-phone:hover { color: white; }

/* Slide-up CTA on hover */
.team-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  padding: 9px 0;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-sm);
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, background .2s;
}
.team-card:hover .team-cta-btn {
  opacity: 1;
  transform: translateY(0);
}
.team-cta-btn:hover { background: white; }

/* Footer note */
.team-footer-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 16px 22px;
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
  border-radius: var(--radius);
  font-size: .85rem;
  color: #166534;
  font-weight: 500;
}
.team-footer-note i { font-size: 1rem; flex-shrink: 0; }

/* Responsive */
@media (max-width: 1024px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .team-section { padding: 36px 16px 40px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .team-heading h2 { font-size: 1.5rem; }
  .team-intro-badge { display: none; }
}

/* ─── Section 7 — Guest Reviews ─────────────────────────────── */
.reviews-section-7 {
  background: linear-gradient(180deg, #f8faf9 0%, #ffffff 100%);
  padding: 60px 24px 64px;
}

.rev7-heading {
  max-width: 1280px;
  margin: 0 auto 36px;
}
.rev7-heading h2 {
  font-size: 1.9rem; font-weight: 700; color: var(--navy);
  margin: 0 0 8px; line-height: 1.2;
}
.rev7-heading p { font-size: .92rem; color: var(--text-muted); margin: 0; }

/* Rating summary */
.rev7-summary {
  max-width: 1280px;
  margin: 0 auto 40px;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  background: var(--white);
  border: 2px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 28px 36px;
  box-shadow: var(--shadow-md);
}
.rev7-score {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; min-width: 100px;
}
.rev7-big-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.6rem; font-weight: 700; color: var(--navy); line-height: 1;
}
.rev7-stars { display: flex; gap: 3px; }
.rev7-stars i { color: #f59e0b; font-size: .95rem; }
.rev7-stars i.half { color: #f59e0b; }
.rev7-total { font-size: .78rem; color: var(--text-muted); text-align: center; }

/* Rating bars */
.rev7-bars { flex: 1; min-width: 200px; display: flex; flex-direction: column; gap: 7px; }
.rev7-bar-row { display: flex; align-items: center; gap: 10px; font-size: .78rem; color: var(--text-muted); }
.rev7-bar-row span:first-child { width: 28px; text-align: right; font-weight: 600; color: var(--text); }
.rev7-bar-row span:last-child  { width: 30px; }
.rev7-track { flex: 1; height: 7px; background: var(--border); border-radius: 4px; overflow: hidden; }
.rev7-fill  { height: 100%; background: #f59e0b; border-radius: 4px; }

/* Google badge */
.rev7-google-badge {
  display: flex; align-items: center; gap: 8px;
  background: #f0fdf4; border: 1.5px solid #bbf7d0;
  border-radius: 40px; padding: 8px 16px;
  font-size: .8rem; font-weight: 600; color: #166534;
  white-space: nowrap;
}

/* Review loading state */
.rev7-loading {
  grid-column: 1/-1; text-align: center;
  padding: 40px; color: var(--text-muted); font-size: .9rem;
}
.rev7-loading i { margin-right: 8px; color: var(--gold); }

/* Review grid */
/* Slider layout */
.rev7-slider-outer {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}
.rev7-slider-wrap {
  flex: 1;
  overflow: hidden;
}
.rev7-grid {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* Arrow buttons */
.rev7-arrow {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border-dark);
  background: var(--white);
  color: var(--text);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.rev7-arrow:hover:not(:disabled) { background: #1a4731; border-color: #1a4731; color: #fff; }
.rev7-arrow:disabled { opacity: 0.3; cursor: not-allowed; }

/* Dots */
.rev7-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 24px auto 0;
  max-width: 1280px;
}
.rev7-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border-dark);
  border: none; padding: 0;
  cursor: pointer;
  transition: all 0.3s;
}
.rev7-dot.active { background: #1a4731; width: 24px; border-radius: 4px; }

/* Review card */
.rev7-card {
  flex-shrink: 0;
  width: calc((100% - 40px) / 3);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.rev7-card:hover { box-shadow: var(--shadow-md); border-color: var(--border-dark); }

.rev7-card-top {
  display: flex; align-items: center; gap: 12px;
}
.rev7-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #1a4731, #2d7a4f);
  color: white; font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; overflow: hidden;
}
.rev7-avatar img { width: 100%; height: 100%; object-fit: cover; }
.rev7-author-info { flex: 1; min-width: 0; }
.rev7-author { font-size: .9rem; font-weight: 600; color: var(--text); }
.rev7-meta { font-size: .75rem; color: var(--text-muted); margin-top: 1px; }

.rev7-card-stars { display: flex; gap: 2px; }
.rev7-card-stars i { color: #f59e0b; font-size: .8rem; }

.rev7-text {
  font-size: .85rem; color: var(--text); line-height: 1.65;
  flex: 1;
  display: -webkit-box; -webkit-line-clamp: 5; line-clamp: 5;
  -webkit-box-orient: vertical; overflow: hidden;
}

.rev7-source-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .7rem; font-weight: 600; color: #5f6368;
  margin-top: 4px;
}

/* CTA */
.rev7-map-wrap {
  max-width: 860px;
  margin: 40px auto 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border-dark);
  box-shadow: var(--shadow-md);
}
.rev7-map {
  display: block;
  width: 100%;
  height: 380px;
  border: none;
}

/* Responsive */
@media (max-width: 1024px) { .rev7-card { width: calc((100% - 20px) / 2); } }
@media (max-width: 640px) {
  .reviews-section-7 { padding: 40px 16px 48px; }
  .rev7-card { width: 100%; }
  .rev7-arrow { width: 36px; height: 36px; font-size: .8rem; }
  .rev7-summary { gap: 24px; padding: 20px; }
  .rev7-big-num { font-size: 2.8rem; }
  .rev7-google-badge { display: none; }
}

/* ─── Flatpickr Calendar Custom Theme ───────────────────────── */
.flatpickr-calendar {
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-xl) !important;
  border: 1.5px solid var(--border-dark) !important;
  font-family: 'Inter', sans-serif !important;
}
.flatpickr-months { background: #0f2e1e; border-radius: var(--radius-lg) var(--radius-lg) 0 0; padding: 8px 0; }
.flatpickr-months .flatpickr-month { color: white; }
.flatpickr-current-month { color: white !important; font-size: .95rem !important; font-weight: 600 !important; }
.flatpickr-current-month .flatpickr-monthDropdown-months { color: white; background: transparent; }
.flatpickr-current-month input.cur-year { color: white !important; font-weight: 600 !important; }
.flatpickr-prev-month, .flatpickr-next-month { color: rgba(255,255,255,.7) !important; fill: rgba(255,255,255,.7) !important; }
.flatpickr-prev-month:hover, .flatpickr-next-month:hover { color: white !important; fill: white !important; }
.flatpickr-weekday { color: #6b7280 !important; font-weight: 600 !important; font-size: .72rem !important; }
.flatpickr-day { border-radius: 8px !important; color: var(--text) !important; font-size: .85rem !important; }
.flatpickr-day:hover { background: #dcfce7 !important; border-color: #dcfce7 !important; }
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: #1a4731 !important;
  border-color: #1a4731 !important;
  color: white !important;
}
.flatpickr-day.today { border-color: var(--gold) !important; font-weight: 700 !important; }
.flatpickr-day.today:hover { background: var(--gold) !important; border-color: var(--gold) !important; color: white !important; }
.flatpickr-day.flatpickr-disabled { color: #d1d5db !important; }

/* ─── Footer ─────────────────────────────────────────────────── */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 48px 24px;
  margin-top: 40px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: white;
  font-weight: 600;
}
.footer-contact {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.footer-contact a:hover { color: white; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.45); }

/* ─── Mobile Sticky Bar ──────────────────────────────────────── */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: white;
  border-top: 1px solid var(--border);
  padding: 12px 24px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}
.mobile-bar-price { font-size: 1rem; }
.mobile-bar-price strong { font-size: 1.1rem; font-weight: 700; }
.mobile-bar-price span { color: var(--text-muted); font-size: 0.85rem; }

/* ─── Booking Modal ──────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.2s ease;
}
.modal-overlay.open { display: flex; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  animation: slideUp 0.25s ease;
}
.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px 18px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: white;
  z-index: 1;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.modal-header h2 { font-size: 1.2rem; margin: 0; }
.modal-close-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: all var(--transition);
}
.modal-close-btn:hover { background: var(--bg); color: var(--navy); }
.modal-body { padding: 24px 28px 28px; }

/* Booking Summary Bar */
.booking-summary-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.summary-date-block { flex: 1; min-width: 80px; }
.summary-date-block label { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.07em; color: var(--text-muted); margin-bottom: 3px; text-transform: uppercase; }
.summary-date-block strong { font-size: 0.9rem; }
.summary-arrow { color: var(--text-muted); }
.summary-total-block { text-align: right; min-width: 90px; }
.summary-total-block label { display: block; font-size: 0.78rem; color: var(--text-muted); }
.summary-total-block strong { font-size: 1rem; color: var(--navy); }

/* Form Styles */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}
.required { color: var(--error); }
.form-group input,
.form-group textarea {
  width: 100%;
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(15,23,42,0.08);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.form-check input[type="checkbox"] {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--navy);
  margin-top: 2px;
}
.form-error {
  background: #fee2e2;
  color: #991b1b;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  margin-bottom: 14px;
}

/* ─── Success Modal ──────────────────────────────────────────── */
.success-modal {
  max-width: 480px;
  text-align: center;
  padding: 40px 36px;
}
.success-icon-wrap {
  font-size: 4rem;
  color: var(--success);
  margin-bottom: 16px;
}
.success-modal h2 { margin-bottom: 10px; }
.success-modal > p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 24px; }
.booking-ref-box {
  background: var(--navy);
  color: white;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}
.booking-ref-box label { display: block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em; opacity: 0.7; margin-bottom: 4px; text-transform: uppercase; }
.booking-ref-box strong { font-size: 1.4rem; letter-spacing: 0.04em; font-family: 'Playfair Display', serif; }
.success-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.success-details-grid div {
  background: var(--bg);
  padding: 12px;
  border-radius: var(--radius-sm);
}
.success-details-grid label { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; color: var(--text-muted); margin-bottom: 3px; text-transform: uppercase; }
.success-details-grid span { font-size: 0.875rem; font-weight: 600; }
.success-note { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.6; }

/* ─── Photo Lightbox ─────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0,0,0,0.95);
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }

.lightbox-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  padding: 48px 20px 20px;
  position: relative;
}

.lb-close {
  position: absolute;
  top: 10px;
  right: 20px;
  color: white;
  font-size: 1.5rem;
  padding: 8px 12px;
  transition: opacity var(--transition);
  z-index: 1;
}
.lb-close:hover { opacity: 0.7; }

.lb-stage {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-stage img {
  width: 100%;
  max-height: 58vh;
  object-fit: contain;
  border-radius: var(--radius);
  display: block;
}

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  color: white;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: background var(--transition);
  z-index: 1;
}
.lb-nav:hover { background: rgba(255,255,255,0.3); }
.lb-prev { left: 8px; }
.lb-next { right: 8px; }

.lb-counter {
  text-align: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  margin-top: 10px;
  margin-bottom: 14px;
}

.lb-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 4px 4px 8px;
  max-width: 100%;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.3) transparent;
}
.lb-thumbs::-webkit-scrollbar { height: 4px; }
.lb-thumbs::-webkit-scrollbar-track { background: transparent; }
.lb-thumbs::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.3); border-radius: 4px; }

.lb-thumb {
  flex-shrink: 0;
  width: 76px;
  height: 54px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 2.5px solid transparent;
  transition: border-color 0.2s, transform 0.2s, opacity 0.2s;
  opacity: 0.55;
}
.lb-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lb-thumb:hover { opacity: 0.85; transform: translateY(-2px); }
.lb-thumb.active { border-color: white; opacity: 1; transform: translateY(-3px); }

/* ─── Flatpickr Overrides ────────────────────────────────────── */
.flatpickr-calendar {
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow-xl) !important;
  border: 1px solid var(--border) !important;
  font-family: 'Inter', sans-serif !important;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: var(--navy) !important;
  border-color: var(--navy) !important;
}
.flatpickr-day:hover { background: var(--bg) !important; }
.flatpickr-day.inRange { background: #e8edf3 !important; border-color: #e8edf3 !important; }

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .widget-wrapper { display: none; }
  .mobile-bar { display: flex; }
  .review-bars { grid-template-columns: 1fr; }
  .reviews-list { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .gallery-tiles { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 1fr); height: 320px; }
  .gallery-modal-grid { grid-template-columns: repeat(2, 1fr); }
  .lb-stage img { max-height: 45vh; }
  .lb-thumb { width: 60px; height: 44px; }

  .main-content { padding: 24px 16px 100px; }
  .gallery-section { padding: 0 16px; margin-top: 16px; }
  .highlights-section { padding: 0 16px; }
  .highlight-card { flex: 1 1 160px; padding: 12px 14px; }
  .guide-section { padding: 0 16px; }
  .tab-panels { padding: 20px; }
  .tp-grid { grid-template-columns: 1fr; gap: 14px; }
  .tp-amenity-grid { grid-template-columns: repeat(3, 1fr); }
  .nav-phone { display: none; }
  .brand-tagline { display: none; }
  .rules-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .booking-summary-bar { gap: 10px; }
  .prop-title { font-size: 1.5rem; }
  .reviews-list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .tp-amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .tab-btn { padding: 12px 14px; font-size: 0.8rem; }
  .header-inner { padding: 0 16px; height: 66px; }
  .logo-wrap { width: 44px; height: 44px; }
  .brand-name { font-size: 1.1rem; letter-spacing: 0.04em; }
  .modal-body { padding: 16px 18px 20px; }
  .modal-header { padding: 18px 18px 14px; }
  .success-modal { padding: 28px 20px; }
  .quick-stats { gap: 16px; }
}
