/* ============================================================
   LuxStay — style.css
   Design system: Clean hospitality UI (Hilton / Airbnb / Booking.com)
   Palette: White · Light gray · Navy · System blue
   ============================================================ */

/* ── 1. Design Tokens ────────────────────────────────────── */
:root {
  /* Brand */
  --navy:        #1B3A5C;
  --navy-dark:   #122840;

  /* Blue (CTA / primary action) */
  --blue:        #1558B0;
  --blue-hover:  #0F469A;
  --blue-light:  #EBF2FF;

  /* Neutral grays */
  --gray-50:     #F9FAFB;
  --gray-100:    #F3F4F6;
  --gray-200:    #E5E7EB;
  --gray-300:    #D1D5DB;
  --gray-400:    #9CA3AF;
  --gray-500:    #6B7280;
  --gray-600:    #4B5563;
  --gray-700:    #374151;
  --gray-800:    #1F2937;
  --gray-900:    #111827;

  /* Status */
  --green:       #15803D;
  --red:         #B91C1C;

  /* Typography */
  --font:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Borders */
  --border:      var(--gray-200);
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   14px;

  /* Shadows */
  --shadow-xs:   0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm:   0 1px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.09), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg:   0 10px 36px rgba(0,0,0,0.11), 0 2px 8px rgba(0,0,0,0.05);

  /* Transitions */
  --t:           0.18s ease;
}

/* ── 2. Reset & Base ─────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font);
  background: #fff;
  color: var(--gray-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

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

ul { list-style: none; }

button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ── 3. Layout ───────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 64px 0;
}

.section-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 28px;
  letter-spacing: -0.2px;
}

.section-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.section-label-row .section-title { margin-bottom: 0; }

/* ── 4. Buttons ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--t), border-color var(--t), box-shadow var(--t), transform var(--t);
  white-space: nowrap;
  line-height: 1;
}

/* Primary — dark navy */
.btn-primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  box-shadow: var(--shadow-sm);
}

/* Secondary — outlined */
.btn-secondary {
  background: #fff;
  color: var(--gray-700);
  border-color: var(--gray-300);
}
.btn-secondary:hover {
  border-color: var(--gray-500);
  background: var(--gray-50);
}

/* WhatsApp — dark teal (professional, not neon) */
.btn-wa {
  background: #075E54;
  color: #fff;
  border-color: #075E54;
}
.btn-wa:hover {
  background: #054D45;
  border-color: #054D45;
  box-shadow: var(--shadow-sm);
}

/* ── 5. Navbar ───────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 500;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--t);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-brand {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--t), background var(--t);
}

.nav-links a:hover {
  color: var(--gray-900);
  background: var(--gray-100);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.nav-phone {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray-600);
}

.nav-phone:hover { color: var(--gray-900); }

.nav-book {
  padding: 9px 18px;
  font-size: 13.5px;
}

/* Mobile hamburger */
.nav-mobile-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}

.nav-mobile-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: var(--t);
}

.navbar.nav-open .nav-mobile-btn span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.navbar.nav-open .nav-mobile-btn span:nth-child(2) {
  opacity: 0;
}
.navbar.nav-open .nav-mobile-btn span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── 6. Hero ─────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
  transition: transform 6s ease;
}

.hero-bg.loaded { transform: scale(1); }

.hero-scrim {
  position: absolute;
  inset: 0;
  /* Subtle gradient — visible photo on top, readable text on bottom */
  background: linear-gradient(
    to bottom,
    transparent 35%,
    rgba(0, 0, 0, 0.18) 65%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

.hero-body {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 32px;
}

.hero-info {
  max-width: 680px;
}

.hero-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.hero-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
}

.rating-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  color: #fff;
}

.hero-sep {
  color: rgba(255,255,255,0.5);
}

