/* ── FONT ── */
@font-face {
  font-family: 'LuxuriousScript';
  src: url('Fonts/Luxurious_Script/LuxuriousScript-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:       #c9a96e;
  --gold-light: #dfc087;
  --dark:       #12100E;
  --dark-2:     #1a1714;
  --dark-3:     #25211d;
  --text:       #ede9f8;
  --text-muted: #e8e0D0;
  --purple:     #3B2F25;
  --purple-light:#4d3d31;
  --radius:     8px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Georgia', serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-full { width: 100%; text-align: center; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  column-gap: 32px;
  align-items: center;
  padding: 18px 40px;
  background: var(--dark-2);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gold-light);
}

.nav-logo {
  font-family: 'LuxuriousScript', cursive;
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  transition: opacity 0.4s ease;
}
.nav-logo.hidden { opacity: 0; pointer-events: none; }

.nav-title {
  font-family: 'LuxuriousScript', cursive;
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 0.04em;
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  text-align: center;
  transition: opacity 0.45s ease, transform 0.45s ease;
  transform: translateY(6px);
}
.nav-title.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
}

.nav-links a {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  border: 1px solid var(--gold) !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  color: var(--gold) !important;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold); color: var(--dark) !important; }

.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* Replace with a real hero image path once available */
  background: url('images/hero-bg.jpg') center/cover no-repeat, var(--dark-2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--dark-3) 0%,
    var(--dark-2) 60%,
    var(--dark) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-name {
  font-family: 'LuxuriousScript', cursive;
  font-size: clamp(3.5rem, 9vw, 8rem);
  color: var(--gold);
  line-height: 1.1;
  text-shadow: 0 4px 30px rgba(0,0,0,0.6);
  letter-spacing: 0.02em;
}

.hero-tagline {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── SECTION SHARED ── */
section { padding: 100px 0; }

.section-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.2;
}

/* ── ABOUT ── */
.about { background: var(--dark); }

.about-text {
  max-width: 680px;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 56px;
}

.stats {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; gap: 4px; }

.stat-number {
  font-size: 2.6rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── SERVICES ── */
.services { background: var(--dark-2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 16px;
}

.service-card {
  background: var(--dark-3);
  border: 1px solid rgba(59,47,37,0.25);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color var(--transition), transform var(--transition);
}
.service-card:hover {
  border-color: var(--purple-light);
  transform: translateY(-4px);
}

.service-card h3 {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 10px;
  font-weight: 500;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.service-price {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
}

/* ── GALLERY ── */
.gallery { background: var(--dark); }

.gallery-intro {
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 560px;
}

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(124,58,237,0.4);
  color: var(--text-muted);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-item { transition: opacity 0.3s, transform 0.3s; }
.gallery-item.hidden { display: none; }

.gallery-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3/4;
  background: var(--dark-3);
  cursor: pointer;
}

.gallery-img-wrap img {
  transition: transform 0.5s ease;
}
.gallery-img-wrap:hover img { transform: scale(1.06); }

/* Placeholder when image is missing */
.gallery-img-wrap.placeholder::before {
  content: '✂';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(170,238,68,0.18);
}
.gallery-img-wrap.placeholder img { display: none; }

.gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 30px 16px 14px;
  background: linear-gradient(transparent, rgba(12,9,22,0.9));
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 600;
}

/* ── BOOKING ── */
.booking { background: var(--dark-2); }

.booking-intro {
  color: var(--text-muted);
  margin-bottom: 48px;
  max-width: 520px;
}

.booking-form {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-3);
  border: 1px solid rgba(59, 47, 37,0.35);
  border-radius: var(--radius);
  color: var(--text);
  padding: 12px 16px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color var(--transition);
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group select option { background: var(--dark-3); color: var(--text); }

.booking-success {
  display: none;
  margin-top: 24px;
  padding: 18px 24px;
  background: rgba(170,238,68,0.08);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--gold);
  font-size: 0.95rem;
  max-width: 700px;
}
.booking-success span { font-size: 1.2rem; margin-right: 8px; }

