/* ─── Service Selection Modal ─── */
.service-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.service-overlay.open { display: flex; }

.service-modal {
  background: #faf8f5;
  border-radius: 12px;
  padding: 2.5rem 2rem 2rem;
  width: 100%;
  max-width: 520px;
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
}

.svc-tabs {
  display: flex;
  gap: 0.5rem;
  margin: 1.5rem 0 1rem;
  border-bottom: 2px solid rgba(26,26,26,0.12);
  padding-bottom: 0;
}
.svc-tab {
  background: none;
  border: none;
  padding: 0.6rem 1rem;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(26,26,26,0.5);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
}
.svc-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.svc-list { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }

.svc-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(26,26,26,0.15);
  border-radius: 8px;
  transition: border-color 0.2s;
}
.svc-item:hover { border-color: var(--gold); }

.svc-info { display: flex; flex-direction: column; gap: 0.2rem; }
.svc-name { font-size: 0.9rem; font-weight: 600; color: #1a1a1a; }
.svc-price { font-size: 0.8rem; color: var(--gold); font-weight: 600; }

.svc-qty {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #ccc;
  background: none;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  line-height: 1;
}
.qty-btn:hover { border-color: var(--gold); background: var(--gold); color: #fff; }
.qty-val { font-size: 0.95rem; font-weight: 700; min-width: 16px; text-align: center; color: #1a1a1a; }

.svc-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-top: 2px solid #e2e2e2;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
#svcTotal { color: var(--gold); font-size: 1.1rem; }

/* ─── Payment View ─── */
.pay-back {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin-bottom: 1.25rem;
  display: inline-block;
  font-family: inherit;
}
.pay-back:hover { text-decoration: underline; }

.pay-section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(26,26,26,0.6);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.pay-order-box {
  border: 1px solid rgba(26,26,26,0.15);
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1rem;
}
.pay-order-head {
  display: flex;
  justify-content: space-between;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: rgba(26,26,26,0.45);
  text-transform: uppercase;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(26,26,26,0.12);
  margin-bottom: 0.5rem;
}
.pay-order-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 0.5rem 0;
  color: #2d2d2d;
  border-bottom: 1px solid #f0f0f0;
}
.pay-order-item span:last-child { color: var(--gold); font-weight: 600; }

.pay-order-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 0.5rem 0;
  color: rgba(26,26,26,0.6);
}
.pay-order-subtotal { border-top: 1px solid #e2e2e2; margin-top: 0.25rem; }
.pay-order-total {
  border-top: 2px solid #1a1a1a;
  margin-top: 0.25rem;
  padding-top: 0.75rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1a1a1a;
}
.pay-order-total strong { color: var(--gold); font-size: 1rem; }

.pay-method-box {
  border: 1px solid rgba(26,26,26,0.15);
  border-radius: 8px;
  padding: 1.25rem;
  margin-bottom: 1rem;
}
.pay-stripe-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(26,26,26,0.12);
}
.pay-stripe-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.pay-stripe-label strong { font-size: 0.9rem; color: #1a1a1a; display: block; }
.pay-stripe-sub { font-size: 0.78rem; color: #888; }

/* Payment method choice cards */
.pay-choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.pay-choice-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 1rem 0.75rem;
  border: 2px solid #e2e2e2;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
}
.pay-choice-card input[type="radio"] { display: none; }
.pay-choice-card i { font-size: 1.3rem; color: #aaa; transition: color 0.2s; }
.pay-choice-title { font-size: 0.85rem; font-weight: 700; color: #1a1a1a; }
.pay-choice-sub { font-size: 0.72rem; color: #999; }
.pay-choice-card.active {
  border-color: var(--gold);
  background: #fffbf0;
}
.pay-choice-card.active i { color: var(--gold); }

/* Pay on arrival note */
.pay-arrival-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #f0faf4;
  border: 1px solid #b7dfc6;
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
}
.pay-arrival-note i { color: #27ae60; font-size: 1.1rem; margin-top: 1px; flex-shrink: 0; }
.pay-arrival-note p { font-size: 0.85rem; color: #2c5f3d; line-height: 1.5; margin: 0; }

.pay-error {
  color: #c0392b;
  font-size: 0.82rem;
  margin-top: 0.75rem;
  padding: 0.6rem 0.75rem;
  background: #fdf2f2;
  border-radius: 6px;
  border: 1px solid #f5c6c6;
}

/* Booking confirmation toast */
.booking-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: #1a1a1a;
  color: #f5f0eb;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  z-index: 99999;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  min-width: 280px;
  max-width: 90vw;
}
.booking-toast.show { transform: translateX(-50%) translateY(0); }
.booking-toast i { color: var(--gold); font-size: 1.4rem; flex-shrink: 0; }
.booking-toast strong { display: block; font-size: 0.95rem; margin-bottom: 0.2rem; }
.booking-toast span { font-size: 0.8rem; color: #aaa; }

.btn-place-order {
  width: 100%;
  padding: 1rem;
  background: #1a1a1a;
  color: #f5f0eb;
  border: none;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.2s;
  margin-bottom: 0.75rem;
}
.btn-place-order:hover:not(:disabled) { background: #2d2d2d; }
.btn-place-order:disabled { opacity: 0.6; cursor: not-allowed; }

.pay-notice {
  font-size: 0.75rem;
  color: rgba(26,26,26,0.45);
  text-align: center;
  line-height: 1.5;
}

/* ─── Chatbot Button ─── */
.chatbot-btn {
    position: fixed;
    bottom: 90px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #8b1a2b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,0.35);
    z-index: 9000;
    transition: transform 0.2s ease, background 0.2s ease;
}
.chatbot-btn:hover {
    transform: scale(1.1);
    background: #6d1422;
}

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

:root {
  --gold:    #8b1a2b;
  --gold-lt: #a82235;
  --dark:    #111111;
  --dark-2:  #1a1a1a;
  --dark-3:  #222222;
  --mid:     #2d2d2d;
  --light:   #f5f0eb;
  --white:   #faf8f5;
  --muted:   #888888;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 52px;
}

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

/* ─── NAVBAR ───────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #1a1a1a;
  border-bottom: 1px solid rgba(245,239,224,0.08);
}

.nav-inner {
  padding: 0 4rem 0 9rem;
  height: 85px;
  display: flex;
  align-items: center;
}

.nav-logo {
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #f5f0eb;
}

.logo-accent { color: var(--gold); }

.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.nav-links a,
.dropdown-toggle {
  font-size: 0.87rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(245,239,224,0.75);
  padding: 0.4rem 0.85rem;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  cursor: pointer;
}

.nav-links a:hover,
.dropdown-toggle:hover { color: var(--gold); background: rgba(139,26,43,0.08); }

/* Dropdown */
.dropdown { position: relative; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark-2);
  border: 1px solid rgba(139,26,43,0.2);
  border-radius: 6px;
  padding: 0.5rem 0;
  padding-top: 13px;
  min-width: 180px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}

.dropdown:hover .dropdown-menu { display: block; }

.dropdown-menu a {
  display: block;
  padding: 0.55rem 1.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s, background 0.2s;
}

.dropdown-menu a:hover { color: var(--gold); background: rgba(139,26,43,0.08); }

/* Socials in nav */
.nav-socials {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid rgba(245,239,224,0.12);
}

.nav-socials a {
  font-size: 0.85rem;
  color: rgba(245,239,224,0.4);
  transition: color 0.2s;
}

.nav-socials a:hover { color: var(--gold); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--dark-2);
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 1rem 2rem;
}

.mobile-menu a {
  padding: 0.6rem 0;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--gold); }
.mobile-menu.open { display: flex; }

/* ─── HERO ─────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-left {
  background: #1a1a1a;
  display: flex;
  align-items: stretch;
}

.hero-socials-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
  padding: 0 2.2rem;
  flex-shrink: 0;
}

.hero-socials-left a {
  color: rgba(245,239,224,0.4);
  font-size: 0.95rem;
  transition: color 0.2s;
}

.hero-socials-left a:hover { color: var(--gold); }

.hero-right {
  overflow: hidden;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 8rem 5rem 6rem 4rem;
  flex: 1;
}

.hero-heading {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.08;
  color: #f5f0eb;
  margin-bottom: 2.5rem;
  max-width: 820px;
}

.hero-gold { color: var(--gold); }

.btn-book {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  background: #f5f0eb;
  color: #1a1a1a;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 0;
  transition: background 0.25s, color 0.25s;
}

.btn-book:hover { background: var(--gold); color: #111111; }

.photo-strip-item.btn-book {
  display: block;
  padding: 0;
  background: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: none;
}

/* ─── SERVICES ─────────────────────────────────── */
.services {
  background: #1a1a1a;
  padding: 5rem 2rem 6rem;
  border-top: 1px solid rgba(245,240,235,0.07);
}

.services-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.services-image {
  display: block;
  width: 130%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.services-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: #f5f0eb;
  text-align: center;
  margin-bottom: 3.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  border: 1px solid rgba(245,239,224,0.12);
  padding: 3.5rem 2rem 2.5rem;
  text-align: center;
  transition: box-shadow 0.25s, border-color 0.25s;
}

.service-card:hover {
  box-shadow: 0 6px 30px rgba(0,0,0,0.4);
  border-color: #d4a017;
}

.service-icon {
  width: 90px;
  height: 108px;
  margin: 0 auto 1.75rem;
  display: block;
}

.service-num {
  font-size: 1rem;
  font-weight: 600;
  color: #f5f0eb;
  margin-bottom: 0.15rem;
}

.service-name {
  font-size: 1rem;
  font-weight: 600;
  color: #f5f0eb;
}

.service-icon-fa {
  font-size: 3rem;
  color: #8b1a2b;
  margin-bottom: 1.75rem;
  display: block;
}

/* ─── PHOTO STRIP ──────────────────────────────── */
.photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 480px;
}

.photo-strip-item {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  height: 100%;
}

.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.5s ease;
}

.photo-strip-item:hover img { transform: scale(1.05); }

.photo-strip-item:last-child img { object-position: center center; }

.photo-strip-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 12, 30, 0.4);
  display: flex;
  align-items: flex-end;
  padding: 2rem 2.5rem;
  transition: background 0.3s;
}

