
:root {
  --header-offset: 88px;
  --ink: #111111;
  --paper: #fbfaf7;
  --muted: #706a5f;
  --line: #e8e2d5;
  --gold: #c69b36;
  --gold-soft: #f4e7c2;
  --deep: #090909;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

main {
  max-width: 100%;
  overflow-x: clip;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  align-items: center;
  background: rgba(251, 250, 247, 0.78);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(232, 226, 213, 0.82);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 14px 6vw;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
  min-width: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-logo-mark {
  display: block;
  flex: 0 0 auto;
  height: 54px;
  object-fit: contain;
  width: auto;
}

nav {
  display: flex;
  gap: 20px;
  font-size: 0.9rem;
  font-weight: 850;
  min-width: 0;
}

nav a {
  align-items: center;
  display: inline-flex;
}

.build-link {
  background: var(--ink);
  border-radius: 999px;
  color: var(--white);
  padding: 9px 14px;
}

.hero {
  align-items: center;
  color: var(--white);
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  padding: 110px 6vw 70px;
  position: relative;
}

.hero-bg,
.hero-shade {
  inset: 0;
  position: absolute;
}

.hero-bg {
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.08);
  animation: heroFade 30s infinite;
}

.hero-bg-one {
  opacity: 1;
  background-image:
    linear-gradient(100deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.16)),
    url("assets/gallery/gallery-ballroom-uplights.jpg");
}

.hero-bg-two {
  animation-delay: 10s;
  background-image:
    linear-gradient(100deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.12)),
    url("assets/gallery/gallery-green-stage.jpg");
}

.hero-bg-three {
  animation-delay: 20s;
  background-image:
    linear-gradient(100deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.14)),
    url("assets/gallery/gallery-lounge-sound.jpg");
}

.hero-shade {
  background:
    radial-gradient(circle at 72% 22%, rgba(198, 155, 54, 0.24), transparent 34%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.58), transparent 44%);
}

.hero-content {
  max-width: 820px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.18em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(3.2rem, 8vw, 7.2rem);
  letter-spacing: -0.04em;
  line-height: 0.92;
  margin: 0 0 24px;
  max-width: 950px;
}

.hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
  max-width: 690px;
}

.hero-cta,
.primary-action,
.secondary-action {
  align-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 950;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
}

.hero-cta,
.primary-action {
  background: var(--gold);
  color: var(--ink);
}

.hero-cta {
  margin-top: 18px;
}

.secondary-action {
  background: var(--ink);
  color: var(--white);
}

.apple-scroll {
  background: var(--deep);
  color: var(--white);
  display: grid;
  grid-template-areas: "layer";
  isolation: isolate;
  min-height: 205svh;
  overflow: visible;
  padding: calc(var(--header-offset) + 22px) 6vw 18svh;
  position: relative;
}

.scroll-card {
  background:
    radial-gradient(circle at 74% 26%, rgba(198, 155, 54, 0.24), transparent 28%),
    linear-gradient(135deg, #181818, #080808);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 46px;
  display: grid;
  gap: clamp(24px, 5vw, 70px);
  grid-area: layer;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 0.86fr);
  margin: 0 auto;
  min-height: min(76svh, 720px);
  opacity: 0;
  overflow: hidden;
  padding: clamp(28px, 6vw, 80px);
  pointer-events: none;
  position: sticky;
  top: var(--header-offset);
  transform: translateY(18px) scale(0.985);
  transition: opacity 220ms linear, transform 220ms linear;
  width: min(100%, 1320px);
  will-change: opacity, transform;
}

.scroll-card.is-fade-active {
  pointer-events: auto;
}

.scroll-card:nth-child(1) {
  z-index: 1;
}

.scroll-card:nth-child(2) {
  z-index: 2;
}

.scroll-card:nth-child(3) {
  z-index: 3;
}

.scroll-copy {
  align-self: end;
  max-width: 780px;
  overflow: visible;
  padding: 10px 0 14px;
}

.scroll-card h2,
.section-heading h2,
.contact h2,
.signin h2 {
  font-size: clamp(2.3rem, 5.8vw, 5.6rem);
  letter-spacing: -0.045em;
  line-height: 1.04;
  margin: 0 0 18px;
}

.scroll-card h2 {
  font-size: clamp(2.1rem, 4.9vw, 4.9rem);
  max-width: 780px;
}

.scroll-card p:not(.eyebrow),
.section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  max-width: 760px;
}

.tagline {
  color: var(--gold);
  display: inline-block;
  font-size: 0.94rem;
  font-weight: 950;
  letter-spacing: 0.02em;
  margin-top: 12px;
}

.service-visual {
  align-self: stretch;
  background-position: center;
  background-size: cover;
  border: 0;
  border-radius: 34px;
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.3);
  min-height: 340px;
  overflow: hidden;
  position: relative;
  transform: translateZ(0);
}

.service-visual::before {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.38), transparent 58%),
    linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, 0.56));
  content: "";
  inset: 0;
  position: absolute;
}

.service-visual span {
  display: none;
  bottom: 24px;
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 2.5rem);
  font-weight: 950;
  left: 24px;
  letter-spacing: -0.04em;
  position: absolute;
}

.service-visual-a {
  background-image: url("assets/gallery/gallery-lounge-sound.jpg");
}

.service-visual-b {
  background-image: url("assets/gallery/gallery-ballroom-uplights.jpg");
}

.service-visual-c {
  background-image: url("assets/gallery/gallery-green-stage.jpg");
}

.builder {
  padding: 96px 6vw;
}

.section-heading {
  margin: 0 auto 32px;
  max-width: 970px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  margin-left: auto;
  margin-right: auto;
}

.progress-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.05);
  margin: 0 auto 26px;
  max-width: 1120px;
  padding: 18px;
  position: sticky;
  top: 88px;
  z-index: 10;
}

.progress-label {
  color: var(--muted);
  display: flex;
  font-size: 0.9rem;
  font-weight: 850;
  justify-content: space-between;
  margin-bottom: 10px;
}

.progress-track {
  background: #eee6d6;
  border-radius: 999px;
  height: 12px;
  overflow: hidden;
}

.progress-fill {
  background: linear-gradient(90deg, var(--gold), #f5d36c);
  border-radius: inherit;
  height: 100%;
  transition: width 220ms ease;
  width: 0;
}

.builder-form {
  display: grid;
  gap: 20px;
  margin: 0 auto;
  max-width: 1120px;
}

.builder-layer {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: clamp(22px, 4vw, 40px);
}

.builder-layer[hidden] {
  display: none;
}

.layer-copy {
  align-items: end;
  display: grid;
  gap: 18px;
  grid-template-columns: 0.8fr 1.2fr;
  margin-bottom: 24px;
}

.layer-copy h3,
.summary-layer h3 {
  font-size: clamp(1.7rem, 4vw, 3.4rem);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0;
}

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

#logisticsLayer .field-grid,
#specificQuestions {
  display: flex;
  gap: 16px;
  margin-inline: 0;
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 4px 2px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: none;
  scrollbar-color: var(--gold) #eee6d6;
  scrollbar-width: thin;
}

#logisticsLayer .field-grid::-webkit-scrollbar,
#specificQuestions::-webkit-scrollbar {
  height: 10px;
}

#logisticsLayer .field-grid::-webkit-scrollbar-track,
#specificQuestions::-webkit-scrollbar-track {
  background: #eee6d6;
  border-radius: 999px;
}

#logisticsLayer .field-grid::-webkit-scrollbar-thumb,
#specificQuestions::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 999px;
}

