/* ═══════════════════════════════════════
   TOKENS
═══════════════════════════════════════ */
:root {
  --bg:           #f8f7f7;
  --bg-dark:      #efecec;
  --surface:      #fdfcfc;
  --ink:          #1e1515;
  --muted:        #877878;
  --border:       #e0dcdc;
  --gold:         #ac5353;
  --gold-light:   #e7dfdf;
  --gold-deep:    #753838;
  --forest:       #533232;
  --forest-dark:  #392222;
  --forest-light: #e7e4e4;
  --forest-rgb:   83,50,50;
  --gold-rgb:     172,83,83;
  --bg-rgb:       248,247,247;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;

  --shadow-sm: 0 2px 12px rgba(60,40,20,.08);
  --shadow-md: 0 8px 40px rgba(60,40,20,.14);
  --shadow-lg: 0 24px 80px rgba(60,40,20,.22);

  --ease-out:    cubic-bezier(.22,1,.36,1);
  --ease-in-out: cubic-bezier(.65,0,.35,1);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;
  --nav-h: 72px;
}

/* ═══════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
address { font-style: normal; }
::selection { background: var(--gold); color: #fff; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* ═══════════════════════════════════════
   UTILITIES
═══════════════════════════════════════ */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  display: block;
  height: 1px;
  width: 28px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .04em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background .25s, color .25s, border-color .25s,
              transform .18s var(--ease-out), box-shadow .25s;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--forest); color: #fff; box-shadow: 0 4px 24px rgba(var(--forest-rgb),.3); }
.btn--primary:hover { background: var(--forest-dark); box-shadow: 0 8px 32px rgba(var(--forest-rgb),.4); }
.btn--ghost { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.5); backdrop-filter: blur(8px); }
.btn--ghost:hover { background: rgba(255,255,255,.24); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--border); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold-deep); }
.btn--sm { min-height: 40px; padding: 0 20px; font-size: .82rem; }