/* ── FOOTER ── */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(124,58,237,0.2);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-name {
  font-family: 'LuxuriousScript', cursive;
  font-size: 2rem;
  color: var(--gold);
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-socials {
  display: flex;
  gap: 16px;
}

.footer-socials a {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  border: 1px solid rgba(124,58,237,0.35);
  padding: 6px 14px;
  border-radius: 50px;
  transition: var(--transition);
}
.footer-socials a:hover { color: var(--gold); border-color: var(--gold); }

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(12,9,22,0.96);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
}
.lightbox.open { display: flex; }

.lightbox-img {
  max-width: min(90vw, 600px);
  max-height: 80vh;
  width: auto;
  height: auto;
  border-radius: var(--radius);
  object-fit: contain;
  cursor: default;
}

.lightbox-caption {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--dark-2);
    padding: 16px 0;
    border-bottom: 1px solid rgba(201,169,110,0.15);
  }
  .nav-links.open li { padding: 12px 24px; }
  .hamburger { display: block; }
  .form-row { grid-template-columns: 1fr; }
  .stats { gap: 36px; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  section { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

/* ── HERO BADGE ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--gold);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: badgePulse 2s infinite;
}
@keyframes badgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.45; transform: scale(0.75); }
}

/* ── SHARED SECTION SUB-HEADING ── */
.section-sub {
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 36px;
}

/* ── SERVICES CTA ── */
.services-cta { margin-top: 40px; text-align: center; }

.btn-outline {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); }

/* ── BEFORE / AFTER ── */
.before-after { background: var(--dark-2); }

.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.ba-slider {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y;
  background: var(--dark-3);
}
.ba-layer {
  position: absolute;
  inset: 0;
}
.ba-layer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-before {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--split, 50%)) 0 0);
}
.ba-after { z-index: 1; }

.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--split, 50%);
  transform: translateX(-50%);
  z-index: 3;
  width: 2px;
  background: rgba(255,255,255,0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.ba-handle-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 2px 14px rgba(0,0,0,0.5);
}
.ba-label {
  position: absolute;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  bottom: 14px;
}
.ba-label--before { left: 14px; z-index: 4; background: rgba(0,0,0,0.6); color: var(--text); }
.ba-label--after  { right: 14px; z-index: 1; background: rgba(201,169,110,0.15); color: var(--gold); }

.ba-slider.ba-empty::after {
  content: 'Add images/before-X.jpg + after-X.jpg';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  padding: 24px;
  background: var(--dark-3);
}

/* ── REVIEWS ── */
.reviews { background: var(--dark); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 8px;
}

.reviews-empty {
  grid-column: 1 / -1;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  padding: 48px 0;
  font-size: 1rem;
}
.review-card {
  background: var(--dark-2);
  border: 1px solid rgba(124,58,237,0.2);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color var(--transition);
}
.review-card:hover { border-color: var(--purple-light); }
.review-stars { color: var(--gold); letter-spacing: 3px; font-size: 1rem; }
.review-text  { font-size: 0.95rem; color: var(--text-muted); font-style: italic; line-height: 1.75; flex: 1; }
.review-author { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); }

.reviews-cta { margin-top: 36px; }

/* ── STAR RATING INPUT ── */
.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 2px;
  margin-top: 4px;
}
.star-rating input[type="radio"] { display: none; }
.star-rating label {
  font-size: 2.2rem;
  color: rgba(170,238,68,0.2);
  cursor: pointer;
  line-height: 1;
  transition: color 0.15s;
}
/* Hover: light up hovered star and all lower-rated stars (following siblings in reversed DOM) */
.star-rating label:hover,
.star-rating label:hover ~ label { color: var(--gold); }
/* Checked: keep selected star and all lower-rated stars lit */
.star-rating input:checked + label,
.star-rating input:checked ~ label { color: var(--gold); }