#logisticsLayer .field-grid label,
#specificQuestions label {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.055);
  flex: 0 0 clamp(250px, 32vw, 360px);
  min-height: 128px;
  padding: 18px;
  scroll-snap-align: start;
}

.setup-teardown-note,
.setup-teardown-summary {
  background: #fff7df;
  border: 1px solid #eadbb6;
  border-radius: 18px;
  color: #5f480b;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.45;
  margin: 0 0 18px;
  padding: 13px 15px;
}

.mileage-counter {
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:13px 18px;
  align-items:center;
  border:1px solid rgba(190,151,52,.45);
  border-radius:22px;
  background:linear-gradient(135deg,#fff9e8,#f1e2b6);
  padding:20px;
  box-shadow:0 14px 38px rgba(61,46,10,.08);
  margin-top:18px;
}
.mileage-counter[hidden] { display:none; }
.mileage-copy h4 { margin:0; font-size:1.15rem; letter-spacing:-.025em; }
.mileage-copy > p:last-child { max-width:720px; margin:7px 0 0; color:#665d45; font-size:.78rem; line-height:1.5; }
.mileage-button { min-height:44px; border:0; border-radius:999px; background:#171715; color:#fff; padding:10px 17px; font-weight:900; }
.mileage-button:disabled { cursor:wait; opacity:.66; }
.mileage-status { grid-column:1/-1; margin:0; color:#6b6046; font-size:.72rem; font-weight:750; }
.mileage-status.is-error { color:#962e25; }
.mileage-results { grid-column:1/-1; display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:9px; }
.mileage-results[hidden] { display:none; }
.mileage-results span { display:grid; gap:4px; border:1px solid rgba(114,89,24,.16); border-radius:14px; background:rgba(255,255,255,.62); padding:12px; }
.mileage-results small { color:#776b4d; font-size:.62rem; font-weight:850; text-transform:uppercase; letter-spacing:.06em; }
.mileage-results strong { color:#211c0d; font-size:1rem; }
.mileage-attribution { grid-column:1/-1; color:#817653; font-size:.58rem; }
.mileage-attribution a { color:inherit; font-weight:850; }
.hotel-requirement { grid-column:1/-1; margin:0; border:1px solid #d18d43; border-radius:13px; background:#fff3dc; color:#6f4014; padding:11px 13px; font-size:.72rem; font-weight:850; line-height:1.45; }
.hotel-requirement[hidden] { display:none; }
@media (max-width:680px) {
  .mileage-counter { grid-template-columns:1fr; padding:17px; }
  .mileage-button { width:100%; }
  .mileage-results { grid-template-columns:1fr; }
}

.setup-teardown-summary {
  margin: 6px 0 0;
}

.field-note {
  color: var(--muted);
  display: inline;
  font-size: 0.72rem;
  font-weight: 800;
}

.scroll-preview {
  scroll-behavior: smooth;
}

.option-wheel-hint {
  align-items: center;
  background: #f7f1e4;
  border: 1px solid #eadbb6;
  border-radius: 999px;
  color: #6d520a;
  display: inline-flex;
  font-size: 0.86rem;
  font-weight: 950;
  margin: 0 0 16px;
  padding: 9px 14px;
}

#logisticsLayer .option-wheel-hint,
#specificLayer .option-wheel-hint {
  margin-top: -4px;
  margin-bottom: 14px;
}

.scroll-nudge {
  display: none;
}

.scroll-nudge b {
  display: none;
}

.option-grid {
  display: flex;
  gap: 16px;
  margin-inline: 0;
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 4px 2px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: none;
  scrollbar-color: var(--gold) #eee6d6;
  scrollbar-width: thin;
}

.option-grid::-webkit-scrollbar {
  height: 10px;
}

.option-grid::-webkit-scrollbar-track {
  background: #eee6d6;
  border-radius: 999px;
}

.option-grid::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 999px;
}

.option-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  color: var(--ink);
  cursor: pointer;
  flex: 0 0 clamp(230px, 28vw, 310px);
  min-height: 160px;
  padding: 20px;
  position: relative;
  scroll-snap-align: start;
  text-align: left;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 220ms ease, background 180ms ease, opacity 220ms ease;
}

.option-card::after {
  background: radial-gradient(circle, rgba(245, 211, 108, 0.5), transparent 62%);
  border-radius: inherit;
  content: "";
  inset: -1px;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: scale(0.96);
  transition: opacity 220ms ease, transform 220ms ease;
}

.option-card:hover {
  border-color: rgba(198, 155, 54, 0.78);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.option-card.is-selected {
  background: var(--deep);
  border-color: var(--deep);
  color: var(--white);
}

.option-card.is-selected::after {
  opacity: 0.22;
  transform: scale(1);
}

.option-card.just-selected {
  animation: optionPop 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.option-card span {
  display: block;
  font-size: 1.08rem;
  font-weight: 950;
  margin-bottom: 10px;
}

.option-card small {
  color: inherit;
  display: block;
  line-height: 1.45;
  opacity: 0.72;
}

label {
  color: #24221f;
  display: flex;
  flex-direction: column;
  font-size: 0.88rem;
  font-weight: 900;
  gap: 8px;
}

#logisticsLayer .field-grid label,
#specificQuestions label,
.package-idea-card {
  transition: transform 220ms ease, opacity 220ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

label.field-pulse input,
label.field-pulse select {
  animation: fieldGlow 520ms ease;
}

input,
select,
textarea {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 15px;
  color: var(--ink);
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}

.choice-select {
  cursor: pointer;
}

.choice-select:focus {
  border-color: rgba(198, 155, 54, 0.8);
  box-shadow: 0 0 0 4px rgba(198, 155, 54, 0.14);
  outline: 0;
}

textarea {
  resize: vertical;
}

.full-field {
  margin-top: 16px;
}

.summary-layer {
  align-items: stretch;
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  min-width: 0;
}

.summary-card {
  background: #f7f1e4;
  border: 1px solid #eadbb6;
  border-radius: 24px;
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr);
  min-width: 0;
  padding: 22px;
}

.summary-card h4 {
  font-size: 1.15rem;
  margin: 0;
}

.summary-card ul {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  padding-left: 18px;
}

.quote-preview {
  background: #fffaf0;
  border: 1px solid #eadbb6;
  border-radius: 22px;
  color: var(--ink);
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 18px;
}

.quote-preview span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quote-preview strong {
  display: block;
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1;
}

.quote-preview p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.42;
  margin: 0;
}

.quote-package-area {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.quote-package-area > span {
  color: #6d520a;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.active-package-card,
.package-idea-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(198, 155, 54, 0.34);
  border-radius: 999px;
  overflow: hidden;
}

.active-package-card {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  max-width: 100%;
  min-width: 0;
  padding: 8px 12px 8px 8px;
}

.active-package-card img,
.package-idea-card img {
  border-radius: 999px;
  flex: 0 0 54px;
  height: 54px;
  min-height: 54px;
  object-fit: cover;
  width: 54px;
}

.active-package-card div,
.package-idea-card div {
  display: grid;
  gap: 2px;
  min-width: 0;
  padding: 0;
}

.active-package-card strong,
.package-idea-card strong {
  font-size: 1.05rem;
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
}

.active-package-card p,
.package-idea-card span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
  margin: 0;
  overflow-wrap: anywhere;
}

.package-ideas {
  display: flex;
  gap: 12px;
  max-width: 100%;
  overflow-x: auto;
  padding: 2px 0 8px;
  scroll-snap-type: none;
  scrollbar-color: var(--gold) #eee6d6;
  scrollbar-width: thin;
}

.package-idea-card {
  align-items: center;
  display: inline-flex;
  flex: 0 0 min(260px, 76vw);
  gap: 10px;
  min-width: 0;
  padding: 8px 12px 8px 8px;
  scroll-snap-align: start;
}

.final-contact {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #eadbb6;
  border-radius: 22px;
  display: grid;
  gap: 12px;
  padding: 16px;
}

.final-contact h4,
.final-contact p {
  margin: 0;
}

.final-contact p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.minimum-note {
  color: #6d520a;
  font-weight: 950;
}

.parallax-band {
  background:
    linear-gradient(rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.72)),
    url("https://images.unsplash.com/photo-1521334726092-b509a19597c6?auto=format&fit=crop&w=1800&q=80");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  color: var(--white);
  padding: 100px 6vw;
}

.section-heading.light p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.backline-grid article {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  backdrop-filter: blur(16px);
  padding: 24px;
}

.backline-grid h3 {
  margin: 0 0 10px;
}

.backline-grid p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.55;
}

.founder-spotlight {
  align-items: center;
  display: grid;
  gap: clamp(22px, 5vw, 48px);
  grid-template-columns: 1fr minmax(260px, 420px);
  margin-top: 58px;
}

.founder-spotlight h3 {
  font-size: clamp(2rem, 4.2vw, 4.3rem);
  letter-spacing: -0.045em;
  line-height: 1;
  margin: 0 0 16px;
}

.founder-spotlight p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.62;
  max-width: 720px;
}

.founder-button {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  color: var(--white);
  cursor: pointer;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: left;
}



.founder-button {
  animation: founderPulse 2.4s ease-in-out infinite;
}

.founder-button:hover,
.founder-button:focus-visible {
  animation-play-state: paused;
  box-shadow: 0 0 0 6px rgba(198, 155, 54, 0.18), 0 24px 70px rgba(0, 0, 0, 0.36);
  transform: translateY(-2px);
}

.founder-button img {
  aspect-ratio: 4 / 3;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.founder-button span {
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
  bottom: 0;
  display: block;
  font-size: 1.5rem;
  font-weight: 950;
  left: 0;
  letter-spacing: -0.035em;
  padding: 56px 20px 20px;
  position: absolute;
  right: 0;
}

.gallery-carousel {
  align-items: stretch;
  display: grid;
  gap: clamp(24px, 5vw, 54px);
  grid-template-columns: 0.68fr 1.32fr;
  margin-top: 28px;
}

.carousel-copy {
  align-self: center;
}

.carousel-copy h3 {
  font-size: clamp(2rem, 4vw, 4.4rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin: 0 0 16px;
}

.carousel-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  line-height: 1.65;
}

.carousel-shell {
  min-width: 0;
}

.carousel-stage {
  aspect-ratio: 16 / 9;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 34px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
  overflow: hidden;
  position: relative;
}

.carousel-slide {
  inset: 0;
  margin: 0;
  opacity: 0;
  filter: blur(8px);
  position: absolute;
  transform: translateX(70px) scale(0.982);
  transition: opacity 920ms cubic-bezier(0.16, 1, 0.3, 1), transform 920ms cubic-bezier(0.16, 1, 0.3, 1), filter 920ms ease;
  z-index: 0;
}

.carousel-slide.is-active {
  filter: blur(0);
  opacity: 1;
  transform: translateX(0) scale(1);
  z-index: 2;
}

.carousel-slide.is-left {
  filter: blur(8px);
  opacity: 0;
  transform: translateX(-70px) scale(0.982);
}

.carousel-slide img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.carousel-slide::after {
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.78));
  content: "";
  inset: 0;
  position: absolute;
}

.carousel-slide figcaption {
  bottom: 0;
  color: var(--white);
  display: grid;
  gap: 6px;
  left: 0;
  padding: clamp(18px, 4vw, 34px);
  position: absolute;
  right: 0;
  z-index: 3;
}

.carousel-slide figcaption strong {
  font-size: clamp(1.35rem, 3vw, 2.4rem);
  letter-spacing: -0.035em;
}

.carousel-slide figcaption span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
  max-width: 660px;
}

.carousel-controls {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-top: 18px;
}

.carousel-btn {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  font-weight: 950;
  min-height: 44px;
  padding: 10px 18px;
}

.carousel-dots {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.carousel-dot {
  background: rgba(255, 255, 255, 0.32);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  height: 9px;
  padding: 0;
  transition: background 180ms ease, width 180ms ease;
  width: 9px;
}

.carousel-dot.is-active {
  background: var(--gold);
  width: 30px;
}

.contact {
  align-items: center;
  background: var(--paper);
  display: flex;
  gap: 40px;
  justify-content: space-between;
  padding: 88px 6vw;
}

.signin {
  align-items: stretch;
  background:
    radial-gradient(circle at 20% 12%, rgba(198, 155, 54, 0.2), transparent 34%),
    linear-gradient(135deg, #111111, #050505);
  color: var(--white);
  display: grid;
  gap: 28px;
  grid-template-columns: 1.1fr 0.65fr;
  padding: 88px 6vw;
}

.signin-copy p:not(.eyebrow),
.signin-card p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.65;
}

.signin-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  display: grid;
  gap: 12px;
  padding: 28px;
}

.signin-card h3 {
  font-size: 1.7rem;
  letter-spacing: -0.03em;
  margin: 0;
}

.signin-card .secondary-action {
  background: var(--white);
  color: var(--ink);
  justify-self: start;
}

.contact h2 {
  max-width: 760px;
}

.contact-card {
  background: var(--deep);
  border-radius: 28px;
  color: var(--white);
  display: grid;
  gap: 14px;
  min-width: min(420px, 100%);
  padding: 28px;
}

.contact-card a,
.contact-card span {
  font-weight: 950;
}

.details-dialog {
  background: var(--white);
  border: 0;
  border-radius: 30px;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.3);
  color: var(--ink);
  max-height: calc(100dvh - 28px);
  max-width: min(960px, calc(100dvw - 28px));
  padding: 0;
  width: min(960px, calc(100dvw - 28px));
}

.founder-dialog {
  background:
    radial-gradient(circle at 86% 16%, rgba(198, 155, 54, 0.18), transparent 32%),
    var(--white);
  border: 0;
  border-radius: 30px;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.3);
  color: var(--ink);
  max-height: calc(100dvh - 28px);
  max-width: min(940px, calc(100dvw - 28px));
  padding: 0;
  width: min(940px, calc(100dvw - 28px));
}

