:root {
  color-scheme: dark;
  --ink: #fff8e8;
  --muted: #c9b98d;
  --line: rgba(214, 169, 76, 0.38);
  --paper: #080806;
  --panel: rgba(20, 17, 11, 0.92);
  --panel-strong: rgba(33, 26, 13, 0.96);
  --gold: #d6a94c;
  --gold-bright: #ffd978;
  --gold-deep: #8e6421;
  --white: #fffaf0;
  --accent: #d6a94c;
  --accent-strong: #ffd978;
  --cyan: #fff1bb;
  --green: #d6a94c;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(214, 169, 76, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 217, 120, 0.05), transparent 360px),
    var(--paper);
  background-size: 56px 56px, auto, auto;
}

body::before,
body::after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  z-index: -1;
  height: 18px;
  background:
    linear-gradient(135deg, transparent 25%, rgba(255, 217, 120, 0.62) 25% 50%, transparent 50% 75%, rgba(255, 217, 120, 0.62) 75%),
    #0f0d08;
  background-size: 34px 18px;
  box-shadow: 0 0 28px rgba(214, 169, 76, 0.2);
}

body::before {
  top: 0;
}

body::after {
  bottom: 0;
}

body.is-loading {
  overflow: hidden;
}

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

.loader {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  gap: 22px;
  padding: 28px;
  background:
    linear-gradient(90deg, rgba(214, 169, 76, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 50% 45%, rgba(214, 169, 76, 0.18), transparent 46%),
    #090806;
  background-size: 44px 44px, auto, auto;
  transition: opacity 480ms ease, visibility 480ms ease;
}

.loader.is-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.loader img {
  width: min(82vw, 760px);
  max-height: 58vh;
  object-fit: contain;
  filter: drop-shadow(0 0 28px rgba(255, 169, 36, 0.42));
  animation: logoPulse 1600ms ease-in-out infinite alternate;
}

.loader-bar {
  width: min(340px, 70vw);
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(255, 217, 120, 0.44);
  background: rgba(255, 250, 240, 0.14);
}

.loader-bar span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: var(--gold-bright);
  box-shadow: 0 0 18px rgba(255, 217, 120, 0.85);
  animation: loaderBar 1100ms ease-in-out infinite;
}

@keyframes logoPulse {
  from {
    transform: scale(0.985);
  }

  to {
    transform: scale(1.015);
  }
}

@keyframes loaderBar {
  0% {
    transform: translateX(-105%);
  }

  100% {
    transform: translateX(245%);
  }
}

.app-shell {
  width: min(1680px, 100%);
  margin: 0 auto;
  padding: 38px clamp(16px, 3vw, 48px);
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 15;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  margin-bottom: 22px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 217, 120, 0.36);
  border-radius: 8px;
  background: rgba(6, 6, 5, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.site-brand,
.site-nav a,
.ghost-link {
  color: var(--white);
  text-decoration: none;
}

.site-brand {
  display: grid;
  gap: 1px;
  font-weight: 950;
}

.site-brand span {
  color: var(--gold-bright);
  letter-spacing: 0;
}

.site-brand small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.site-nav a,
.ghost-link {
  min-height: 40px;
  display: grid;
  place-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 217, 120, 0.28);
  border-radius: 8px;
  background: rgba(214, 169, 76, 0.08);
  font-weight: 850;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: rgba(255, 217, 120, 0.78);
  box-shadow: 0 0 20px rgba(255, 217, 120, 0.22);
}

.site-nav .instagram-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-bright);
}

.instagram-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  filter: drop-shadow(0 0 8px rgba(255, 217, 120, 0.35));
}

.home-cover {
  min-height: calc(100vh - 108px);
  display: grid;
  place-items: center;
  padding: 0;
  scroll-margin-top: 110px;
}

.home-logo {
  display: grid;
  place-items: center;
  width: 100%;
  height: calc(100vh - 108px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 217, 120, 0.46);
  border-radius: 8px;
  background: #f5efe5;
  box-shadow: var(--shadow);
}

.home-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f5efe5;
}

.official-section {
  display: grid;
  gap: 18px;
  justify-items: center;
  padding: 54px 0 32px;
  scroll-margin-top: 110px;
}

.section-heading {
  display: grid;
  gap: 8px;
  width: min(960px, 100%);
  max-width: 960px;
  justify-items: center;
  text-align: center;
}

.section-heading h2 {
  color: var(--white);
  font-size: clamp(1.35rem, 2.7vw, 3rem);
  line-height: 1.05;
  text-align: center;
  text-wrap: balance;
}

