﻿:root {
  color-scheme: dark;
  --black: #050505;
  --panel: #101014;
  --panel-2: #17171d;
  --white: #ffffff;
  --muted: #c8c8d0;
  --soft: #8f8f9b;
  --pink: #ff66c4;
  --pink-strong: #e650ad;
  --pink-soft: rgba(255, 102, 196, .16);
  --line: rgba(255, 255, 255, .14);
  --line-hot: rgba(255, 102, 196, .42);
  --shadow: 0 24px 70px rgba(0, 0, 0, .46);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 5, .84);
  backdrop-filter: blur(20px);
}
.brand,
.nav-links,
.hero-actions { display: flex; align-items: center; }
.brand { gap: 12px; font-weight: 850; letter-spacing: .01em; }
.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--pink);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--pink), var(--pink-strong));
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0;
  box-shadow: 0 0 32px rgba(255, 102, 196, .28);
}
.nav-links { gap: clamp(14px, 3vw, 30px); color: var(--muted); font-size: 14px; font-weight: 750; }
.nav-links a:hover,
.nav-links a:focus-visible { color: var(--white); }

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--line-hot);
  border-radius: 8px;
  font-weight: 850;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.nav-cta { padding: 0 20px; background: var(--pink); color: var(--white); border-color: var(--pink); }
