:root {
  --bg: #050505;
  --panel: #0b0b0b;
  --panel-soft: #11100f;
  --gold: #d6a443;
  --gold-bright: #f2cd76;
  --gold-dark: #8d641c;
  --line: rgba(214, 164, 67, 0.32);
  --text: #f8f5ee;
  --muted: #d9d4c9;
  --dim: #9c9484;
  --max: 1130px;
  --display: "Cormorant Garamond", "Cinzel", Georgia, serif;
  --engraved: "Cinzel", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 76% 10%, rgba(173, 112, 27, 0.23), transparent 31rem),
    radial-gradient(circle at 6% 37%, rgba(214, 164, 67, 0.08), transparent 24rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.music-toggle {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid rgba(242, 205, 118, 0.58);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.78);
  color: var(--gold-bright);
  cursor: pointer;
  font: 900 0.68rem Inter, Arial, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.34);
}

.music-toggle.is-playing {
  background: linear-gradient(135deg, rgba(247, 212, 122, 0.95), rgba(180, 123, 33, 0.95));
  color: #090704;
}

.music-icon {
  width: 22px;
  height: 22px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.82rem;
}

.site-header {
  min-height: 690px;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.82) 43%, rgba(5, 5, 5, 0.36) 100%),
    radial-gradient(circle at 84% 52%, rgba(224, 172, 72, 0.23), transparent 17rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.page-header {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.98), rgba(5, 5, 5, 0.88)),
    radial-gradient(circle at 82% 0%, rgba(214, 164, 67, 0.18), transparent 24rem);
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  width: min(var(--max), calc(100% - 48px));
  height: 94px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 28px;
  position: relative;
  z-index: 5;
}

.brand {
  width: max-content;
  color: var(--gold-bright);
  display: grid;
  grid-template-columns: auto auto;
  align-items: end;
  line-height: 1;
}

.brand-name {
  font-family: var(--engraved);
  font-size: clamp(2.1rem, 4vw, 4rem);
  letter-spacing: 0;
}

.brand-mark {
  font-size: 2.6rem;
  color: var(--gold);
  margin-left: 5px;
  transform: rotate(-6deg) translateY(-1px);
}

.brand-subtitle {
  grid-column: 1 / -1;
  color: #fff;
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  margin-top: 7px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links a {
  padding: 9px 0;
  position: relative;
}

.nav-links a::after {
  content: "";
  width: 0;
  height: 2px;
  background: var(--gold);
  position: absolute;
  left: 0;
  bottom: 0;
  transition: width 180ms ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--gold-bright);
}

.outline-button,
.ghost-button,
.gold-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0 24px;
  border: 1px solid rgba(242, 205, 118, 0.72);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.outline-button:hover,
.ghost-button:hover,
.gold-button:hover {
  transform: translateY(-2px);
}

.outline-button,
.ghost-button {
  background: rgba(5, 5, 5, 0.34);
}

.gold-button {
  background: linear-gradient(135deg, #f7d47a 0%, #b47b21 100%);
  color: #090704;
  border-color: transparent;
  box-shadow: 0 11px 34px rgba(214, 164, 67, 0.16);
}

.nav-toggle,
.nav-toggle-button {
  display: none;
}

.hero {
  width: min(var(--max), calc(100% - 48px));
  min-height: 596px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(360px, 0.94fr) minmax(420px, 1.06fr);
  align-items: center;
  gap: 36px;
  position: relative;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 40px;
}

.eyebrow,
.section-kicker,
.section-title p {
  margin: 0;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 560px;
  margin-top: 18px;
  font-size: clamp(3.2rem, 7vw, 5.85rem);
  line-height: 0.9;
}

h1 span,
h2 span {
  color: var(--gold-bright);
}

.flourish {
  width: 320px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 17px;
  color: var(--gold);
  margin: 25px 0;
}

.flourish span,
.section-title span {
  height: 1px;
  background: var(--gold);
}

.hero-text {
  max-width: 368px;
  margin: 0 0 34px;
  color: #fff;
  font-size: 1.02rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
}

.play-dot {
  width: 19px;
  height: 19px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.53rem;
}

.social-strip {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--gold);
}

.social-strip span {
  color: #fff;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.social-strip a {
  min-width: 17px;
  color: var(--gold);
  font-weight: 900;
  text-align: center;
}