.about-panel {
  position: relative;
  display: grid;
  gap: 16px;
  width: min(1120px, 100%);
  max-width: 1120px;
  padding: 22px;
  border: 1px solid rgba(214, 169, 76, 0.46);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 217, 120, 0.08), transparent 120px),
    var(--panel);
  box-shadow: var(--shadow);
}

.about-panel::before {
  content: "";
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border: 1px solid rgba(255, 217, 120, 0.22);
  border-radius: 6px;
}

.about-panel p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.about-panel .primary-button {
  width: min(260px, 100%);
}

.egyptian-text-panel {
  gap: 18px;
  max-width: 960px;
  padding: clamp(20px, 4vw, 38px);
  background:
    linear-gradient(90deg, rgba(214, 169, 76, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 217, 120, 0.1), transparent 170px),
    var(--panel-strong);
  background-size: 34px 34px, auto, auto;
}

.egyptian-text-panel h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.55rem, 3.6vw, 3.8rem);
  line-height: 0.98;
  text-align: center;
  text-wrap: balance;
  text-shadow: 0 0 24px rgba(214, 169, 76, 0.3);
}

.about-kicker,
.about-question {
  color: var(--gold-bright) !important;
  font-size: 0.92rem !important;
  font-weight: 950;
  line-height: 1.35 !important;
  text-align: center;
  text-transform: uppercase;
}

.about-kicker {
  justify-self: center;
  text-wrap: balance;
}

.about-question {
  width: min(100%, max-content);
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 14px;
  border: 1px solid rgba(255, 217, 120, 0.58);
  border-radius: 8px;
  background: rgba(214, 169, 76, 0.12);
  box-shadow: 0 0 22px rgba(214, 169, 76, 0.18);
  font-size: clamp(1rem, 2vw, 1.65rem) !important;
  text-align: center;
  white-space: nowrap;
  text-shadow: 0 0 18px rgba(255, 217, 120, 0.36);
}

.about-statement {
  color: var(--white) !important;
  font-size: clamp(1rem, 2vw, 1.65rem) !important;
  font-weight: 850;
  line-height: 1.25 !important;
  text-align: center;
  white-space: nowrap;
}

.about-temple {
  width: fit-content;
  margin: 0 auto;
  padding: 10px 0 12px;
  color: var(--gold-bright) !important;
  font-size: clamp(1rem, 2vw, 1.65rem) !important;
  font-weight: 950;
  line-height: 1.25 !important;
  text-align: center;
  white-space: nowrap;
  text-transform: uppercase;
  text-shadow: 0 0 30px rgba(255, 217, 120, 0.42);
  border-top: 1px solid rgba(255, 217, 120, 0.5);
  border-bottom: 1px solid rgba(255, 217, 120, 0.5);
}

.technical-panel {
  margin-top: 18px;
  width: min(1280px, 100%);
  max-width: 1280px;
}

.technical-panel h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.45rem, 3vw, 3.2rem);
  line-height: 1;
  text-align: center;
  text-wrap: balance;
}

.technical-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.technical-grid article {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(255, 217, 120, 0.28);
  border-radius: 8px;
  background: rgba(8, 8, 6, 0.62);
}

.technical-grid h4 {
  margin: 0;
  color: var(--gold-bright);
  font-size: 1rem;
  text-transform: uppercase;
}

.technical-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.technical-grid li,
.technical-grid article p {
  color: var(--muted);
  line-height: 1.5;
}

.technical-grid li::before {
  content: "◇";
  margin-right: 8px;
  color: var(--gold-bright);
}

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

.stage-specs span {
  display: grid;
  gap: 3px;
  min-height: 78px;
  place-items: center;
  border: 1px solid rgba(255, 217, 120, 0.34);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
  background: rgba(214, 169, 76, 0.08);
}

.stage-specs strong {
  color: var(--white);
  font-size: clamp(1.45rem, 3vw, 2.3rem);
}

.resident-djs {
  display: grid;
  gap: 18px;
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 217, 120, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(214, 169, 76, 0.12), rgba(255, 255, 255, 0.03)),
    rgba(8, 8, 6, 0.72);
  text-align: center;
}

.resident-djs h4 {
  margin: 0;
  color: var(--gold-bright);
  font-size: clamp(1rem, 2vw, 1.35rem);
  text-transform: uppercase;
}

.resident-djs p {
  max-width: 780px;
  margin: 8px auto 0;
  color: var(--muted);
  line-height: 1.5;
}

