:root {
  --bg: #080808;
  --bg-soft: #101010;
  --panel: #141414;
  --text: #f4f2ed;
  --muted: #aaa7a1;
  --line: rgba(255,255,255,.12);
  --line-strong: rgba(255,255,255,.22);
  --accent: #f2efe8;
  --green: #28d17c;
  --radius: 24px;
  --max: 1180px;
  --shadow: 0 30px 80px rgba(0,0,0,.38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

::selection { background: #f4f2ed; color: #080808; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font: inherit; }

.noise {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.cursor-glow {
  position: fixed;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.07), transparent 66%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity .25s ease;
}

.site-header {
  width: min(calc(100% - 40px), var(--max));
  margin: 14px auto 0;
  padding: 11px 12px 11px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: sticky;
  top: 14px;
  z-index: 50;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(10,10,10,.68);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 14px 50px rgba(0,0,0,.22);
}

.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 700; letter-spacing: -.02em; }
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 14px;
}

.nav { display: flex; align-items: center; gap: 24px; font-size: 13px; color: var(--muted); }
.nav a { transition: color .2s ease; }
.nav a:hover { color: var(--text); }

.btn {
  min-height: 48px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn-small { min-height: 38px; padding: 0 17px; font-size: 12px; }
.btn-primary { background: var(--accent); color: #0a0a0a; }
.btn-primary:hover { background: white; }
.btn-outline { border-color: var(--line-strong); background: rgba(255,255,255,.04); }
.btn-outline:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.08); }
.btn-ghost { border-color: var(--line); background: transparent; color: var(--text); }
.btn-ghost:hover { border-color: var(--line-strong); background: rgba(255,255,255,.04); }
.btn-light { background: #fff; color: #0a0a0a; }

.hero {
  min-height: 760px;
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 100px 0 80px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 70px;
  align-items: center;
  position: relative;
  isolation: isolate;
}

.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); z-index: -1; opacity: .22; }
.orb-a { width: 320px; height: 320px; background: #5b5b5b; left: -150px; top: 80px; animation: drift 9s ease-in-out infinite; }
.orb-b { width: 260px; height: 260px; background: #3d3d3d; right: -60px; bottom: 40px; animation: drift 11s ease-in-out infinite reverse; }

.eyebrow { margin: 0 0 16px; text-transform: uppercase; letter-spacing: .18em; font-size: 11px; font-weight: 700; color: #b8b5ae; }
.live-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--green); margin-right: 8px; box-shadow: 0 0 0 5px rgba(40,209,124,.1); }

.hero h1, .section h2, .cta-section h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: -.045em;
  font-weight: 600;
  line-height: .98;
}
.hero h1 { font-size: clamp(60px, 7vw, 102px); }
.hero h1 em, .cta-section h2 em { color: #8f8d88; font-weight: 600; }
.hero-text { max-width: 600px; margin: 28px 0 0; color: var(--muted); font-size: 17px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.quick-info { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; max-width: 520px; margin-top: 54px; padding-top: 24px; border-top: 1px solid var(--line); }
.quick-info span { display: block; color: #77746f; font-size: 11px; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 4px; }
.quick-info strong { font-size: 13px; }

.hero-visual { position: relative; min-width: 0; }
.logo-card {
  min-height: 500px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: linear-gradient(145deg, #101010, #070707);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transform: rotate(1.5deg);
}
.logo-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 25px;
  pointer-events: none;
}
.logo-shine { position: absolute; width: 180px; height: 740px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent); top: -110px; left: -240px; transform: rotate(18deg); animation: shine 6s ease-in-out infinite; }
.logo-card-footer { position: absolute; left: 30px; right: 30px; bottom: 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; color: #d1cdc5; font-size: 10px; letter-spacing: .13em; text-transform: uppercase; z-index: 3; }
.logo-card-footer > span:first-child { display: inline-flex; align-items: center; gap: 8px; }
.logo-card-footer i { width: 7px; height: 7px; border-radius: 50%; background: #787878; display: block; }
.logo-card-footer .is-open i, #hero-status.is-open i { background: var(--green); box-shadow: 0 0 0 5px rgba(40,209,124,.1); }
.floating-tag { position: absolute; z-index: 4; padding: 10px 14px; border: 1px solid var(--line-strong); border-radius: 999px; background: rgba(17,17,17,.85); backdrop-filter: blur(10px); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .12em; box-shadow: 0 12px 30px rgba(0,0,0,.3); }
.tag-one { top: 80px; right: -26px; animation: float 4s ease-in-out infinite; }
.tag-two { bottom: 105px; left: -24px; animation: float 4.8s ease-in-out infinite reverse; }

.cover-card { padding: 0; min-height: 540px; }
.cover-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cover-card-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.40) 52%, rgba(0,0,0,.70) 100%),
    linear-gradient(90deg, rgba(0,0,0,.60), rgba(0,0,0,.08) 46%, rgba(0,0,0,.52));
  z-index: 1;
}
.cover-card-content {
  position: relative;
  z-index: 2;
  min-height: 540px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.cover-logo {
  width: min(100%, 450px);
  filter: drop-shadow(0 10px 30px rgba(0,0,0,.45));
}
.cover-card-content p {
  margin: 12px 0 0;
  color: rgba(255,255,255,.88);
  font-size: 15px;
  letter-spacing: .04em;
}

.marquee-wrap { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.marquee { overflow: hidden; }
.marquee-track { width: max-content; display: flex; align-items: center; gap: 28px; padding: 18px 0; animation: marquee 22s linear infinite; }
.marquee-track span { font-family: "Playfair Display", serif; font-size: 19px; letter-spacing: .08em; }
.marquee-track b { color: #55534f; font-size: 12px; }

.section { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; padding: 120px 0; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 42px; }
.section h2 { max-width: 720px; font-size: clamp(46px, 6vw, 76px); }
.text-link { color: var(--muted); font-size: 13px; padding-bottom: 4px; border-bottom: 1px solid var(--line); white-space: nowrap; transition: color .2s ease, border-color .2s ease; }
.text-link:hover { color: var(--text); border-color: var(--text); }

.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.service-card {
  min-height: 335px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: border-color .25s ease, background .25s ease, transform .18s ease-out;
}
.service-card::after { content: ""; position: absolute; inset: auto -90px -110px auto; width: 260px; height: 260px; background: radial-gradient(circle, rgba(255,255,255,.07), transparent 68%); pointer-events: none; }
.service-card:hover { border-color: rgba(255,255,255,.26); background: #171717; }
.service-featured { background: #f0ede6; color: #111; border-color: transparent; }
.service-featured .service-kicker, .service-featured p, .service-featured .service-number, .service-featured .service-meta span { color: #625f59; }
.service-featured:hover { background: #fff; }
.service-number { color: #77746f; font-family: "Playfair Display", serif; font-style: italic; font-size: 21px; }
.service-kicker { margin: 0 0 8px; color: #817e78; font-size: 10px; text-transform: uppercase; letter-spacing: .15em; font-weight: 700; }
.service-card h3 { margin: 0; font-family: "Playfair Display", serif; font-size: 35px; letter-spacing: -.035em; }
.service-card p:not(.service-kicker) { max-width: 520px; margin: 10px 0 0; color: var(--muted); font-size: 14px; }
.service-meta { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(127,127,127,.24); padding-top: 18px; margin-top: 30px; }
.service-meta strong { font-size: 18px; }
.service-meta span { color: #77746f; font-size: 12px; }

.gallery-section { padding-top: 40px; }
.gallery-sidecopy { max-width: 290px; margin: 0; color: var(--muted); font-size: 14px; }
.showcase-banner {
  position: relative;
  min-height: 380px;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #101010;
  box-shadow: var(--shadow);
  margin-bottom: 22px;
}
.showcase-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.showcase-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.68), rgba(0,0,0,.15) 52%, rgba(0,0,0,.55));
}
.showcase-banner-copy {
  position: relative;
  z-index: 1;
  min-height: 380px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 540px;
}
.showcase-banner-copy h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 5vw, 70px);
  line-height: .98;
  letter-spacing: -.04em;
}
.showcase-banner-copy p:not(.eyebrow) {
  margin: 12px 0 0;
  color: rgba(255,255,255,.82);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr .9fr;
  gap: 16px;
}
.gallery-card {
  position: relative;
  min-height: 330px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  background: #111;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 18px 46px rgba(0,0,0,.2);
  transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s ease, box-shadow .35s ease;
}
.gallery-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,.26);
  box-shadow: 0 26px 60px rgba(0,0,0,.34);
}
.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  transition: transform .7s ease, filter .4s ease;
}
.gallery-card:hover img { transform: scale(1.06); filter: saturate(1.04); }
.gallery-tall { min-height: 680px; grid-row: span 2; }
.gallery-tall img { min-height: 680px; }
.gallery-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 60px 22px 22px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.78));
  transform: translateY(8px);
  transition: transform .35s ease;
}
.gallery-card:hover .gallery-overlay { transform: translateY(0); }
.gallery-overlay strong { display: block; font-size: 22px; letter-spacing: -.03em; }
.gallery-overlay span { display: block; margin-top: 6px; color: rgba(255,255,255,.74); font-size: 13px; }
.gallery-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(10,10,10,.74);
  border: 1px solid rgba(255,255,255,.12);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.schedule-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: center; }
