/* ============================================================
   VÉRITÉ STUDIO — styles.css  (v2 redesign)
   ============================================================ */

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

:root {
  --black:    #F5F2EE;
  --dark:     #ECE8E2;
  --surface:  #E0DBD3;
  --accent:   #E8293A;
  --accent-d: #C41F2E;
  --white:    #FFFFFF;
  --off:      #111110;
  --text:     rgba(17,17,16,0.88);
  --muted:    rgba(17,17,16,0.45);
  --border:   rgba(17,17,16,0.09);
  --font-d:   'Playfair Display', serif;
  --font-b:   'Inter', sans-serif;
  --r:        0px;
  --nav-h:    64px;
}

html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-b);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-b); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ---- Utilities ---- */
.container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

.tag {
  display: inline-block;
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 64px;
}

.section-header h2 {
  font-family: var(--font-d);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--off);
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--muted);
  font-size: 1rem;
}

/* ---- Scroll reveal ---- */
.fade-in {
  opacity: 0;
  transition: opacity 0.55s ease;
}
.fade-in.visible { opacity: 1; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-b);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--r);
  border: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.btn-accent {
  background: var(--accent);
  color: #fff;
}
.btn-accent:hover { background: var(--accent-d); }

.btn-ghost {
  background: transparent;
  color: var(--off);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  border-color: rgba(242,242,240,0.3);
  color: #fff;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

/* ---- NAVBAR ---- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(17,17,16,0.08);
  transition: background 0.3s, box-shadow 0.3s;
}

#navbar.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 1px 8px rgba(17,17,16,0.06);
  border-bottom-color: rgba(17,17,16,0.06);
}

.nav-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  font-family: var(--font-d);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent);
}

.logo-name {
  font-family: var(--font-d);
  font-size: 1rem;
  font-weight: 700;
  color: var(--off);
  letter-spacing: 0.02em;
}

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

#navLinks {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  padding: 6px 12px;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-link:hover { color: var(--off); }

.nav-book {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--r);
  margin-left: 8px;
  transition: background 0.2s;
}
.nav-book:hover { background: var(--accent-d); }

#hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 1000;
  position: relative;
}

#hamburger span {
  display: block;
  height: 2px;
  background: var(--off);
  transition: transform 0.25s, opacity 0.25s, background 0.25s;
  transform-origin: center;
}

#hamburger.open span { background: #F2F2F0; }

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

/* ---- HERO (split layout) ---- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: var(--nav-h);
  overflow-x: hidden;
}

.hero-left {
  display: flex;
  align-items: center;
  padding: clamp(56px, 8vh, 96px) 64px clamp(96px, 16vh, 160px);
  background: var(--black);
}

.hero-content { max-width: 540px; }

.hero-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--font-d);
  font-size: clamp(3.5rem, 6.5vw, 5.5rem);
  font-weight: 800;
  color: var(--off);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 400px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero-stat strong {
  font-family: var(--font-d);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--off);
  line-height: 1;
}

.hero-stat span {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-right {
  overflow: hidden;
  background: var(--dark);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 100%;
  gap: 3px;
}

.hero-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.92);
}

/* ---- BEFORE / AFTER ---- */
.ba-section {
  padding: 120px 0;
  background: var(--dark);
}

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

.ba-pair {
  position: relative;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  aspect-ratio: 3 / 4;
  touch-action: none;
}

.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
}

.ba-before img,
.ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
}

/* after = base; before = clipped overlay on left */
.ba-after { z-index: 1; }

.ba-before {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--pos, 50%)) 0 0);
}

.ba-track {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos, 50%);
  transform: translateX(-50%);
  width: 2px;
  background: rgba(255,255,255,0.85);
  z-index: 3;
  pointer-events: none;
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.ba-knob {
  width: 22px;
  height: 22px;
  color: #fff;
}
.ba-knob svg { width: 100%; height: 100%; }

.ba-lbl {
  position: absolute;
  bottom: 16px;
  z-index: 4;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.5);
  padding: 3px 8px;
  pointer-events: none;
}
.ba-lbl-l { left: 12px; }
.ba-lbl-r { right: 12px; }