.dj-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
}

.dj-logo-grid img {
  width: 100%;
  max-width: 210px;
  max-height: 118px;
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(255, 217, 120, 0.18));
}

.workspace {
  min-height: calc(100vh - 56px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: min(1480px, 100%);
  margin: 0 auto;
  scroll-margin-top: 110px;
}

.topbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  padding: 8px 2px 0;
}

.topbar::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -10px;
  width: min(420px, 44vw);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2rem, 5vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: 0;
  color: var(--white);
  text-shadow: 0 0 24px rgba(214, 169, 76, 0.34);
}

.ghost-button,
.primary-button {
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
}

.ghost-button {
  min-height: 44px;
  padding: 0 18px;
  color: var(--white);
  border: 1px solid rgba(255, 217, 120, 0.46);
  background: rgba(214, 169, 76, 0.12);
}

.stage-visual {
  position: relative;
  min-height: 190px;
  max-height: 300px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 217, 120, 0.56);
  box-shadow: var(--shadow);
  background: #090806;
}

.stage-visual::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(255, 217, 120, 0.7);
  background:
    linear-gradient(90deg, rgba(255, 217, 120, 0.9) 0 28px, transparent 28px calc(100% - 28px), rgba(255, 217, 120, 0.9) calc(100% - 28px)),
    linear-gradient(180deg, rgba(255, 217, 120, 0.9) 0 28px, transparent 28px calc(100% - 28px), rgba(255, 217, 120, 0.9) calc(100% - 28px));
  opacity: 0.42;
}

.stage-visual img {
  display: block;
  width: 100%;
  height: clamp(190px, 22vw, 300px);
  object-fit: cover;
}

.brand-visual {
  max-height: none;
  background: #000000;
}

.brand-visual img {
  height: clamp(210px, 28vw, 390px);
  object-fit: contain;
  padding: clamp(8px, 1.5vw, 18px);
  background: #000000;
}

.brand-visual figcaption {
  position: relative;
  z-index: 2;
  margin: -8px 0 22px;
  color: var(--white);
  font-size: clamp(1.25rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 0 24px rgba(255, 217, 120, 0.42);
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 22px;
  align-items: start;
}

.panel,
.summary-card {
  background:
    linear-gradient(180deg, rgba(255, 217, 120, 0.08), transparent 120px),
    var(--panel);
  border: 1px solid rgba(214, 169, 76, 0.46);
  box-shadow: var(--shadow);
}

.configurator {
  display: grid;
  gap: 18px;
  padding: 20px;
}

.group {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(214, 169, 76, 0.08) 1px, transparent 1px),
    var(--panel-strong);
  background-size: 34px 34px, auto;
}

.group-heading {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
}

.step {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  color: #0a0906;
  background: linear-gradient(145deg, var(--gold-bright), var(--gold-deep));
  font-weight: 900;
  box-shadow: 0 0 22px rgba(214, 169, 76, 0.22);
}

.group h2,
.cta-box h2 {
  font-size: 1.05rem;
  line-height: 1.2;
}

.group p,
.cta-box p {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.5;
}

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

.field {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--white);
  background: rgba(5, 5, 4, 0.78);
}

.field input,
.field select {
  min-height: 46px;
}

.field textarea {
  min-height: 112px;
  padding-top: 12px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(255, 217, 120, 0.44);
  border-color: var(--gold-bright);
}

.duration-control {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 8, 6, 0.72);
}

.duration-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.duration-heading output {
  color: #090806;
  min-width: 82px;
  padding: 7px 10px;
  border-radius: 8px;
  text-align: center;
  background: linear-gradient(145deg, var(--gold-bright), var(--gold));
}

.duration-control input {
  width: 100%;
  accent-color: var(--gold-bright);
}

.duration-scale {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
}

.location-control {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: end;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 8, 6, 0.72);
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.option,
.check {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 8, 6, 0.72);
}

.option {
  position: relative;
  display: flex;
  gap: 10px;
  padding: 14px;
  cursor: pointer;
}

.option:has(input:checked) {
  border-color: var(--gold-bright);
  box-shadow: inset 0 0 0 2px rgba(255, 217, 120, 0.2), 0 0 24px rgba(214, 169, 76, 0.16);
}

.option input,
.check input {
  accent-color: var(--gold-bright);
}

.option strong {
  display: block;
  margin-bottom: 4px;
}

.option small {
  color: var(--muted);
  line-height: 1.4;
}

