/* ============================================
   PINK BLUSH STUDIO — Luxury Makeup Artist
   Aesthetic: Soft Maximalism × Editorial Luxury
   ============================================ */

/* ── CSS VARIABLES ── */
:root {
  --ivory:       #fdf8f4;
  --champagne:   #f5e6d3;
  --blush:       #e8c4b8;
  --dusty-rose:  #c9908a;
  --espresso:    #2c1810;
  --warm-brown:  #6b3f35;
  --gold:        #c9a96e;
  --gold-light:  #e8d5b0;
  --white:       #ffffff;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Jost', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ivory);
  color: var(--espresso);
  font-family: var(--font-body);
  font-weight: 300;
  overflow-x: hidden;
}

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

em {
  font-style: italic;
  font-family: var(--font-display);
}

/* ── SECTION LABEL ── */
.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-label.light { color: var(--gold-light); }


/* ══════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 5vw;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background: rgba(253, 248, 244, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 24px rgba(44, 24, 16, 0.07);
}

/* Logo */
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--white);
  transition: color 0.4s;
  z-index: 2;
}

.navbar.scrolled .nav-logo { color: var(--espresso); }

/* Desktop nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 2.8rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}

.navbar.scrolled .nav-links a { color: var(--warm-brown); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}

.nav-links a:hover::after,
.nav-links a:focus::after { width: 100%; }

/* Book button in desktop nav */
.nav-book-btn {
  border: 1px solid rgba(255, 255, 255, 0.5) !important;
  padding: 0.45rem 1.4rem !important;
  border-radius: 50px !important;
  transition: background 0.3s, border-color 0.3s, color 0.3s !important;
}

.nav-book-btn:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--white) !important;
}

.navbar.scrolled .nav-book-btn {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}

.navbar.scrolled .nav-book-btn:hover {
  background: var(--gold) !important;
  color: var(--white) !important;
}

.nav-book-btn::after { display: none !important; }


/* ══════════════════════════════════════════
   HAMBURGER BUTTON (mobile only)
══════════════════════════════════════════ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.25s ease,
              background 0.3s ease;
  transform-origin: center;
}

.navbar.scrolled .hamburger span { background: var(--espresso); }

/* Hamburger → X animation */
.hamburger.open span:nth-child(1) { transform: translateY(8.25px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-8.25px) rotate(-45deg); }

/* Keep X lines white when menu is open */
.hamburger.open span { background: var(--white) !important; }


/* ══════════════════════════════════════════
   MOBILE MENU OVERLAY
══════════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: linear-gradient(160deg, var(--espresso) 0%, var(--warm-brown) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  /* Hidden by default */
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.mobile-nav-links {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.mobile-nav-link {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 2.8rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  letter-spacing: 0.04em;
  padding: 0.5rem 1.5rem;
  transition: color 0.3s ease, transform 0.3s ease;

  /* Staggered fade-in handled via JS adding .open */
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.3s ease;
}

.mobile-menu.open .mobile-nav-link {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger each link */
.mobile-menu.open .mobile-nav-links li:nth-child(1) .mobile-nav-link { transition-delay: 0.05s; }
.mobile-menu.open .mobile-nav-links li:nth-child(2) .mobile-nav-link { transition-delay: 0.10s; }
.mobile-menu.open .mobile-nav-links li:nth-child(3) .mobile-nav-link { transition-delay: 0.15s; }
.mobile-menu.open .mobile-nav-links li:nth-child(4) .mobile-nav-link { transition-delay: 0.20s; }
.mobile-menu.open .mobile-nav-links li:nth-child(5) .mobile-nav-link { transition-delay: 0.25s; }
.mobile-menu.open .mobile-nav-links li:nth-child(6) .mobile-nav-link { transition-delay: 0.30s; }

.mobile-nav-link:hover { color: var(--gold-light); transform: translateX(4px); }

/* Book CTA in mobile menu */
.mobile-book-btn {
  display: inline-block !important;
  margin-top: 1.2rem;
  font-family: var(--font-body) !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  color: var(--espresso) !important;
  background: var(--gold-light);
  padding: 0.9rem 2.5rem !important;
  border-radius: 50px;
  transition: background 0.3s, transform 0.3s !important;
}

.mobile-book-btn:hover {
  background: var(--gold);
  color: var(--white) !important;
}


/* ══════════════════════════════════════════
   GLITTER CANVAS
══════════════════════════════════════════ */
#glitter {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
}


/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  background: url('images/stick.jpg') center 35% / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(44, 24, 16, 0.55) 0%,
    rgba(44, 24, 16, 0.3) 50%,
    rgba(201, 144, 138, 0.25) 100%
  );
}

