:root {
  --cream: #f4eee5;
  --cream-deep: #e9ddce;
  --plum: #4b1f35;
  --plum-dark: #2d1120;
  --terracotta: #c85e42;
  --peach: #e8a37d;
  --ink: #26191d;
  --muted: #716268;
  --white: #fffaf4;
  --line: rgba(75, 31, 53, 0.2);
  --radius: 28px;
  --max: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
}
body.is-cue-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button { color: inherit; font: inherit; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}
em { color: var(--terracotta); font-weight: 400; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  min-height: 92px;
  margin: auto;
  padding: 20px clamp(20px, 4vw, 64px);
  color: var(--white);
}
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand strong { font-size: 28px; letter-spacing: .18em; }
.brand small { margin-top: 7px; font-size: 9px; letter-spacing: .24em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 28px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.site-nav a:hover { color: var(--peach); }
.nav-book { padding: 14px 18px; border: 1px solid rgba(255,255,255,.45); border-radius: 999px; }
.menu-toggle { display: none; border: 0; background: none; color: inherit; text-transform: uppercase; }

.hero {
  position: relative;
  display: grid;
  min-height: min(920px, 100svh);
  overflow: hidden;
  background: var(--plum-dark);
  color: var(--white);
}
.hero-image, .hero-wash { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center; }
.hero-wash { background: linear-gradient(90deg, rgba(45,17,32,.92) 0%, rgba(45,17,32,.52) 46%, rgba(45,17,32,.08) 78%), linear-gradient(0deg, rgba(45,17,32,.4), transparent 55%); }
.hero-copy {
  position: relative;
  z-index: 2;
  align-self: end;
  max-width: 760px;
  padding: 150px clamp(20px, 6vw, 96px) clamp(56px, 8vw, 120px);
}
.eyebrow, .section-kicker {
  display: block;
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero h1 { font-size: clamp(76px, 11vw, 168px); line-height: .76; }
.hero-copy > p { max-width: 510px; margin-top: 30px; font-size: clamp(18px, 2vw, 25px); line-height: 1.35; }
.hero-actions, .card-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.hero-note {
  position: absolute;
  right: clamp(20px, 5vw, 80px);
  bottom: clamp(28px, 5vw, 72px);
  z-index: 2;
  display: flex;
  align-items: end;
  gap: 14px;
}
.hero-note strong { font: 400 clamp(64px, 8vw, 120px)/.75 Georgia, serif; color: var(--peach); }
.hero-note span { font-size: 12px; line-height: 1.25; text-transform: uppercase; letter-spacing: .1em; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 52px;
  padding: 14px 19px;
  border: 1px solid var(--plum);
  border-radius: 999px;
  background: var(--plum);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--terracotta); border-color: var(--terracotta); }
.button-light { background: var(--white); border-color: var(--white); color: var(--plum); }
.button-quiet { background: transparent; color: inherit; border-color: currentColor; }

.section { max-width: var(--max); margin: 0 auto; padding: clamp(80px, 10vw, 150px) clamp(20px, 4vw, 64px); }
.intro { display: grid; grid-template-columns: .6fr 1.4fr; gap: 60px; }
.intro-copy h2, .section-heading h2, .visit h2 { font-size: clamp(54px, 7vw, 104px); line-height: .93; }
.intro-copy p { max-width: 800px; margin-top: 30px; color: var(--muted); font-size: clamp(18px, 2vw, 25px); line-height: 1.5; }
.facts { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 50px; border-top: 1px solid var(--line); }
.facts article { min-height: 180px; padding: 28px 22px; border-right: 1px solid var(--line); }
.facts article:last-child { border-right: 0; }
.facts strong { display: block; font: 400 clamp(44px, 5vw, 76px)/1 Georgia, serif; color: var(--terracotta); }
.facts span { display: block; margin-top: 14px; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }

.halls-section { padding-top: 20px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 54px; }
.hall-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 64px 22px; }
.hall-card { min-width: 0; }
.hall-card-image { display: block; overflow: hidden; border-radius: var(--radius); aspect-ratio: 1.28; background: var(--cream-deep); }
.hall-card-image img { height: 100%; object-fit: cover; transition: transform .7s ease; }
.hall-card:hover .hall-card-image img { transform: scale(1.025); }
.hall-card-copy { padding-top: 20px; }
.hall-card-top { display: flex; justify-content: space-between; gap: 16px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.hall-card h3 { margin-top: 16px; font-size: clamp(50px, 6vw, 82px); line-height: .9; }
.hall-card p { margin-top: 8px; color: var(--terracotta); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .09em; }
.hall-card .card-actions { margin-top: 22px; }

.mood-section { display: grid; grid-template-columns: 1.25fr .75fr; min-height: 780px; background: var(--plum); color: var(--white); }
.mood-image img { height: 100%; object-fit: cover; }
.mood-copy { align-self: center; padding: clamp(50px, 7vw, 110px); }
.mood-copy h2 { font-size: clamp(52px, 6vw, 92px); line-height: .96; }
.mood-copy p { margin: 28px 0; color: rgba(255,250,244,.72); font-size: 18px; line-height: 1.55; }
.mood-copy .button { border-color: var(--white); background: var(--white); color: var(--plum); }

.visit { display: grid; grid-template-columns: .6fr 1.4fr; gap: 60px; }
.visit p { margin: 26px 0; color: var(--muted); font-size: 18px; line-height: 1.7; }

.site-footer { padding: clamp(70px, 9vw, 130px) clamp(20px, 5vw, 80px) 28px; background: var(--plum-dark); color: var(--white); }
.footer-lead { display: flex; flex-direction: column; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.18); font: 400 clamp(58px, 9vw, 140px)/.9 Georgia, serif; letter-spacing: -.06em; }
.footer-lead strong { color: var(--peach); font-weight: 400; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 50px; padding: 55px 0; }
.footer-grid div { display: flex; align-items: start; flex-direction: column; gap: 10px; }
.footer-grid small { margin-bottom: 10px; color: var(--peach); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.footer-grid p, .footer-grid a { line-height: 1.5; }
.footer-grid .button { margin-top: 12px; }
.footer-seo { display: flex; flex-wrap: wrap; gap: 10px 24px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.7); font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.footer-seo a:hover { color: var(--peach); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.55); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }

.listing-hero {
  min-height: 620px;
  padding: 190px clamp(20px, 6vw, 96px) 80px;
  background: var(--plum);
  color: var(--white);
}
.listing-hero h1 { max-width: 1100px; font-size: clamp(72px, 11vw, 160px); line-height: .82; }
.listing-hero p { max-width: 650px; margin-top: 30px; color: rgba(255,255,255,.72); font-size: 21px; line-height: 1.5; }
.listing { padding-top: 80px; }

.booking-band {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  padding: clamp(70px, 8vw, 120px) clamp(20px, 6vw, 96px);
  background: var(--terracotta);
  color: var(--white);
}
.booking-band h2 { font-size: clamp(52px, 7vw, 105px); line-height: .92; }
.booking-band p { margin-top: 16px; }

.hall-page { background: var(--cream); }
.hall-hero { display: grid; grid-template-columns: .82fr 1.18fr; min-height: 760px; background: var(--plum); color: var(--white); }
.hall-hero-copy { align-self: end; padding: 160px clamp(20px, 5vw, 80px) 80px; }
.back-link { display: inline-block; margin-bottom: 80px; font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.hall-hero h1 { font-size: clamp(92px, 13vw, 190px); line-height: .78; }
.hall-hero-copy > p { max-width: 620px; margin-top: 28px; color: rgba(255,255,255,.72); font-size: 19px; line-height: 1.55; }
.hall-hero-image { padding: 0; overflow: hidden; border: 0; background: var(--plum-dark); cursor: zoom-in; }
.hall-hero-image img { height: 100%; object-fit: cover; }
.hall-details { padding-top: 70px; }
.hall-facts { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.hall-facts article { padding: 26px 20px; border-right: 1px solid var(--line); }
.hall-facts article:last-child { border-right: 0; }
.hall-facts small { display: block; margin-bottom: 12px; color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.hall-facts strong { font-size: 17px; line-height: 1.4; }
.hall-story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 8vw, 130px); padding: 100px 0; }
.hall-story h2 { font-size: clamp(58px, 7vw, 100px); }
.hall-story ul { display: grid; grid-template-columns: 1fr 1fr; gap: 0 30px; margin: 35px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.hall-story li { padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--muted); }
.hall-story p { color: var(--muted); font-size: clamp(22px, 3vw, 36px); line-height: 1.45; }
.hall-story .button { margin-top: 30px; }
.gallery { display: grid; grid-template-columns: 1.3fr .7fr; gap: 20px; }
.gallery button { padding: 0; overflow: hidden; border: 0; border-radius: var(--radius); background: var(--cream-deep); cursor: zoom-in; }
.gallery button:first-child { grid-row: span 2; }
.gallery img { height: 100%; min-height: 300px; object-fit: cover; }

.seo-copy { display: grid; grid-template-columns: .6fr 1.4fr; gap: 60px; border-top: 1px solid var(--line); }
.seo-copy h2, .faq-section h2, .content-intro h2 { font-size: clamp(48px, 6vw, 88px); line-height: .96; }
.seo-copy p { max-width: 900px; margin-top: 22px; color: var(--muted); font-size: 18px; line-height: 1.7; }
.text-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.text-links a { padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; color: var(--plum); font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.text-links a:hover { border-color: var(--terracotta); color: var(--terracotta); }

.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 25px 54px 25px 0; cursor: pointer; font: 400 clamp(22px, 3vw, 34px)/1.25 Georgia, serif; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { position: absolute; top: 23px; right: 4px; content: "+"; color: var(--terracotta); font: 400 32px/1 Georgia, serif; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list p { max-width: 900px; padding: 0 50px 28px 0; color: var(--muted); font-size: 17px; line-height: 1.65; }

.content-hero { min-height: 650px; padding: 190px clamp(20px, 6vw, 96px) 90px; background: var(--plum); color: var(--white); }
.content-hero h1 { max-width: 1150px; font-size: clamp(68px, 10vw, 145px); line-height: .86; }
.content-hero > p { max-width: 760px; margin-top: 30px; color: rgba(255,255,255,.75); font-size: clamp(18px, 2vw, 23px); line-height: 1.55; }
.content-intro { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(50px, 8vw, 130px); }
.content-intro ul { display: grid; grid-template-columns: 1fr 1fr; align-self: start; gap: 0 28px; margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.content-intro li { padding: 18px 0; border-bottom: 1px solid var(--line); color: var(--muted); line-height: 1.45; }

.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.contact-cards article { min-height: 280px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); }
.contact-cards small { color: var(--terracotta); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-cards h2 { margin-top: 50px; font-size: clamp(36px, 4vw, 58px); line-height: 1; }
.contact-cards p { margin-top: 20px; color: var(--muted); line-height: 1.65; }

.lightbox { max-width: none; width: 100vw; height: 100vh; padding: 60px; border: 0; background: rgba(29,10,19,.94); }
.lightbox::backdrop { background: rgba(29,10,19,.94); }
.lightbox img { width: 100%; height: 100%; object-fit: contain; }
.lightbox button { position: absolute; z-index: 2; top: 18px; right: 22px; border: 0; background: transparent; color: white; cursor: pointer; text-transform: uppercase; letter-spacing: .1em; }

.cue-widget[hidden] { display: none; }
.cue-widget {
  position: fixed;
  inset: 0;
  z-index: 100;
  color: var(--ink);
}
.cue-widget-overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(45, 17, 32, .74);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.cue-widget-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(760px, 58vw);
  height: 100%;
  overflow: hidden;
  border-radius: 28px 0 0 28px;
  background: var(--white);
  box-shadow: -30px 0 100px rgba(45, 17, 32, .45);
  animation: cue-panel-in .35s ease both;
}
.cue-widget-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
  padding: 14px 20px 14px 28px;
  background: var(--plum);
  color: var(--white);
}
.cue-widget-head div { min-width: 0; }
.cue-widget-head span {
  display: block;
  margin-bottom: 4px;
  color: var(--peach);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .2em;
}
.cue-widget-head strong {
  display: block;
  overflow: hidden;
  font: 400 25px/1.1 Georgia, serif;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cue-widget-close {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}
.cue-widget-close:hover { background: var(--terracotta); border-color: var(--terracotta); }
.cue-widget-body { position: relative; min-height: 0; background: #fff; }
.cue-widget-body iframe { display: block; width: 100%; height: 100%; border: 0; background: #fff; opacity: 0; transition: opacity .2s ease; }
.cue-widget-body iframe.is-loaded { opacity: 1; }
.cue-widget-loader {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-content: center;
  gap: 16px;
  padding: 30px;
  background: var(--cream);
  text-align: center;
}
.cue-widget-loader[hidden] { display: none; }
.cue-loader-mark { display: flex; justify-content: center; gap: 8px; height: 34px; align-items: end; }
.cue-loader-mark span {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--terracotta);
  animation: cue-loader-step .9s ease-in-out infinite;
}
.cue-loader-mark span:nth-child(2) { animation-delay: .12s; }
.cue-loader-mark span:nth-child(3) { animation-delay: .24s; }
.cue-widget-loader strong { font: 400 clamp(46px, 6vw, 78px)/.9 Georgia, serif; letter-spacing: -.055em; }
.cue-widget-loader strong em { color: var(--terracotta); }
.cue-widget-loader > span { max-width: 380px; color: var(--muted); font-size: 11px; font-weight: 800; line-height: 1.5; letter-spacing: .1em; text-transform: uppercase; }
.cue-widget-external {
  padding: 14px 24px;
  background: var(--cream-deep);
  color: var(--plum);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-align: center;
  text-transform: uppercase;
}
@keyframes cue-panel-in { from { transform: translateX(100%); } to { transform: translateX(0); } }
@keyframes cue-loader-step { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); background: var(--peach); } }
@media (prefers-reduced-motion: reduce) {
  .cue-widget-panel, .cue-loader-mark span { animation: none; }
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .site-header { min-height: 74px; }
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 70px;
    right: 20px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    width: min(320px, calc(100vw - 40px));
    padding: 24px;
    border-radius: 20px;
    background: var(--plum-dark);
  }
  .site-nav.is-open { display: flex; }
  .hero { min-height: 820px; }
  .hero-copy { padding-bottom: 150px; }
  .hero-note { left: 20px; right: auto; bottom: 38px; }
  .intro, .visit, .mood-section, .hall-hero, .hall-story, .seo-copy, .content-intro { grid-template-columns: 1fr; }
  .facts, .hall-facts { grid-template-columns: repeat(2, 1fr); }
  .facts article:nth-child(2), .hall-facts article:nth-child(2) { border-right: 0; }
  .mood-image { min-height: 480px; }
  .hall-hero-image { min-height: 520px; order: -1; }
  .hall-hero-copy { padding-top: 60px; }
  .back-link { margin-bottom: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .cue-widget-panel { width: min(820px, 86vw); }
}

@media (max-width: 680px) {
  body { font-size: 15px; }
  .brand strong { font-size: 22px; }
  .hero { min-height: 760px; }
  .hero-wash { background: linear-gradient(0deg, rgba(45,17,32,.95), rgba(45,17,32,.2)); }
  .hero-copy { padding: 130px 20px 150px; }
  .hero h1 { font-size: clamp(70px, 25vw, 100px); }
  .hero-copy > p { font-size: 17px; }
  .button { min-height: 48px; padding: 12px 16px; }
  .section { padding: 75px 20px; }
  .intro { gap: 28px; }
  .intro-copy h2, .section-heading h2, .visit h2 { font-size: 50px; }
  .facts article { min-height: 130px; padding: 20px 8px; }
  .facts strong { font-size: 42px; }
  .facts span { font-size: 9px; }
  .section-heading { align-items: start; flex-direction: column; margin-bottom: 34px; }
  .hall-grid { grid-template-columns: 1fr; gap: 48px; }
  .hall-card h3 { font-size: 60px; }
  .hall-card .card-actions .button { flex: 1; }
  .mood-section { min-height: 0; }
  .mood-image { min-height: 380px; }
  .mood-copy { padding: 60px 20px; }
  .mood-copy h2 { font-size: 52px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom, .booking-band { align-items: start; flex-direction: column; }
  .listing-hero { min-height: 540px; padding: 145px 20px 60px; }
  .listing-hero h1 { font-size: 72px; }
  .listing-hero p { font-size: 17px; }
  .hall-hero-image { min-height: 420px; }
  .hall-hero-copy { padding: 52px 20px 70px; }
  .hall-hero h1 { font-size: 100px; }
  .hall-story { padding: 70px 0; }
  .hall-story ul { grid-template-columns: 1fr; }
  .content-hero { min-height: 560px; padding: 145px 20px 65px; }
  .content-hero h1 { font-size: 66px; }
  .content-intro ul { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery button:first-child { grid-row: auto; }
  .lightbox { padding: 45px 10px 10px; }
  .cue-widget-panel { width: 100vw; height: 100dvh; border-radius: 0; }
  .cue-widget-head { min-height: 74px; padding: 10px 12px 10px 18px; }
  .cue-widget-head strong { font-size: 21px; }
  .cue-widget-close { width: 48px; height: 48px; }
}