.event-options {
  overflow: visible;
}

.event-preview {
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  z-index: 10;
  width: min(320px, 86vw);
  padding: 8px;
  border: 1px solid rgba(255, 217, 120, 0.66);
  border-radius: 8px;
  background: rgba(5, 5, 4, 0.96);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.55), 0 0 24px rgba(214, 169, 76, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px) scale(0.98);
  transition: opacity 180ms ease, transform 180ms ease;
}

.event-preview::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 12px;
  height: 12px;
  border-left: 1px solid rgba(255, 217, 120, 0.66);
  border-top: 1px solid rgba(255, 217, 120, 0.66);
  background: rgba(5, 5, 4, 0.96);
  transform: translateX(-50%) rotate(45deg);
}

.event-preview img,
.event-preview video {
  display: block;
  width: 100%;
  aspect-ratio: 12 / 7;
  border-radius: 6px;
  object-fit: cover;
}

.event-options .option:hover .event-preview,
.event-options .option:focus-within .event-preview {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.sound-options.is-locked {
  opacity: 0.58;
}

.sound-options.is-locked .option,
.lighting-options.is-locked .option {
  cursor: not-allowed;
}

.lighting-options.is-locked {
  opacity: 0.58;
}

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

.check {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  font-weight: 720;
}

.check:has(input:disabled) {
  cursor: not-allowed;
  opacity: 0.58;
}

.check.is-neon {
  animation: neonBorder 1000ms ease-out;
}

@keyframes neonBorder {
  0% {
    border-color: var(--gold-bright);
    box-shadow: 0 0 0 rgba(255, 217, 120, 0);
  }

  22% {
    border-color: var(--white);
    box-shadow:
      0 0 10px rgba(255, 250, 240, 0.85),
      0 0 22px rgba(255, 217, 120, 0.78),
      inset 0 0 14px rgba(255, 217, 120, 0.28);
  }

  100% {
    border-color: var(--line);
    box-shadow: 0 0 0 rgba(255, 217, 120, 0);
  }
}

.calendar {
  display: grid;
  gap: 14px;
}

.calendar-top {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 10px;
}

.calendar-top strong {
  color: var(--white);
  text-align: center;
  text-transform: capitalize;
}

.calendar-nav,
.calendar-day {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--white);
  background: rgba(8, 8, 6, 0.72);
  cursor: pointer;
}

.calendar-nav {
  min-height: 42px;
  font-size: 1.45rem;
  font-weight: 900;
}

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

.calendar-weekdays span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.calendar-day {
  min-height: 46px;
  font-weight: 850;
}

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

.calendar-day.is-available {
  border-color: rgba(255, 217, 120, 0.58);
}

.calendar-day.is-selected {
  color: #090806;
  background: linear-gradient(145deg, var(--gold-bright), var(--gold));
  box-shadow: 0 0 22px rgba(214, 169, 76, 0.24);
}

.calendar-day:disabled {
  color: rgba(255, 250, 240, 0.32);
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.04);
}

.selected-date {
  color: var(--gold-bright);
  font-weight: 800;
}

.slider-row {
  display: grid;
  grid-template-columns: 110px 1fr 44px;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-weight: 800;
}

.slider-row output {
  min-height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #0a0906;
  background: linear-gradient(145deg, var(--gold-bright), var(--gold));
}

.slider-row input {
  accent-color: var(--gold-bright);
}

.summary {
  position: sticky;
  top: 24px;
}

.summary-card {
  display: grid;
  gap: 20px;
  padding: 22px;
  border-radius: 8px;
  position: relative;
}

.summary-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  pointer-events: none;
  border: 1px solid rgba(255, 217, 120, 0.22);
  border-radius: 6px;
}

.summary-top {
  display: grid;
  gap: 8px;
  position: relative;
  justify-items: center;
  text-align: center;
}

.summary-top span {
  color: var(--muted);
  font-weight: 800;
}

.summary-top strong {
  position: relative;
  z-index: 2;
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  line-height: 0.95;
  color: var(--gold-bright);
  text-shadow: 0 0 22px rgba(214, 169, 76, 0.32);
}

.price-sparks {
  position: absolute;
  inset: 18px -4px -10px;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle, var(--white) 0 2px, transparent 3px) 12% 18% / 18px 18px,
    radial-gradient(circle, var(--gold-bright) 0 2px, transparent 3px) 82% 28% / 22px 22px,
    radial-gradient(circle, var(--gold) 0 2px, transparent 3px) 18% 82% / 20px 20px,
    radial-gradient(circle, var(--white) 0 1px, transparent 3px) 72% 84% / 16px 16px,
    radial-gradient(circle, var(--gold-bright) 0 1px, transparent 3px) 52% 4% / 18px 18px;
  background-repeat: no-repeat;
}