.choice-dialog {
  background:
    radial-gradient(circle at 88% 10%, rgba(198, 155, 54, 0.18), transparent 30%),
    var(--white);
  border: 0;
  border-radius: 30px;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.3);
  color: var(--ink);
  max-height: calc(100dvh - 28px);
  max-width: min(880px, calc(100dvw - 28px));
  padding: 0;
  width: min(880px, calc(100dvw - 28px));
}

.details-dialog::backdrop,
.founder-dialog::backdrop,
.choice-dialog::backdrop {
  background: rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(8px);
}

.choice-dialog-body h2 {
  margin-bottom: 20px;
}

.details-dialog .dialog-body,
.founder-dialog .dialog-body,
.choice-dialog .dialog-body {
  max-height: calc(100dvh - 28px);
  max-width: 100%;
  overflow-y: auto;
}

.choice-bubble-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(min(190px, 100%), 1fr));
  max-height: min(54dvh, 460px);
  overflow-y: auto;
  padding-right: 4px;
}

.choice-bubble {
  background: #fffaf0;
  border: 1px solid #eadbb6;
  border-radius: 999px;
  color: var(--ink);
  cursor: pointer;
  font-size: clamp(1rem, 2vw, 1.18rem);
  font-weight: 900;
  min-height: 54px;
  overflow-wrap: anywhere;
  padding: 14px 18px;
  text-align: center;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.choice-bubble:hover,
.choice-bubble.is-selected {
  background: var(--deep);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
  color: var(--white);
  transform: translateY(-2px);
}

.founder-dialog-body {
  min-height: min(640px, calc(100dvh - 28px));
  overflow: hidden;
}

.founder-photo {
  border-radius: 28px;
  float: left;
  margin: 0 28px 18px 0;
  max-width: min(42vw, 390px);
  object-fit: cover;
  shape-outside: inset(0 round 28px);
  width: 390px;
}

.founder-dialog-body h2 {
  margin-top: 4px;
}

.founder-dialog-body p:not(.eyebrow) {
  font-size: 1.02rem;
  line-height: 1.68;
}

.founder-tagline {
  color: #6d520a !important;
  font-weight: 950;
}

.dialog-body {
  padding: clamp(24px, 5vw, 46px);
  width: 100%;
}

.dialog-body h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 12px;
}