/* User-submitted review cards get a lime-tinted border */
.review-card--user { border-color: rgba(170,238,68,0.25); }

/* ── INSTAGRAM ── */
.instagram-section { background: var(--dark-2); }

.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-bottom: 36px;
}
.ig-cell {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--dark-3);
  display: block;
}
.ig-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease, opacity 0.4s; }
.ig-cell:hover img { transform: scale(1.06); opacity: 0.65; }
.ig-hover-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.ig-cell:hover .ig-hover-icon { opacity: 1; }
.ig-cell.ig-empty img           { display: none; }
.ig-cell.ig-empty .ig-hover-icon { display: none; }
.ig-cell.ig-empty::after {
  content: 'IG';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: rgba(170,238,68,0.15);
}
.ig-cta { display: block; width: fit-content; }

/* ── BOOKING ALT (Calendly) ── */
.booking-alt {
  margin-top: 40px;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.booking-divider {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.booking-alt-text { font-size: 0.9rem; color: var(--text-muted); }

/* ── LOCATION ── */
.location { background: var(--dark); }

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 56px;
  align-items: start;
}
.location-info { display: flex; flex-direction: column; gap: 40px; }

.info-heading {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  font-weight: 600;
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: 9px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(124,58,237,0.1);
}
.hours-table td:first-child { color: var(--text); width: 50%; }
.hours-closed td { opacity: 0.4; }

.contact-block p { margin-bottom: 8px; }
.contact-link { font-size: 0.95rem; color: var(--text-muted); transition: color var(--transition); }
.contact-link:hover { color: var(--gold); }

.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(124,58,237,0.2);
  aspect-ratio: 4/3;
}
.location-map iframe { width: 100%; height: 100%; display: block; border: none; }

/* ── PRICE MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(12,9,22,0.92);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }

.modal {
  background: var(--dark-2);
  border: 1px solid rgba(124,58,237,0.35);
  border-radius: var(--radius);
  padding: 48px 40px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}
.modal-close:hover { color: var(--text); }
.modal-title { font-size: 1.8rem; font-weight: 400; color: var(--text); margin-bottom: 28px; }

.price-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.price-table th {
  text-align: left;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(124,58,237,0.3);
}
.price-table td {
  padding: 12px 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(124,58,237,0.1);
  vertical-align: middle;
}
.price-table td:first-child { color: var(--text); }
.price-table td:last-child  { color: var(--gold); font-weight: 600; text-align: right; white-space: nowrap; }
.price-table td:nth-child(2) { color: var(--text-muted); font-size: 0.82rem; padding-left: 12px; }
.price-divider td { padding: 2px; border: none; }
.modal-note { font-size: 0.8rem; color: var(--text-muted); font-style: italic; margin-bottom: 28px; }

/* ── FLOATING CONTACT ── */
.float-actions {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 150;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0,0,0,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.float-btn:hover { transform: scale(1.12); box-shadow: 0 6px 22px rgba(0,0,0,0.55); }
.float-btn--wa   { background: #25d366; color: white; }
.float-btn--call { background: var(--purple); color: white; font-size: 1.2rem; }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--dark-2);
  border-top: 1px solid rgba(124,58,237,0.3);
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.45s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: 0.88rem; color: var(--text-muted); }
.cookie-actions { display: flex; gap: 12px; align-items: center; }
.cookie-accept  { padding: 10px 24px; font-size: 0.82rem; }
.cookie-decline {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.82rem;
  cursor: pointer;
  text-decoration: underline;
  transition: color var(--transition);
}
.cookie-decline:hover { color: var(--text); }

/* ── RESPONSIVE (new sections) ── */
@media (max-width: 900px) {
  .location-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .ig-grid        { grid-template-columns: repeat(2, 1fr); }
  .ba-grid        { grid-template-columns: 1fr; }
  .modal          { padding: 32px 20px; }
  .float-actions  { bottom: 20px; right: 16px; }
  .cookie-banner  { padding: 16px 20px; }
}
