:root {
  --cream: #f4efe6;
  --ivory: #faf7f1;
  --paper: #ffffff;
  --ink: #2a2620;
  --muted: #6a645b;
  --gold: #8d7554;
  --gold-dark: #6f5b3f;
  --line: #e3d9cb;
  --soft: #ece4d7;
  --shadow: 0 22px 50px rgba(42, 38, 32, 0.08);
  --header: 76px;
  --max: 1280px;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Jost", "Helvetica Neue", sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header); -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 12px;
}

h1, h2, h3, .display {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: pretty;
}
h1, h2 { text-wrap: balance; }

h1 {
  font-size: clamp(36px, 5.4vw, 68px);
  line-height: 1.12;
  margin: 0 0 20px;
}

h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.2;
  margin: 0 0 18px;
}

h3 {
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.28;
  margin: 0 0 12px;
}

.lede {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 640px;
  margin: 0 0 1.35em;
  text-wrap: pretty;
}

p { margin: 0 0 1.15em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }
.hero-sub, .eyebrow, .btn { text-wrap: pretty; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(252, 249, 244, 0.97) 0%, rgba(244, 236, 222, 0.94) 100%);
  backdrop-filter: blur(16px);
  pointer-events: none;
}

.site-header.scrolled { border-bottom-color: var(--line); }

.header-inner {
  position: relative;
  z-index: 2;
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  pointer-events: none;
}

.logo {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  pointer-events: auto;
}
.logo img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 180px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--max), calc(100% - 48px));
  height: var(--header);
  z-index: 1;
  pointer-events: none;
}
.nav a,
.nav .btn {
  pointer-events: auto;
}

.nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 8px 0;
}

.nav a:hover,
.nav a.active { color: var(--gold-dark); }

.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  background: var(--gold);
}

.nav .btn {
  color: #fff;
  padding: 0 20px;
  position: static;
}
.nav .btn::after { display: none; }
.nav .btn:hover { color: #fff; background: var(--gold-dark); border-color: var(--gold-dark); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.2s ease;
}
.btn:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.ink .btn-ghost,
.quote-copy .btn-ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}
.ink .btn-ghost:hover,
.quote-copy .btn-ghost:hover {
  background: #fff;
  color: var(--ink);
}
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