.hero-content {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 0 1.5rem;
  z-index: 2;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.2rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}

.hero-title em {
  display: block;
  font-style: italic;
  font-weight: 300;
  color: var(--blush);
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.8rem;
  letter-spacing: 0.05em;
}

.hero-cta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--espresso);
  background: var(--gold-light);
  padding: 1rem 2.8rem;
  border-radius: 50px;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.35);
}

.hero-cta:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.5);
}

/* Floating petals */
.hero-petal {
  position: absolute;
  color: rgba(255, 255, 255, 0.12);
  font-size: 5rem;
  animation: floatPetal 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.petal-1 { top: 15%; left: 8%; animation-delay: 0s; font-size: 3.5rem; }
.petal-2 { top: 60%; right: 10%; animation-delay: 2.5s; font-size: 6rem; }
.petal-3 { bottom: 18%; left: 20%; animation-delay: 5s; font-size: 2.5rem; }

@keyframes floatPetal {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.12; }
  50%       { transform: translateY(-20px) rotate(12deg); opacity: 0.22; }
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  z-index: 2;
}

.scroll-hint::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0.6rem auto 0;
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Fade-up animation ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.revealed {
  opacity: 1 !important;
  transform: translateY(0) !important;
}


/* ══════════════════════════════════════════
   ABOUT
══════════════════════════════════════════ */
.about {
  padding: 9rem 5vw;
  background: var(--ivory);
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: center;
}

.about-img-frame {
  position: relative;
  border-radius: 2px;
  overflow: visible;
}

.about-img-frame img {
  border-radius: 2px;
  height: 540px;
  object-fit: cover;
  position: relative;
  z-index: 2;
  box-shadow: 20px 20px 60px rgba(44, 24, 16, 0.15);
}

.about-img-accent {
  position: absolute;
  top: -18px;
  left: -18px;
  right: 18px;
  bottom: -18px;
  border: 1.5px solid var(--gold);
  border-radius: 2px;
  z-index: 1;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.8rem;
  color: var(--espresso);
}

.about-text p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--warm-brown);
  margin-bottom: 1.2rem;
}

.about-stats {
  display: flex;
  gap: 3rem;
  margin-top: 2.8rem;
  padding-top: 2rem;
  border-top: 1px solid var(--champagne);
}

.stat { display: flex; flex-direction: column; }

.stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--espresso);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.3rem;
}


/* ══════════════════════════════════════════
   GALLERY
══════════════════════════════════════════ */
.gallery {
  padding: 6rem 5vw 8rem;
  background: var(--champagne);
}

.gallery-header {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 4rem;
}

.gallery-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--espresso);
  line-height: 1.1;
  margin-bottom: 0.8rem;
}

.gallery-sub {
  font-size: 0.88rem;
  color: var(--warm-brown);
  line-height: 1.7;
}

.gallery-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(44, 24, 16, 0.65) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem 1.1rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.gi-tall  { grid-row: span 2; }
.gi-wide  { grid-column: span 2; grid-row: span 2; }


/* ══════════════════════════════════════════
   PRICING
══════════════════════════════════════════ */
.pricing {
  padding: 7rem 5vw;
  background: var(--ivory);
}

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

.pricing-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.pricing-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--espresso);
}

.pricing-sub {
  font-size: 0.9rem;
  color: var(--warm-brown);
}

