/* ============================================================
   PEEKABOO GIFT SHOP — style.css
   Design token system → all values derive from :root
   ============================================================ */


/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  /* Palette (sampled from logo.jpg) */
  --blue:        #2E57C8;   /* primary cobalt — logo illustration */
  --blue-deep:   #1C3D8F;   /* depth, dark-mode hover */
  --blue-light:  #4A78F0;   /* accent glow */
  --bg:          #E8E8E6;   /* brand grey — logo background */
  --surface:     #FFFFFF;
  --surface-off: #F4F4F2;   /* warm off-white for alternating surfaces */
  --navy:        #16224A;   /* body text — never pure black */
  --muted:       #5B6A8B;   /* secondary / captions */
  --border:      rgba(22, 34, 74, 0.09);

  /* Typography */
  --font-display: 'Nunito', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  /* Type scale */
  --sz-xs:   0.6875rem;     /* 11px */
  --sz-sm:   0.8125rem;     /* 13px */
  --sz-base: 1rem;          /* 16px */
  --sz-md:   1.125rem;      /* 18px */
  --sz-lg:   1.375rem;      /* 22px */
  --sz-xl:   1.75rem;       /* 28px */
  --sz-2xl:  2.25rem;       /* 36px */
  --sz-3xl:  clamp(2rem, 4vw, 3rem);
  --sz-4xl:  clamp(2.5rem, 5.5vw, 4rem);
  --sz-hero-watermark: clamp(5rem, 18vw, 13rem);

  /* Spacing (8-point grid) */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Shadows */
  --sh-xs:   0 1px 3px rgba(22, 34, 74, 0.06);
  --sh-sm:   0 2px 8px rgba(22, 34, 74, 0.08);
  --sh-md:   0 4px 20px rgba(22, 34, 74, 0.10);
  --sh-lg:   0 8px 40px rgba(22, 34, 74, 0.13);
  --sh-blue: 0 0 24px rgba(74, 120, 240, 0.45),
             0 0 56px rgba(74, 120, 240, 0.18),
             0 4px 12px rgba(22, 34, 74, 0.18);

  /* Radii */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   28px;
  --r-full: 9999px;

  /* Motion */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-std:    cubic-bezier(0.4, 0, 0.2, 1);
}


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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--sz-base);
  font-weight: 400;
  line-height: 1.65;
  color: var(--navy);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Subtle grain overlay — prevents flat, digital look */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n' x='0' y='0'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
  opacity: 0.028;
  pointer-events: none;
  z-index: 9990;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

img, video {
  display: block;
  max-width: 100%;
}

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

ul, ol { list-style: none; }

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

address { font-style: normal; }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}


/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
.section-overline {
  font-family: var(--font-body);
  font-size: var(--sz-xs);
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--sp-3);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--sz-4xl);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--navy);
  text-shadow: 0 2px 10px rgba(22, 34, 74, 0.08);
}


/* ============================================================
   4. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: var(--sz-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--sp-4) var(--sp-8);
  border-radius: var(--r-full);
  transition:
    transform 0.22s var(--ease-spring),
    box-shadow 0.28s var(--ease-out),
    background 0.2s var(--ease-std);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 2px 8px rgba(46, 87, 200, 0.18);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--blue-deep);
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--sh-blue);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
}

.btn:active {
  transform: scale(0.98) translateY(0);
}


/* ============================================================
   5. WOBBLY LINE (signature element — appears exactly 3×)
   ============================================================ */
.wobbly-line {
  display: block;
  width: 100%;
  height: 16px;
  color: var(--blue);
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: draw-line 0.9s var(--ease-out) 0.5s forwards;
}

.wobbly-line--footer {
  height: 10px;
  opacity: 0.55;
  animation: none;
  stroke-dashoffset: 0;
}

@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}


/* ============================================================
   6. NAVIGATION
   ============================================================ */
.nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: background 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.nav-wrap.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--sh-sm);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--sp-4) var(--sp-8);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--bg);
}

.nav-brand-text {
  font-family: var(--font-display);
  font-size: var(--sz-md);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: var(--sp-8);
  margin-left: auto;
}

.nav-links a {
  font-size: var(--sz-sm);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--muted);
  transition: color 0.18s;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}

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

.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: var(--sp-3) var(--sp-6);
  font-size: var(--sz-xs);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
  margin-left: auto;
}

.nav-burger span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.22s var(--ease-out), opacity 0.22s;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--surface);
  z-index: 950;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-8);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--bg);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-6);
}

.mobile-menu ul a {
  font-family: var(--font-display);
  font-size: var(--sz-xl);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-menu ul a:hover { color: var(--blue); }

.mobile-menu-close {
  position: absolute;
  top: var(--sp-6);
  right: var(--sp-8);
  font-size: var(--sz-lg);
  color: var(--muted);
  transition: color 0.18s;
}

.mobile-menu-close:hover { color: var(--navy); }

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(22, 34, 74, 0.4);
  z-index: 940;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out);
}