.button { gap: 8px; padding: 0 22px; cursor: pointer; font: inherit; }
.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(255, 102, 196, .26); }
.button.primary { background: var(--pink); color: var(--white); border-color: var(--pink); }
.button.secondary { background: rgba(255, 255, 255, .06); color: var(--white); border-color: var(--line); }
.button.secondary:hover,
.button.secondary:focus-visible { border-color: var(--pink); }

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 102, 196, .36), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(255, 255, 255, .13), transparent 24%),
    linear-gradient(135deg, #050505 0%, #101014 54%, #210716 100%);
}
.hero-art { position: absolute; inset: 0; z-index: -2; opacity: .26; filter: grayscale(1) contrast(1.4) brightness(.55) sepia(.8) hue-rotate(285deg) saturate(2.2); }
.hero-art svg { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 78%);
}
.hero:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  z-index: -1;
  background: linear-gradient(0deg, var(--black), rgba(5, 5, 5, .78), rgba(5, 5, 5, 0));
}
.hero-content { width: min(820px, calc(100% - 36px)); margin: 0 auto clamp(48px, 9vh, 98px); text-align: center; }
.eyebrow,
.section-kicker { margin: 0 0 14px; color: var(--pink); font-size: 12px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
h1,
h2,
h3,
p { overflow-wrap: anywhere; }
h1 {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(54px, 9vw, 116px);
  line-height: .92;
  letter-spacing: 0;
  font-weight: 900;
}
.hero-copy { width: min(720px, 100%); margin: 24px auto 0; color: var(--muted); font-size: clamp(18px, 2vw, 22px); }
.hero-actions { justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.rental-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border-block: 1px solid var(--line); }
.rental-strip div { min-height: 128px; padding: clamp(22px, 4vw, 34px); background: #0b0b0f; }
.rental-strip strong { display: block; margin-bottom: 8px; font-size: 19px; color: var(--white); }
.rental-strip span { color: var(--muted); }

.section,
.quote-section { width: min(1160px, calc(100% - 36px)); margin: 0 auto; padding: clamp(62px, 9vw, 104px) 0; }
.intro { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 7vw, 92px); align-items: start; }
.section h2,
.quote-section h2 { margin: 0; font-family: Inter, ui-sans-serif, system-ui, sans-serif; font-size: clamp(34px, 5vw, 62px); line-height: 1; letter-spacing: 0; font-weight: 900; }
.intro > p,
.quote-copy > p { margin: 0; color: var(--muted); font-size: 18px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 28px; }
.section-heading h2 { max-width: 760px; }
.catalog-grid,
.package-grid { display: grid; gap: 18px; }
.catalog-grid { grid-template-columns: repeat(4, 1fr); }
.package-grid { grid-template-columns: repeat(3, 1fr); }
.item-card,
.package-grid article,
.steps li,
.quote-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  box-shadow: var(--shadow);
}
.item-card { padding: 28px; }
.item-icon { display: grid; width: 56px; height: 56px; place-items: center; border-radius: 8px; background: var(--pink-soft); color: var(--pink); border: 1px solid var(--line-hot); }
.item-icon svg { width: 30px; height: 30px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.item-icon.image-icon img { width: 44px; height: 44px; object-fit: contain; }
.item-card h3,
.package-grid h3,
.steps h3 { margin: 22px 0 8px; font-size: 23px; line-height: 1.1; color: var(--white); }
.item-card p,
.package-grid p,
.steps p { margin: 0; color: var(--muted); }
.packages { width: 100%; padding-inline: max(18px, calc((100% - 1160px) / 2)); background: #0d0d12; border-block: 1px solid var(--line); }
.package-grid article { padding: 28px; }
.package-grid span { display: inline-block; margin-top: 24px; color: var(--pink); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding: 0; margin: 0; list-style: none; }
.steps li { padding: 28px; }
.steps span { color: var(--pink); font-size: 38px; font-weight: 900; }

.quote-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(28px, 6vw, 72px); align-items: start; }
.quote-copy { position: sticky; top: 100px; }
.contact-note { margin-top: 30px; padding: 18px; border-left: 5px solid var(--pink); background: var(--pink-soft); }
.contact-note strong,
.contact-note span { display: block; }
.contact-note span { color: var(--muted); margin-top: 4px; }
.quote-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; padding: clamp(22px, 4vw, 34px); }
label,
legend { color: var(--white); font-size: 14px; font-weight: 850; }
input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #07070a;
  color: var(--white);
  font: inherit;
  outline: none;
}
input:focus,
select:focus,
textarea:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(255, 102, 196, .18); }
input,
select { min-height: 48px; padding: 0 12px; }
textarea { resize: vertical; min-height: 120px; padding: 12px; }
::placeholder { color: var(--soft); }
fieldset { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin: 0; padding: 16px; border: 1px solid var(--line); border-radius: 8px; }
fieldset label { display: flex; align-items: center; gap: 9px; color: var(--muted); font-weight: 750; }
input[type="checkbox"] { width: 18px; height: 18px; margin: 0; accent-color: var(--pink); }
.full { grid-column: 1 / -1; }
.form-message { grid-column: 1 / -1; min-height: 24px; margin: 0; color: var(--pink); font-weight: 800; }
.site-footer { display: flex; justify-content: space-between; gap: 20px; padding: 28px clamp(18px, 4vw, 56px); border-top: 1px solid var(--line); color: var(--muted); background: #08080b; }
.site-footer p { margin: 0; }
.site-footer p:first-child { color: var(--white); font-weight: 900; }

@media (max-width: 1100px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1100px) {
  .rental-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero { min-height: 760px; }
  .rental-strip,
  .intro,
  .catalog-grid,
  .package-grid,
  .steps,
  .quote-section { grid-template-columns: 1fr; }
  .quote-copy { position: static; }
  .section-heading { display: block; }
}
@media (max-width: 560px) {
  .site-header { gap: 12px; }
  .brand span:last-child { max-width: 118px; line-height: 1.05; }
  .nav-cta { min-height: 42px; padding-inline: 14px; }
  .hero { min-height: 690px; }
  .hero-content { text-align: left; }
  .hero-actions { justify-content: flex-start; }
  .button { width: 100%; }
  .quote-form,
  fieldset { grid-template-columns: 1fr; }
  .site-footer { display: block; }
  .site-footer p + p { margin-top: 8px; }
}

/* Animated wedding and garden walkthrough hero */
.walkthrough-stage {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 102, 196, .24), transparent 26%),
    linear-gradient(180deg, rgba(10, 10, 14, .2), rgba(5, 5, 5, .96));
  perspective: 900px;
}
.skyline {
  position: absolute;
  inset: 0 0 44%;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(255, 255, 255, .08) 18.4% 19%, transparent 19.4% 100%),
    linear-gradient(245deg, transparent 0 18%, rgba(255, 102, 196, .12) 18.4% 19%, transparent 19.4% 100%);
  opacity: .72;
  animation: sceneDrift 14s ease-in-out infinite alternate;
}
.tent-canopy {
  position: absolute;
  left: 50%;
  top: 15%;
  width: min(860px, 82vw);
  height: 270px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, .2);
  clip-path: polygon(50% 0, 100% 72%, 86% 100%, 14% 100%, 0 72%);
  background: linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 102, 196, .08));
  box-shadow: inset 0 -42px 80px rgba(0, 0, 0, .36), 0 34px 120px rgba(255, 102, 196, .18);
  animation: canopyFloat 10s ease-in-out infinite;
}
.tent-canopy span {
  position: absolute;
  inset: 28% 16% auto;
  height: 1px;
  background: rgba(255, 255, 255, .34);
  box-shadow: 0 42px 0 rgba(255, 255, 255, .18), 0 84px 0 rgba(255, 255, 255, .12);
}
.garden-path {
  position: absolute;
  left: 50%;
  bottom: -15%;
  width: min(520px, 52vw);
  height: 74%;
  transform: translateX(-50%) rotateX(58deg);
  transform-origin: bottom;
  background: linear-gradient(180deg, rgba(255, 255, 255, .24), rgba(255, 102, 196, .16) 35%, rgba(255, 255, 255, .04));
  clip-path: polygon(44% 0, 56% 0, 100% 100%, 0 100%);
  opacity: .9;
}
.garden-path span {
  position: absolute;
  left: 50%;
  width: 82%;
  height: 2px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, .42);
  animation: aisleMove 3.8s linear infinite;
}
.garden-path span:nth-child(1) { top: 8%; animation-delay: 0s; }
.garden-path span:nth-child(2) { top: 24%; animation-delay: -.7s; }
.garden-path span:nth-child(3) { top: 42%; animation-delay: -1.4s; }
.garden-path span:nth-child(4) { top: 62%; animation-delay: -2.1s; }
.garden-path span:nth-child(5) { top: 82%; animation-delay: -2.8s; }
.string-lights {
  position: absolute;
  top: 22%;
  width: 38vw;
  height: 120px;
  border-top: 1px solid rgba(255, 255, 255, .28);
  animation: sceneDrift 12s ease-in-out infinite alternate;
}
.lights-left { left: 4%; transform: rotate(8deg); }
.lights-right { right: 4%; transform: rotate(-8deg); }
.string-lights span {
  position: absolute;
  top: -3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 18px rgba(255, 102, 196, .88);
  animation: lightPulse 2.4s ease-in-out infinite;
}
.string-lights span:nth-child(1) { left: 8%; animation-delay: -.2s; }
.string-lights span:nth-child(2) { left: 28%; animation-delay: -.8s; }
.string-lights span:nth-child(3) { left: 50%; animation-delay: -1.4s; }
.string-lights span:nth-child(4) { left: 70%; animation-delay: -.5s; }
.string-lights span:nth-child(5) { left: 90%; animation-delay: -1.9s; }
.reception-table {
  position: absolute;
  bottom: 26%;
  width: 190px;
  height: 70px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, .06));
  box-shadow: 0 20px 48px rgba(0, 0, 0, .46);
  animation: tablePass 9s ease-in-out infinite alternate;
}
.table-left { left: 11%; }
.table-right { right: 11%; animation-delay: -1.8s; }
.reception-table i {
  position: absolute;
  top: 22px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 16px rgba(255, 102, 196, .52);
}
.reception-table i:nth-child(1) { left: 48px; }
.reception-table i:nth-child(2) { left: 88px; background: white; }
.reception-table i:nth-child(3) { left: 128px; }
.chair-row {
  position: absolute;
  bottom: 14%;
  display: grid;
  grid-template-columns: repeat(4, 34px);
  gap: 13px;
  animation: chairGlide 7s ease-in-out infinite alternate;
}
.row-left { left: 17%; }
.row-right { right: 17%; animation-delay: -2s; }
.chair-row span {
  width: 34px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 7px 7px 3px 3px;
  background: rgba(255, 255, 255, .08);
  box-shadow: inset 0 12px 0 rgba(255, 102, 196, .15);
}
.guest {
  position: absolute;
  width: 24px;
  height: 64px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, #fff, #ff66c4 34%, #15151b 35%);
  box-shadow: 0 20px 44px rgba(0, 0, 0, .38);
  animation: guestWalk 8s ease-in-out infinite;
}
.guest:before {
  content: "";
  position: absolute;
  top: -14px;
  left: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: white;
}
.guest-one { left: 34%; bottom: 30%; animation-delay: -1.2s; }
.guest-two { right: 33%; bottom: 34%; animation-delay: -3s; transform: scale(.9); }
.guest-three { left: 54%; bottom: 39%; animation-delay: -5s; transform: scale(.75); }
.floral-arch {
  position: absolute;
  left: 50%;
  bottom: 41%;
  width: 260px;
  height: 210px;
  transform: translateX(-50%);
  border: 8px solid rgba(255, 255, 255, .18);
  border-bottom: 0;
  border-radius: 140px 140px 0 0;
  animation: archApproach 8s ease-in-out infinite alternate;
}
.floral-arch span {
  position: absolute;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 28px 22px 0 rgba(255, 255, 255, .72), 55px 0 0 rgba(255, 102, 196, .62);
}
.floral-arch span:nth-child(1) { left: -10px; top: 76px; }
.floral-arch span:nth-child(2) { right: 22px; top: 28px; transform: scale(.8); }
.floral-arch span:nth-child(3) { left: 96px; top: -16px; transform: scale(.7); }
@keyframes sceneDrift { from { transform: translate3d(-14px, 0, 0); } to { transform: translate3d(14px, -8px, 0); } }
@keyframes canopyFloat { 0%, 100% { transform: translateX(-50%) translateY(0) scale(1); } 50% { transform: translateX(-50%) translateY(10px) scale(1.02); } }
@keyframes aisleMove { from { transform: translateX(-50%) translateY(-42px) scaleX(.35); opacity: 0; } 35% { opacity: .72; } to { transform: translateX(-50%) translateY(150px) scaleX(1.25); opacity: 0; } }
@keyframes lightPulse { 0%, 100% { opacity: .42; transform: scale(.86); } 50% { opacity: 1; transform: scale(1.25); } }
@keyframes tablePass { from { transform: translateY(-12px) scale(.88); opacity: .68; } to { transform: translateY(18px) scale(1.06); opacity: .96; } }
@keyframes chairGlide { from { transform: translateY(-12px) scale(.92); } to { transform: translateY(12px) scale(1.05); } }
@keyframes guestWalk { 0%, 100% { translate: 0 0; } 50% { translate: 18px -10px; } }
@keyframes archApproach { from { transform: translateX(-50%) translateY(-10px) scale(.92); opacity: .72; } to { transform: translateX(-50%) translateY(10px) scale(1.04); opacity: 1; } }
@media (max-width: 700px) {
  .tent-canopy { width: 110vw; top: 18%; }
  .garden-path { width: 78vw; }
  .table-left { left: -18%; }
  .table-right { right: -18%; }
  .row-left { left: 2%; }
  .row-right { right: 2%; }
  .floral-arch { width: 200px; height: 170px; }
}