.summary-top.has-sparks .price-sparks {
  animation: priceSparks 1100ms ease-out;
}

.summary-top.has-active-sparks .price-sparks {
  opacity: 1;
  animation: priceSparksLoop 1600ms ease-in-out infinite;
}

@keyframes priceSparks {
  0% {
    opacity: 0;
    transform: scale(0.82);
    filter: blur(1px);
  }

  24% {
    opacity: 1;
    transform: scale(1.05);
    filter: blur(0);
  }

  100% {
    opacity: 0;
    transform: scale(1.32);
    filter: blur(2px);
  }
}

@keyframes priceSparksLoop {
  0% {
    transform: scale(0.98) rotate(0deg);
    filter: blur(0);
  }

  50% {
    transform: scale(1.16) rotate(1deg);
    filter: blur(0.4px);
  }

  100% {
    transform: scale(0.98) rotate(0deg);
    filter: blur(0);
  }
}

.meters {
  display: grid;
  gap: 13px;
}

.meters span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.meter {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(255, 217, 120, 0.28);
  background: rgba(255, 250, 240, 0.12);
}

.meter i {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--white), var(--gold-bright), var(--gold-deep));
  transition: width 180ms ease;
}

.cta-box {
  display: grid;
  gap: 14px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 217, 120, 0.28);
  background: rgba(214, 169, 76, 0.1);
}

.primary-button {
  display: grid;
  min-height: 48px;
  place-items: center;
  padding: 0 18px;
  color: #090806;
  background: linear-gradient(145deg, var(--gold-bright), var(--gold));
  box-shadow: 0 0 24px rgba(214, 169, 76, 0.22);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-panel {
  width: min(560px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 22px;
  border: 1px solid rgba(255, 217, 120, 0.5);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 217, 120, 0.08), transparent 120px),
    var(--panel-strong);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.72);
}

.modal-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.modal-heading h2 {
  color: var(--white);
}

.modal-close {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 217, 120, 0.46);
  border-radius: 8px;
  color: var(--white);
  background: rgba(214, 169, 76, 0.12);
  cursor: pointer;
  font-size: 1.45rem;
  font-weight: 900;
}

.request-form {
  display: grid;
  gap: 14px;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--gold-bright);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
}

.form-status.is-error {
  color: #ffb4a8;
}

.form-status.is-success {
  color: #fff3c7;
}

.selected-date.is-error {
  color: #ffb4a8;
  text-shadow: 0 0 16px rgba(255, 88, 64, 0.5);
}

.modal-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 4px;
}

@media (max-width: 1060px) {
  .home-cover {
    min-height: calc(100vh - 108px);
  }

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

  .summary {
    position: static;
  }
}

@media (max-width: 760px) {
  .app-shell {
    padding: 16px;
  }

  .site-header {
    position: static;
    align-items: stretch;
    flex-direction: column;
  }

  .site-nav {
    justify-content: stretch;
  }

  .site-nav a {
    flex: 1 1 100%;
  }

  .site-nav .instagram-link {
    justify-content: center;
  }

  .home-cover {
    min-height: calc(100vh - 238px);
    padding-top: 0;
  }

  .home-logo {
    height: calc(100vh - 238px);
    min-height: 360px;
  }

  .home-logo img {
    height: 100%;
  }

  .about-question,
  .about-statement,
  .about-temple {
    max-width: 100%;
    font-size: clamp(0.66rem, 2.65vw, 0.98rem) !important;
  }

  .workspace {
    min-height: calc(100vh - 32px);
  }

  .topbar {
    align-items: stretch;
    flex-direction: column;
  }

  .field-grid,
  .option-grid,
  .check-grid,
  .technical-grid,
  .stage-specs,
  .dj-logo-grid,
  .location-control,
  .modal-actions {
    grid-template-columns: 1fr;
  }

  .configurator,
  .group,
  .summary-card {
    padding: 14px;
  }

  .group-heading {
    grid-template-columns: 40px 1fr;
  }

  .step {
    width: 38px;
    height: 38px;
  }

  .slider-row {
    grid-template-columns: 1fr 44px;
  }

  .slider-row label {
    grid-column: 1 / -1;
  }
}