.mobile-menu-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}


/* ============================================================
   7. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px; /* nav height */
}

/* The giant ghost watermark — the signature depth layer */
.hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--sz-hero-watermark);
  letter-spacing: -0.03em;
  color: rgba(46, 87, 200, 0.055);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  line-height: 1;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--sp-16) var(--sp-8);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}

/* Text column */
.hero-text {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.hero-overline {
  font-size: var(--sz-xs);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--navy);
  text-shadow: 0 3px 16px rgba(22, 34, 74, 0.1);
}

.hero-underline-wrap {
  display: block;
  margin-top: var(--sp-1);
  width: 80%;
  color: var(--blue);
}

.hero-tagline {
  font-size: var(--sz-md);
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
  max-width: 38ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-top: var(--sp-2);
}

/* Media column */
.hero-logo {
  object-fit: contain;
  object-position: center;
  animation: logo-float 5s ease-in-out infinite;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 16px 48px rgba(46, 87, 200, 0.12));
}

/* Both media elements are stacked via CSS grid-area trick.
   Video fades in (opacity 0→1) once canplay fires; image fades out. */
.hero-media {
  display: grid;
  place-items: center;
}

.hero-logo--video,
.hero-logo--img {
  grid-area: 1 / 1;
  width: min(460px, 90%);
  height: auto;
}

.hero-logo--video {
  opacity: 0;
  transition: opacity 0.7s var(--ease-out);
  z-index: 1;
}

.hero-logo--img {
  z-index: 2;
  transition: opacity 0.7s var(--ease-out);
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
}

.scroll-cue-track {
  width: 2px;
  height: 48px;
  background: rgba(22, 34, 74, 0.12);
  border-radius: var(--r-full);
  overflow: hidden;
  position: relative;
}

.scroll-cue-dot {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: scroll-drop 1.8s var(--ease-out) infinite;
}

@keyframes scroll-drop {
  0%   { top: -6px; opacity: 1; }
  85%  { top: 48px; opacity: 1; }
  100% { top: 48px; opacity: 0; }
}


/* ============================================================
   8. ABOUT
   ============================================================ */
.about {
  background: var(--surface);
  padding: var(--sp-24) var(--sp-8);
}

.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  /* Asymmetric crop hint */
  aspect-ratio: 4 / 5;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s var(--ease-out);
}

.about-image-wrap:hover .about-image {
  transform: scale(1.03);
}

.about-text {
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: var(--sp-10);
  row-gap: var(--sp-6);
  align-items: start;
}

/* Explicit placement: all text in column 1 */
.about-text > .section-overline { grid-column: 1; grid-row: 1; }
.about-text > .section-title    { grid-column: 1; grid-row: 2; }
.about-text > .about-body       { grid-column: 1; grid-row: 3; }
.about-text > .specialty-tags   { grid-column: 1; grid-row: 4; }

.about-deco {
  grid-column: 2;
  grid-row: 1 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-deco-img {
  width: clamp(140px, 16vw, 210px);
  height: auto;
  display: block;
  pointer-events: none;
  user-select: none;
}

.about-body {
  font-size: var(--sz-md);
  font-weight: 300;
  line-height: 1.75;
  color: var(--muted);
  max-width: 44ch;
}

.specialty-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-2);
}