.hero-review-link {
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── 7. Booking Bar ──────────────────────────────────────── */
.booking-bar-wrap {
  background: var(--gray-50);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  position: sticky;
  top: 64px; /* below navbar */
  z-index: 400;
}

.booking-bar {
  display: flex;
  align-items: stretch;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: visible;
  height: 60px;
}

.bfield {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 20px;
  flex: 1;
  cursor: pointer;
  transition: background var(--t);
  border-radius: var(--radius-md);
  position: relative;
}

.bfield:hover { background: var(--gray-50); }

.bfield label {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 3px;
  pointer-events: none;
}

.bfield input[type="date"] {
  border: none;
  background: transparent;
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--gray-800);
  padding: 0;
  outline: none;
  cursor: pointer;
  width: 100%;
  min-width: 130px;
}

.bfield input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.4;
  cursor: pointer;
}

.bbar-divider {
  width: 1px;
  background: var(--border);
  margin: 10px 0;
  flex-shrink: 0;
}

/* Guests field */
.bfield--guests { flex: 0 0 auto; min-width: 160px; }

.guests-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--gray-800);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.guests-trigger svg {
  color: var(--gray-400);
  flex-shrink: 0;
  transition: transform var(--t);
}

.bfield--guests.open .guests-trigger svg {
  transform: rotate(180deg);
}

/* Guest count dropdown panel */
.guests-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 280px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 20px;
  z-index: 600;
  display: none;
}

.guests-panel.open { display: block; }

.gcount-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}

.gcount-row:last-of-type { border-bottom: none; }

.gcount-info strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-800);
}

.gcount-info span {
  font-size: 12.5px;
  color: var(--gray-500);
}

.gcount-ctrl {
  display: flex;
  align-items: center;
  gap: 14px;
}

.gcount-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-300);
  background: #fff;
  font-size: 18px;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color var(--t), color var(--t);
  line-height: 1;
}

.gcount-btn:hover:not(:disabled) {
  border-color: var(--gray-600);
  color: var(--gray-800);
}

.gcount-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.gcount-val {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
  min-width: 20px;
  text-align: center;
}

.gcount-done {
  display: block;
  width: 100%;
  margin-top: 16px;
  padding: 10px;
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--t);
}

.gcount-done:hover { background: var(--navy-dark); }

/* Submit button */
.bbar-submit {
  margin: 8px;
  padding: 0 28px;
  font-size: 14px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  height: calc(100% - 16px);
  white-space: nowrap;
}

/* Status text below bar */
.bbar-status {
  margin-top: 10px;
  font-size: 13px;
  color: var(--gray-500);
  min-height: 18px;
  padding-left: 4px;
}

/* ── 8. Property Overview ────────────────────────────────── */
.overview-section {
  padding-top: 48px;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}

.overview-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.overview-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
  letter-spacing: -0.3px;
}

.overview-sub {
  font-size: 14px;
  color: var(--gray-500);
}

.overview-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-align: right;
}

.big-rating {
  font-size: 32px;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -1px;
}

.stars-row {
  font-size: 13px;
  color: var(--gray-800);
  letter-spacing: 1px;
}

.review-count {
  font-size: 12.5px;
  color: var(--gray-500);
  display: block;
  margin-top: 2px;
}

/* Stats strip */
.overview-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}

.ostat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-600);
}

.ostat svg {
  color: var(--gray-400);
  flex-shrink: 0;
}

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

.overview-desc h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.overview-desc p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 14px;
}

/* Booking sidebar card */
.booking-card {
  position: sticky;
  top: calc(64px + 100px); /* navbar + booking bar */
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
}

.bcard-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 4px;
}

.bcard-amount {
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-900);
}

.bcard-per {
  font-size: 14px;
  color: var(--gray-500);
}

.bcard-weekend {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 18px;
}

.bcard-dates {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 14px;
}