/* ═══════════════════════════════════════
   NAV
═══════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background .4s var(--ease-out), box-shadow .4s;
}
.nav.is-scrolled {
  background: rgba(var(--bg-rgb),.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav__logo-img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,.4); transition: border-color .3s; }
.nav.is-scrolled .nav__logo-img { border-color: var(--gold-light); }
.nav__logo span { font-family: var(--font-serif); font-weight: 600; font-size: 1.1rem; color: #fff; transition: color .3s; white-space: nowrap; }
.nav.is-scrolled .nav__logo span { color: var(--ink); }
.nav__links { display: flex; align-items: center; gap: 36px; margin-left: auto; }
.nav__links a { font-size: .85rem; font-weight: 400; letter-spacing: .06em; color: rgba(255,255,255,.88); transition: color .25s; position: relative; }
.nav__links a::after { content: ''; position: absolute; bottom: -3px; left: 0; right: 0; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease-out); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__links a:hover { color: #fff; }
.nav.is-scrolled .nav__links a { color: var(--muted); }
.nav.is-scrolled .nav__links a:hover { color: var(--ink); }
.nav__cta { font-size: .82rem; font-weight: 500; letter-spacing: .06em; padding: 10px 22px; border-radius: 999px; background: var(--gold); color: #fff; transition: background .25s, transform .18s var(--ease-out), box-shadow .25s; flex-shrink: 0; box-shadow: 0 4px 18px rgba(var(--gold-rgb),.35); }
.nav__cta:hover { background: var(--gold-deep); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(var(--gold-rgb),.5); }
.nav__burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; background: none; border: none; cursor: pointer; padding: 6px; margin-left: auto; }
.nav__burger span { display: block; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s var(--ease-out), opacity .3s, background .3s; }
.nav.is-scrolled .nav__burger span { background: var(--ink); }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__mobile { display: none; background: var(--surface); border-bottom: 1px solid var(--border); padding: 24px 40px 28px; flex-direction: column; gap: 6px; }
.nav__mobile.is-open { display: flex; }
.nav__mobile a { font-size: 1rem; font-weight: 400; padding: 10px 0; color: var(--muted); border-bottom: 1px solid var(--border); transition: color .2s; }
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a:hover { color: var(--ink); }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg--no-img { background: var(--forest); }
.hero__img { width: 100%; height: 100%; object-fit: cover; object-position: center; will-change: transform; transition: transform 8s ease-out; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,8,6,.85) 0%, rgba(10,8,6,.4) 50%, rgba(10,8,6,.15) 100%), linear-gradient(to right, rgba(10,8,6,.4) 0%, transparent 60%); }
.hero__bg--no-img .hero__overlay { background: linear-gradient(135deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,.2) 100%); }
.hero__content { position: relative; z-index: 2; padding: 0 80px 100px; max-width: 860px; }
.hero__eyebrow { display: flex; align-items: center; gap: 10px; font-family: var(--font-sans); font-size: .74rem; font-weight: 400; letter-spacing: .28em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 20px; opacity: 0; animation: fadeUp .8s .2s var(--ease-out) forwards; }
.eyebrow-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.hero__title { font-family: var(--font-serif); font-size: clamp(4rem, 10vw, 9rem); font-weight: 300; line-height: .92; color: #fff; letter-spacing: -.02em; opacity: 0; animation: fadeUp .9s .4s var(--ease-out) forwards; }
.hero__title em { font-style: italic; color: var(--gold-light); }
.hero__sub { font-family: var(--font-sans); font-size: clamp(.95rem, 1.5vw, 1.15rem); font-weight: 300; line-height: 1.7; color: rgba(255,255,255,.75); margin-top: 22px; opacity: 0; animation: fadeUp .8s .6s var(--ease-out) forwards; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; opacity: 0; animation: fadeUp .8s .8s var(--ease-out) forwards; }
.hero__rating { position: absolute; right: 80px; bottom: 90px; z-index: 2; text-align: center; background: rgba(10,8,6,.45); border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-radius: var(--radius-md); padding: 20px 24px; color: #fff; opacity: 0; animation: fadeIn .8s 1s var(--ease-out) forwards; }
.hero__stars { font-size: 1.1rem; color: var(--gold); letter-spacing: 2px; display: block; }
.hero__rating-val { font-family: var(--font-serif); font-size: 3.2rem; font-weight: 300; line-height: 1; margin-top: 6px; color: #fff; }
.hero__rating-label { font-size: .75rem; font-weight: 300; color: rgba(255,255,255,.6); margin-top: 6px; white-space: nowrap; }
.hero__scroll { position: absolute; left: 50%; bottom: 32px; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 10px; color: rgba(255,255,255,.5); font-size: .7rem; font-weight: 300; letter-spacing: .16em; text-transform: uppercase; opacity: 0; animation: fadeIn 1s 1.2s var(--ease-out) forwards; }
.hero__scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,.5)); animation: scrollPulse 2s 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: .4; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(1.15); } }

/* ═══════════════════════════════════════
   MARQUEE
═══════════════════════════════════════ */
.marquee { background: var(--forest); overflow: hidden; padding: 16px 0; white-space: nowrap; }
.marquee__track { display: inline-flex; gap: 0; animation: marqueeScroll 28s linear infinite; }
.marquee__track span { display: inline-block; font-family: var(--font-sans); font-size: .75rem; font-weight: 400; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.75); padding: 0 18px; }
.marquee__track .sep { color: var(--gold); opacity: .7; padding: 0 4px; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about { max-width: 1280px; margin: 0 auto; padding: 120px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about--no-photos { grid-template-columns: 1fr; max-width: 800px; }
.about__photos { position: relative; height: 560px; }
.about__photo-wrap { position: absolute; overflow: hidden; border-radius: var(--radius-md); }
.about__photo-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease-out); }
.about__photo-wrap:hover img { transform: scale(1.04); }
.about__photo-wrap--main { top: 0; left: 0; width: 78%; height: 82%; box-shadow: var(--shadow-lg); z-index: 1; }
.about__photo-wrap--accent { bottom: 0; right: 0; width: 54%; height: 52%; box-shadow: var(--shadow-md); border: 6px solid var(--bg); z-index: 2; }
.about__badge { position: absolute; top: 50%; left: -24px; transform: translateY(-50%); z-index: 3; background: var(--forest); border-radius: var(--radius-md); padding: 16px 20px; text-align: center; box-shadow: var(--shadow-md); display: flex; flex-direction: column; align-items: center; gap: 4px; }
.about__badge-num { font-family: var(--font-serif); font-size: 2.4rem; font-weight: 400; color: #fff; line-height: 1; }
.about__badge-stars { font-size: .85rem; color: var(--gold); letter-spacing: 2px; }
.about__badge-label { font-size: .62rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.about__heading { font-family: var(--font-serif); font-size: clamp(2.4rem, 4vw, 3.6rem); font-weight: 400; line-height: 1.08; color: var(--ink); margin-bottom: 28px; }
.about__heading em { font-style: italic; color: var(--forest); }
.about__body { font-family: var(--font-sans); font-size: 1rem; font-weight: 300; line-height: 1.85; color: var(--muted); margin-bottom: 20px; }
.about__facts { display: flex; gap: 32px; margin: 40px 0 36px; padding: 32px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.fact { display: flex; flex-direction: column; gap: 4px; }
.fact__number { font-family: var(--font-serif); font-size: 2.6rem; font-weight: 400; line-height: 1; color: var(--gold-deep); }
.fact__label { font-size: .75rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.about__socials { display: flex; gap: 10px; flex-wrap: wrap; }
.social-pill { display: inline-flex; align-items: center; gap: 7px; padding: 10px 18px; border-radius: 999px; border: 1px solid var(--border); font-size: .82rem; font-weight: 400; color: var(--muted); background: var(--surface); transition: border-color .25s, color .25s, background .25s; }
.social-pill:hover { border-color: var(--forest); color: var(--forest); background: var(--forest-light); }

/* ═══════════════════════════════════════
   HOURS
═══════════════════════════════════════ */
.hours { background: var(--forest); position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr 420px; align-items: stretch; }
.hours--no-photo { grid-template-columns: 1fr; }
.hours__deco { position: absolute; top: -120px; right: -120px; width: 480px; height: 480px; border-radius: 50%; border: 1px solid rgba(255,255,255,.06); pointer-events: none; }
.hours__deco::before { content: ''; position: absolute; top: 60px; left: 60px; right: 60px; bottom: 60px; border-radius: 50%; border: 1px solid rgba(255,255,255,.04); }
.hours__inner { padding: 100px 80px; position: relative; z-index: 1; }
.hours--no-photo .hours__inner { max-width: 700px; }
.hours__inner .section-eyebrow { color: var(--gold); }
.hours__inner .section-eyebrow::before,
.hours__inner .section-eyebrow::after { background: var(--gold); opacity: .5; }
.hours__inner h2 { font-family: var(--font-serif); font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 400; color: #fff; margin-bottom: 14px; }
.hours__note { font-size: .9rem; font-weight: 300; color: rgba(255,255,255,.5); margin-bottom: 48px; }
.hours__list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.hours__row { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.hours__row:last-child { border-bottom: none; }
.hours__row.is-today { margin: 0 -16px; padding: 18px 16px; background: rgba(255,255,255,.06); border-radius: var(--radius-sm); border-color: transparent; }
.hours__day { font-family: var(--font-sans); font-size: .92rem; font-weight: 400; color: rgba(255,255,255,.7); letter-spacing: .04em; }
.hours__row.is-today .hours__day { color: #fff; font-weight: 500; }
.hours__row.is-today .hours__day::after { content: ' — Today'; font-size: .72rem; font-weight: 400; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-left: 8px; }
.hours__time { font-family: var(--font-serif); font-size: 1.05rem; font-weight: 500; color: rgba(255,255,255,.9); }
.hours__time--closed { color: rgba(255,255,255,.3); font-style: italic; font-size: .95rem; }
.hours__photo { position: relative; overflow: hidden; }
.hours__photo img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.7) saturate(.9); transition: transform 8s ease-out, filter .4s; }
.hours__photo:hover img { filter: brightness(.8) saturate(1); }

/* ═══════════════════════════════════════
   GALLERY
═══════════════════════════════════════ */
.gallery { max-width: 1280px; margin: 0 auto; padding: 120px 80px; }
.gallery__heading { text-align: center; margin-bottom: 60px; }
.gallery__heading .section-eyebrow { justify-content: center; }
.gallery__heading h2 { font-family: var(--font-serif); font-size: clamp(2.4rem, 4vw, 3.8rem); font-weight: 400; line-height: 1.05; color: var(--ink); }
.gallery__grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 280px; gap: 14px; }
.gallery__grid--few { grid-template-columns: repeat(2, 1fr); }
.gallery__grid--one { grid-template-columns: 1fr; }
.gallery__item { position: relative; margin: 0; border-radius: var(--radius-md); overflow: hidden; cursor: zoom-in; background: var(--bg-dark); }
.gallery__item--wide { grid-column: span 2; }
.gallery__grid--few .gallery__item--wide,
.gallery__grid--one .gallery__item--wide { grid-column: span 1; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out); }
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.35) 0%, transparent 50%); opacity: 0; transition: opacity .4s; }
.gallery__item:hover .gallery__item-overlay { opacity: 1; }
.gallery__item::after { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(.6); width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.9) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%231a1410' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3Cline x1='11' y1='8' x2='11' y2='14'/%3E%3Cline x1='8' y1='11' x2='14' y2='11'/%3E%3C/svg%3E") no-repeat center; opacity: 0; transition: opacity .35s, transform .35s var(--ease-out); pointer-events: none; }
.gallery__item:hover::after { opacity: 1; transform: translate(-50%,-50%) scale(1); }

