/* ==========================================================================
   Columbia Ballroom — shared stylesheet
   Clean hand-coded rebuild. One stylesheet for every page.
   Palette: brand red #A7261C · warm neutrals · ink text
   Type: Cormorant Garamond (display) + Josefin Sans (UI/body)
   ========================================================================== */

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Josefin Sans", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #232020;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: #A7261C; text-decoration: none; transition: color .2s ease; }
a:hover { color: #6E6E6E; }
h1, h2, h3, h4 { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600; line-height: 1.12; margin: 0 0 .5em; color: #1c1a1a; }
p { margin: 0 0 1.2em; }
:focus-visible { outline: 2px solid #A7261C; outline-offset: 3px; }

:root {
  --red: #A7261C;
  --red-dark: #841c14;
  --gray: #6E6E6E;
  --ink: #232020;
  --soft: #f6f3ef;
  --line: rgba(0,0,0,.10);
  --wrap: 1140px;
  --nav-h: 92px;
}

/* ---- Utility ---- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }
.narrow { max-width: 820px; }
.center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 200; background: var(--red); color: #fff; padding: 12px 20px; border-radius: 4px; font-family: "Josefin Sans", sans-serif; font-weight: 600; letter-spacing: .04em; transition: top .2s ease; }
.skip-link:focus { top: 12px; color: #fff; outline: 3px solid #fff; outline-offset: 2px; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; border-radius: 2px; }
.eyebrow {
  font-family: "Josefin Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  margin: 0 0 14px;
}
.divider { display: block; margin: 34px auto; width: 46px; height: 78px; opacity: .5; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: "Josefin Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--red);
  padding: 16px 34px;
  border-radius: 2px;
  border: 1px solid var(--red);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { background: var(--red-dark); border-color: var(--red-dark); color: #fff; }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--ink { background: var(--ink); border-color: var(--ink); }
.btn--ink:hover { background: #000; border-color: #000; color: #fff; }

/* ==========================================================================
   Header / navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}
.nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav__logo img { width: 168px; height: auto; }
.nav__toggle {
  display: none;
  background: none; border: 0; cursor: pointer;
  width: 46px; height: 46px; padding: 10px;
}
.nav__toggle span { display: block; height: 2px; background: var(--ink); margin: 5px 0; transition: .25s; }
.nav__menu { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav__menu a {
  display: block;
  white-space: nowrap;
  font-size: 14px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 10px 13px;
  border-bottom: 2px solid transparent;
}
.nav__menu a:hover { color: var(--red); }
.nav__menu a[aria-current="page"] { color: var(--red); border-bottom-color: var(--red); }
.nav__cta { margin-left: 8px; }
.nav__menu .nav__cta a.btn { color: #fff; }
.nav__menu .nav__cta a.btn:hover { color: #fff; }

@media (max-width: 1080px) {
  .nav__menu a { padding: 10px 10px; font-size: 13px; }
  .nav__logo img { width: 148px; }
}
@media (max-width: 940px) {
  .nav__toggle { display: block; }
  .nav__menu {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 30px -18px rgba(0,0,0,.3);
    max-height: 0; overflow: hidden; transition: max-height .32s ease;
  }
  .nav__menu.is-open { max-height: 620px; }
  .nav__menu li { border-top: 1px solid var(--line); }
  .nav__menu a { padding: 15px 24px; font-size: 14px; }
  .nav__cta { margin: 12px 24px 18px; }
  .nav__cta .btn { display: block; text-align: center; }
}

/* ==========================================================================
   Hero / banners
   ========================================================================== */
.hero {
  position: relative;
  min-height: 60vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  color: #fff;
  background: #2a2320 center/cover no-repeat;
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(18,13,10,.48) 0%, rgba(18,13,10,.42) 45%, rgba(18,13,10,.72) 100%);
}
.hero__inner { position: relative; z-index: 2; padding: 90px 28px; max-width: 900px; }
.hero__inner .eyebrow { color: #fff; opacity: 1; text-shadow: 0 1px 10px rgba(0,0,0,.55); }
.hero h1 {
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,.5);
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 500;
  letter-spacing: .01em;
  text-shadow: 0 2px 26px rgba(0,0,0,.35);
  margin-bottom: .3em;
}
.hero__lead { font-size: 1.15rem; max-width: 640px; margin: 0 auto 8px; text-shadow: 0 1px 14px rgba(0,0,0,.4); }
.hero--page { min-height: 46vh; }
.hero--page h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }

/* Home slideshow */
.slideshow { position: absolute; inset: 0; z-index: 0; }
.slideshow .slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  background: center/cover no-repeat;
  opacity: 0; transition: opacity 1.6s ease;
}
.slideshow .slide.is-active { opacity: 1; }