.hero-stage {
  height: 606px;
  align-self: end;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 0%, transparent 20%, transparent 74%, rgba(5, 5, 5, 0.58) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 24%);
  z-index: 2;
  pointer-events: none;
}

.hero-stage img,
.hero-stage video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.05) contrast(1.02);
}

.hero-stage video {
  filter: brightness(0.55) sepia(0.18) saturate(0.9) contrast(1.08);
}

.slide-index {
  position: absolute;
  right: 4px;
  top: 150px;
  z-index: 3;
  display: grid;
  gap: 24px;
  justify-items: center;
  color: #fff;
}

.slide-index strong,
.slide-index em {
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 500;
}

.slide-index span {
  width: 1px;
  height: 87px;
  background: rgba(255, 255, 255, 0.64);
}

.slide-index {
  display: none;
}

.scroll-cue {
  position: absolute;
  right: 0;
  bottom: 56px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scroll-cue b {
  width: 14px;
  height: 14px;
  border: 0;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  border-radius: 0;
  color: var(--gold);
  display: grid;
  place-items: center;
  font-weight: 400;
  transform: rotate(45deg);
}

.hero .social-strip {
  margin-top: 0;
  position: absolute;
  right: -2px;
  top: 232px;
  z-index: 4;
  flex-direction: column;
  gap: 25px;
}

.hero .social-strip::before {
  content: "";
  width: 1px;
  height: 160px;
  background: linear-gradient(180deg, transparent, rgba(242, 205, 118, 0.72), transparent);
  position: absolute;
  left: 50%;
  top: -86px;
  transform: translateX(-50%);
}

.hero .social-strip span {
  display: none;
}

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

.trusted {
  padding: 24px 0 30px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.brand-carousel {
  margin-top: 24px;
  display: grid;
  grid-template-columns: auto repeat(6, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.brand-carousel button,
.review-controls button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #070707;
  color: var(--gold-bright);
  cursor: pointer;
}

.venue-logo {
  min-height: 58px;
  display: grid;
  place-content: center;
  color: var(--gold-bright);
  font-family: var(--engraved);
  font-size: 1.04rem;
  line-height: 1.05;
}

.venue-logo small {
  display: block;
  color: #c7ab6b;
  font-family: Inter, Arial, sans-serif;
  font-size: 0.47rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-top: 4px;
  text-transform: uppercase;
}

.venue-logo.numeric {
  font-size: 3.35rem;
  font-weight: 700;
}

.venue-logo.italic {
  font-style: italic;
  font-size: 1.7rem;
}

.venue-logo.monogram {
  font-size: 2.8rem;
}

.occasions {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 24px 0 28px;
}

.occasions .section-title {
  display: none;
}

.section-title {
  display: grid;
  grid-template-columns: minmax(20px, 44px) auto minmax(20px, 44px);
  justify-content: center;
  align-items: center;
  gap: 17px;
  margin-bottom: 25px;
}

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.occasion-grid article {
  min-height: 148px;
  padding: 0 18px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.occasion-grid article:last-child {
  border-right: 0;
}

.occasion-icon {
  height: 45px;
  margin-bottom: 16px;
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 2.1rem;
  line-height: 1;
}

.occasion-grid h3 {
  min-height: 30px;
  margin: 0 0 13px;
  color: var(--gold-bright);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.occasion-grid p {
  margin: 0;
  color: #fff;
  font-size: 0.79rem;
  line-height: 1.6;
}

.showreel-row {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.95fr);
  gap: 42px;
  align-items: center;
  padding: 18px 0 17px;
  border-bottom: 1px solid var(--line);
}

.video-card {
  min-height: 320px;
  position: relative;
  border: 1px solid rgba(214, 164, 67, 0.38);
  overflow: hidden;
  background: #111;
}

.video-card video {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  opacity: 0.74;
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.08));
}

.video-copy {
  position: absolute;
  left: 38px;
  top: 92px;
  z-index: 2;
  display: grid;
  gap: 8px;
}

.video-copy span {
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 1.35rem;
  text-transform: uppercase;
}

.video-copy strong {
  font-family: var(--display);
  font-size: 2.1rem;
  font-weight: 500;
  text-transform: uppercase;
}

.video-copy small {
  color: var(--gold-bright);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.video-copy em {
  margin-top: 11px;
  font-style: normal;
  font-size: 0.92rem;
}

.large-play {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.76);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
  position: absolute;
  left: 47%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  transition: background 160ms ease, transform 160ms ease, opacity 160ms ease;
}

.large-play:hover {
  background: rgba(214, 164, 67, 0.34);
  transform: translate(-50%, -50%) scale(1.04);
}

.video-card.is-playing::after,
.video-card.is-playing .video-copy {
  opacity: 0;
  pointer-events: none;
}

.video-card.is-playing .large-play {
  opacity: 0;
}

.video-card.is-playing:hover .large-play,
.large-play:focus-visible {
  opacity: 1;
}

.video-card.is-playing video {
  opacity: 1;
}

.about-copy {
  padding: 28px 0 20px;
}

.about-copy h2 {
  margin-top: 12px;
  font-size: clamp(2.25rem, 5vw, 3.8rem);
  line-height: 1;
}

.cta h2 {
  margin-top: 8px;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  line-height: 1;
}

.about-copy p:not(.eyebrow),
.cta p,
.site-footer a {
  color: #fff;
}

.about-copy p:not(.eyebrow) {
  max-width: 455px;
  margin: 22px 0 0;
  font-size: 0.96rem;
  line-height: 1.65;
}

.signature {
  margin-top: 20px;
  display: grid;
  gap: 3px;
}

.signature strong {
  color: var(--gold);
  font-family: var(--display);
  font-size: 2.2rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  text-transform: none;
}

.signature span {
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.testimonial {
  min-height: 123px;
  margin-top: 14px;
  padding: 20px 27px;
  display: grid;
  grid-template-columns: auto minmax(230px, 1fr) auto minmax(140px, auto) auto auto;
  gap: 20px;
  align-items: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 4px;
}

.quote-mark {
  color: var(--gold-bright);
  font-family: var(--display);
  font-size: 4.2rem;
  line-height: 1;
}

blockquote {
  margin: 0;
  color: #fff;
  font-size: 0.94rem;
  line-height: 1.6;
}

.client-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid var(--gold-bright);
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #2a2929, #090909);
  color: var(--gold-bright);
  font-family: var(--engraved);
}

.client-info {
  display: grid;
  gap: 6px;
}

.client-info strong {
  color: var(--gold-bright);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.client-info span {
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.rating {
  color: var(--gold-bright);
  font-size: 1.4rem;
}

.review-controls {
  display: flex;
  gap: 10px;
}

.cta {
  min-height: 136px;
  display: grid;
  grid-template-columns: 265px 1fr auto;
  gap: 36px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.cta img {
  width: 265px;
  height: 136px;
  object-fit: cover;
  object-position: center;
  opacity: 0.92;
}

.cta h2 {
  color: var(--gold-bright);
}

.cta p {
  margin: 10px 0 0;
  font-size: 0.9rem;
}

.cta-actions {
  min-width: 256px;
  text-align: center;
}

.cta-actions p {
  color: #fff;
  margin-top: 18px;
}

.booking {
  padding: 58px 0 62px;
  border-bottom: 1px solid var(--line);
}

.booking-top {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(360px, 1.18fr);
  gap: 34px;
  align-items: stretch;
  margin-bottom: 30px;
}

.booking-intro {
  max-width: 620px;
  align-self: center;
}

.booking-intro h2 {
  margin-top: 12px;
  color: var(--gold-bright);
  font-size: clamp(2.25rem, 5vw, 3.6rem);
}

.booking-intro p:not(.eyebrow) {
  margin: 14px 0 0;
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.65;
}

.booking-photo {
  min-height: 350px;
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(214, 164, 67, 0.3);
  border-radius: 4px;
  background: #090909;
}

.booking-photo img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.74) saturate(0.98) contrast(1.08);
}

.booking-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.04) 52%, rgba(5, 5, 5, 0.22)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.88), transparent 48%);
}