.pricing-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
}

.price-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(44, 24, 16, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.price-card:hover { transform: translateY(-6px); }

.price-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 1.2rem;
}

.price-card p {
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  margin: 0.4rem 0;
}

.price-card span { color: var(--gold); font-weight: 500; }

.price-card.featured {
  border: 1px solid var(--gold);
  transform: scale(1.03);
}


/* ══════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════ */
.reviews {
  padding: 7rem 5vw;
  background: var(--ivory);
  overflow: hidden;
}

.reviews-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.reviews-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--espresso);
}

.reviews-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.review-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(44, 24, 16, 0.08);
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--warm-brown);
  position: relative;
}

.review-card span {
  display: block;
  margin-top: 1.2rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}


/* ══════════════════════════════════════════
   BOOKING
══════════════════════════════════════════ */
.booking {
  padding: 8rem 5vw;
  background: linear-gradient(135deg, var(--espresso) 0%, var(--warm-brown) 60%, #8b4f44 100%);
  position: relative;
  overflow: hidden;
}

.booking::before {
  content: '✿';
  position: absolute;
  top: -2rem;
  right: -2rem;
  font-size: 20rem;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.booking-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}

.booking-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.booking-text p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2rem;
}

.booking-detail {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.82rem;
  color: var(--gold-light);
  margin-bottom: 0.7rem;
  letter-spacing: 0.05em;
}

.booking-detail span { color: var(--gold); font-size: 1rem; }

.booking-note {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--gold-light);
  font-style: italic;
}

.booking-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  border-radius: 6px;
  padding: 3rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-card-inner {
  text-align: center;
  max-width: 320px;
}

.booking-card-inner h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
}

.booking-card-inner p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.calendly-btn {
  width: 100%;
  background: var(--gold);
  border: none;
  padding: 1rem 1.2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--espresso);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
}

.calendly-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 169, 110, 0.45);
}

.booking-small {
  margin-top: 1.2rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}


/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq {
  padding: 7rem 5vw;
  background: var(--champagne);
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--espresso);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item { border-bottom: 1px solid rgba(44, 24, 16, 0.1); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.4rem 0;
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: left;
  color: var(--espresso);
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question span { color: var(--gold); font-size: 1.2rem; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  font-size: 0.85rem;
  color: var(--warm-brown);
  line-height: 1.7;
  opacity: 0;
  transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

.faq-item.active .faq-answer { opacity: 1; }


/* ══════════════════════════════════════════
   SEO LOCATION
══════════════════════════════════════════ */
.seo-location {
  padding: 5rem 5vw;
  background: linear-gradient(to bottom, var(--champagne), var(--ivory));
  text-align: center;
}

.seo-location h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300;
  color: var(--espresso);
  margin-bottom: 1.2rem;
}

.seo-location p {
  max-width: 680px;
  margin: 0 auto 1rem;
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--warm-brown);
}


/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--espresso);
  padding: 3.5rem 5vw;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}

.footer-tagline {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 1rem;
}

.footer-copy {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
}


/* ══════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
══════════════════════════════════════════ */
@media (max-width: 900px) {
  .about-inner          { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-frame img  { height: 380px; }
  .booking-inner        { grid-template-columns: 1fr; gap: 3rem; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
}


/* ══════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
══════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Show hamburger, hide desktop links */
  .hamburger   { display: flex; }
  .nav-links   { display: none; }

  /* Tighten navbar padding on mobile */
  .navbar { padding: 1.2rem 5vw; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }
  .gi-wide { grid-column: span 2; }

  /* About */
  .about-stats { gap: 1.8rem; }

  /* FAQ */
  .faq { padding: 5rem 6vw; }
  .faq-header h2   { font-size: 2.2rem; line-height: 1.2; }
  .faq-question    { font-size: 0.75rem; letter-spacing: 0.12em; padding: 1.2rem 0; }
  .faq-answer      { font-size: 0.82rem; line-height: 1.6; padding-right: 0.5rem; }
  .faq-list        { max-width: 100%; }
}