:root {
  --ink: #1a1512;
  --ink-soft: #5f554f;
  --cream: #fbf8f3;
  --paper: #fffdf9;
  --rose: #d9a6a0;
  --rose-deep: #aa6f68;
  --gold: #b9975b;
  --gold-light: #e7d6b5;
  --line: rgba(26, 21, 18, 0.12);
  --shadow: 0 24px 60px rgba(30, 21, 16, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1;
  margin: 0 0 0.6em;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(3rem, 7vw, 6.8rem); }
h2 { font-size: clamp(2.4rem, 4.6vw, 4.5rem); }
h3 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
p { margin: 0 0 1rem; }

.eyebrow {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-pad { padding: 7rem max(5vw, 1.5rem); }
.soft-bg { background: var(--cream); }
.centered { max-width: 860px; text-align: center; margin: 0 auto; }
.section-heading { max-width: 760px; margin-bottom: 3rem; }
.section-heading > p:last-child { color: var(--ink-soft); font-size: 1.08rem; }

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(5vw, 1.25rem);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.solid-header { position: relative; background: var(--ink); }
.brand { display: inline-flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.brand-mark {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.55);
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  color: var(--gold-light);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.55rem; }
.brand-text small { text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.62rem; margin-top: 0.18rem; opacity: 0.82; }
.site-nav { display: flex; align-items: center; gap: 2rem; }
.site-nav a { text-decoration: none; font-size: 0.88rem; font-weight: 600; }
.site-nav a:hover { color: var(--gold-light); }
.nav-cta { border: 1px solid rgba(255,255,255,0.55); padding: 0.65rem 1rem; border-radius: 999px; }
.menu-toggle { display: none; background: transparent; color: #fff; border: 0; font-size: 1.6rem; }

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-image, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center; }
.hero-overlay { background: linear-gradient(90deg, rgba(17,12,10,0.84) 0%, rgba(17,12,10,0.58) 48%, rgba(17,12,10,0.20) 100%), linear-gradient(0deg, rgba(17,12,10,0.45), transparent 45%); }
.hero-content { position: relative; z-index: 2; max-width: 850px; padding: 10rem max(6vw, 1.5rem) 11rem; }
.hero-content h1 { max-width: 800px; }
.hero-copy { max-width: 650px; font-size: clamp(1.05rem, 1.8vw, 1.35rem); color: rgba(255,255,255,0.88); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2rem; }
.hero-card {
  position: absolute;
  z-index: 3;
  right: max(5vw, 1.5rem);
  bottom: 2.2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: rgba(255,255,255,0.93);
  color: var(--ink);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.hero-card div { padding: 1.4rem 1.7rem; min-width: 145px; border-right: 1px solid var(--line); }
.hero-card div:last-child { border-right: 0; }
.hero-card strong { display: block; font-family: "Cormorant Garamond", Georgia, serif; font-size: 2rem; line-height: 1; }
.hero-card span { display: block; color: var(--ink-soft); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.45rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: #fff; }
.btn-primary:hover { background: #a78349; }
.btn-secondary { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.55); backdrop-filter: blur(8px); }
.btn-outline { background: transparent; color: var(--ink); border-color: rgba(26,21,18,.28); }
.btn-light { background: #fff; color: var(--ink); }
.full-width { width: 100%; margin-top: 0.75rem; }

.space-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 2rem; }
.space-card { background: #fff; box-shadow: 0 18px 55px rgba(28,20,16,.08); overflow: hidden; }
.space-card img { width: 100%; height: 460px; object-fit: cover; }
.space-card-body { padding: 2.4rem; }
.capacity { display: inline-block; color: var(--rose-deep); font-size: .78rem; text-transform: uppercase; letter-spacing: .13em; font-weight: 700; margin-bottom: .8rem; }
.space-card p { color: var(--ink-soft); }
.feature-list { list-style: none; padding: 0; margin: 1.5rem 0; display: grid; gap: .65rem; }
.feature-list li { position: relative; padding-left: 1.4rem; }
.feature-list li::before { content: "•"; position: absolute; left: 0; color: var(--gold); font-size: 1.2rem; }
.text-link { text-decoration: none; color: var(--ink); font-weight: 700; }
.text-link:hover { color: var(--gold); }

.included { display: grid; grid-template-columns: .8fr 1.2fr; gap: 6vw; align-items: start; }
.included-copy { position: sticky; top: 2rem; }
.included-copy p:last-child { color: var(--ink-soft); max-width: 510px; }
.included-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.included-item { padding: 2.2rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.included-item > span { color: var(--gold); font-weight: 700; font-size: .75rem; letter-spacing: .1em; }
.included-item h3 { margin-top: 1.2rem; font-size: 2rem; }
.included-item p { color: var(--ink-soft); font-size: .94rem; }

.dark-section { background: #17120f; color: #fff; }
.light-heading > p:last-child { color: rgba(255,255,255,.7); }
.gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); grid-auto-rows: 230px; gap: .8rem; }
.gallery-item { border: 0; padding: 0; overflow: hidden; cursor: zoom-in; background: #2a211d; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.video-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.2rem; margin-top: 1.2rem; }
.video-card { margin: 0; background: #231b17; }
.video-card video { width: 100%; max-height: 650px; background: #000; }
.video-card figcaption { padding: 1rem 1.2rem; color: rgba(255,255,255,.72); font-size: .9rem; }

.location-card { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--cream); box-shadow: var(--shadow); }
.location-card > div:first-child { padding: clamp(2rem, 5vw, 5rem); align-self: center; }
.location-card > div:first-child > p:not(.eyebrow) { color: var(--ink-soft); font-size: 1.08rem; }
.location-photo img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.location-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.phone-link { font-family: "Cormorant Garamond", Georgia, serif; font-size: 2rem; text-decoration: none; color: var(--ink); }

.cta-strip { background: var(--gold); color: #fff; padding: 4rem max(5vw,1.5rem); display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.cta-strip h2 { font-size: clamp(2.2rem,4vw,4rem); margin: 0; }
.cta-strip .eyebrow { color: rgba(255,255,255,.78); }

.site-footer { background: #110d0b; color: rgba(255,255,255,.72); padding: 3.5rem max(5vw,1.5rem) 2rem; display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; }
.site-footer .brand-mark { flex: 0 0 auto; }
.footer-brand { display: flex; gap: 1rem; align-items: center; }
.footer-brand strong { color: #fff; font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.6rem; }
.footer-brand p { margin: .1rem 0 0; font-size: .85rem; }
.footer-contact { display: flex; flex-direction: column; text-align: right; gap: .35rem; font-size: .9rem; }
.footer-contact a { color: #fff; text-decoration: none; }
.copyright { grid-column: 1 / -1; border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.4rem; margin: 0; font-size: .76rem; }

.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(8,6,5,.92); display: none; place-items: center; padding: 5vw; }
.lightbox.open { display: grid; }
.lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; box-shadow: 0 20px 80px rgba(0,0,0,.5); }
.lightbox-close { position: absolute; top: 1.5rem; right: 2rem; background: transparent; border: 0; color: #fff; font-size: 2.4rem; cursor: pointer; }

.contact-page { background: var(--cream); }
.contact-hero { min-height: 410px; background: linear-gradient(90deg, rgba(18,13,11,.88), rgba(18,13,11,.55)), url('assets/images/hall-pink-banquet.jpg') center/cover; color: #fff; display: flex; align-items: end; padding: 6rem max(5vw,1.5rem) 4rem; }
.contact-hero > div { max-width: 820px; }
.contact-hero p:last-child { max-width: 640px; color: rgba(255,255,255,.78); font-size: 1.1rem; }
.contact-layout { display: grid; grid-template-columns: minmax(280px,.7fr) minmax(0,1.3fr); gap: 2rem; align-items: start; }
.contact-info-card, .form-card { background: #fff; box-shadow: 0 16px 50px rgba(28,20,16,.07); }
.contact-info-card { padding: 2.5rem; position: sticky; top: 1.5rem; }
.contact-detail { padding: 1.2rem 0; border-top: 1px solid var(--line); }
.contact-detail > span { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gold); font-weight: 700; margin-bottom: .35rem; }
.contact-detail a { font-size: 1.3rem; font-weight: 700; text-decoration: none; }
.contact-detail p { margin: 0; color: var(--ink-soft); }
.form-card { padding: clamp(2rem, 4vw, 4rem); }
.form-heading p:last-child { color: var(--ink-soft); }
#inquiry-form { display: grid; gap: 1.15rem; margin-top: 2rem; }
.form-row { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem; }
label { display: grid; gap: .45rem; font-size: .82rem; font-weight: 700; color: var(--ink); }
input, select, textarea { width: 100%; border: 1px solid rgba(26,21,18,.18); background: #fff; padding: .9rem 1rem; border-radius: 8px; color: var(--ink); outline: none; font-weight: 400; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(185,151,91,.12); }
textarea { resize: vertical; }
.consent-row { grid-template-columns: auto 1fr; align-items: start; font-weight: 400; color: var(--ink-soft); font-size: .78rem; }
.consent-row input { width: auto; margin-top: .22rem; }
.submit-btn { justify-self: start; border: 0; }
.form-note { font-size: .82rem; color: var(--ink-soft); margin: 0; }
.form-note a { color: var(--ink); font-weight: 700; }

@media (max-width: 980px) {
  .site-nav { position: absolute; top: 92px; left: 1rem; right: 1rem; background: rgba(20,15,12,.97); padding: 1.2rem; display: none; flex-direction: column; align-items: stretch; gap: .4rem; box-shadow: 0 18px 50px rgba(0,0,0,.25); }
  .site-nav.open { display: flex; }
  .site-nav a { padding: .8rem; }
  .menu-toggle { display: block; cursor: pointer; }
  .hero-card { left: 1.5rem; right: 1.5rem; bottom: 1.2rem; }
  .hero-card div { min-width: 0; padding: 1.1rem; }
  .space-card img { height: 380px; }
  .included { grid-template-columns: 1fr; }
  .included-copy { position: static; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gallery-item.wide { grid-column: span 1; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
}

@media (max-width: 720px) {
  .section-pad { padding: 5rem 1.25rem; }
  .hero-content { padding: 8.5rem 1.25rem 12rem; }
  .hero-overlay { background: linear-gradient(90deg, rgba(17,12,10,.84), rgba(17,12,10,.48)), linear-gradient(0deg, rgba(17,12,10,.5), transparent); }
  .hero-card { grid-template-columns: 1fr 1fr 1fr; left: 1rem; right: 1rem; }
  .hero-card span { font-size: .62rem; }
  .hero-card strong { font-size: 1.6rem; }
  .space-grid, .video-grid, .location-card { grid-template-columns: 1fr; }
  .space-card img { height: 330px; }
  .included-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: 180px; }
  .location-photo img { min-height: 380px; }
  .cta-strip { align-items: flex-start; flex-direction: column; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-contact { text-align: left; }
  .form-row { grid-template-columns: 1fr; }
  .contact-hero { padding-top: 4rem; }
}

@media (max-width: 480px) {
  .brand-text small { letter-spacing: .11em; }
  .hero-actions .btn { width: 100%; }
  .hero-card div { padding: .85rem .7rem; }
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .gallery-item.tall, .gallery-item.wide { grid-row: auto; grid-column: auto; }
  .location-actions .btn { width: 100%; }
}