.photo-strip-item:hover .photo-strip-overlay { background: rgba(5, 12, 30, 0.55); }

.photo-strip-overlay span {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
}

/* ─── FIXED: BOOK NOW TAB ──────────────────────── */
.fixed-book-tab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  background: var(--gold);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 3.5rem 0.9rem;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  z-index: 300;
  cursor: pointer;
  border-radius: 0 6px 6px 0;
  transition: background 0.2s;
}

.fixed-book-tab:hover { background: var(--gold-lt); }

/* ─── FIXED: CALL NOW BAR ──────────────────────── */
.fixed-call-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1a1a1a;
  color: #f5f0eb;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.1rem 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 300;
  cursor: pointer;
  transition: background 0.2s;
}

.fixed-call-bar:hover { background: #222222; }

.fixed-call-bar i {
  font-size: 1rem;
  color: var(--gold);
}

.call-popup {
  display: none;
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a1a;
  border: 1px solid rgba(245,239,224,0.15);
  border-radius: 4px;
  padding: 0.9rem 1.8rem;
  white-space: nowrap;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.call-popup a {
  font-size: 1.2rem;
  font-weight: 700;
  color: #f5f0eb;
  letter-spacing: 0.05em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.call-popup a i { color: var(--gold); font-size: 1rem; }
.call-popup a:hover { color: var(--gold); }


.call-popup.open { display: block; }

/* ─── CUSTOMERS SECTION ────────────────────────── */
.customers {
  background: #1a1a1a;
  padding: 7rem 2rem;
  border-top: 1px solid rgba(245,239,224,0.08);
}

.customers-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.section-label {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.customers-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: #f5f0eb;
  margin-bottom: 1.5rem;
}

.customers-body {
  font-size: 0.95rem;
  color: rgba(245,239,224,0.6);
  line-height: 1.8;
  max-width: 480px;
}

/* Stats */
.stats-grid {
  display: flex;
  align-items: center;
  gap: 0;
}

.stat-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.6rem;
}

.stat-unit {
  font-size: 1.4rem;
  color: rgba(139,26,43,0.65);
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,239,224,0.4);
}

.stat-divider {
  width: 1px;
  height: 70px;
  background: rgba(245,239,224,0.1);
  flex-shrink: 0;
}

/* ─── FOOTER ───────────────────────────────────── */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(139,26,43,0.12);
  padding-top: 5rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr;
  gap: 3rem;
}