/* Logo integration */
.brand-logo {
  width: 56px;
  height: 40px;
  object-fit: contain;
  border: 1px solid var(--line-hot);
  border-radius: 8px;
  background: #000;
  padding: 3px;
  box-shadow: 0 0 28px rgba(255, 102, 196, .22);
}
.hero-logo {
  display: block;
  width: min(420px, 78vw);
  height: auto;
  max-height: 230px;
  object-fit: contain;
  margin: 0 auto 24px;
  border: 1px solid rgba(255, 102, 196, .38);
  border-radius: 12px;
  background: rgba(0, 0, 0, .72);
  padding: clamp(12px, 2vw, 20px);
  box-shadow: 0 26px 80px rgba(0, 0, 0, .5), 0 0 54px rgba(255, 102, 196, .18);
}
.hero-content .eyebrow {
  color: var(--white);
  font-size: clamp(15px, 2vw, 22px);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-content .eyebrow::after {
  content: "";
  display: block;
  width: 92px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: var(--pink);
  box-shadow: 0 0 22px rgba(255, 102, 196, .62);
}
@media (max-width: 560px) {
  .brand-logo {
    width: 44px;
    height: 34px;
  }
  .hero-logo {
    width: min(330px, 100%);
    margin-inline: 0;
  }
  .hero-content .eyebrow::after {
    margin-left: 0;
  }
}


/* Request availability text spacing cleanup */
.quote-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.quote-copy .section-kicker {
  margin-bottom: 0;
}
.quote-copy h2 {
  margin-bottom: 0;
}
.quote-copy > p {
  max-width: 520px;
  line-height: 1.65;
}
.quote-copy .contact-note {
  margin-top: 8px;
}


/* Guest count custom field */
.custom-guest-count {
  display: none;
}
.custom-guest-count.is-visible {
  display: block;
}

/* Past events marquee gallery */
.past-events {
  width: 100%;
  padding: clamp(62px, 9vw, 104px) 0;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 102, 196, .18), transparent 28%),
    linear-gradient(180deg, #08080b, #0d0d12);
}
.events-heading {
  width: min(1160px, calc(100% - 36px));
  margin-inline: auto;
}
.events-heading h2 {
  margin-bottom: 0;
  line-height: 1.08;
}
.events-update {
  display: block;
  margin-top: 28px;
  margin-bottom: 0;
  line-height: 1.55;
  max-width: 760px;
}
.marquee-gallery {
  position: relative;
  width: 100%;
  margin-top: 32px;
  overflow: hidden;
}
.marquee-gallery::before,
.marquee-gallery::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(130px, 18vw);
  pointer-events: none;
}
.marquee-gallery::before {
  left: 0;
  background: linear-gradient(90deg, #08080b, rgba(8, 8, 11, 0));
}
.marquee-gallery::after {
  right: 0;
  background: linear-gradient(270deg, #08080b, rgba(8, 8, 11, 0));
}
.marquee-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding-inline: 18px;
  animation: eventMarquee 44s linear infinite;
}
.marquee-gallery:hover .marquee-track {
  animation-play-state: paused;
}
.event-tile {
  position: relative;
  flex: 0 0 clamp(240px, 28vw, 390px);
  height: clamp(240px, 34vw, 420px);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-hot);
  border-radius: 8px;
  background-color: #121218;
  box-shadow: var(--shadow);
}
.event-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .72)),
    var(--event-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}