/* ==========================================================================
   Sections
   ========================================================================== */
.section { padding: 92px 0; }
.section--soft { background: var(--soft); }
.section--tight { padding: 64px 0; }
.section__title { font-size: clamp(2rem, 4vw, 3.1rem); margin-bottom: .35em; }
.lead { font-size: 1.22rem; color: #3a3533; }

.prose { font-size: 1.08rem; }
.prose h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-top: 1.4em; }
.prose p:last-child { margin-bottom: 0; }

/* Split feature: image + text */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media img { width: 100%; height: 100%; object-fit: cover; border-radius: 3px; box-shadow: 0 30px 50px -30px rgba(0,0,0,.4); }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 34px; }
  .split--reverse .split__media { order: 0; }
  .section { padding: 64px 0; }
}

/* Tall hero (venue page) */
.hero--tall { min-height: 82vh; }
@media (max-width: 700px) { .hero--tall { min-height: 62vh; } }

/* Two-image stack inside a split media column */
.media-stack { display: grid; gap: 20px; }
.media-stack img { width: 100%; display: block; border-radius: 3px; box-shadow: 0 30px 50px -30px rgba(0,0,0,.4); object-fit: cover; }

/* Awards logo row */
.awards-row { display: flex; flex-wrap: wrap; gap: 36px; justify-content: center; align-items: center; }
.awards-row img { height: 132px; width: auto; }
@media (max-width: 560px) { .awards-row { gap: 22px; } .awards-row img { height: 96px; } }

/* Side-by-side image pair */
.img-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.img-duo img { width: 100%; display: block; border-radius: 3px; box-shadow: 0 30px 50px -30px rgba(0,0,0,.4); object-fit: cover; }
@media (max-width: 640px) { .img-duo { grid-template-columns: 1fr; } }

/* Capacity chip */
.capacity { display: inline-flex; align-items: baseline; gap: 10px; margin-top: 22px; padding: 12px 22px; background: var(--soft); border: 1px solid var(--line); border-radius: 4px; }
.capacity .capacity__label { font-family: "Josefin Sans", sans-serif; text-transform: uppercase; letter-spacing: .18em; font-size: 11px; color: var(--gray); }
.capacity .capacity__value { font-family: "Cormorant Garamond", serif; font-size: 1.9rem; color: var(--red); line-height: 1; }