.booking-photo figcaption {
  width: min(430px, calc(100% - 44px));
  position: absolute;
  left: 26px;
  bottom: 24px;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.booking-photo span {
  color: var(--gold-bright);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.booking-photo strong {
  color: #fff;
  font-family: var(--display);
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  font-weight: 500;
  line-height: 1.08;
}

.booking-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 1.08fr);
  gap: 34px;
  align-items: start;
}

.calendar-card,
.booking-form {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  border: 1px solid rgba(214, 164, 67, 0.26);
  border-radius: 4px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.calendar-card {
  padding: 24px;
}

.calendar-head {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.calendar-head h3 {
  margin: 0;
  color: var(--gold-bright);
  font-family: var(--engraved);
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
}

.calendar-nav {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.65);
  color: var(--gold-bright);
  cursor: pointer;
  font-size: 1.4rem;
}

.weekday-row,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.weekday-row {
  margin-bottom: 10px;
}

.weekday-row span {
  color: var(--dim);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.calendar-day {
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.075);
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
  cursor: pointer;
  font: 800 0.9rem Inter, Arial, sans-serif;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.calendar-day:hover:not(:disabled),
.calendar-day.selected {
  background: linear-gradient(135deg, #f7d47a, #a96f1b);
  border-color: transparent;
  color: #090704;
  transform: translateY(-1px);
}

.calendar-day:disabled {
  color: rgba(255, 255, 255, 0.22);
  cursor: not-allowed;
}

.calendar-day.is-today {
  border-color: rgba(242, 205, 118, 0.82);
}

.calendar-day.is-empty {
  visibility: hidden;
}

.booking-form {
  padding: 24px;
  display: grid;
  gap: 16px;
}

.selected-date {
  padding: 17px 18px;
  display: grid;
  gap: 6px;
  background: rgba(214, 164, 67, 0.08);
  border: 1px solid var(--line);
}

.selected-date span,
.booking-form label span,
.booking-form legend {
  color: var(--gold-bright);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.selected-date strong {
  color: #fff;
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 500;
}

.booking-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.booking-form legend {
  margin-bottom: 10px;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.time-grid button {
  min-height: 42px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
}

.time-grid button.selected {
  background: var(--gold);
  border-color: var(--gold);
  color: #090704;
}

.booking-form label {
  display: grid;
  gap: 8px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.32);
  color: #fff;
  font: 500 0.95rem Inter, Arial, sans-serif;
  padding: 13px 14px;
  outline: 0;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--gold-bright);
}

.booking-form textarea {
  resize: vertical;
}

.booking-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.booking-message {
  min-height: 20px;
  margin: 0;
  color: var(--gold-bright);
  font-size: 0.9rem;
  line-height: 1.5;
}

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

.contact-hero {
  min-height: 570px;
  padding: 58px 0 46px;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1.1fr);
  gap: 48px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.contact-hero-copy h1 {
  max-width: 660px;
  margin-top: 18px;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.92;
}

.contact-hero-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 0;
  color: #fff;
  font-size: 1rem;
  line-height: 1.75;
}

.contact-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-hero-photo {
  min-height: 500px;
  margin: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(214, 164, 67, 0.35);
  background: #080808;
}

.contact-hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: center 24%;
  filter: brightness(0.76) saturate(0.95) contrast(1.08);
}

.contact-hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.66), rgba(5, 5, 5, 0.03) 52%, rgba(5, 5, 5, 0.36)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.9), transparent 48%);
}