.ba-title {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 4;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(242,242,240,0.65);
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), transparent);
  padding: 14px 14px 28px;
  pointer-events: none;
}

/* ---- SERVICES / PRICING (white section) ---- */
.services {
  padding: 120px 0;
  background: var(--surface);
  color: #1a1a1a;
}

.services .tag { color: var(--accent); }
.services .section-header h2 { color: #0C0C0B; }
.services .section-header p  { color: #666; }

.price-columns {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0 56px;
  max-width: 960px;
  margin: 0 auto;
}

.price-divider {
  width: 1px;
  background: rgba(12,12,11,0.09);
  align-self: stretch;
}

.price-col {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.price-cat {
  font-family: var(--font-d);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0C0C0B;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cat-dot {
  color: var(--accent);
  font-size: 0.55rem;
}

.price-list { display: flex; flex-direction: column; }

.pr-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(12,12,11,0.07);
  font-size: 0.88rem;
}

.pr-name  { color: #444; }
.pr-price { font-weight: 600; color: #111; white-space: nowrap; flex-shrink: 0; }

.price-footer {
  text-align: center;
  margin-top: 52px;
  color: #777;
  font-size: 0.88rem;
}
.price-footer a { color: var(--accent); text-decoration: underline; }

/* ---- GALLERY ---- */
.gallery {
  padding: 120px 0;
  background: var(--black);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3 / 4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-cover {
  position: absolute;
  inset: 0;
  background: rgba(255,48,64,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.gallery-cover span {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item:hover img          { transform: scale(1.05); }
.gallery-item:hover .gallery-cover { background: rgba(255,48,64,0.4); }
.gallery-item:hover .gallery-cover span { opacity: 1; }

/* ---- ABOUT ---- */
.about {
  padding: 120px 0;
  background: var(--surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text h2 {
  font-family: var(--font-d);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--off);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.about-text p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.team-heading {
  font-family: var(--font-d);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.team-entry {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.team-entry:first-of-type { border-top: 1px solid var(--border); }

.team-name-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.team-name-row strong {
  font-family: var(--font-d);
  font-size: 1rem;
  font-weight: 700;
  color: var(--off);
}

.team-years { font-size: 0.75rem; color: var(--accent); font-weight: 600; }
.team-role  { font-size: 0.85rem; color: var(--text); }
.team-note  { font-size: 0.78rem; color: var(--muted); }

/* ---- LOCATION ---- */
.location {
  padding: 120px 0;
  background: var(--dark);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.hours-block h2 {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--off);
  line-height: 1.1;
  margin-bottom: 32px;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}

.hours-table td {
  padding: 10px 0;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}
.hours-table td:first-child { color: var(--text); }
.hours-table td:last-child  { text-align: right; }

.hl-row td { color: var(--text) !important; font-weight: 500; }

.address-block { margin-top: 24px; }

.address-block p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.88rem;
  margin-bottom: 12px;
}

.phone-link {
  font-family: var(--font-d);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--off);
  transition: color 0.2s;
}
.phone-link:hover { color: var(--accent); }

.map-wrap {
  overflow: hidden;
  height: 420px;
  background: var(--surface);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(1) brightness(1.05);
}

/* ---- CONTACT ---- */
.contact {
  padding: 120px 0;
  background: var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-text h2 {
  font-family: var(--font-d);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--off);
  line-height: 1.1;
  margin-bottom: 16px;
}

.contact-text p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.contact-note {
  margin-top: 24px !important;
  font-size: 0.8rem !important;
  color: rgba(242,242,240,0.3) !important;
}

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

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

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

.form-group label {
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--font-b);
  font-size: 0.9rem;
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(242,242,240,0.25); }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(242,242,240,0.35)' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-group select option { background: var(--dark); }

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

/* Loading state */
#formSubmit .btn-label  { display: block; }
#formSubmit .btn-spinner{ display: none; }
#formSubmit.loading .btn-label  { display: none; }
#formSubmit.loading .btn-spinner{ display: block; }
#formSubmit.loading { opacity: 0.7; pointer-events: none; }

.form-feedback {
  padding: 12px 14px;
  font-size: 0.88rem;
}

.form-feedback.success {
  background: rgba(34,197,94,0.1);
  color: #4ade80;
  border: 1px solid rgba(34,197,94,0.2);
}

.form-feedback.error {
  background: rgba(255,48,64,0.1);
  color: #ff6b75;
  border: 1px solid rgba(255,48,64,0.2);
}

/* ---- FOOTER ---- */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding-top: 56px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-brand .footer-logo {
  font-family: var(--font-d);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--off);
  margin-bottom: 12px;
}
.footer-brand .footer-logo span { color: var(--accent); }

.footer-brand p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer-brand a { font-size: 0.88rem; color: var(--off); transition: color 0.2s; }
.footer-brand a:hover { color: var(--accent); }

.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a { font-size: 0.85rem; color: var(--muted); transition: color 0.2s; }
.footer-nav a:hover { color: var(--off); }

.footer-social { display: flex; gap: 10px; align-items: flex-start; flex-wrap: wrap; }

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: color 0.2s, border-color 0.2s;
}
.footer-social a:hover { color: var(--off); border-color: rgba(242,242,240,0.25); }
.footer-social svg { width: 18px; height: 18px; }

.footer-bottom {
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(242,242,240,0.28); text-align: center; }
.footer-bottom a { color: var(--accent); }

/* ---- LIGHTBOX ---- */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.93);
  align-items: center;
  justify-content: center;
}
#lightbox.open { display: flex; }

#lightboxImg {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

.lb-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--off);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.65;
  transition: opacity 0.2s;
  padding: 4px 8px;
}
.lb-close:hover { opacity: 1; }

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.07);
  border: none;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  width: 56px;
  height: 56px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lb-nav:hover { background: rgba(255,255,255,0.14); }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }

/* ---- STICKY BOOK NOW ---- */
.book-sticky {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-b);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 24px rgba(255,48,64,0.4);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
}

.book-sticky.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.book-sticky:hover { background: var(--accent-d); }

.book-sticky svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ========================================
   RESPONSIVE
   ======================================== */

/* Short-viewport fix (small laptops, landscape phones) */
@media (max-height: 720px) {
  .hero-left    { padding: 36px 48px; }
  .hero-actions { margin-bottom: 24px; }
  .hero-stats   { padding-top: 16px; }
  .hero-sub     { margin-bottom: 20px; }
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-left {
    padding: clamp(48px, 9vh, 80px) 32px 48px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .hero-content { max-width: 600px; }
  .hero-stats   { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-sub     { margin-inline: auto; }

  .hero-right {
    height: 52vw;
    max-height: 420px;
  }

  .ba-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .price-columns {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 480px;
  }
  .price-divider { display: none; }

  .about-grid,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  :root { --nav-h: 56px; }

  .section-header { margin-bottom: 48px; }

  .ba-section,
  .services,
  .gallery,
  .about,
  .location,
  .contact { padding: 80px 0; }

  .hero-left   { padding: clamp(40px, 8vh, 72px) 20px 40px; align-items: flex-start; }
  .hero-title  { font-size: clamp(2.2rem, 11vw, 3rem); }
  .hero-stats  { gap: 24px; }
  .hero-stat strong { font-size: 1.5rem; }

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

  .form-row { grid-template-columns: 1fr; }

  .map-wrap { height: 280px; }

  .footer-inner { grid-template-columns: 1fr; gap: 24px; }

  .book-sticky {
    bottom: 16px;
    right: 16px;
    padding: 11px 18px;
    font-size: 0.82rem;
  }

  /* Mobile nav overlay */
  #hamburger { display: flex; }

  #navLinks {
    display: none;
    position: fixed;
    inset: 0;
    background: #111110;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    z-index: 850;
  }
  #navLinks.open { display: flex; }

  #navLinks .nav-link {
    font-size: 1.6rem;
    font-family: var(--font-d);
    font-weight: 700;
    padding: 14px 28px;
    color: #F2F2F0;
  }

  #navLinks .nav-book {
    font-size: 1rem;
    padding: 14px 36px;
    margin-top: 20px;
    margin-left: 0;
  }
}