.event-tile::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 6px;
  pointer-events: none;
}
.event-tile figcaption {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 1;
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .02em;
}
.event-one { --event-image: radial-gradient(circle at 50% 24%, rgba(255,255,255,.82) 0 6%, transparent 7%), radial-gradient(circle at 34% 48%, rgba(255,102,196,.82) 0 8%, transparent 9%), linear-gradient(135deg, #25101a, #ff66c4 48%, #101014); }
.event-two { --event-image: linear-gradient(120deg, transparent 0 34%, rgba(255,255,255,.28) 35% 36%, transparent 37%), linear-gradient(245deg, transparent 0 38%, rgba(255,102,196,.38) 39% 40%, transparent 41%), linear-gradient(135deg, #07070a, #321020 52%, #ff66c4); }
.event-three { --event-image: radial-gradient(circle at 28% 24%, rgba(255,102,196,.92) 0 9%, transparent 10%), radial-gradient(circle at 68% 30%, rgba(255,255,255,.74) 0 7%, transparent 8%), linear-gradient(160deg, #16161d, #4b1730 55%, #ff66c4); }
.event-four { --event-image: radial-gradient(circle at 50% 18%, rgba(255,255,255,.78) 0 9%, transparent 10%), radial-gradient(circle at 42% 40%, rgba(255,102,196,.92) 0 12%, transparent 13%), radial-gradient(circle at 64% 48%, rgba(239,169,229,.82) 0 10%, transparent 11%), linear-gradient(155deg, #07070a, #26101b); }
.event-five { --event-image: linear-gradient(90deg, rgba(255,255,255,.16) 0 1px, transparent 1px), linear-gradient(180deg, rgba(255,102,196,.18), transparent), linear-gradient(135deg, #111118, #24242d 54%, #ff66c4); background-size: 42px 42px, cover, cover; }
.event-six { --event-image: radial-gradient(circle at 70% 26%, rgba(255,102,196,.9) 0 8%, transparent 9%), linear-gradient(115deg, rgba(255,255,255,.28) 0 18%, transparent 19%), linear-gradient(140deg, #08080b, #3a1226 58%, #ff66c4); }
@keyframes eventMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 9px)); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}
@media (max-width: 560px) {
  .event-tile {
    flex-basis: 78vw;
    height: 320px;
  }
  .marquee-photo-button {
    flex-basis: 78vw;
    height: 320px;
  }
}

/* Drop-in event image support */
.event-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity .35s ease;
}
.event-tile.has-event-image img {
  opacity: 1;
}
.marquee-photo-button {
  flex: 0 0 clamp(240px, 28vw, 390px);
  height: clamp(240px, 34vw, 420px);
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
}
.marquee-photo-button .event-tile {
  width: 100%;
  height: 100%;
  flex: none;
}
.marquee-photo-button:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 6px;
}
.event-tile.has-event-image::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .74));
  z-index: 1;
}
.marquee-photo-tile.has-event-image::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(0, 0, 0, .16));
}
.event-tile.has-event-image figcaption,
.event-tile.has-event-image::after {
  z-index: 2;
}
.photo-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, .86);
}
.photo-lightbox.is-open {
  display: flex;
}
.photo-lightbox img {
  max-width: min(96vw, 1200px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .55);
}
.photo-lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 999px;
  background: rgba(0, 0, 0, .48);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

/* Contact phone links */
.contact-note a,
.site-footer a {
  color: var(--pink);
  font-weight: 900;
}
.contact-note a:hover,
.site-footer a:hover {
  color: var(--white);
}