/* Brand col */
.footer-brand .footer-logo { display: inline-block; margin-bottom: 1rem; }
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(139,26,43,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(139,26,43,0.08);
}

/* Column titles */
.footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.footer-col p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}

.footer-phone {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-phone:hover { color: var(--gold); }

/* Hours */
.hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hours-list li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hours-list li span:first-child {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hours-list li span:last-child {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
}

/* Quick links */
.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links-list a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}

.footer-links-list a:hover { color: var(--gold); padding-left: 4px; }

/* Newsletter */
.footer-newsletter p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
  line-height: 1.65;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.newsletter-form input {
  background: var(--dark-3);
  border: 1px solid rgba(139,26,43,0.2);
  border-radius: 3px;
  padding: 0.7rem 1rem;
  font-size: 0.82rem;
  color: var(--white);
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.3); }
.newsletter-form input:focus { border-color: rgba(139,26,43,0.5); }

.newsletter-form button {
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: 3px;
  padding: 0.7rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background 0.2s, color 0.2s;
  text-align: center;
}

.newsletter-form button:hover {
  background: var(--gold);
  color: var(--dark);
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.4rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
}

/* ─── RESPONSIVE ───────────────────────────────── */
@media (max-width: 1100px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-newsletter { grid-column: span 3; }
}

