:root {
  --accent: #e0008b;
  --accent-dark: #a80068;
  --ink: #151114;
  --muted: #6d646b;
  --line: #eadde6;
  --soft: #fff5fb;
  --warm: #f6ecf2;
  --shadow: 0 20px 58px rgba(18, 10, 15, 0.1);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: #fff; font-family: var(--sans); line-height: 1.7; }
body.is-lightbox-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: var(--serif); font-weight: 600; line-height: 0.98; }
h1 { margin-bottom: 28px; font-size: clamp(58px, 7vw, 112px); }
h2 { margin-bottom: 24px; font-size: clamp(34px, 4vw, 58px); }

.site-header { position: sticky; top: 0; z-index: 20; display: grid; grid-template-columns: 176px 1fr 430px; align-items: center; min-height: 136px; padding: 8px clamp(20px, 5vw, 76px); color: #fff; background: rgba(5, 5, 6, 0.94); border-bottom: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(18px); }
.brand img { width: 144px; height: 144px; object-fit: contain; }
.footer-logo img { width: 96px; height: 96px; object-fit: contain; }
.site-nav { display: flex; justify-content: center; gap: clamp(18px, 3vw, 42px); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.site-nav a, .footer-nav a, .social-link { transition: color 180ms ease; }
.site-nav a:hover, .footer-nav a:hover, .social-link:hover { color: var(--accent); }
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 16px; }
.social-links, .footer-socials { display: inline-flex; align-items: center; gap: 14px; }
.social-link { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.social-icon { width: 24px; height: 24px; object-fit: contain; flex: 0 0 auto; }
.facebook-icon { overflow: hidden; border-radius: 5px; object-fit: cover; object-position: center 62%; }
.menu-toggle { display: none; }

.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 26px; border: 1px solid var(--ink); font-size: 12px; font-weight: 800; letter-spacing: .06em; text-align: center; text-transform: uppercase; white-space: nowrap; transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--accent); border-color: var(--accent); box-shadow: 0 12px 30px rgba(224, 0, 139, .2); }
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn-outline { background: rgba(255,255,255,.82); }
.button-row { display: flex; flex-wrap: wrap; gap: 16px; }