/* Client reviews */
.reviews-section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(62px, 9vw, 104px) 0;
}
.reviews-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 18px;
  align-items: start;
}
.review-form,
.review-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  box-shadow: var(--shadow);
}
.review-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
}
.rating-field {
  display: block;
  grid-column: auto;
}
.star-picker {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.star-picker label {
  cursor: pointer;
}
.star-picker input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.star-picker span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--soft);
  background: #07070a;
  font-size: 24px;
  transition: color .18s ease, border-color .18s ease, background .18s ease, transform .18s ease;
}
.star-picker label:hover span,
.star-picker input:checked + span {
  color: var(--pink);
  border-color: var(--pink);
  background: var(--pink-soft);
  transform: translateY(-2px);
}
.reviews-list {
  display: grid;
  gap: 14px;
}
.review-card {
  padding: 24px;
}
.review-stars {
  color: var(--pink);
  font-size: 20px;
  letter-spacing: .08em;
}
.review-card p {
  margin: 12px 0 16px;
  color: var(--muted);
  line-height: 1.65;
}
.review-card strong {
  color: var(--white);
}
@media (max-width: 900px) {
  .reviews-layout {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .star-picker {
    justify-content: space-between;
  }
  .star-picker span {
    width: 38px;
    height: 38px;
  }
}

/* Static light brand refresh */
:root {
  color-scheme: light;
  --black: #ffffff;
  --panel: #ffffff;
  --panel-2: #ffffff;
  --white: #111111;
  --muted: #303030;
  --soft: #666666;
  --line: rgba(0, 0, 0, .14);
  --line-hot: rgba(255, 102, 196, .48);
  --shadow: 0 18px 46px rgba(0, 0, 0, .10);
}
body {
  color: #111111;
  background: #ffffff;
}
.site-header {
  background: rgba(255, 255, 255, .92);
  border-bottom-color: rgba(0, 0, 0, .12);
}
.brand,
.nav-links,
.nav-links a,
.site-footer p:first-child,
h1,
h2,
h3,
label,
legend {
  color: #111111;
}
.nav-links,
.hero-copy,
.intro > p,
.quote-copy > p,
.item-card p,
.package-grid p,
.steps p,
.rental-strip span,
.contact-note span,
.review-card p {
  color: #303030;
}
.hero {
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 102, 196, .18), transparent 26%),
    radial-gradient(circle at 86% 12%, rgba(0, 0, 0, .06), transparent 24%),
    linear-gradient(135deg, #ffffff 0%, #fff7fb 58%, #ffffff 100%);
}
.hero-art {
  opacity: .16;
  filter: grayscale(1) contrast(1.08) brightness(1.15) sepia(.35) hue-rotate(285deg) saturate(1.4);
}
.hero:before {
  background-image: linear-gradient(rgba(0,0,0,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,.045) 1px, transparent 1px);
}
.hero:after {
  background: linear-gradient(0deg, #ffffff, rgba(255, 255, 255, .86), rgba(255, 255, 255, 0));
}
.hero-content h1 {
  display: none;
}
.hero-content .eyebrow,
.section-kicker,
.package-grid span,
.steps span,
.review-stars,
.form-message,
.contact-note a,
.site-footer a {
  color: var(--pink);
}
.hero-logo,
.brand-logo {
  background: #000000;
}
.rental-strip {
  background: rgba(0, 0, 0, .12);
  border-color: rgba(0, 0, 0, .12);
}
.rental-strip div,
.item-card,
.package-grid article,
.steps li,
.quote-form,
.review-form,
.review-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, .14);
  box-shadow: var(--shadow);
}
.packages,
.past-events {
  background: #fafafa;
  border-color: rgba(0, 0, 0, .12);
}
.marquee-gallery::before {
  background: linear-gradient(90deg, #fafafa, rgba(250, 250, 250, 0));
}
.marquee-gallery::after {
  background: linear-gradient(270deg, #fafafa, rgba(250, 250, 250, 0));
}
input,
select,
textarea,
.star-picker span {
  background: #ffffff;
  color: #111111;
  border-color: rgba(0, 0, 0, .22);
}
fieldset {
  border-color: rgba(0, 0, 0, .18);
}
fieldset label {
  color: #303030;
}
.button.secondary,
.nav-cta {
  background: #ffffff;
  color: #111111;
}
.button.primary {
  color: #ffffff;
}
.site-footer {
  background: #ffffff;
  border-top-color: rgba(0, 0, 0, .12);
  color: #303030;
}


/* Bow logo placement */
.brand-logo {
  width: 46px;
  height: 36px;
  object-fit: contain;
  border: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}
.site-footer p:first-child {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-logo {
  width: 42px;
  height: 32px;
  object-fit: contain;
  display: inline-block;
}
@media (max-width: 560px) {
  .brand-logo {
    width: 40px;
    height: 30px;
  }
  .footer-logo {
    width: 36px;
    height: 28px;
  }
}

/* Hero background video */
.hero-art.video-hero {
  opacity: .5;
  filter: none;
  z-index: -2;
}
.hero-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.hero {
  background: #ffffff;
}
.hero:after {
  background: linear-gradient(0deg, #ffffff, rgba(255, 255, 255, .72), rgba(255, 255, 255, .18));
}
.hero:before {
  background-image: linear-gradient(rgba(0,0,0,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,.035) 1px, transparent 1px);
}




/* Mobile and tablet polish */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
}

button,
input,
select,
textarea,
.button {
  min-width: 0;
}

@media (max-width: 1100px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px 16px;
    padding: 12px clamp(14px, 3vw, 28px);
  }

  .brand {
    min-width: 0;
  }

  .brand span:last-child {
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .nav-links {
    grid-column: 1 / -1;
    display: flex !important;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 2px 2px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    padding: 8px 12px;
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 999px;
    background: #fff;
  }

  .nav-cta {
    min-height: 40px;
    padding-inline: 14px;
  }

  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .package-grid,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-section,
  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .quote-copy {
    position: static;
  }
}

@media (min-width: 761px) and (max-width: 1100px) {
  .hero {
    min-height: 720px;
  }

  .hero-logo {
    width: min(360px, 58vw);
  }

  .rental-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 660px;
    align-items: end;
  }

  .hero-content {
    width: min(100% - 28px, 620px);
    margin-bottom: 44px;
  }

  .hero-logo {
    width: min(300px, 100%);
    max-height: 180px;
  }

  .hero-copy {
    font-size: 16px;
    line-height: 1.6;
  }

  .hero-actions {
    gap: 10px;
  }

  .rental-strip,
  .catalog-grid,
  .package-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .section,
  .quote-section,
  .reviews-section {
    width: min(100% - 28px, 1160px);
    padding: 52px 0;
  }

  .packages,
  .past-events {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .section h2,
  .quote-section h2 {
    font-size: clamp(30px, 9vw, 44px);
    line-height: 1.05;
  }

  .quote-form,
  fieldset {
    grid-template-columns: 1fr;
  }

  .event-tile {
    flex-basis: 84vw;
    height: min(360px, 96vw);
  }
  .marquee-photo-button {
    flex-basis: 84vw;
    height: min(360px, 96vw);
  }

  .marquee-track {
    gap: 12px;
    padding-inline: 14px;
  }
}

@media (max-width: 560px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .brand {
    justify-content: center;
  }

  .nav-cta {
    width: 100%;
  }

  .nav-links {
    justify-content: flex-start;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .button {
    width: 100%;
  }

  .quote-form {
    padding: 20px;
  }

  .star-picker {
    gap: 6px;
  }

  .star-picker span {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .site-footer {
    display: grid;
    gap: 10px;
    text-align: center;
  }

  .site-footer p:first-child {
    justify-content: center;
  }
}

@media (max-width: 1100px) {
  .nav-links a,
  .nav-links a:hover,
  .nav-links a:focus-visible {
    color: var(--ink);
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    border-color: var(--pink);
    color: var(--pink);
  }
}

/* Brand pink text refinements */
.site-header,
.site-header a,
.site-header .brand,
.site-footer,
.site-footer a,
.site-footer p,
.site-footer strong {
  color: #ff66c4;
}

.event-tile,
.event-tile h3,
.event-tile p {
  color: #ff66c4;
}

.past-events .event-tile figcaption,
.past-events .event-tile figcaption *,
.past-events .event-tile h3,
.past-events .event-tile p {
  color: #ff66c4 !important;
}

/* Mobile centering and side-space cleanup */
html,
body {
  width: 100%;
  min-width: 0;
  overflow-x: hidden;
}

body {
  position: relative;
}

main,
.site-header,
.hero,
.rental-strip,
.packages,
.past-events,
.reviews-section,
.quote-section,
.site-footer {
  max-width: 100%;
}

main {
  overflow: hidden;
}

.hero-art,
.walkthrough-stage,
.hero-video,
.marquee-gallery {
  max-width: 100%;
}

@media (max-width: 900px) {
  .site-header {
    width: 100%;
    margin-inline: auto;
  }

  .hero-content,
  .section,
  .quote-section,
  .reviews-section,
  .events-heading {
    margin-inline: auto;
  }

  .section-heading,
  .intro,
  .quote-copy,
  .reviews-heading,
  .events-heading {
    text-align: center;
  }

  .section-heading h2,
  .quote-copy > p,
  .intro > p {
    margin-inline: auto;
  }

  .quote-form,
  .review-form,
  .reviews-list,
  .item-card,
  .package-grid article,
  .steps li,
  .rental-strip div {
    width: 100%;
    max-width: 640px;
    margin-inline: auto;
  }

  .tent-canopy {
    left: 50%;
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .hero-content {
    text-align: center !important;
    margin-inline: auto !important;
    padding-inline: 0;
  }

  .hero-logo {
    margin-inline: auto !important;
  }

  .hero-content .eyebrow::after {
    margin-inline: auto !important;
  }

  .hero-actions {
    justify-content: center !important;
  }

  .button {
    max-width: 360px;
    margin-inline: auto;
  }

  .packages,
  .past-events {
    width: 100%;
    padding-left: 14px;
    padding-right: 14px;
  }

  .past-events .section-heading,
  .reviews-section .section-heading {
    width: min(100%, 640px);
  }

  .marquee-gallery {
    margin-left: -14px;
    margin-right: -14px;
    width: calc(100% + 28px);
  }

  .event-tile {
    flex-basis: min(84vw, 360px);
  }
}

@media (max-width: 560px) {
  .site-header,
  .site-footer {
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand,
  .site-footer p,
  .site-footer p:first-child {
    justify-content: center;
    text-align: center;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-cta,
  .button {
    width: min(100%, 360px);
  }

  .section,
  .quote-section,
  .reviews-section {
    width: min(100% - 28px, 640px);
  }

  .quote-form,
  .review-form {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-copy,
  .section h2,
  .quote-section h2,
  .intro > p,
  .quote-copy > p {
    text-align: center;
  }
}

/* Product catalog page */
.catalog-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.catalog-link:hover,
.catalog-link:focus-visible {
  border-color: var(--pink);
  transform: translateY(-2px);
}
.catalog-link-text {
  display: inline-block;
  margin-top: 22px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.catalog-page {
  background: #fff;
  color: var(--ink);
}
.catalog-hero,
.catalog-section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}
.catalog-hero {
  padding: clamp(72px, 10vw, 128px) 0 clamp(34px, 6vw, 64px);
  text-align: center;
}
.catalog-hero h1 {
  margin: 0 auto;
  max-width: 880px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(42px, 7vw, 84px);
  line-height: .95;
  font-weight: 900;
}
.catalog-hero p:not(.section-kicker) {
  max-width: 680px;
  margin: 22px auto 0;
  color: #444;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.6;
}
.catalog-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.catalog-tabs a,
.product-meta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(0, 0, 0, .14);
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  text-decoration: none;
  font-weight: 900;
}
.catalog-tabs a:hover,
.catalog-tabs a:focus-visible,
.product-meta a:hover,
.product-meta a:focus-visible {
  border-color: var(--pink);
  color: var(--pink);
}
.product-meta .request-paused {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(0, 0, 0, .14);
  border-radius: 999px;
  color: #777;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  cursor: not-allowed;
}
.catalog-section {
  padding: clamp(44px, 7vw, 82px) 0;
  border-top: 1px solid rgba(0, 0, 0, .12);
  scroll-margin-top: 120px;
}
.catalog-section-heading h2 {
  color: var(--ink);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}
.product-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .08);
}
.product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  background: #f7f7f7;
}
.product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
}
.product-info h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.1;
}
.product-info p {
  margin: 0;
  color: #505050;
  line-height: 1.55;
}
.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.product-meta strong {
  color: var(--pink);
  font-size: 18px;
  white-space: nowrap;
}
.place-setting-card .product-meta {
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.place-setting-card .product-meta strong {
  flex: 0 1 auto;
  white-space: nowrap;
}
.place-setting-card .product-meta a {
  flex: 0 0 auto;
}
@media (max-width: 1180px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 820px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .catalog-section-heading {
    text-align: center;
  }
}
@media (max-width: 560px) {
  .catalog-hero,
  .catalog-section {
    width: min(100% - 28px, 640px);
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-meta {
    align-items: stretch;
    flex-direction: column;
  }
  .product-meta a {
    width: 100%;
  }
  .place-setting-card .product-meta {
    align-items: center;
    flex-direction: row;
  }
  .place-setting-card .product-meta a {
    width: auto;
  }
}


/* Match Request Availability to Rental Catalog sizing and colors */
.quote-section {
  width: min(1160px, calc(100% - 36px));
  display: block;
  color: var(--ink);
  background: #ffffff;
}

.quote-copy {
  position: static;
  display: block;
  margin-bottom: 28px;
}

.quote-copy .section-kicker {
  color: var(--pink);
  margin: 0 0 14px;
}

.quote-section h2,
.quote-copy h2 {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
}

.quote-copy > p {
  max-width: 760px;
  margin-top: 18px;
  color: #303030;
}

.quote-copy .contact-note {
  max-width: 760px;
  border-color: var(--pink);
  background: rgba(255, 102, 196, .08);
  color: var(--ink);
}

.quote-copy .contact-note span,
.quote-copy .contact-note a {
  color: #303030;
}

.quote-form {
  width: 100%;
  background: #ffffff;
  border-color: rgba(0, 0, 0, .14);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .08);
}

.quote-form label,
.quote-form legend {
  color: var(--ink);
}

.quote-form fieldset {
  border-color: rgba(0, 0, 0, .14);
}

.quote-form fieldset label {
  color: #303030;
}

@media (max-width: 760px) {
  .quote-section {
    width: min(100% - 28px, 1160px);
  }

  .quote-copy,
  .quote-section h2,
  .quote-copy > p,
  .quote-copy .contact-note {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

/* Request Availability scale refinement */
.quote-section {
  width: min(1160px, calc(100% - 36px));
  padding: clamp(62px, 9vw, 104px) 0;
}

.quote-copy {
  max-width: 760px;
  margin-left: 0;
  margin-right: auto;
}

.quote-section h2,
.quote-copy h2 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
}

.quote-copy > p,
.quote-copy .contact-note {
  font-size: 18px;
}

.quote-form {
  max-width: 960px;
  margin-top: 28px;
  margin-left: 0;
  margin-right: auto;
  padding: 28px;
  gap: 14px;
}

.quote-form fieldset {
  gap: 10px 14px;
  padding: 14px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  min-height: 46px;
}

.quote-form textarea {
  min-height: 112px;
}

@media (max-width: 900px) {
  .quote-copy,
  .quote-form {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 560px) {
  .quote-form {
    padding: 18px;
  }
}

/* Slightly reduce section heading scale */
.section h2,
.quote-section h2 {
  font-size: clamp(32px, 4.75vw, 59px);
}

@media (max-width: 760px) {
  .section h2,
  .quote-section h2 {
    font-size: clamp(29px, 8.55vw, 42px);
  }
}

/* Direct 5% reduction for key section headings */
#intro-title,
#rentals-title,
#quote-title {
  font-size: clamp(32px, 4.75vw, 59px);
}

@media (max-width: 760px) {
  #intro-title,
  #rentals-title,
  #quote-title {
    font-size: clamp(29px, 8.55vw, 42px);
  }
}

/* Match process heading to reduced section heading scale */
#process-title {
  font-size: clamp(32px, 4.75vw, 59px);
}

@media (max-width: 760px) {
  #process-title {
    font-size: clamp(29px, 8.55vw, 42px);
  }
}

/* Normalize quote and events headings */
#quote-title,
#events-title {
  margin: 0;
  max-width: 760px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(32px, 4.75vw, 59px);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 900;
}

@media (max-width: 760px) {
  #quote-title,
  #events-title {
    font-size: clamp(29px, 8.55vw, 42px);
    line-height: 1.05;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

/* Normalize review heading with quote and events headings */
#quote-title,
#events-title,
#reviews-title {
  margin: 0;
  max-width: 760px;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(32px, 4.75vw, 59px);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 900;
}

@media (max-width: 760px) {
  #quote-title,
  #events-title,
  #reviews-title {
    font-size: clamp(29px, 8.55vw, 42px);
    line-height: 1.05;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

/* Normalize Rental Catalog and Request Availability kicker labels */
#rentals-title ~ .section-kicker,
.section-heading .section-kicker,
.quote-copy .section-kicker {
  margin: 0 0 14px;
  color: var(--pink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}

/* Match Prefer to call phone link to Request Availability pink */
.quote-copy .contact-note a {
  color: var(--pink);
  font-weight: 900;
}

/* Privacy policy page */
.policy-page {
  background: #ffffff;
  color: var(--ink);
}
.policy-hero,
.policy-content {
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
}
.policy-hero {
  padding: clamp(72px, 10vw, 128px) 0 34px;
  text-align: center;
}
.policy-hero h1 {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(42px, 7vw, 84px);
  line-height: .95;
  font-weight: 900;
}
.policy-hero p:not(.section-kicker) {
  margin: 18px 0 0;
  color: #505050;
  font-weight: 800;
}
.policy-content {
  padding: 32px 0 clamp(72px, 10vw, 120px);
}
.policy-content h2 {
  margin: 34px 0 10px;
  color: var(--ink);
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.08;
  font-weight: 900;
}
.policy-content p {
  margin: 0 0 16px;
  color: #303030;
  font-size: 18px;
  line-height: 1.7;
}
.policy-content a {
  color: var(--pink);
  font-weight: 900;
}
.site-footer a[href$="privacy-policy.html"] {
  color: var(--pink);
  font-weight: 900;
}
@media (max-width: 560px) {
  .policy-hero,
  .policy-content {
    width: min(100% - 28px, 920px);
  }
  .policy-content p {
    font-size: 16px;
  }
}

.site-footer a[href$="cancellation-policy.html"] {
  color: var(--pink);
  font-weight: 900;
}

/* Keep footer policy links visible on tablet and mobile */
.site-footer p:last-child {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 6px 10px;
  min-width: 0;
}

.site-footer p:last-child a {
  display: inline-flex;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .site-footer {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-footer p:last-child {
    justify-content: center;
    max-width: min(100%, 680px);
    line-height: 1.7;
  }
}

@media (max-width: 560px) {
  .site-footer p:last-child {
    display: grid;
    justify-items: center;
    gap: 6px;
  }

  .site-footer p:last-child a {
    white-space: normal;
    text-align: center;
  }
}




.site-footer a[href$="damage-loss-policy.html"] {
  color: var(--pink);
  font-weight: 900;
}

/* Mobile/tablet footer policy link spacing for longer policy labels */
@media (max-width: 900px) {
  .site-footer p:last-child a[href$="privacy-policy.html"],
  .site-footer p:last-child a[href$="cancellation-policy.html"],
  .site-footer p:last-child a[href$="damage-loss-policy.html"] {
    padding: 2px 4px;
  }
}

@media (max-width: 560px) {
  .site-footer p:last-child a[href$="damage-loss-policy.html"] {
    max-width: 260px;
    line-height: 1.35;
  }
}

/* Extra clearance for the Past Events update note under the large heading */
.past-events #events-title {
  line-height: 1.16;
  padding-bottom: 8px;
}
.past-events .events-update {
  display: block;
  margin-top: 36px;
  line-height: 1.7;
}

/* Click-through past event cards */
.event-link {
  flex: 0 0 clamp(240px, 28vw, 390px);
  height: clamp(240px, 34vw, 420px);
  display: block;
  color: inherit;
  text-decoration: none;
  border-radius: 8px;
}
.event-link .event-tile {
  width: 100%;
  height: 100%;
  flex: none;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.event-link:hover .event-tile,
.event-link:focus-visible .event-tile {
  transform: translateY(-4px);
  border-color: var(--pink);
  box-shadow: 0 20px 46px rgba(0, 0, 0, .16);
}
.event-link:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 6px;
}

/* Past event gallery pages */
.event-gallery-page {
  background: #fff;
  color: var(--ink);
  overflow-x: hidden;
}
.event-gallery-hero {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(78px, 10vw, 130px) 0 34px;
  text-align: center;
}
.event-gallery-hero h1 {
  margin: 10px 0 12px;
  color: var(--pink);
  font-family: var(--display);
  font-size: clamp(2.4rem, 7vw, 5.6rem);
  line-height: .95;
}
.event-gallery-hero p:last-child {
  width: min(760px, 100%);
  margin: 0 auto;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.7;
}
.back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--pink);
  font-weight: 900;
  text-decoration: none;
}
.back-link:hover,
.back-link:focus-visible {
  color: var(--ink);
}
.event-gallery-grid {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 clamp(76px, 10vw, 124px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.gallery-photo {
  min-width: 0;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 102, 196, .14), rgba(0, 0, 0, .04));
  display: grid;
  place-items: center;
  overflow: hidden;
}
.gallery-photo.cover-photo {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-photo span {
  padding: 18px;
  color: var(--pink);
  font-weight: 900;
  text-align: center;
}
.gallery-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.gallery-photo.has-gallery-image {
  cursor: zoom-in;
}
.gallery-photo.has-gallery-image:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 4px;
}
.gallery-photo.has-gallery-image img {
  transition: transform .22s ease;
}
.gallery-photo.has-gallery-image:hover img,
.gallery-photo.has-gallery-image:focus-visible img {
  transform: scale(1.03);
}
.gallery-open {
  overflow: hidden;
}
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(0, 0, 0, .88);
}
.gallery-lightbox.is-open {
  display: flex;
}
.gallery-lightbox img {
  max-width: min(100%, 1180px);
  max-height: calc(100vh - 110px);
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .45);
}
.gallery-lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 999px;
  padding: 10px 16px;
  background: #fff;
  color: #000;
  font-weight: 900;
  cursor: pointer;
}
.gallery-lightbox-close:hover,
.gallery-lightbox-close:focus-visible {
  background: var(--pink);
  color: #fff;
}

@media (max-width: 900px) {
  .event-link {
    flex-basis: 78vw;
    height: 320px;
  }
  .event-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .event-link {
    flex-basis: min(84vw, 360px);
    height: min(360px, 96vw);
  }
  .events-update {
    margin-top: 34px;
    line-height: 1.65;
  }
  .event-gallery-hero {
    width: min(100% - 28px, 640px);
    padding-top: 62px;
  }
  .event-gallery-grid {
    width: min(100% - 28px, 640px);
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .gallery-photo.cover-photo {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* Final override: keep the Past Events update clear of heading descenders */
.past-events #events-title {
  line-height: 1.18;
  padding-bottom: 10px;
}
.past-events .events-update {
  margin-top: 42px;
  line-height: 1.75;
}

@media (max-width: 560px) {
  .past-events .events-update {
    margin-top: 38px;
  }
  .marquee-photo-button {
    flex-basis: 78vw;
    height: 320px;
  }
}