.dialog-body p:not(.eyebrow) {
  color: var(--muted);
}

.dialog-close {
  background: var(--deep);
  border: 0;
  border-radius: 999px;
  color: var(--white);
  cursor: pointer;
  font-size: 2rem;
  height: 44px;
  line-height: 1;
  position: absolute;
  right: 16px;
  top: 16px;
  width: 44px;
}

@keyframes heroFade {
  0%,
  30% {
    opacity: 1;
    transform: scale(1.055);
  }
  40%,
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

@keyframes optionPop {
  0% {
    box-shadow: 0 0 0 rgba(198, 155, 54, 0);
    transform: scale(0.97);
  }
  55% {
    box-shadow: 0 0 0 10px rgba(198, 155, 54, 0.16);
    transform: scale(1.025);
  }
  100% {
    box-shadow: 0 0 0 rgba(198, 155, 54, 0);
    transform: scale(1);
  }
}

@keyframes fieldGlow {
  0% {
    box-shadow: 0 0 0 rgba(198, 155, 54, 0);
  }
  45% {
    border-color: rgba(198, 155, 54, 0.8);
    box-shadow: 0 0 0 6px rgba(198, 155, 54, 0.16);
  }
  100% {
    box-shadow: 0 0 0 rgba(198, 155, 54, 0);
  }
}

@keyframes scrollNudgeFade {
  0%,
  100% {
    opacity: 0.48;
  }
  45% {
    opacity: 1;
  }
}

@keyframes scrollArrowDrift {
  0%,
  100% {
    opacity: 0.45;
    transform: translateX(0) rotate(-45deg);
  }
  50% {
    opacity: 1;
    transform: translateX(7px) rotate(-45deg);
  }
}


@keyframes founderPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(198, 155, 54, 0.28), 0 20px 56px rgba(0, 0, 0, 0.24);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 9px rgba(198, 155, 54, 0), 0 28px 72px rgba(0, 0, 0, 0.34);
    transform: scale(1.018);
  }
}

@media (prefers-reduced-motion: reduce) {
  .founder-button { animation: none; }
  .scroll-nudge,
  .scroll-nudge b {
    animation: none;
  }
}

@media (max-width: 1020px) {
  .field-grid,
  .backline-grid {
  display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .summary-layer,
  .layer-copy,
  .contact,
  .signin,
  .scroll-card,
  .gallery-carousel,
  .founder-spotlight {
    grid-template-columns: 1fr;
  }

  .contact {
    display: grid;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    position: absolute;
  }

  nav {
    flex-wrap: wrap;
  }

  .hero {
    min-height: 92svh;
    padding-top: 155px;
  }

  .scroll-card {
    min-height: 58svh;
    position: relative;
    top: 0;
  }

  .service-visual {
    border-radius: 24px;
    min-height: 220px;
  }

  .carousel-stage {
    aspect-ratio: 4 / 3;
    border-radius: 24px;
  }

  .carousel-controls {
    align-items: stretch;
    display: grid;
    grid-template-columns: 1fr;
  }

  .progress-wrap {
    position: static;
  }

  .field-grid,
  .backline-grid {
  display: none;
    grid-template-columns: 1fr;
  }

  #logisticsLayer .field-grid label,
  #specificQuestions label {
    flex-basis: min(76vw, 320px);
    min-height: 130px;
  }

  .option-card {
    flex-basis: min(72vw, 300px);
    min-height: 130px;
  }

  .active-package-card {
    grid-template-columns: 1fr;
  }

  .choice-dialog,
  .details-dialog,
  .founder-dialog {
    max-height: calc(100dvh - 18px);
    max-width: calc(100dvw - 18px);
    width: calc(100dvw - 18px);
  }

  .choice-bubble-grid {
    max-height: 50dvh;
  }

  .founder-photo {
    display: block;
    float: none;
    margin: 0 auto 18px;
    max-width: min(78vw, 360px);
    width: 100%;
  }

  .parallax-band {
    background-attachment: scroll;
  }
}