@media (max-width: 1000px) {
  .nav-links, .nav-socials { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 900px) {
  .customers-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .stats-grid { justify-content: center; }

  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
  .photo-strip { grid-template-columns: 1fr; height: auto; }
  .photo-strip-item { height: 300px; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { height: 50vh; }
  .hero-left { padding: 6rem 2rem 4rem 0; }
}

@media (max-width: 700px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-newsletter { grid-column: 1 / -1; }

  .stats-grid {
    flex-direction: column;
    gap: 1.5rem;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }
}

/* ── Booking Modal ── */
.booking-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 12, 30, 0.7);
  z-index: 999;
  align-items: center;
  justify-content: center;
}
.booking-overlay.open { display: flex; }

.booking-modal {
  background: #faf8f5;
  width: 90%;
  max-width: 540px;
  border-radius: 4px;
  padding: 3rem 2.5rem 2.5rem;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.booking-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: #1a1a1a;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.booking-close:hover { opacity: 1; }

.booking-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.4rem;
}

.booking-sub {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 2rem;
}

.booking-date-input {
  width: 100%;
  border: 1px solid rgba(26,26,26,0.2);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  color: #1a1a1a;
  background: #faf8f5;
  cursor: pointer;
  outline: none;
  box-sizing: border-box;
}
.booking-date-input:focus { border-color: #8b1a2b; }

.times-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin: 1.5rem 0 0.8rem;
}

.times-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
}

.time-slot {
  border: 1px solid rgba(26,26,26,0.15);
  background: #faf8f5;
  padding: 0.55rem 0;
  font-size: 0.78rem;
  color: #1a1a1a;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s;
}
.time-slot:hover { border-color: #8b1a2b; color: #8b1a2b; }
.time-slot.selected { background: #8b1a2b; border-color: #8b1a2b; color: #fff; }

.booking-confirm {
  display: block;
  width: 100%;
  margin-top: 2rem;
  padding: 1rem;
  background: #1a1a1a;
  color: #f5f0eb;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.25s;
}
.booking-confirm:hover { background: #8b1a2b; color: #111111; }

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-heading { font-size: 2.2rem; }
}