.menu-toggle {
  display: none;
  position: relative;
  z-index: 3;
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  margin: 0;
  background: var(--ink);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease;
  transform-origin: center;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.hero-photo {
  display: block;
  width: 100%;
  height: min(56vh, 620px);
  object-fit: cover;
  object-position: 50% 38%;
  background: var(--soft);
}
.hero-photo.heads,
.photo-frame img.heads { object-position: 50% 28%; }
.hero-photo.high { object-position: 50% 32%; }
.hero-photo.low { object-position: 50% 58%; }
.hero-photo.estate-pin { object-position: 52% 62%; }

.hero-split {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  min-height: calc(100svh - var(--header));
  background:
    radial-gradient(ellipse 90% 80% at 80% 0%, rgba(196, 176, 138, 0.34), transparent 58%),
    radial-gradient(ellipse 70% 55% at 0% 100%, rgba(232, 214, 186, 0.4), transparent 58%),
    linear-gradient(165deg, #fbf8f2 0%, #f1e6d4 52%, #e8dcc8 100%);
  border-bottom: 1px solid var(--line);
}
.hero-split figure {
  margin: 0;
  position: relative;
  background: var(--soft);
}
.hero-split .hero-photo {
  height: 100%;
  min-height: min(72vh, 780px);
  object-position: 32% 48%;
}
.hero-split figcaption {
  position: absolute;
  left: 16px;
  bottom: 12px;
  color: #fff;
  font-size: 12px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}
.hero-split figcaption a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 48px 64px;
}
.hero-mark {
  display: block;
  width: 250px;
  height: auto;
  margin: 0 0 32px;
}
.hero-copy h1 {
  max-width: 13em;
  text-wrap: balance;
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1.08;
  margin: 0 0 12px;
}
.hero-sub {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: var(--gold-dark);
  max-width: 20em;
  margin: 0 0 28px;
}
.hero-copy .lede,
.hero-copy p {
  max-width: 36em;
  margin: 0 0 16px;
  color: var(--muted);
}
.hero-copy .btn-row { margin-top: 16px; }
.photo-credit {
  margin: 22px 0 0;
  font-size: 13px;
  color: var(--muted);
}
.photo-credit a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-photo { height: min(58vh, 640px); object-position: 50% 36%; }

.hero-band,
.page-band {
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(196, 176, 138, 0.14), transparent 52%),
    linear-gradient(180deg, #f8f3ea 0%, #f0e8db 100%);
  padding: 48px 0 56px;
  border-bottom: 1px solid var(--line);
}

.hero-band h1 { max-width: 18ch; }
.page-band h1 { margin-bottom: 14px; }
.page-band .lede { margin-bottom: 0; }

.section { padding: 88px 0; }
.section-tight { padding: 64px 0; }
.gallery-section { padding: 32px 0 56px; }
.cream { background: var(--cream); }
.paper { background: var(--paper); }
.ink {
  background: var(--ink);
  color: #f4efe7;
}
.ink h2, .ink h3 { color: #f4efe7; }
.ink .eyebrow { color: #c4b08a; }
.ink .lede, .ink p { color: rgba(244, 239, 231, 0.8); }

.center { text-align: center; }
.center .lede { margin-inline: auto; }

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.split-reverse { grid-template-columns: 0.95fr 1.05fr; }

.photo-frame {
  overflow: hidden;
  min-height: 420px;
  background: var(--soft);
}
.photo-frame img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: 50% 38%;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
  padding-top: 8px;
}
.stat {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 8px;
}
.stat span { color: var(--muted); font-size: 14px; line-height: 1.5; }

.video-block { max-width: 760px; margin: 0 auto; }
.video-block .photo-credit { text-align: center; }
.video-frame {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #0b1220;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #0b1220;
}
.video-caption {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.space-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.space-card {
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.space-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.space-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.space-card .card-copy {
  padding: 22px 22px 26px;
  display: grid;
  gap: 8px;
}
.space-card h3 { margin: 0; font-size: 26px; }
.space-card p { color: var(--muted); font-size: 15px; margin: 0; }
.space-card span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.quote-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 420px;
  background: var(--cream);
}
.quote-band img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.quote-band figure { margin: 0; }
.quote-band figcaption {
  padding: 10px 16px 14px;
  font-size: 12px;
  color: var(--muted);
}
.quote-copy {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}
.quote-copy blockquote {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
  font-style: italic;
}

.price-cards {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
}
.price-card {
  background: var(--paper);
  padding: 44px 40px;
  border: 1px solid var(--line);
}
.price-card.featured {
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(196, 176, 138, 0.2), transparent 52%),
    var(--ink);
  color: #f4efe7;
  border-color: var(--ink);
}
.price-card.featured .eyebrow {
  color: #ead9b4;
}
.price-card.featured h3 { color: #f7f1e8; }
.price-card.featured p { color: rgba(247, 241, 232, 0.88); }
.price-card .amount {
  font-family: var(--serif);
  font-size: 56px;
  margin: 8px 0 16px;
  line-height: 1;
}
.price-card p { margin-bottom: 1em; }
.price-card ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.price-card li {
  padding: 11px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
  line-height: 1.5;
}
.price-card.featured li { border-top-color: rgba(255,255,255,0.12); }
.home-price-cards .price-card { padding: 36px 32px; }
.home-price-cards .amount { font-size: 48px; }
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin-top: 16px;
}
.footer-social a { color: var(--gold-dark); }

.include-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.include {
  padding: 28px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.include h3 { font-size: 24px; }
.include p { color: var(--muted); font-size: 15px; }

.mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 10px;
}
.mosaic a, .mosaic figure { margin: 0; overflow: hidden; background: var(--soft); }
.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.mosaic a:hover img { transform: scale(1.04); }
.mosaic .tall { grid-row: span 2; }

.gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gallery-row {
  display: flex;
  gap: 8px;
  width: 100%;
}
.gallery-grid figure {
  margin: 0;
  flex: 0 0 auto;
  box-sizing: border-box;
  width: var(--tile-w);
  min-width: 0;
  background: var(--paper);
  box-shadow: inset 0 0 0 1px var(--line);
}
.gallery-grid .photo-open {
  width: 100%;
  height: var(--tile-h);
  overflow: hidden;
}
.gallery-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 50% 28%;
  cursor: zoom-in;
}
.gallery-grid img.cover {
  object-fit: cover;
}
.gallery-grid figcaption {
  height: 32px;
  padding: 0 10px;
  font-size: 11px;
  line-height: 32px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.gallery-grid figcaption a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 4px;
  margin-top: 28px;
}
.subnav a {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 8px 12px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border: 1px solid transparent;
}
.subnav a.active,
.subnav a:hover {
  color: var(--ink);
  border-color: var(--line);
  background: var(--paper);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.steps > div {
  padding: 32px 28px 36px;
  border-right: 1px solid var(--line);
}
.steps > div:last-child { border-right: 0; }
.step-num {
  font-family: var(--serif);
  font-size: 38px;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 10px;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq summary {
  cursor: pointer;
  font-size: 20px;
  font-family: var(--serif);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  line-height: 1.3;
  min-height: 44px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold); }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); margin-top: 14px; max-width: 720px; }

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 16px;
  background: var(--paper);
  padding: 40px;
  border: 1px solid var(--line);
}
.form .full { grid-column: 1 / -1; }
.form label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 10px 0;
  font-size: 16px;
  color: var(--ink);
  outline: none;
}
.form textarea { min-height: 120px; resize: vertical; }
.form input:focus,
.form select:focus,
.form textarea:focus { border-bottom-color: var(--gold-dark); }
.form input:focus-visible,
.form select:focus-visible,
.form textarea:focus-visible { outline: none; }