.schedule-copy > p:not(.eyebrow) { color: var(--muted); max-width: 480px; margin: 22px 0; }
.status-pill { width: fit-content; display: flex; align-items: center; gap: 9px; padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: 12px; margin: 24px 0; }
.status-pill span { width: 7px; height: 7px; border-radius: 50%; background: #777; }
.status-pill.is-open span { background: var(--green); box-shadow: 0 0 0 5px rgba(40,209,124,.09); }
.schedule-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 12px 24px; background: linear-gradient(180deg, #121212, #0d0d0d); }
.schedule-row { display: grid; grid-template-columns: 1fr auto; gap: 28px; align-items: center; min-height: 67px; border-bottom: 1px solid var(--line); color: var(--muted); transition: color .2s ease, padding .2s ease; }
.schedule-row:last-of-type { border-bottom: 0; }
.schedule-row strong { color: #c6c2ba; font-size: 13px; font-weight: 500; }
.schedule-row.today { color: white; padding-left: 10px; }
.schedule-row.today span::after { content: "HOY"; margin-left: 12px; padding: 3px 7px; border-radius: 999px; background: rgba(40,209,124,.12); color: var(--green); font-size: 8px; letter-spacing: .12em; font-weight: 700; }
.schedule-row.today strong { color: white; }
.schedule-note { color: #696762; font-size: 10px; margin: 12px 0 4px; }

.location-section { padding-top: 60px; }
.location-grid { display: grid; grid-template-columns: 1.45fr .55fr; gap: 16px; }
.map-shell { min-height: 540px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #111; box-shadow: var(--shadow); }
.map-shell iframe { width: 100%; height: 100%; min-height: 540px; border: 0; filter: grayscale(1) invert(.92) contrast(.86); }
.location-card { min-height: 540px; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; background: #f0ede6; color: #111; display: flex; flex-direction: column; justify-content: center; }
.location-card .eyebrow { color: #68655f; }
.location-card h3 { margin: 0; font-family: "Playfair Display", serif; font-size: 38px; letter-spacing: -.04em; }
.location-card > p:not(.eyebrow) { color: #68655f; }
.pin-icon { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(0,0,0,.16); margin-bottom: 42px; font-size: 21px; }
.location-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 28px; }
.location-card .btn-ghost { color: #111; border-color: rgba(0,0,0,.14); }
.location-card .btn-primary { background: #111; color: white; }
.location-card .btn-primary:hover { background: #292929; }

.cta-section {
  width: min(calc(100% - 40px), var(--max));
  margin: 20px auto 100px;
  padding: 100px 50px;
  min-height: 560px;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: #ece9e2;
  color: #111;
  position: relative;
  overflow: hidden;
}
.cta-section .eyebrow { color: #6d6963; }
.cta-section h2 { font-size: clamp(55px, 7vw, 96px); }
.cta-section h2 em { color: #77746f; }
.cta-section > p:not(.eyebrow) { color: #625f59; }
.cta-section .btn { margin-top: 20px; }
.cta-lines { position: absolute; inset: 0; opacity: .06; background: repeating-linear-gradient(120deg, transparent 0 34px, #000 34px 35px); animation: lineMove 12s linear infinite; }

.footer { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; padding: 28px 0 46px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 32px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand strong, .footer-brand small { display: block; }
.footer-brand strong { font-size: 13px; }
.footer-brand small { color: #77746f; font-size: 10px; margin-top: 2px; }
.footer-links { display: flex; gap: 18px; color: #8c8983; font-size: 11px; flex-wrap: wrap; }
.footer-links a:hover { color: white; }
.copyright { color: #696762; font-size: 10px; text-align: right; }

.mobile-book { display: none; }

.lightbox {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, visibility .28s ease;
  z-index: 120;
}
.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.lightbox-inner {
  width: min(100%, 1080px);
  max-height: min(92vh, 1000px);
  border-radius: 24px;
  overflow: hidden;
  background: #101010;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
}
.lightbox-inner img {
  width: 100%;
  max-height: calc(92vh - 72px);
  object-fit: contain;
  background: #0b0b0b;
}
.lightbox-inner p {
  margin: 0;
  padding: 16px 20px 18px;
  color: #c9c6bf;
  font-size: 14px;
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(15,15,15,.7);
  color: white;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }

@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes float { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-12px) rotate(1deg); } }
@keyframes drift { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(35px, -25px, 0); } }
@keyframes shine { 0%, 15% { left: -240px; } 48%, 100% { left: calc(100% + 100px); } }
@keyframes lineMove { to { background-position: 260px 0; } }

@media (max-width: 980px) {
  .nav { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 80px; gap: 70px; }
  .hero-copy { max-width: 720px; }
  .hero-visual { max-width: 680px; width: 100%; margin: 0 auto; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 300px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-tall { grid-row: auto; min-height: 420px; }
  .gallery-tall img { min-height: 420px; }
  .schedule-section { grid-template-columns: 1fr; gap: 44px; }
  .location-grid { grid-template-columns: 1fr; }
  .location-card { min-height: 380px; }
  .footer { grid-template-columns: 1fr; }
  .copyright { text-align: left; }
}

@media (max-width: 680px) {
  .site-header { width: calc(100% - 24px); top: 10px; margin-top: 10px; }
  .site-header > .btn { display: none; }
  .brand { font-size: 12px; }
  .brand-mark { width: 32px; height: 32px; }
  .hero, .section, .cta-section, .footer { width: calc(100% - 28px); }
  .hero { min-height: auto; padding: 70px 0 74px; }
  .hero h1 { font-size: clamp(54px, 17vw, 75px); }
  .hero-text { font-size: 15px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .quick-info { grid-template-columns: 1fr; gap: 14px; margin-top: 36px; }
  .logo-card { min-height: 390px; border-radius: 26px; transform: rotate(.8deg); }
  .cover-card-content { min-height: 390px; padding: 24px; }
  .cover-card-content p { font-size: 13px; }
  .logo-card-footer { left: 20px; right: 20px; bottom: 17px; }
  .floating-tag { display: none; }
  .section { padding: 88px 0; }
  .section-heading { align-items: start; flex-direction: column; gap: 18px; margin-bottom: 28px; }
  .section h2 { font-size: clamp(44px, 13vw, 62px); }
  .service-card { min-height: 310px; padding: 24px; }
  .service-card h3 { font-size: 31px; }
  .showcase-banner { min-height: 280px; border-radius: 24px; }
  .showcase-banner-copy { min-height: 280px; padding: 22px; max-width: 100%; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-card, .gallery-card img, .gallery-tall, .gallery-tall img { min-height: 320px; }
  .gallery-overlay strong { font-size: 20px; }
  .schedule-row { grid-template-columns: .85fr 1.15fr; gap: 14px; min-height: 64px; font-size: 13px; }
  .schedule-row strong { text-align: right; font-size: 11px; }
  .map-shell, .map-shell iframe { min-height: 430px; }
  .location-card { min-height: 410px; padding: 26px; }
  .cta-section { min-height: 500px; margin-bottom: 88px; padding: 70px 22px; }
  .cta-section h2 { font-size: clamp(52px, 15vw, 72px); }
  .footer { padding-bottom: 100px; }
  .mobile-book { position: fixed; display: flex; align-items: center; justify-content: space-between; z-index: 60; left: 12px; right: 12px; bottom: 12px; min-height: 56px; padding: 0 20px; border-radius: 999px; background: white; color: #111; font-size: 14px; font-weight: 800; box-shadow: 0 18px 45px rgba(0,0,0,.42); }
  .lightbox { padding: 10px; }
  .lightbox-close { top: 12px; right: 12px; }
}

@media (pointer: coarse) { .cursor-glow { display: none; } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