.specialty-tag {
  display: inline-flex;
  align-items: center;
  font-size: var(--sz-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(46, 87, 200, 0.07);
  border: 1.5px solid rgba(46, 87, 200, 0.15);
  border-radius: var(--r-full);
  padding: var(--sp-2) var(--sp-4);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.specialty-tag:hover {
  background: rgba(46, 87, 200, 0.12);
  border-color: rgba(46, 87, 200, 0.3);
  transform: translateY(-1px);
}


/* ============================================================
   9. WOBBLY DIVIDER (signature element #2)
   ============================================================ */
.wobbly-divider-wrap {
  padding: var(--sp-4) var(--sp-8);
  max-width: 1280px;
  margin: 0 auto;
  color: rgba(46, 87, 200, 0.18);
  overflow: hidden;
}

.wobbly-divider-line {
  width: 100%;
  height: 16px;
}


/* ============================================================
   10. GALLERY
   ============================================================ */
.gallery-section {
  padding: var(--sp-20) var(--sp-8) var(--sp-32);
  background: var(--bg);
}

.gallery-header {
  max-width: 1280px;
  margin: 0 auto var(--sp-10);
}

.gallery-filter-wrap {
  max-width: 1280px;
  margin: 0 auto var(--sp-8);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gallery-filter-wrap::-webkit-scrollbar { display: none; }

.gallery-filters {
  display: flex;
  gap: var(--sp-8);
  padding-bottom: var(--sp-1);
  white-space: nowrap;
  border-bottom: 1px solid var(--border);
}

.gallery-filter-btn {
  font-family: var(--font-body);
  font-size: var(--sz-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: var(--sp-3) 0;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: color 0.22s;
  flex-shrink: 0;
}

.gallery-filter-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  border-radius: var(--r-full);
  transition: width 0.3s var(--ease-out);
}

.gallery-filter-btn.active {
  color: var(--navy);
}

.gallery-filter-btn.active::after {
  width: 100%;
}

.gallery-filter-btn:hover {
  color: var(--navy);
}

/* Gallery grid — editorial asymmetric layout */
.gallery-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: var(--sp-3);
}

.gallery-item {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: box-shadow 0.3s var(--ease-out);
}

.gallery-item:hover {
  box-shadow: var(--sh-md);
}

/* Editorial size variants */
.gallery-item--featured {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-item-btn {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  padding: 0;
  background: none;
  border: none;
}

.gallery-item-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s var(--ease-out);
  display: block;
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22, 34, 74, 0.52) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
  display: flex;
  align-items: flex-end;
  padding: var(--sp-4) var(--sp-5);
}

.gallery-item-btn:hover .gallery-item-overlay,
.gallery-item-btn:focus-visible .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-label {
  font-size: var(--sz-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}

/* Staggered entrance animation */
.gallery-item {
  opacity: 0;
  transform: translateY(16px);
  animation: gallery-enter 0.5s var(--ease-out) forwards;
  animation-delay: calc(var(--stagger, 0) * 0.06s);
}

@keyframes gallery-enter {
  to { opacity: 1; transform: none; }
}


/* ============================================================
   11. REVIEWS
   ============================================================ */
.reviews-section {
  background: var(--surface-off);
  padding: var(--sp-24) var(--sp-8);
}

.reviews-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--sp-16);
  align-items: start;
}

.reviews-header {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  position: sticky;
  top: 100px;
}

/* Star rating */
.rating-block {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.stars-wrap {
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
  line-height: 1;
}

.stars-bg {
  color: rgba(22, 34, 74, 0.15);
  letter-spacing: 2px;
}

.stars-fg {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  color: var(--blue);
  letter-spacing: 2px;
}

.rating-number {
  font-family: var(--font-display);
  font-size: var(--sz-xl);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.rating-count {
  font-size: var(--sz-sm);
  color: var(--muted);
}

/* Review cards */
.reviews-cards {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.review-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: var(--sp-8);
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  border: 1px solid var(--border);
  transition: transform 0.28s var(--ease-spring), box-shadow 0.28s var(--ease-out);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

/* Stagger offsets for editorial feel */
.review-card:nth-child(2) { margin-left: var(--sp-8); }
.review-card:nth-child(3) { margin-left: var(--sp-4); }

.review-stars {
  font-size: 1.1rem;
  color: var(--blue);
  letter-spacing: 2px;
}

.review-body {
  font-size: var(--sz-base);
  font-weight: 300;
  line-height: 1.7;
  color: var(--muted);
  border: none;
}

.review-body p { margin: 0; }

.review-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-top: auto;
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border);
}

.review-name {
  font-size: var(--sz-sm);
  font-weight: 500;
  color: var(--navy);
}

.review-source {
  font-size: var(--sz-xs);
  color: var(--muted);
  margin-left: auto;
}


/* ============================================================
   12. LOCATION
   ============================================================ */
.location-section {
  background: var(--surface);
  padding: var(--sp-24) var(--sp-8);
}

.location-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}

.location-map-wrap {
  height: 520px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  position: sticky;
  top: 100px;
}

.location-map {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}

.location-address {
  font-size: var(--sz-md);
  line-height: 1.7;
  color: var(--navy);
}

.location-neighborhood {
  display: block;
  margin-top: var(--sp-2);
  font-size: var(--sz-sm);
  color: var(--muted);
}

.hours-heading {
  font-family: var(--font-display);
  font-size: var(--sz-lg);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--sp-4);
  letter-spacing: -0.01em;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--sz-sm);
}