.pv-form-wrap {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 28px 24px 12px;
  min-height: 720px;
}
.pv-form-wrap .js-pv-form,
.pv-form-wrap [data-pv-venue-contact-form-id] {
  min-height: 680px;
}
.home-inquire .pv-form-wrap { max-width: 760px; }

.contact-aside { display: grid; gap: 32px; }
.contact-aside a { color: var(--gold-dark); }

.notice {
  background: var(--soft);
  border-left: 2px solid var(--gold);
  padding: 16px 18px;
  font-size: 14px;
  color: var(--muted);
  margin-top: 28px;
  line-height: 1.6;
}

.site-footer {
  background:
    radial-gradient(ellipse 80% 70% at 0% 0%, rgba(196, 176, 138, 0.16), transparent 50%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(141, 117, 84, 0.08), transparent 48%),
    linear-gradient(180deg, #f6f0e6 0%, #efe6d6 100%);
  border-top: 1px solid var(--line);
  padding: 56px 0 28px;
}
.site-footer .logo img { height: 42px; max-width: 160px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid h3 { font-size: 22px; margin-bottom: 12px; }
.footer-grid p, .footer-grid a { color: var(--muted); font-size: 15px; }
.footer-grid a:hover { color: var(--ink); }
.legal {
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-size: 12px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 16, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 88vh;
  object-fit: contain;
}
.lightbox p {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  text-align: center;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
}

@media (max-width: 980px) {
  :root { --header: 64px; }
  .menu-toggle { display: flex; }
  .header-inner { justify-content: flex-end; }
  .site-header .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  .site-header::before { backdrop-filter: none; }
  .logo img { height: 36px; max-width: 140px; }
  .gallery-grid img {
    transform: translateZ(0);
  }
  .nav {
    position: fixed;
    inset: 0;
    left: 0;
    width: auto;
    height: auto;
    z-index: 1;
  }
  body > .nav {
    z-index: 70;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    padding: calc(var(--header) + 28px) 32px 48px;
    background:
      radial-gradient(ellipse 90% 55% at 50% 0%, rgba(196, 176, 138, 0.24), transparent 58%),
      linear-gradient(165deg, #fbf8f2 0%, #f3ebe0 50%, #ebe3d4 100%);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.4s;
  }
  .nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav a {
    width: min(280px, 100%);
    padding: 16px 8px;
    font-size: 15px;
    letter-spacing: 0.16em;
    text-align: center;
    border-bottom: 0;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), color 0.2s ease;
  }
  .nav a.active::after {
    left: 50%;
    right: auto;
    width: 24px;
    bottom: 8px;
    transform: translateX(-50%);
  }
  .nav.open a {
    opacity: 1;
    transform: none;
  }
  .nav.open a:nth-child(1) { transition-delay: 0.06s; }
  .nav.open a:nth-child(2) { transition-delay: 0.1s; }
  .nav.open a:nth-child(3) { transition-delay: 0.14s; }
  .nav.open a:nth-child(4) { transition-delay: 0.18s; }
  .nav.open a:nth-child(5) { transition-delay: 0.22s; }
  .nav.open a:nth-child(6) { transition-delay: 0.28s; }
  .nav .btn {
    width: min(280px, 100%);
    margin-top: 18px;
  }
  .hero-photo { height: 42vh; min-height: 220px; }
  .page-photo { height: 32vh; min-height: 180px; }
  .hero-band, .page-band { padding: 32px 0 36px; }
  .section { padding: 52px 0; }
  .gallery-section { padding: 24px 0 40px; }
  .split, .split-reverse, .price-cards, .include-grid, .stat-row, .form, .footer-grid, .space-grid, .quote-band {
    grid-template-columns: 1fr;
  }
  .split { gap: 28px; }
  .photo-frame, .photo-frame img, .quote-band img { min-height: 240px; }
  .space-card img { height: 200px; }
  .mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .mosaic .tall { grid-row: auto; }
  .mosaic img { height: 220px; }
  .gallery-grid { gap: 8px; }
  .gallery-row { gap: 8px; }
  .quote-copy { padding: 36px 24px; }
  .price-card { padding: 28px 22px; }
  .price-card .amount { font-size: 44px; }
  .steps { grid-template-columns: 1fr; }
  .steps > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .video-frame video { max-height: none; }
  .stat-row { margin-top: 32px; }
  main,
  .hero-copy,
  .page-band,
  .section,
  .section-copy,
  .gallery-section,
  .split > div:not(.photo-frame),
  .day-grid figcaption,
  .film-strip figcaption,
  .price-card,
  .include,
  .contact-aside,
  .faq,
  .faq details p,
  .quote-copy,
  .notice,
  .stat,
  .steps > div,
  .photo-frame figcaption,
  .bleed-photo figcaption,
  .gallery-grid figcaption,
  .site-footer {
    text-align: center;
  }
  .hero-figure figcaption,
  .hero-split figcaption {
    left: 24px;
    right: 24px;
    text-align: center;
  }
  .faq summary {
    justify-content: center;
  }
  .faq details p {
    margin-left: auto;
    margin-right: auto;
  }
  .section .wrap > h2 {
    margin-left: auto;
    margin-right: auto;
  }
  .site-footer .logo {
    width: 100%;
    justify-content: center;
  }
  .video-transcript,
  .video-transcript summary {
    text-align: center;
  }
  .video-transcript summary {
    display: flex;
    justify-content: center;
  }
  .hero-mark {
    margin-left: auto;
    margin-right: auto;
  }
  .lede,
  .hero-sub,
  .hero-copy h1,
  .hero-copy p,
  .page-band .lede {
    margin-left: auto;
    margin-right: auto;
  }
  .btn-row,
  .subnav,
  .footer-social,
  .legal {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .wrap { width: calc(100% - 48px); }
  h1 { font-size: 32px; margin-bottom: 16px; }
  h2 { font-size: 28px; margin-bottom: 14px; }
  .hero-copy h1 { font-size: 36px; }
  .hero-mark {
    width: 175px;
    margin-bottom: 20px;
  }
  .band-intro { max-width: none; }
  .band-intro h2 { font-size: 30px; }
  .day-grid { grid-template-columns: 1fr; }
  .day-grid figure:last-child { grid-column: auto; }
  .day-grid img { height: 220px; }
  .day-grid img.crop-face {
    height: 320px;
    object-position: 50% 36%;
  }
  .home-price-cards .amount { font-size: 40px; }
  .pv-form-wrap {
    padding: 16px 12px 8px;
    min-height: 0;
  }
  .pv-form-wrap .js-pv-form,
  .pv-form-wrap [data-pv-venue-contact-form-id] { min-height: 560px; }
  .lightbox {
    width: calc(100% - 16px);
    padding: 52px 12px 16px;
  }
  .lightbox img { max-height: 70vh; }
  .subnav { margin-top: 20px; }
  .legal { font-size: 13px; gap: 8px; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-row .btn { width: 100%; }
  .gallery-grid { gap: 6px; }
  .gallery-row { gap: 6px; }
  .mosaic { grid-template-columns: 1fr; }
  .form { padding: 22px 16px; }
  .legal { flex-direction: column; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .eyebrow { letter-spacing: 0.14em; }
  .hero-photo { height: 44vh; }
  .hero-copy { padding-left: 32px; padding-right: 32px; }
  .hero-figure figcaption { left: 24px; right: 24px; }
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 200;
  background: var(--ink);
  color: #fff;
  padding: 10px 16px;
}
.skip-link:focus { top: 12px; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.hero-figure,
.bleed-photo {
  margin: 0;
  position: relative;
}
.hero-figure figcaption,
.bleed-photo figcaption,
.photo-frame figcaption {
  padding: 10px 0 0;
  font-size: 12px;
  color: var(--muted);
}
.hero-figure figcaption {
  position: absolute;
  left: 16px;
  bottom: 12px;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,0.55);
  padding: 0;
}
.hero-figure figcaption a { text-decoration: underline; text-underline-offset: 3px; }
.bleed-photo img {
  width: 100%;
  height: min(48vh, 560px);
  object-fit: cover;
}
.bleed-photo figcaption { padding: 10px 24px 18px; }

.section-copy { padding: 56px 0; }
.band-intro {
  text-align: center;
  max-width: 50rem;
  margin-inline: auto;
  margin-bottom: 48px;
}
.band-intro .eyebrow { margin-bottom: 16px; }
.band-intro h2 {
  font-size: clamp(32px, 3.8vw, 46px);
  line-height: 1.15;
  max-width: 38ch;
  margin-inline: auto;
  margin-bottom: 24px;
}
.band-intro .lede,
.band-intro p {
  font-size: 16px;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.01em;
  line-height: 1.7;
  max-width: none;
  margin-inline: auto;
  margin-bottom: 16px;
}
.band-intro .lede:last-child,
.band-intro p:last-child { margin-bottom: 0; }
.band-footer { margin-top: 36px; }

.film-section { background: var(--ivory); }
.film-rail {
  position: relative;
  max-width: calc(var(--max) + 80px);
  margin: 0 auto;
}
.film-rail::before,
.film-rail::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 56px;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.film-rail::before {
  left: 0;
  background: linear-gradient(90deg, var(--ivory), transparent);
}
.film-rail::after {
  right: 0;
  background: linear-gradient(270deg, var(--ivory), transparent);
}
.film-rail.can-scroll:not(.at-start)::before,
.film-rail.can-scroll:not(.at-end)::after { opacity: 1; }
.film-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: none;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(250, 247, 241, 0.94);
  color: var(--ink);
  cursor: pointer;
}
.film-rail.can-scroll .film-arrow { display: grid; place-items: center; }
.film-arrow:disabled { opacity: 0.28; cursor: default; }
.film-arrow:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.film-prev { left: 12px; }
.film-next { right: 12px; }
.film-arrow svg { width: 20px; height: 20px; }
.film-hint {
  margin: 10px 0 0;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.film-rail:not(.can-scroll) + .film-hint { display: none; }
.film-strip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 8px 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.film-strip::-webkit-scrollbar { display: none; }
.film-strip:focus-visible { outline: 2px solid var(--ink); outline-offset: 4px; }
.film-strip figure {
  margin: 0;
  flex: 0 0 auto;
  width: min(240px, 70vw);
  scroll-snap-align: start;
}
.film-strip .photo-open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}
.film-strip .photo-open:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.film-strip img {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.film-strip figcaption {
  padding: 8px 4px 0;
  font-size: 11px;
  color: var(--muted);
}
.film-strip figcaption a { text-decoration: underline; text-underline-offset: 2px; }

.day-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.day-grid figure { margin: 0; background: var(--soft); }
.day-grid img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: 50% 30%;
}
.day-grid img.crop-face { object-position: 50% 34%; }
.day-grid figcaption {
  padding: 12px 10px 16px;
}
.day-grid h3 {
  font-size: 20px;
  margin: 0 0 4px;
}
.day-grid h3 a {
  color: inherit;
  text-decoration: none;
}
.day-grid h3 a:hover { text-decoration: underline; text-underline-offset: 3px; }
.day-grid figcaption p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
}
.day-grid figcaption a {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.day-grid > figure > a {
  display: block;
  color: inherit;
}
.day-grid > figure > a:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }

.video-transcript { margin-top: 16px; max-width: 760px; margin-inline: auto; }
.video-transcript summary { cursor: pointer; font-size: 14px; color: var(--muted); }
.video-transcript p { margin-top: 10px; color: var(--muted); }

.gallery-grid button.photo-open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  margin: 0;
  background: transparent;
  line-height: 0;
  font-size: 0;
  cursor: zoom-in;
}
.gallery-grid button.photo-open:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }

.lightbox {
  width: min(1100px, calc(100% - 32px));
  max-width: 100%;
  max-height: calc(100vh - 32px);
  border: 0;
  padding: 48px 24px 24px;
  background: #141210;
  color: #fff;
}
.lightbox::backdrop {
  background: rgba(20, 18, 16, 0.92);
}
.lightbox[open],
.lightbox.open {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.lightbox img {
  max-width: min(1100px, 100%);
  max-height: 80vh;
  object-fit: contain;
}
.lightbox p {
  margin-top: 12px;
  text-align: center;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
}
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid rgba(255,255,255,0.4);
  background: transparent;
  color: #fff;
  cursor: pointer;
}

@media (max-width: 980px) {
  :root { --header: 56px; }
  .logo img { height: 36px; max-width: 140px; }
  .day-grid { grid-template-columns: 1fr 1fr; }
  .day-grid figure:last-child { grid-column: span 2; }
  .day-grid img { height: 220px; }
  .day-grid img.crop-face {
    height: 300px;
    object-position: 50% 34%;
  }
  .section-copy { padding: 40px 0; }
  .film-strip img { height: 180px; }
  .hero-split {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .hero-split .hero-photo {
    min-height: 0;
    height: min(42vh, 340px);
  }
  .hero-copy {
    padding: 28px 32px 36px;
    text-align: center;
  }
  .hero-mark {
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