/* v24 stability overrides */
@media (min-width: 900px) {
  .summary-layer {
    width: 100%;
  }

  .summary-card {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  }

  .summary-card > h4,
  .summary-card > ul,
  .quote-preview {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  :root {
    --header-offset: 122px;
  }

  .site-header {
    align-items: stretch;
    background: rgba(251, 250, 247, 0.92);
    flex-direction: column;
    gap: 8px;
    padding: 9px 4vw 10px;
    position: fixed;
  }

  .brand {
    gap: 9px;
    width: 100%;
  }

  .brand-logo-mark {
    height: 38px;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .brand small {
    font-size: 0.58rem;
    letter-spacing: 0.05em;
  }

  nav {
    display: grid;
    gap: 6px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  nav a {
    border: 1px solid rgba(232, 226, 213, 0.9);
    border-radius: 999px;
    font-size: clamp(0.68rem, 2.7vw, 0.78rem);
    justify-content: center;
    min-height: 32px;
    padding: 6px 4px;
    text-align: center;
    white-space: nowrap;
  }

  .build-link {
    padding: 6px 4px;
  }

  .hero {
    min-height: 92svh;
    padding-top: calc(var(--header-offset) + 36px);
  }

  .apple-scroll {
    min-height: 205svh;
    padding: calc(var(--header-offset) + 18px) 4vw 18svh;
  }

  .scroll-card {
    border-radius: 30px;
    grid-template-columns: 1fr;
    min-height: min(74svh, 620px);
    padding: clamp(20px, 6vw, 34px);
    position: sticky;
    top: var(--header-offset);
  }

  .scroll-card h2 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .scroll-card p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .service-visual {
    min-height: 210px;
  }

  #logisticsLayer .field-grid,
  #specificQuestions,
  .option-grid {
    padding: 4px 18vw 14px 2px;
  }

  #logisticsLayer .field-grid label,
  #specificQuestions label {
    flex-basis: min(76vw, 320px);
    min-height: 130px;
  }

  .option-card {
    flex-basis: min(72vw, 300px);
    min-height: 130px;
  }
}

@media (max-width: 390px) {
  :root {
    --header-offset: 116px;
  }

  .brand small {
    display: none;
  }

  nav a {
    font-size: 0.66rem;
  }
}


/* v27 pinned fade cleanup: shorter cards, no image edge shimmer, no client-portal section */
.apple-scroll {
  min-height: 255svh;
  padding: 18px 6vw 14svh;
}

.scroll-card {
  align-items: center;
  min-height: min(64svh, 640px);
  padding: clamp(24px, 4.5vw, 58px);
  top: calc(var(--header-offset) + 14px);
}

.service-visual {
  align-self: center;
  aspect-ratio: 4 / 3;
  border-radius: 30px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  height: auto;
  max-height: min(42svh, 420px);
  min-height: 0;
  width: 100%;
}

.service-visual::before {
  display: none;
}

.signin {
  display: none !important;
}

@media (max-width: 1020px) {
  .apple-scroll {
    min-height: 260svh;
    padding: 16px 5vw 14svh;
  }

  .scroll-card {
    grid-template-columns: 1fr;
    min-height: min(70svh, 660px);
    top: calc(var(--header-offset) + 12px);
  }

  .service-visual {
    aspect-ratio: 16 / 9;
    max-height: min(30svh, 280px);
  }
}

@media (max-width: 720px) {
  .apple-scroll {
    min-height: 265svh;
    padding: 12px 4vw 12svh;
  }

  .scroll-card {
    min-height: min(72svh, 650px);
    padding: clamp(18px, 5vw, 28px);
    position: sticky;
    top: calc(var(--header-offset) + 10px);
  }

  .scroll-copy {
    align-self: end;
    padding-bottom: 0;
  }

  .service-visual {
    aspect-ratio: 16 / 9;
    max-height: 230px;
  }
}


/* v29 repair: stable pinned Layer 1/2/3 fade flow with no long blank release gap. */
.apple-scroll {
  background: var(--deep);
  color: var(--white);
  display: block !important;
  min-height: 238svh !important;
  overflow: visible !important;
  padding: 0 !important;
  position: relative !important;
}

.layer-pin {
  display: grid;
  height: calc(100svh - var(--header-offset));
  min-height: calc(100svh - var(--header-offset));
  overflow: hidden;
  padding: 8px 6vw;
  place-items: center;
  position: sticky;
  top: var(--header-offset);
  width: 100%;
}

.layer-pin .scroll-card {
  align-items: center;
  display: grid;
  gap: clamp(18px, 3vw, 44px);
  grid-template-columns: minmax(0, 0.98fr) minmax(280px, 0.72fr);
  height: min(64svh, 600px) !important;
  left: 50%;
  margin: 0 !important;
  max-height: calc(100svh - var(--header-offset) - 22px) !important;
  min-height: 0 !important;
  opacity: 0;
  overflow: hidden;
  padding: clamp(24px, 3.7vw, 54px) !important;
  pointer-events: none;
  position: absolute !important;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.992);
  transition: opacity 160ms linear, transform 160ms linear;
  width: min(1180px, calc(100vw - 12vw)) !important;
  will-change: opacity, transform;
}

.layer-pin .scroll-card:first-child {
  opacity: 1;
  pointer-events: auto;
}

.layer-pin .scroll-card.is-fade-active {
  pointer-events: auto;
}

.layer-pin .scroll-copy {
  align-self: end;
  padding: 0;
}

.layer-pin .service-visual {
  align-self: center;
  aspect-ratio: 16 / 10;
  border: 0;
  border-radius: 28px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
  height: auto;
  max-height: min(34svh, 340px);
  min-height: 0;
  width: 100%;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

.layer-pin .service-visual::before {
  display: none !important;
}

/* No portal/customer account section until the backend dashboard is connected. */
.signin,
#signin {
  display: none !important;
}

@media (max-width: 1020px) {
  .apple-scroll {
    min-height: 242svh !important;
  }

  .layer-pin {
    padding: 8px 5vw;
  }

  .layer-pin .scroll-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 0.72fr);
    height: min(74svh, 650px) !important;
    max-height: calc(100svh - var(--header-offset) - 20px) !important;
    padding: clamp(20px, 4vw, 34px) !important;
    width: min(760px, calc(100vw - 10vw)) !important;
  }

  .layer-pin .service-visual {
    aspect-ratio: 16 / 9;
    max-height: min(27svh, 250px);
  }
}

@media (max-width: 720px) {
  .apple-scroll {
    min-height: 246svh !important;
  }

  .layer-pin {
    padding: 6px 4vw;
  }

  .layer-pin .scroll-card {
    border-radius: 28px;
    grid-template-rows: auto minmax(0, 0.64fr);
    height: min(78svh, 640px) !important;
    max-height: calc(100svh - var(--header-offset) - 16px) !important;
    padding: clamp(18px, 5vw, 26px) !important;
    width: calc(100vw - 28px) !important;
  }

  .layer-pin .scroll-card h2 {
    font-size: clamp(1.85rem, 9vw, 3rem);
  }

  .layer-pin .scroll-card p:not(.eyebrow) {
    font-size: 0.96rem;
    line-height: 1.48;
  }

  .layer-pin .service-visual {
    max-height: min(24svh, 210px);
  }
}


/* v30: Layer 1/2/3 intro cards removed. Hero now moves directly into Build Your Own Event. */


/* v32: suggested setup/package cards removed from quote preview. */
.quote-package-area,
.active-package-card,
.package-ideas,
.package-idea-card {
  display: none !important;
}

/* v32: scroll wheels should only move from actual user scrolling. */
.option-grid,
#logisticsLayer .field-grid,
#specificQuestions {
  scroll-snap-type: none !important;
  scroll-behavior: auto;
}

.option-card,
#logisticsLayer .field-grid label,
#specificQuestions label {
  will-change: transform, opacity;
}

/* Keep the next card visibly peeking in portrait mode. */
@media (max-width: 720px) {
  #logisticsLayer .field-grid,
  #specificQuestions,
  .option-grid {
    padding-right: 24vw !important;
  }

  .option-card {
    flex-basis: min(68vw, 288px) !important;
  }

  #logisticsLayer .field-grid label,
  #specificQuestions label {
    flex-basis: min(72vw, 310px) !important;
  }
}


/* v33: quote language + horizontal-scroll guidance updates. */
#logisticsLayer .option-wheel-hint,
#specificLayer .option-wheel-hint {
  gap: 12px;
  padding-right: 16px;
}

#logisticsLayer .option-wheel-hint::after,
#specificLayer .option-wheel-hint::after {
  align-items: center;
  animation: horizontalHintPulse 1.05s ease-in-out infinite;
  background: var(--deep);
  border-radius: 999px;
  color: var(--white);
  content: "→";
  display: inline-flex;
  font-size: 1rem;
  font-weight: 950;
  height: 28px;
  justify-content: center;
  line-height: 1;
  margin-left: 2px;
  min-width: 28px;
}

@keyframes horizontalHintPulse {
  0%, 100% {
    opacity: 0.64;
    transform: translateX(0) scale(0.96);
  }
  50% {
    opacity: 1;
    transform: translateX(8px) scale(1.12);
  }
}

@media (prefers-reduced-motion: reduce) {
  #logisticsLayer .option-wheel-hint::after,
  #specificLayer .option-wheel-hint::after {
    animation: none;
  }
}


/* v34: stop first-layer option row from jumping after a selection. */
.option-grid,
#baseOptions {
  overflow-anchor: none;
  scroll-behavior: auto !important;
  scroll-snap-type: none !important;
}

.option-card {
  scroll-snap-align: start !important;
  -webkit-tap-highlight-color: transparent;
}

/* v35: transparent pricing guide + pricing math cleanup. */
.pricing-disclosure {
  border: 1px solid #eadbb6;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
  margin-top: 4px;
  overflow: hidden;
}

.pricing-disclosure summary {
  cursor: pointer;
  font-weight: 950;
  list-style: none;
  padding: 16px 18px;
  color: var(--ink);
}