.bcard-date-field {
  padding: 11px 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.bcard-date-field span {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bcard-date-val {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
}

.bcard-date-sep {
  background: var(--border);
}

.bcard-cta {
  display: flex;
  width: 100%;
  margin-bottom: 10px;
  padding: 13px;
  font-size: 15px;
}

.bcard-wa {
  display: flex;
  width: 100%;
  margin-bottom: 14px;
  padding: 13px;
  font-size: 14px;
}

.bcard-note {
  font-size: 12.5px;
  color: var(--gray-400);
  text-align: center;
}

/* ── 9. Gallery ──────────────────────────────────────────── */
.gallery-section {
  padding: 0;
}

.gallery-section .container {
  padding-bottom: 16px;
}

.show-all-btn {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  padding: 6px 0;
  transition: color var(--t);
}

.show-all-btn:hover { color: var(--gray-900); }

/* Airbnb 5-photo grid */
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 6px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  /* Clipped corners on outer edges */
}

.gphoto {
  overflow: hidden;
  background: var(--gray-100);
  cursor: pointer;
  position: relative;
}

.gphoto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gphoto:hover img { transform: scale(1.03); }

.gphoto-main {
  grid-row: 1 / 3;    /* tall: spans both rows */
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.gphoto-corner-tr {
  border-radius: 0 var(--radius-lg) 0 0;
}

.gphoto-corner-br {
  border-radius: 0 0 var(--radius-lg) 0;
}

/* "Show all" overlay on last photo */
.gphoto-corner-br::after {
  content: '⊞  Show all photos';
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: #fff;
  color: var(--gray-800);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  pointer-events: none;
}

/* ── 10. Amenities ───────────────────────────────────────── */
.amenities-section {
  background: var(--gray-50);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.amenity {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
  color: var(--gray-700);
}

.amenity svg {
  width: 22px;
  height: 22px;
  color: var(--gray-500);
  flex-shrink: 0;
}

/* Suppress bottom border on last row (14 items, 3 cols → last row has 2) */
.amenity:nth-last-child(-n+2) { border-bottom: none; }

/* ── 11. Pricing ─────────────────────────────────────────── */
.pricing-section {
  border-bottom: 1px solid var(--border);
}

.pricing-grid {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 760px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  gap: 24px;
}

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

.price-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 3px;
}

.price-desc {
  font-size: 13.5px;
  color: var(--gray-500);
}

.price-amount {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray-900);
  white-space: nowrap;
  flex-shrink: 0;
}

.price-amount span {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-500);
}

.pricing-notes {
  margin-top: 16px;
  max-width: 760px;
}

.pricing-notes p {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  color: var(--gray-500);
}

.pricing-notes svg { flex-shrink: 0; color: var(--gray-400); }

/* ── 12. Reviews ─────────────────────────────────────────── */
.reviews-section {
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.reviews-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
}

.reviews-summary {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviews-summary svg { color: var(--gray-800); }

.reviews-score {
  font-size: 24px;
  font-weight: 700;
  color: var(--gray-900);
}

.reviews-count {
  font-size: 15px;
  color: var(--gray-600);
}

/* Rating breakdown */
.rating-breakdown {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 48px;
  margin-bottom: 40px;
  max-width: 600px;
}

.rb-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rb-label {
  font-size: 13px;
  color: var(--gray-600);
  flex-shrink: 0;
  min-width: 110px;
}

.rb-bar {
  flex: 1;
  height: 3px;
  background: var(--gray-200);
  border-radius: 2px;
  overflow: hidden;
}

.rb-fill {
  height: 100%;
  background: var(--gray-800);
  border-radius: 2px;
}

.rb-score {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gray-700);
  flex-shrink: 0;
  min-width: 28px;
  text-align: right;
}

/* Review cards */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.review-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--gray-50);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.reviewer-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reviewer-meta strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-800);
}

.reviewer-meta span {
  font-size: 12.5px;
  color: var(--gray-500);
}

.review-stars {
  font-size: 12px;
  color: var(--gray-700);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.review-text {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ── 13. CTA Section ─────────────────────────────────────── */
.cta-section {
  background: var(--gray-50);
  border-bottom: 1px solid var(--border);
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 44px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
}

.cta-pretitle {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
  margin-bottom: 6px;
}

.cta-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
  letter-spacing: -0.2px;
}

.cta-sub {
  font-size: 14px;
  color: var(--gray-500);
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* ── 14. Footer ──────────────────────────────────────────── */
.footer {
  background: var(--gray-900);
  padding: 52px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -0.4px;
}

.footer-tagline {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}

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

.footer-col li,
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--t);
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 12.5px;
  color: rgba(255,255,255,0.3);
}