.section, .section-split { scroll-margin-top: 124px; }
.section-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: stretch; }
.hero { height: clamp(640px, calc(100vh - 136px), 820px); min-height: 0; background: linear-gradient(90deg, #fff 0%, #fff 51%, #100d10 51%, #100d10 100%); }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(58px, 9vw, 124px) clamp(24px, 7vw, 92px); }
.eyebrow { margin: 0 0 18px; color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero-subtext { margin-bottom: 34px; color: #322931; font-size: clamp(18px, 1.8vw, 25px); line-height: 1.55; }
.hero-visual { position: relative; min-height: 0; overflow: hidden; background: #252323; }
.hero-visual::before { position: absolute; inset: 8% 8% 8% 0; content: ""; background: radial-gradient(circle at center, rgba(224,0,139,.18), transparent 62%); }
.hero-visual img { position: relative; width: 100%; height: 100%; min-height: inherit; object-fit: contain; object-position: center; padding: clamp(18px, 2.4vw, 34px); }

.about { background: #fff; }
.about-photo img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; }
.section-copy { display: flex; flex-direction: column; justify-content: center; max-width: 680px; padding: clamp(58px, 8vw, 110px) clamp(28px, 8vw, 105px); }
.section-copy p:not(.eyebrow), .section-heading p:not(.eyebrow) { color: var(--muted); font-size: 16px; }
.section { padding: clamp(72px, 8vw, 118px) clamp(22px, 5vw, 70px); }
.section-heading { max-width: 780px; margin: 0 auto 42px; text-align: center; }
.section-heading h2 { margin-bottom: 0; }
.section-heading p:not(.eyebrow) { margin: 18px auto 0; max-width: 680px; }
.services { background: linear-gradient(180deg, #fff 0%, var(--soft) 50%, #fff 100%); }
.service-grid { display: grid; gap: 24px; margin: 0 auto; }
.service-grid-text { grid-template-columns: repeat(3, minmax(260px, 1fr)); max-width: 1080px; counter-reset: service-card; }
.service-card { border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease; }
.service-card:hover { border-color: rgba(224,0,139,.26); box-shadow: 0 24px 64px rgba(18,10,15,.14); transform: translateY(-5px); }
.service-card-text { position: relative; min-height: 240px; padding: 42px 32px 36px; overflow: hidden; text-align: center; counter-increment: service-card; }
.service-card-text::before { position: absolute; top: 22px; left: 26px; color: rgba(224,0,139,.22); content: counter(service-card, decimal-leading-zero); font-family: var(--serif); font-size: 44px; font-weight: 600; line-height: 1; }
.service-card-text h3 { position: relative; margin: 30px 0 14px; font-family: var(--serif); font-size: 28px; font-weight: 600; line-height: 1.05; }
.service-card-text p { position: relative; margin: 0 auto; max-width: 310px; color: var(--muted); font-size: 14px; line-height: 1.75; }
.section-cta { display: flex; justify-content: center; margin-top: 34px; }

.gallery { background: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 18px; }
.gallery-grid figure { min-height: 330px; margin: 0; background: var(--soft); overflow: hidden; }
.image-button { position: relative; display: block; width: 100%; height: 100%; margin: 0; padding: 0; overflow: hidden; cursor: zoom-in; background: var(--soft); border: 0; font: inherit; }
.image-button::after { position: absolute; inset: 0; display: grid; place-items: center; color: #fff; background: rgba(10,8,10,.38); content: "View"; font-size: 12px; font-weight: 800; letter-spacing: .12em; opacity: 0; text-transform: uppercase; transition: opacity 220ms ease; }
.image-button:hover::after, .image-button:focus-visible::after { opacity: 1; }
.image-button img { width: 100%; height: 100%; object-fit: cover; transition: transform 320ms ease; }
.image-button:hover img, .image-button:focus-visible img { transform: scale(1.06); }

.reviews { background: linear-gradient(180deg, var(--soft) 0%, #fff 100%); }
.review-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; max-width: 1140px; margin: 0 auto; }
.review-card { display: flex; min-height: 330px; flex-direction: column; justify-content: flex-start; padding: 34px 30px; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); text-align: center; }
.stars { margin-bottom: 18px; color: var(--accent); font-size: 17px; letter-spacing: .16em; }
.review-card p { color: #3c333a; font-size: 15px; }
.review-card h3 { margin: auto 0 0; font-size: 15px; }
details { margin: 4px 0 18px; color: var(--muted); font-size: 13px; text-align: left; }
summary { color: var(--accent); cursor: pointer; font-weight: 800; text-align: center; }
details p { margin: 12px 0 0; font-size: 13px; }

.access { display: grid; grid-template-columns: 1.08fr .72fr .9fr; min-height: 520px; scroll-margin-top: 110px; background: #fff; }
.map-panel iframe, .access-photo img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.map-panel iframe { display: block; border: 0; }
.access-card { display: flex; flex-direction: column; justify-content: center; padding: 46px clamp(26px, 4vw, 52px); background: #fff; }
address { margin-bottom: 22px; color: var(--muted); font-style: normal; }
.hours { margin: 0 0 26px; }
.hours div { display: flex; justify-content: space-between; gap: 18px; color: #2f282d; font-size: 15px; }
.hours dt { font-weight: 800; }
.hours dd { margin: 0; text-align: right; }
.access-actions { display: grid; gap: 12px; }
.access-actions .btn { width: 100%; }

.site-footer { color: #fff; background: #070607; border-top: 1px solid rgba(255,255,255,.12); }
.footer-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 30px; padding: 36px clamp(24px, 8vw, 140px); }
.footer-nav { display: grid; grid-template-columns: repeat(2, max-content); justify-content: center; gap: 8px 48px; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.footer-socials { justify-self: end; }
.copyright { margin: 0; padding: 13px 20px; color: #aaa1a8; background: #020202; font-size: 11px; text-align: center; }

.menu-hero { padding: clamp(76px, 10vw, 126px) clamp(24px, 8vw, 140px) clamp(54px, 8vw, 86px); background: linear-gradient(135deg, #fff 0%, var(--soft) 100%); }
.menu-hero h1 { margin-bottom: 24px; }
.menu-hero p:not(.eyebrow) { max-width: 760px; margin-bottom: 30px; color: #322931; font-size: 18px; line-height: 1.65; }
.menu-section { background: #fff; }
.price-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; gap: 26px; max-width: 1240px; margin: 0 auto; }
.price-card, .menu-disclaimer { position: relative; overflow: hidden; padding: 34px; background: linear-gradient(150deg, #fff, #fff8fc); border: 1px solid var(--line); box-shadow: var(--shadow); }
.price-card::before, .menu-disclaimer::before { position: absolute; inset: 0 auto 0 0; width: 5px; background: linear-gradient(180deg, var(--accent), rgba(224,0,139,.12)); content: ""; }
.price-card h2, .menu-disclaimer h2 { position: relative; padding-bottom: 15px; margin-bottom: 18px; font-family: var(--serif); font-size: 28px; font-weight: 600; line-height: 1.15; }
.price-card h2::after, .menu-disclaimer h2::after { position: absolute; bottom: 0; left: 0; width: 58px; height: 2px; background: var(--accent); content: ""; }
.price-list { display: grid; gap: 0; margin: 0; }
.price-list div { display: grid; grid-template-columns: minmax(0, 1fr) max-content; gap: 16px; align-items: baseline; padding: 13px 0; border-bottom: 1px solid rgba(234,221,230,.9); }
.price-list dt { color: #2b2329; font-size: 15px; font-weight: 800; line-height: 1.35; }
.price-list dd { margin: 0; color: var(--accent); font-size: 15px; font-weight: 800; white-space: nowrap; }
.menu-note, .menu-disclaimer p { color: var(--muted); font-size: 14px; line-height: 1.65; }
.menu-note { margin: 18px 0 0; }
.menu-disclaimer { max-width: 980px; margin: 34px auto 0; }
.menu-disclaimer p:last-child { margin-bottom: 0; }

.lightbox { position: fixed; inset: 0; z-index: 50; display: grid; place-items: center; padding: 28px; background: rgba(12,10,12,0); backdrop-filter: blur(0); opacity: 0; pointer-events: none; transition: opacity 320ms ease, background 320ms ease, backdrop-filter 320ms ease; }
.lightbox.is-open { background: rgba(12,10,12,.78); backdrop-filter: blur(10px); opacity: 1; pointer-events: auto; }
.lightbox-frame { max-width: min(86vw, 920px); max-height: 86vh; opacity: 0; text-align: center; transform: translateY(28px) scale(.94); transition: opacity 360ms ease, transform 360ms ease; }
.lightbox.is-open .lightbox-frame { opacity: 1; transform: translateY(0) scale(1); }
.lightbox-frame img { width: auto; max-width: 100%; max-height: 78vh; object-fit: contain; box-shadow: 0 28px 80px rgba(0,0,0,.36); }
.lightbox-frame p { margin: 14px 0 0; color: #fff; font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.lightbox-close { position: absolute; top: 22px; right: 24px; display: grid; width: 48px; height: 48px; place-items: center; color: #fff; cursor: pointer; background: transparent; border: 1px solid rgba(255,255,255,.36); font-size: 34px; line-height: 1; }
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 680ms ease, transform 680ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 150ms; }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 152px 1fr 340px; }
  .social-link span:last-child { display: none; }
  .service-grid-text { grid-template-columns: repeat(2, minmax(260px, 1fr)); max-width: 760px; }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 860px) {
  .site-header { grid-template-columns: 1fr auto; min-height: 112px; padding: 10px 20px; }
  .brand img { width: 104px; height: 104px; }
  .menu-toggle { display: inline-grid; width: 46px; height: 46px; place-items: center; padding: 0; color: #fff; background: transparent; border: 1px solid rgba(255,255,255,.28); }
  .menu-toggle span { display: block; width: 20px; height: 2px; background: currentColor; transition: transform 180ms ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-5px) rotate(-45deg); }
  .site-nav, .header-actions { grid-column: 1 / -1; display: none; }
  .site-header.is-open .site-nav, .site-header.is-open .header-actions { display: flex; }
  .site-nav { flex-direction: column; align-items: flex-start; gap: 18px; padding: 22px 0 14px; }
  .header-actions { align-items: stretch; justify-content: flex-start; padding-bottom: 18px; }
  .social-links { justify-content: flex-start; }
  .social-link span:last-child { display: inline; }
  .section-split, .access { grid-template-columns: 1fr; }
  .hero { height: auto; min-height: auto; background: linear-gradient(180deg, #fff 0%, var(--soft) 100%); }
  .hero-copy { padding: 58px 24px 36px; }
  .hero-visual { aspect-ratio: 1643 / 957; min-height: 0; }
  .hero-visual img { padding: 16px; }
  .about-photo img, .map-panel iframe, .access-photo img { min-height: 430px; }
  .about-photo { order: 2; }
  .section-copy { padding: 64px 24px; }
  .section { padding: 68px 20px; }
  .service-grid-text, .review-grid, .price-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid figure { min-height: 390px; }
  .footer-inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-socials { justify-self: center; }
}
@media (max-width: 520px) {
  h1 { font-size: 48px; }
  h2 { font-size: 34px; }
  .button-row, .header-actions { flex-direction: column; }
  .btn { width: 100%; }
  .hero-visual { min-height: 0; }
  .about-photo img, .map-panel iframe, .access-photo img { min-height: 340px; }
  .gallery-grid figure { min-height: 320px; }
  .review-card { padding: 32px 24px; }
  .footer-nav { grid-template-columns: 1fr; gap: 10px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}