/* Amenity / detail list */
.detail-list { list-style: none; margin: 18px 0 0; padding: 0; }
.detail-list li { position: relative; padding: 9px 0 9px 26px; border-bottom: 1px solid var(--line); font-size: 1.05rem; color: #3a3533; }
.detail-list li:last-child { border-bottom: 0; }
.detail-list li::before { content: ""; position: absolute; left: 0; top: 18px; width: 8px; height: 8px; background: var(--red); border-radius: 50%; }

/* Responsive video embed */
.video-embed { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: 4px; overflow: hidden; box-shadow: 0 30px 60px -30px rgba(0,0,0,.5); background: #000; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Scroll-reveal animation (only active when JS is running; content is visible by default) */
html.js .reveal { opacity: 0; transform: translateY(30px); transition: opacity .8s ease, transform .8s ease; will-change: opacity, transform; }
html.js .reveal--left { transform: translateX(-56px); }
html.js .reveal--right { transform: translateX(56px); }
html.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal, html.js .reveal--left, html.js .reveal--right { opacity: 1; transform: none; transition: none; }
}

/* Feature cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: 4px; padding: 34px 30px; }
.card h3 { font-size: 1.7rem; }
.card p { margin: 0; color: #4a4442; font-size: 1rem; }
@media (max-width: 820px) { .cards { grid-template-columns: 1fr; } }

/* Image band */
.band { position: relative; padding: 120px 0; color: #fff; text-align: center; background: #2a2320 center/cover no-repeat; background-attachment: fixed; }
.band::after { content: ""; position: absolute; inset: 0; background: rgba(20,15,12,.5); }
.band__inner { position: relative; z-index: 2; }
.band h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
@media (max-width: 820px){ .band { background-attachment: scroll; padding: 84px 0; } }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--soft); border-top: 1px solid var(--line); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr 1fr; gap: 40px; align-items: start; }
.footer-links h2 { font-family: "Josefin Sans", sans-serif; text-transform: uppercase; letter-spacing: .2em; font-size: 12px; color: var(--gray); margin-bottom: 16px; }
.footer-links ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: #3a3533; font-size: 1.02rem; }
.footer-links a:hover { color: var(--red); }
.footer-brand img { width: 190px; margin-bottom: 18px; }
.footer-address { font-size: 1.02rem; color: #3a3533; }
.footer-address a { color: #232020; text-decoration: underline; text-underline-offset: 2px; }
.footer-address a:hover { color: var(--red); }
.footer-social { text-align: right; }
.footer-social h2 { font-family: "Josefin Sans", sans-serif; text-transform: uppercase; letter-spacing: .2em; font-size: 12px; color: var(--gray); margin-bottom: 16px; }
.social-row { display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap; }
.social-row a { width: 40px; height: 40px; display: grid; place-items: center; }
.social-row img { width: 40px; height: 40px; opacity: .85; transition: opacity .2s, transform .2s; }
.social-row a:hover img { opacity: 1; transform: translateY(-2px); }
.badge-row { display: flex; gap: 18px; justify-content: flex-end; flex-wrap: wrap; margin-top: 22px; }
.badge-row img { height: 58px; width: auto; }
.footer-bottom { margin-top: 52px; border-top: 1px solid var(--line); padding: 22px 0 140px; font-size: 14px; color: var(--gray); text-align: center; }
.footer-bottom a { color: var(--gray); }
.footer-bottom a:hover { color: var(--red); }
@media (max-width: 780px) {
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-social, .social-row, .badge-row { text-align: left; justify-content: flex-start; }
}

/* ==========================================================================
   Embeds (calendar / gallery / form)
   ========================================================================== */
.embed-frame { width: 100%; border: none; }
.calendar-note ul { padding-left: 20px; }
.legend { display: flex; gap: 26px; flex-wrap: wrap; margin: 22px 0 0; }
.legend__item { display: flex; align-items: center; gap: 10px; font-size: .95rem; }
.legend__swatch { width: 22px; height: 22px; border-radius: 3px; }
.legend__swatch--red { background: var(--red); }
.legend__swatch--gray { background: var(--gray); }

/* Gallery grid fallback / helper */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gallery-grid img { width: 100%; aspect-ratio: 3/2; object-fit: cover; border-radius: 3px; }
@media (max-width: 820px){ .gallery-grid { grid-template-columns: repeat(2,1fr); } }

/* ==========================================================================
   Cookie bar
   ========================================================================== */
.cookie-bar {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 100;
  max-width: 720px; margin: 0 auto;
  background: #232020; color: #f3efe9;
  border-radius: 8px; box-shadow: 0 20px 40px -18px rgba(0,0,0,.5);
  padding: 18px 22px;
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  font-size: 14px; line-height: 1.5;
}
.cookie-bar[hidden] { display: none; }
.cookie-bar p { margin: 0; flex: 1 1 300px; }
.cookie-bar a { color: #ffffff; text-decoration: underline; text-underline-offset: 2px; }
.cookie-bar a:hover { color: #f0c9c4; }
.cookie-bar .btn { padding: 11px 22px; font-size: 13px; white-space: nowrap; }
@media (max-width: 600px) {
  .cookie-bar {
    left: 10px; right: 10px; bottom: 10px;
    padding: 12px 14px; gap: 10px;
    font-size: 12px; line-height: 1.4;
  }
  .cookie-bar p { flex: 1 1 100%; }
  .cookie-bar .btn { padding: 9px 18px; font-size: 12px; }
  .footer-bottom { padding-bottom: 120px; }
}

/* Table (FAQ / info) */
.faq-item { border-bottom: 1px solid var(--line); padding: 26px 0; }
.faq-item h2 { font-size: 1.55rem; margin-bottom: .35em; }
.faq-item p { margin: 0; color: #3f3a38; }
.faq-item p + p { margin-top: .8em; }