.contact-hero-photo figcaption {
  width: min(470px, calc(100% - 48px));
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.contact-hero-photo span,
.contact-details article span,
.contact-form label span {
  color: var(--gold-bright);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-hero-photo strong {
  color: #fff;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 500;
  line-height: 1.08;
}

.contact-grid {
  padding: 42px 0 64px;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(450px, 1.22fr);
  gap: 34px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.contact-details {
  display: grid;
  gap: 14px;
}

.contact-details article,
.contact-form {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  border: 1px solid rgba(214, 164, 67, 0.26);
  border-radius: 4px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.contact-details article {
  padding: 22px;
  display: grid;
  gap: 8px;
}

.contact-details article a,
.contact-details article strong {
  color: #fff;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 500;
}

.contact-details article p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.contact-form {
  padding: 28px;
  display: grid;
  gap: 16px;
}

.contact-form h2 {
  color: var(--gold-bright);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.form-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.32);
  color: #fff;
  font: 500 0.95rem Inter, Arial, sans-serif;
  padding: 13px 14px;
  outline: 0;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold-bright);
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  min-height: 147px;
  padding: 29px 24px 22px;
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.1fr 1.05fr;
  gap: 46px;
  position: relative;
}

.footer-brand .brand-name {
  font-size: 3.2rem;
}

.site-footer .footer-brand {
  color: var(--gold-bright);
}

.site-footer h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer div:not(.footer-socials) {
  display: grid;
  align-content: start;
}

.site-footer a {
  width: max-content;
  margin-bottom: 5px;
  font-size: 0.74rem;
}

.footer-socials {
  margin-top: 9px;
  display: flex;
  gap: 17px;
  color: var(--gold);
}

.copyright {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  margin: 0;
  color: rgba(255, 255, 255, 0.26);
  font-size: 0.66rem;
}

@media (max-width: 1020px) {
  .nav-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .header-button {
    display: none;
  }

  .nav-toggle-button {
    width: 46px;
    height: 42px;
    border: 1px solid var(--line);
    display: grid;
    place-content: center;
    gap: 6px;
    cursor: pointer;
  }

  .nav-toggle-button span {
    width: 23px;
    height: 2px;
    background: var(--gold-bright);
  }

  .nav-links {
    position: absolute;
    inset: 78px 0 auto;
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: center;
    background: rgba(5, 5, 5, 0.97);
    border: 1px solid var(--line);
  }

  .nav-toggle:checked ~ .nav-links {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 30px;
  }

  .hero-stage {
    height: 520px;
    grid-row: 1;
    opacity: 0.88;
  }

  .hero-copy {
    margin-top: -300px;
    padding-bottom: 60px;
  }

  .hero .social-strip {
    position: static;
    flex-direction: row;
    margin-top: 48px;
  }

  .hero .social-strip::before {
    display: none;
  }

  .hero .social-strip span {
    display: inline;
  }

  .occasion-grid,
  .brand-carousel {
    grid-template-columns: repeat(3, 1fr);
  }

  .brand-carousel button {
    display: none;
  }

  .occasion-grid article:nth-child(3n) {
    border-right: 0;
  }

  .occasion-grid article {
    padding: 20px;
    border-bottom: 1px solid var(--line);
  }

  .showreel-row,
  .testimonial,
  .cta,
  .booking-top,
  .booking-panel,
  .contact-hero,
  .contact-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .testimonial {
    justify-items: start;
  }

  .cta {
    gap: 16px;
    padding-bottom: 26px;
  }

  .cta img,
  .cta-actions {
    width: 100%;
    min-width: 0;
  }

  .cta-actions {
    text-align: left;
  }

  .contact-hero {
    padding-top: 34px;
  }

  .contact-hero-photo,
  .contact-hero-photo img {
    min-height: 460px;
  }

  .site-footer {
    padding-left: 0;
    padding-right: 0;
  }

  .copyright {
    position: static;
    transform: none;
  }
}

@media (max-width: 640px) {
  .nav-shell,
  .hero,
  main,
  .contact-main,
  .site-footer {
    width: min(100% - 30px, var(--max));
  }

  .site-header {
    min-height: auto;
  }

  .brand-name,
  .footer-brand .brand-name {
    font-size: 2.6rem;
  }

  .hero-stage {
    height: 500px;
  }

  .hero-copy {
    margin-top: -280px;
  }

  h1 {
    font-size: clamp(2.75rem, 18vw, 4.1rem);
  }

  .flourish {
    width: 245px;
  }

  .hero-actions,
  .gold-button,
  .ghost-button {
    width: 100%;
  }

  .slide-index,
  .scroll-cue {
    display: none;
  }

  .brand-carousel,
  .occasion-grid {
    grid-template-columns: 1fr 1fr;
  }

  .occasion-grid article,
  .occasion-grid article:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .occasion-grid article:nth-child(even) {
    border-right: 0;
  }

  .section-title p,
  .section-kicker,
  .eyebrow {
    font-size: 0.68rem;
  }

  .music-toggle {
    right: 15px;
    bottom: 15px;
    min-height: 38px;
    max-width: calc(100% - 30px);
    padding: 0 13px;
    font-size: 0.62rem;
  }

  .video-copy {
    left: 24px;
  }

  .large-play {
    left: 70%;
  }

  .testimonial {
    padding: 22px;
  }

  .calendar-card,
  .booking-form {
    padding: 18px;
  }

  .booking-photo,
  .booking-photo img {
    min-height: 430px;
  }

  .weekday-row,
  .calendar-grid {
    gap: 5px;
  }

  .time-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-actions,
  .contact-actions .gold-button,
  .contact-actions .ghost-button,
  .form-pair {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .contact-hero-photo,
  .contact-hero-photo img {
    min-height: 420px;
  }

  .contact-form {
    padding: 20px;
  }
}