.hours-table td {
  padding: var(--sp-3) var(--sp-4) var(--sp-3) 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.hours-table td:first-child {
  color: var(--navy);
  font-weight: 500;
  width: 130px;
}

.hours-table tr:last-child td {
  border-bottom: none;
}

.hours-table em {
  font-style: italic;
  font-size: var(--sz-xs);
  color: rgba(91, 106, 139, 0.65);
}

.location-actions {
  margin-top: var(--sp-4);
}


/* ============================================================
   13. FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  padding: var(--sp-16) var(--sp-8) var(--sp-12);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-10);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--bg);
  padding: 4px;
}

.footer-name {
  font-family: var(--font-display);
  font-size: var(--sz-xl);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.footer-name svg { display: block; }

.footer-sub {
  font-size: var(--sz-sm);
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-6);
}

.footer-nav a {
  font-size: var(--sz-sm);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.2s;
  text-decoration: none;
  letter-spacing: 0.04em;
}

.footer-nav a:hover { color: rgba(255, 255, 255, 0.9); }

.footer-legal {
  font-size: var(--sz-xs);
  color: rgba(255, 255, 255, 0.28);
  line-height: 1.7;
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover { color: rgba(255, 255, 255, 0.75); }


/* ============================================================
   14. LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-6);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}

.lightbox:not([aria-hidden="true"]) {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(22, 34, 74, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lightbox-stage {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 1000px);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
}

.lightbox-img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--r-md);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  font-size: var(--sz-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.lightbox-btn {
  position: absolute;
  z-index: 2;
  color: rgba(255, 255, 255, 0.75);
  font-size: 2rem;
  line-height: 1;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.lightbox-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: scale(1.08);
}

.lightbox-close {
  top: var(--sp-6);
  right: var(--sp-6);
  font-size: 1.2rem;
}

.lightbox-prev {
  left: var(--sp-4);
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev:hover { transform: translateY(-50%) scale(1.08); }

.lightbox-next {
  right: var(--sp-4);
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next:hover { transform: translateY(-50%) scale(1.08); }


/* ============================================================
   15. SCROLL REVEAL ANIMATIONS
   ============================================================ */
.js-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s var(--ease-out),
    transform 0.65s var(--ease-out);
  transition-delay: var(--delay, 0s);
}

.js-reveal.revealed {
  opacity: 1;
  transform: none;
}


/* ============================================================
   16. RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    text-align: center;
    gap: var(--sp-10);
    padding: var(--sp-10) var(--sp-6);
  }

  .hero-text { order: 2; align-items: center; }
  .hero-media { order: 1; }
  .hero-underline-wrap { margin: var(--sp-1) auto 0; }
  .hero-tagline { text-align: center; margin: 0 auto; }
  .hero-actions { justify-content: center; }

  .hero-logo--video,
  .hero-logo--img {
    width: min(300px, 80%);
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }

  .about-text {
    column-gap: var(--sp-5);
  }

  .about-text > .section-overline { grid-column: 1 / -1; grid-row: 1; }
  .about-text > .section-title    { grid-column: 1;      grid-row: 2; align-self: center; }
  .about-text > .about-body       { grid-column: 1 / -1; grid-row: 3; }
  .about-text > .specialty-tags   { grid-column: 1 / -1; grid-row: 4; }

  .about-deco {
    grid-column: 2;
    grid-row: 2;
    align-self: center;
  }

  .about-deco-img {
    width: clamp(80px, 24vw, 120px);
  }

  .about-image-wrap {
    aspect-ratio: 16 / 9;
    max-height: 400px;
  }

  .reviews-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }

  .reviews-header {
    position: static;
  }

  .review-card:nth-child(2),
  .review-card:nth-child(3) {
    margin-left: 0;
  }

  .location-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
  }

  .location-map-wrap {
    height: 320px;
    position: static;
  }

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

  .gallery-item--featured {
    grid-column: span 2;
  }

  .gallery-item--wide {
    grid-column: span 2;
  }
}


/* ============================================================
   17. RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 640px) {
  .nav {
    padding: var(--sp-4) var(--sp-5);
  }

  .hero {
    padding-top: 60px;
  }

  .hero-inner {
    padding: var(--sp-8) var(--sp-5);
  }

  .hero-watermark {
    font-size: clamp(3.5rem, 22vw, 8rem);
  }

  .about,
  .gallery-section,
  .reviews-section,
  .location-section {
    padding-left: var(--sp-5);
    padding-right: var(--sp-5);
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
    gap: var(--sp-2);
  }

  .gallery-item--featured,
  .gallery-item--wide {
    grid-column: span 2;
  }

  .gallery-item--tall {
    grid-row: span 1;
  }

  .gallery-filters {
    gap: var(--sp-5);
  }

  .footer {
    padding: var(--sp-12) var(--sp-5) var(--sp-10);
  }

  .section-title {
    font-size: var(--sz-2xl);
  }

  .lightbox-prev { left: var(--sp-2); }
  .lightbox-next { right: var(--sp-2); }
}


/* ============================================================
   18. PRINT
   ============================================================ */
@media print {
  .nav-wrap, .lightbox, .scroll-cue, .mobile-menu, .mobile-menu-backdrop { display: none; }
  body { background: #fff; color: #000; }
  a::after { content: ' (' attr(href) ')'; }
}