.pricing-disclosure summary::-webkit-details-marker {
  display: none;
}

.pricing-disclosure summary::after {
  content: "+";
  float: right;
  font-size: 1.25rem;
  line-height: 1;
}

.pricing-disclosure[open] summary::after {
  content: "–";
}

.pricing-guide-card {
  border-top: 1px solid #eadbb6;
  display: grid;
  gap: 14px;
  padding: 0 18px 18px;
}

.pricing-guide-card p {
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
}

.pricing-guide-card table {
  border-collapse: collapse;
  border-radius: 18px;
  overflow: hidden;
  width: 100%;
}

.pricing-guide-card th,
.pricing-guide-card td {
  border: 1px solid #eadbb6;
  padding: 12px 13px;
  text-align: left;
  vertical-align: top;
}

.pricing-guide-card th {
  background: var(--deep);
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-guide-card td {
  background: #fffaf0;
  color: var(--ink);
  line-height: 1.42;
}

.pricing-guide-card td:nth-child(2) {
  color: #6d520a;
  font-weight: 950;
  white-space: nowrap;
}

.pricing-footnote {
  color: #6d520a !important;
  font-weight: 950;
}

/* v35: first layer should not snap back after click; movement should come from user scroll only. */
.option-grid,
#baseOptions {
  overflow-anchor: none !important;
  scroll-behavior: auto !important;
  scroll-snap-type: none !important;
  scrollbar-gutter: stable;
}

.option-card {
  scroll-snap-align: start !important;
  scroll-margin-inline: 0 !important;
}

.option-card:focus {
  outline: 0;
}

@media (max-width: 720px) {
  .pricing-guide-card {
    overflow-x: auto;
  }

  .pricing-guide-card table {
    min-width: 760px;
  }
}


/* v36: pricing guide layout + scroll-position stability. */
.summary-card {
  align-items: start;
}

.summary-card > button,
.summary-card > .primary-action,
.summary-card > .secondary-action {
  justify-self: start;
  width: auto;
  max-width: 100%;
}

.pricing-disclosure {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 100%;
}

.pricing-guide-card {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pricing-guide-card table {
  min-width: 880px;
  table-layout: fixed;
}

.pricing-guide-card th:nth-child(1),
.pricing-guide-card td:nth-child(1) {
  width: 24%;
}

.pricing-guide-card th:nth-child(2),
.pricing-guide-card td:nth-child(2) {
  width: 20%;
}

.pricing-guide-card th:nth-child(3),
.pricing-guide-card td:nth-child(3) {
  width: 56%;
}

.option-grid,
#logisticsLayer .field-grid,
#specificQuestions {
  overflow-anchor: none !important;
  scroll-behavior: auto !important;
  scroll-snap-type: none !important;
  scroll-padding-inline: 0 !important;
}

#logisticsLayer .field-grid label,
#specificQuestions label {
  scroll-snap-align: start !important;
  scroll-margin-inline: 0 !important;
}


/* v37: keep pricing guide readable after added live-band and mic rows. */
.pricing-guide-card table {
  min-width: 900px;
}


/* v39: always-visible horizontal scroll helper bars + pricing shortcut. */
.builder-title-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  justify-content: center;
}

.builder-title-row h2 {
  margin-bottom: 0;
}

.pricing-shortcut {
  align-items: center;
  background: var(--deep);
  border: 1px solid var(--deep);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 950;
  justify-content: center;
  min-height: 40px;
  padding: 10px 14px;
  white-space: nowrap;
}

.pricing-shortcut:hover,
.pricing-shortcut:focus {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  outline: 0;
}

.option-grid,
#logisticsLayer .field-grid,
#specificQuestions {
  overflow-x: scroll !important;
  padding-bottom: 22px !important;
  scrollbar-color: var(--gold) #eee6d6 !important;
  scrollbar-gutter: stable both-edges;
  scrollbar-width: auto !important;
  -webkit-overflow-scrolling: touch;
}

.option-grid::-webkit-scrollbar,
#logisticsLayer .field-grid::-webkit-scrollbar,
#specificQuestions::-webkit-scrollbar {
  height: 14px !important;
}

.option-grid::-webkit-scrollbar-track,
#logisticsLayer .field-grid::-webkit-scrollbar-track,
#specificQuestions::-webkit-scrollbar-track {
  background: #eee6d6 !important;
  border-radius: 999px !important;
}

.option-grid::-webkit-scrollbar-thumb,
#logisticsLayer .field-grid::-webkit-scrollbar-thumb,
#specificQuestions::-webkit-scrollbar-thumb {
  background: var(--gold) !important;
  border: 3px solid #eee6d6;
  border-radius: 999px !important;
}

.visible-scrollbar {
  background: #eee6d6;
  border: 1px solid #eadbb6;
  border-radius: 999px;
  height: 16px;
  margin: -8px 2px 18px;
  overflow: hidden;
  position: relative;
  touch-action: none;
  user-select: none;
}