/* ── 15. Scroll Reveal ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── 16. Responsive — Tablet (≤1024px) ──────────────────── */
@media (max-width: 1024px) {
  .overview-grid {
    grid-template-columns: 1fr;
  }

  .booking-card {
    position: static;
    max-width: 500px;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }

  .gphoto-main {
    grid-column: 1 / 3;
    grid-row: 1;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }

  .gphoto-corner-tr { border-radius: 0; }

  .gphoto-corner-br { border-radius: 0 0 var(--radius-lg) 0; }

  .gphoto:nth-child(4) { border-radius: 0 0 0 var(--radius-lg); }

  .amenities-grid { grid-template-columns: repeat(2, 1fr); }

  /* Reset from desktop rule, then re-apply for 2-col layout */
  .amenity { border-bottom: 1px solid var(--border); }
  .amenity:nth-last-child(-n+2) { border-bottom: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ── 17. Responsive — Mobile (≤768px) ───────────────────── */
@media (max-width: 768px) {
  /* Nav */
  .nav-links,
  .nav-actions .nav-phone { display: none; }

  .nav-actions .nav-book { display: none; }

  .nav-mobile-btn { display: flex; }

  .navbar.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 12px 24px 20px;
    box-shadow: var(--shadow-md);
    z-index: 490;
    gap: 2px;
  }

  /* Booking bar → vertical stack */
  .booking-bar-wrap {
    position: static;
  }

  .booking-bar {
    flex-direction: column;
    height: auto;
    border-radius: var(--radius-md);
  }

  .bfield {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
  }

  .bfield:last-of-type { border-bottom: none; }

  .bbar-divider { display: none; }

  .bbar-submit {
    margin: 0;
    width: 100%;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    height: 48px;
  }

  .guests-panel {
    left: 0;
    right: 0;
    min-width: unset;
  }

  /* Hero */
  .hero { height: 360px; }
  .hero-title { font-size: 24px; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 4px;
  }

  .gphoto { height: 220px; }

  .gphoto-main,
  .gphoto-corner-tr,
  .gphoto-corner-br {
    grid-column: auto;
    grid-row: auto;
    border-radius: 0;
  }

  .gphoto:first-child { border-radius: var(--radius-md) var(--radius-md) 0 0; }
  .gphoto:last-child  { border-radius: 0 0 var(--radius-md) var(--radius-md); }

  .gphoto-corner-br::after { display: none; }

  /* Overview */
  .overview-header { flex-direction: column; gap: 14px; }
  .overview-rating { flex-direction: row; text-align: left; }
  .overview-stats { gap: 16px; }

  /* Amenities */
  .amenities-grid { grid-template-columns: 1fr; }
  .amenity:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .amenity:last-child { border-bottom: none; }

  /* Pricing */
  .price-row { padding: 18px 20px; flex-wrap: wrap; gap: 8px; }
  .price-amount { font-size: 17px; }

  /* Reviews */
  .rating-breakdown { grid-template-columns: 1fr; gap: 8px; }
  .rb-label { min-width: 90px; }
  .reviews-grid { grid-template-columns: 1fr; }

  /* CTA */
  .cta-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 24px;
  }

  .cta-actions { width: 100%; }
  .cta-actions .btn { flex: 1; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }

  /* Section */
  .section { padding: 48px 0; }
}

/* ── 18. Responsive — Small (≤480px) ────────────────────── */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .hero-title { font-size: 21px; }
  .hero-meta  { flex-wrap: wrap; font-size: 13px; }

  .overview-title { font-size: 20px; }

  .booking-card { padding: 18px; }

  .section-title { font-size: 19px; }
}