/* ═══════════════════════════════════════
   REVIEWS
═══════════════════════════════════════ */
.reviews { background: var(--bg-dark); padding: 100px 40px; text-align: center; position: relative; overflow: hidden; }
.reviews::before { content: '"'; position: absolute; top: -40px; left: 50%; transform: translateX(-50%); font-family: var(--font-serif); font-size: 28rem; font-weight: 700; color: rgba(var(--gold-rgb),.06); line-height: 1; pointer-events: none; user-select: none; }
.reviews__inner { position: relative; z-index: 1; max-width: 480px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.reviews__inner .section-eyebrow { justify-content: center; }
.reviews__score { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.reviews__number { font-family: var(--font-serif); font-size: clamp(5rem, 12vw, 9rem); font-weight: 300; line-height: 1; color: var(--ink); letter-spacing: -.02em; }
.reviews__stars-row { font-size: 1.5rem; color: var(--gold); letter-spacing: 4px; }
.reviews__label { font-size: .9rem; font-weight: 300; color: var(--muted); line-height: 1.5; }
.reviews__label strong { font-weight: 500; color: var(--ink); }
.reviews .btn--outline { margin-top: 10px; }

/* ═══════════════════════════════════════
   LOCATION
═══════════════════════════════════════ */
.location { max-width: 1280px; margin: 0 auto; padding: 120px 80px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.location h2 { font-family: var(--font-serif); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 400; line-height: 1.1; color: var(--ink); margin-bottom: 32px; }
.location__address { font-size: 1.1rem; font-weight: 300; line-height: 1.9; color: var(--muted); margin-bottom: 28px; }
.location__phone { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-serif); font-size: 1.6rem; font-weight: 400; color: var(--ink); margin-bottom: 36px; transition: color .25s; }
.location__phone:hover { color: var(--forest); }
.location__links { display: flex; flex-wrap: wrap; gap: 12px; }
.location__map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); height: 480px; position: relative; }
.location__map::before { content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg); box-shadow: inset 0 0 0 1px rgba(0,0,0,.08); z-index: 1; pointer-events: none; }
.location__map iframe { width: 100%; height: 100%; border: none; display: block; }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer { background: var(--ink); color: rgba(255,255,255,.7); }
.footer__inner { max-width: 1280px; margin: 0 auto; padding: 80px 80px 60px; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__brand { display: flex; flex-direction: column; gap: 12px; }
.footer__logo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,.15); }
.footer__name { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 400; color: #fff; letter-spacing: .01em; }
.footer__tagline { font-size: .82rem; font-weight: 300; color: rgba(255,255,255,.4); line-height: 1.6; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col-label { font-size: .7rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.footer__col p, .footer__col a { font-size: .88rem; font-weight: 300; color: rgba(255,255,255,.55); transition: color .25s; }
.footer__col a:hover { color: #fff; }
.footer__base { max-width: 1280px; margin: 0 auto; padding: 24px 80px; }
.footer__base p { font-size: .78rem; font-weight: 300; color: rgba(255,255,255,.3); }

/* ═══════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════ */
.lightbox { position: fixed; inset: 0; z-index: 999; background: rgba(10,8,6,.92); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); display: grid; place-items: center; padding: 24px; animation: fadeIn .25s var(--ease-out); }
.lightbox[hidden] { display: none; }
.lightbox__img-wrap { max-width: min(1100px, 90vw); max-height: 82vh; display: flex; align-items: center; justify-content: center; }
.lightbox__img-wrap img { max-width: 100%; max-height: 82vh; border-radius: var(--radius-md); box-shadow: 0 32px 100px rgba(0,0,0,.5); object-fit: contain; animation: lightboxIn .3s var(--ease-out); }
@keyframes lightboxIn { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: scale(1); } }
.lightbox__close { position: absolute; top: 20px; right: 20px; width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); color: #fff; cursor: pointer; display: grid; place-items: center; transition: background .2s; }
.lightbox__close:hover { background: rgba(255,255,255,.22); }
.lightbox__prev, .lightbox__next { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); color: #fff; cursor: pointer; display: grid; place-items: center; transition: background .2s, transform .2s; }
.lightbox__prev:hover, .lightbox__next:hover { background: rgba(255,255,255,.2); }
.lightbox__prev { left: 20px; }
.lightbox__next { right: 20px; }
.lightbox__prev:hover { transform: translateY(-50%) translateX(-2px); }
.lightbox__next:hover { transform: translateY(-50%) translateX(2px); }
.lightbox__counter { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); font-size: .78rem; font-weight: 300; letter-spacing: .1em; color: rgba(255,255,255,.5); }

/* ═══════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ═══════════════════════════════════════
   KEYFRAMES
═══════════════════════════════════════ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ═══════════════════════════════════════
   RESPONSIVE — 1100px
═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .about, .location { grid-template-columns: 1fr; padding: 80px 48px; gap: 56px; }
  .about__photos { height: 420px; max-width: 520px; margin: 0 auto; width: 100%; }
  .hours { grid-template-columns: 1fr; }
  .hours__photo { height: 320px; }
  .hours__inner { padding: 80px 48px; }
  .footer__inner { grid-template-columns: 1fr 1fr; padding: 60px 48px 48px; gap: 40px; }
  .footer__base { padding: 24px 48px; }
  .gallery { padding: 80px 48px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — 768px
═══════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 62px; }
  .nav__inner { padding: 0 20px; gap: 16px; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile { padding: 16px 20px 20px; }
  .hero__content { padding: 0 24px 80px; }
  .hero__rating { right: 20px; bottom: 80px; padding: 14px 18px; }
  .hero__rating-val { font-size: 2.4rem; }
  .hero__scroll { display: none; }
  .about { padding: 60px 24px; }
  .about__badge { left: 0; }
  .gallery { padding: 60px 24px; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery__item--wide { grid-column: span 2; }
  .reviews { padding: 80px 24px; }
  .location { padding: 60px 24px; }
  .location__map { height: 360px; }
  .footer__inner { grid-template-columns: 1fr; padding: 48px 24px 36px; gap: 32px; }
  .footer__base { padding: 20px 24px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — 480px
═══════════════════════════════════════ */
@media (max-width: 480px) {
  .hero__content { padding-bottom: 70px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .hero__rating { display: none; }
  .about__photos { height: 320px; }
  .about__badge { display: none; }
  .about__facts { flex-wrap: wrap; gap: 20px; }
  .hours__inner { padding: 60px 24px; }
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery__item--wide { grid-column: span 1; }
}