.visible-scrollbar-thumb {
  background: linear-gradient(90deg, var(--gold), #f5d36c);
  border-radius: inherit;
  box-shadow: 0 2px 8px rgba(0,0,0,0.16);
  cursor: grab;
  display: block;
  height: 100%;
  left: 0;
  min-width: 44px;
  position: absolute;
  top: 0;
  transition: background 160ms ease;
  width: 44px;
}

.visible-scrollbar-thumb.is-dragging {
  cursor: grabbing;
  background: var(--deep);
}

.visible-scrollbar.is-disabled {
  opacity: 0.45;
}

.contact-email {
  animation: contactEmailPulse 1.5s ease-in-out infinite;
  border-radius: 999px;
  display: inline-flex;
  justify-content: center;
  padding: 8px 12px;
  width: fit-content;
}

@keyframes contactEmailPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(198,155,54,0.26);
    color: var(--white);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(198,155,54,0);
    color: #f5d36c;
    transform: scale(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-email {
    animation: none;
  }
}

@media (max-width: 720px) {
  .builder-title-row {
    align-items: center;
    flex-direction: column;
  }

  .pricing-shortcut {
    width: min(100%, 260px);
  }
}


/* v41: transparent pricing guide readability + text-only shortcut link. */
.pricing-shortcut,
.pricing-shortcut:visited {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: #6d520a !important;
  display: inline !important;
  font-weight: 950;
  min-height: 0 !important;
  padding: 0 !important;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  white-space: normal !important;
  width: auto !important;
}

.pricing-shortcut:hover,
.pricing-shortcut:focus {
  background: transparent !important;
  border: 0 !important;
  color: var(--ink) !important;
  outline: 0;
}

.pricing-guide-card {
  overflow-x: visible !important;
}

.pricing-guide-card table,
.pricing-guide-table {
  min-width: 0 !important;
  table-layout: fixed;
  width: 100%;
}

.pricing-guide-card th:nth-child(1),
.pricing-guide-card td:nth-child(1) {
  width: 34% !important;
}

.pricing-guide-card th:nth-child(2),
.pricing-guide-card td:nth-child(2) {
  width: 25% !important;
}

.pricing-guide-card th:nth-child(3),
.pricing-guide-card td:nth-child(3) {
  width: 41% !important;
}

.pricing-guide-card th,
.pricing-guide-card td {
  overflow-wrap: anywhere;
  word-break: normal;
}

.pricing-guide-card td:nth-child(2) {
  white-space: normal !important;
}

.pricing-row-details summary {
  color: #6d520a;
  cursor: pointer;
  font-weight: 950;
  list-style: none;
}

.pricing-row-details summary::-webkit-details-marker {
  display: none;
}

.pricing-row-details summary::after {
  content: " +";
  font-weight: 950;
}

.pricing-row-details[open] summary::after {
  content: " –";
}

.pricing-row-details p {
  color: var(--muted) !important;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.48;
  margin: 8px 0 0 !important;
}

.pricing-footnote {
  color: var(--muted) !important;
  font-size: 0.88rem;
  font-weight: 500 !important;
  line-height: 1.5;
}

@media (max-width: 720px) {
  .builder-title-row {
    gap: 6px 12px;
  }

  .pricing-shortcut {
    width: auto !important;
  }

  .pricing-guide-card {
    overflow-x: visible !important;
  }

  .pricing-guide-card table,
  .pricing-guide-card thead,
  .pricing-guide-card tbody,
  .pricing-guide-card tr,
  .pricing-guide-card th,
  .pricing-guide-card td {
    display: block;
    width: 100% !important;
  }

  .pricing-guide-card thead {
    display: none;
  }

  .pricing-guide-card tr {
    background: #fffaf0;
    border: 1px solid #eadbb6;
    border-radius: 18px;
    margin-bottom: 12px;
    overflow: hidden;
  }

  .pricing-guide-card td {
    border: 0 !important;
    padding: 12px 14px;
  }

  .pricing-guide-card td:nth-child(1) {
    font-size: 1rem;
    font-weight: 950;
    padding-bottom: 4px;
  }

  .pricing-guide-card td:nth-child(2) {
    color: #6d520a;
    font-weight: 950;
    padding-top: 0;
  }

  .pricing-guide-card td:nth-child(3) {
    border-top: 1px solid #eadbb6 !important;
    background: #fffaf0;
  }
}

/* v42: two-column transparent pricing guide with expandable details under price. */
.pricing-guide-table-v42 {
  border-collapse: separate;
  border-spacing: 0;
  min-width: 0 !important;
  table-layout: fixed;
  width: 100%;
}

.pricing-guide-table-v42 th:nth-child(1),
.pricing-guide-table-v42 td:nth-child(1) {
  width: 54% !important;
}

.pricing-guide-table-v42 th:nth-child(2),
.pricing-guide-table-v42 td:nth-child(2) {
  width: 46% !important;
  white-space: normal !important;
}

.pricing-guide-table-v42 .pricing-row-price {
  color: #24221f;
  display: block;
  font-size: 0.96rem;
  font-weight: 950;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.pricing-plus-details {
  margin-top: 8px;
}

.pricing-plus-details summary {
  align-items: center;
  color: #6d520a;
  cursor: pointer;
  display: inline-flex;
  gap: 7px;
  font-size: 0.8rem;
  font-weight: 900;
  list-style: none;
  max-width: 100%;
  text-transform: uppercase;
}

.pricing-plus-details summary::after,
.pricing-plus-details[open] summary::after {
  content: "" !important;
}

.pricing-plus-details summary span {
  align-items: center;
  border: 1px solid #eadbb6;
  border-radius: 999px;
  display: inline-flex;
  flex: 0 0 24px;
  font-size: 1rem;
  height: 24px;
  justify-content: center;
  line-height: 1;
  width: 24px;
}

.pricing-plus-details[open] summary span {
  font-size: 0;
}

.pricing-plus-details[open] summary span::before {
  content: "–";
  font-size: 1rem;
}

.pricing-plus-details summary em {
  font-style: normal;
  overflow-wrap: anywhere;
}

.pricing-plus-details p {
  border-top: 1px solid #eadbb6;
  color: var(--muted) !important;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.48;
  margin: 9px 0 0 !important;
  padding-top: 9px;
}

.pricing-footnote {
  font-weight: 500 !important;
}

@media (max-width: 720px) {
  .pricing-guide-card table.pricing-guide-table-v42,
  .pricing-guide-card table.pricing-guide-table-v42 thead,
  .pricing-guide-card table.pricing-guide-table-v42 tbody,
  .pricing-guide-card table.pricing-guide-table-v42 tr {
    display: table !important;
    width: 100% !important;
  }

  .pricing-guide-card table.pricing-guide-table-v42 thead {
    display: table-header-group !important;
  }

  .pricing-guide-card table.pricing-guide-table-v42 tbody {
    display: table-row-group !important;
  }

  .pricing-guide-card table.pricing-guide-table-v42 tr {
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    display: table-row !important;
    margin-bottom: 0 !important;
    overflow: visible !important;
  }

  .pricing-guide-card table.pricing-guide-table-v42 th,
  .pricing-guide-card table.pricing-guide-table-v42 td {
    display: table-cell !important;
    font-size: 0.84rem;
    padding: 11px 10px !important;
    vertical-align: top;
  }

  .pricing-guide-table-v42 th:nth-child(1),
  .pricing-guide-table-v42 td:nth-child(1) {
    width: 48% !important;
  }

  .pricing-guide-table-v42 th:nth-child(2),
  .pricing-guide-table-v42 td:nth-child(2) {
    width: 52% !important;
  }

  .pricing-guide-card table.pricing-guide-table-v42 td:nth-child(1) {
    font-size: 0.88rem;
    font-weight: 950;
  }

  .pricing-guide-card table.pricing-guide-table-v42 td:nth-child(2) {
    color: inherit;
    font-weight: inherit;
  }

  .pricing-guide-table-v42 .pricing-row-price {
    font-size: 0.86rem;
  }

  .pricing-plus-details summary {
    font-size: 0.7rem;
  }

  .pricing-plus-details summary span {
    flex-basis: 22px;
    height: 22px;
    width: 22px;
  }
}


/* v43: transparent pricing guide as individual expandable pills. */
.pricing-pill-guide {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  width: 100%;
}

.pricing-pill-header {
  align-items: center;
  color: #6d520a;
  display: grid;
  font-size: 0.74rem;
  font-weight: 950;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.72fr);
  letter-spacing: 0.12em;
  padding: 0 18px;
  text-transform: uppercase;
}

.pricing-pill {
  background: #fffaf0;
  border: 1px solid #eadbb6;
  border-radius: 999px;
  overflow: hidden;
  transition: border-radius 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.pricing-pill[open] {
  border-color: rgba(198, 155, 54, 0.58);
  border-radius: 24px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.055);
}

.pricing-pill summary {
  align-items: center;
  cursor: pointer;
  display: grid !important;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.72fr);
  list-style: none;
  padding: 14px 16px 14px 18px;
}

.pricing-pill summary::-webkit-details-marker {
  display: none;
}

.pricing-pill summary::after,
.pricing-pill[open] summary::after {
  content: "" !important;
  display: none !important;
}

.pricing-pill-item {
  color: #24221f;
  font-size: 0.96rem;
  font-weight: 950;
  line-height: 1.22;
  min-width: 0;
  overflow-wrap: anywhere;
}

.pricing-pill-price-wrap {
  align-items: center;
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr) 30px;
  min-width: 0;
}

.pricing-pill-price {
  color: #24221f;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.22;
  min-width: 0;
  overflow-wrap: anywhere;
  text-align: left;
}

.pricing-pill-plus {
  align-items: center;
  background: #f7f1e4;
  border: 1px solid #eadbb6;
  border-radius: 999px;
  color: #6d520a;
  display: inline-flex;
  font-size: 1.1rem;
  height: 30px;
  justify-content: center;
  line-height: 1;
  width: 30px;
}

.pricing-pill[open] .pricing-pill-plus {
  font-size: 0;
}

.pricing-pill[open] .pricing-pill-plus::before {
  content: "–";
  font-size: 1.1rem;
}

.pricing-pill p {
  border-top: 1px solid #eadbb6;
  color: var(--muted) !important;
  font-size: 0.92rem;
  font-weight: 500 !important;
  line-height: 1.52;
  margin: 0 18px 16px !important;
  padding-top: 12px;
}

@media (max-width: 720px) {
  .pricing-pill-guide {
    gap: 12px;
  }

  .pricing-pill-header {
    display: none;
  }

  .pricing-pill {
    border-radius: 24px;
  }

  .pricing-pill summary {
    align-items: stretch;
    gap: 8px;
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .pricing-pill-item {
    font-size: 1rem;
  }

  .pricing-pill-price-wrap {
    align-items: center;
    background: rgba(247, 241, 228, 0.72);
    border: 1px solid #eadbb6;
    border-radius: 999px;
    grid-template-columns: minmax(0, 1fr) 32px;
    margin-top: 2px;
    padding: 8px 9px 8px 12px;
  }

  .pricing-pill-price {
    font-size: 0.9rem;
  }

  .pricing-pill p {
    font-size: 0.9rem;
    margin: 0 14px 14px !important;
  }
}


/* v44: calmer mobile selections + clearer pricing pills. */
@media (max-width: 720px) {
  .option-card.just-selected,
  label.field-pulse input,
  label.field-pulse select {
    animation: none !important;
  }

  .option-card,
  #logisticsLayer .field-grid label,
  #specificQuestions label {
    transition: opacity 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease !important;
  }
}

.pricing-pill {
  background: transparent;
  border: 0;
  border-radius: 0;
}

.pricing-pill[open] {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.pricing-pill summary {
  background: #fffaf0;
  border: 1px solid #eadbb6;
  border-radius: 999px;
  padding: 8px;
}

.pricing-pill[open] summary {
  border-color: rgba(198, 155, 54, 0.62);
  border-radius: 26px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.055);
}

.pricing-pill-item,
.pricing-pill-price-wrap {
  background: rgba(247, 241, 228, 0.78);
  border: 1px solid #eadbb6;
  border-radius: 999px;
  padding: 10px 12px;
}

.pricing-pill-price-wrap {
  padding: 7px 8px 7px 12px;
}

.pricing-pill-plus {
  background: var(--white);
  border: 2px solid rgba(198, 155, 54, 0.7);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.08);
  color: #6d520a;
  flex: 0 0 30px;
  font-weight: 950;
}

.pricing-pill p {
  background: #fffaf0;
  border: 1px solid #eadbb6;
  border-radius: 18px;
  border-top: 1px solid #eadbb6;
  margin: 8px 8px 0 !important;
  padding: 12px 14px;
}

@media (max-width: 720px) {
  .pricing-pill summary {
    border-radius: 24px;
    padding: 10px;
  }

  .pricing-pill[open] summary {
    border-radius: 24px;
  }

  .pricing-pill-item {
    background: #fffaf0;
    border: 1px solid #eadbb6;
    border-radius: 999px;
    padding: 11px 14px;
  }

  .pricing-pill-price-wrap {
    background: #fffaf0;
    border: 1px solid #eadbb6;
    border-radius: 999px;
    margin-top: 0;
    padding: 9px 9px 9px 13px;
  }

  .pricing-pill-plus {
    flex-basis: 30px;
    height: 30px;
    width: 30px;
  }

  .pricing-pill p {
    margin: 8px 2px 0 !important;
  }
}

/* v47: stable scroll-linked zoom for horizontal quote choosers. */
.option-card,
#logisticsLayer .field-grid label,
#specificQuestions label {
  backface-visibility: hidden;
  transform-origin: center center;
  transition: opacity 120ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease !important;
}

/* v48: simplified, stable horizontal chooser. */
.option-card,
.option-card:hover,
#logisticsLayer .field-grid label,
#specificQuestions label {
  opacity: 1 !important;
  transform: none !important;
}

.visible-scrollbar {
  display: none !important;
}


/* v49: stable always-visible assist scrollbar for horizontal quote choosers. */
.visible-scrollbar {
  display: block !important;
  background: #eee6d6;
  border: 1px solid #eadbb6;
  border-radius: 999px;
  height: 16px;
  margin: -6px 2px 18px;
  overflow: hidden;
  position: relative;
  touch-action: none;
  user-select: none;
}
.visible-scrollbar-thumb {
  background: linear-gradient(90deg, var(--gold), #f5d36c);
  border-radius: inherit;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  cursor: grab;
  display: block;
  height: 100%;
  left: 0;
  min-width: 46px;
  position: absolute;
  top: 0;
  transition: background 120ms ease;
  will-change: transform, width;
}
.visible-scrollbar-thumb.is-dragging {
  background: var(--deep);
  cursor: grabbing;
}
.visible-scrollbar.is-disabled {
  opacity: 0.42;
}
@media (max-width: 720px) {
  .visible-scrollbar {
    height: 14px;
    margin-bottom: 16px;
  }
}


/* v50 mobile parallax + JP Event Productions branding update */
@media (max-width: 720px) {
  .parallax-band {
    --mobile-parallax-y: 0px;
    background: #090909;
    background-attachment: scroll;
    isolation: isolate;
    overflow: hidden;
    position: relative;
  }

  .parallax-band::before {
    background:
      linear-gradient(rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.72)),
      url("https://images.unsplash.com/photo-1521334726092-b509a19597c6?auto=format&fit=crop&w=1800&q=80") center / cover no-repeat;
    content: "";
    inset: -14% 0;
    pointer-events: none;
    position: absolute;
    transform: translate3d(0, var(--mobile-parallax-y), 0) scale(1.05);
    will-change: transform;
    z-index: -1;
  }

  .parallax-band > * {
    position: relative;
    z-index: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .parallax-band::before {
    transform: none;
  }
}


/* v52: priority mic quantity fields appear first in Layer 2 without adding a nested card. */
.layer-two-priority-fields { display: contents; }


/* v54: scroll-led headline growth with supporting copy fading in and out. */
.motion-ready .scroll-title-group {
  --title-reveal: 1;
}

.motion-ready .scroll-title-group > h1,
.motion-ready .scroll-title-group > h2,
.motion-ready .scroll-title-group > h3,
.motion-ready .scroll-title-group .builder-title-row > h2 {
  opacity: var(--title-heading-opacity, 1);
  transform:
    translate3d(0, var(--title-heading-shift, 0), 0)
    scale(var(--title-heading-scale, 1));
  transform-origin: center left;
  transition: opacity 90ms linear, transform 90ms linear;
  will-change: opacity, transform;
}

.motion-ready .section-heading.scroll-title-group > h2,
.motion-ready .section-heading.scroll-title-group .builder-title-row > h2 {
  transform-origin: center;
}

.motion-ready .scroll-title-group > p:not(.eyebrow),
.motion-ready .scroll-title-group > .eyebrow {
  opacity: var(--title-copy-opacity, 1);
  transform: translate3d(0, var(--title-copy-shift, 0), 0);
  transition: opacity 110ms linear, transform 110ms linear;
  will-change: opacity, transform;
}

.motion-ready .scroll-title-group > .eyebrow {
  transition-delay: 15ms;
}

.motion-ready .scroll-title-group > p:not(.eyebrow) {
  transition-delay: 40ms;
}

@media (prefers-reduced-motion: reduce) {
  .motion-ready .scroll-title-group > h1,
  .motion-ready .scroll-title-group > h2,
  .motion-ready .scroll-title-group > h3,
  .motion-ready .scroll-title-group .builder-title-row > h2,
  .motion-ready .scroll-title-group > p,
  .motion-ready .scroll-title-group > .eyebrow {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
