:root {
  color-scheme: dark;
  --bg: #050505;
  --panel: #0c0c0e;
  --panel-2: #121216;
  --paper: #f7f7f4;
  --paper-text: #090909;
  --text: #fbf8ee;
  --muted: rgba(251, 248, 238, 0.68);
  --line: rgba(255, 255, 255, 0.12);
  --gold: #f1c45a;
  --blue: #3168f6;
  --danger: #ff7f95;
  --good: #77efb2;
  --shadow: 0 34px 110px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(241, 196, 90, 0.11), transparent 34rem),
    radial-gradient(circle at 88% 8%, rgba(49, 104, 246, 0.12), transparent 28rem),
    linear-gradient(180deg, #050505 0%, #09090c 48%, #050505 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

input[data-allow-paste],
textarea[data-allow-paste] {
  -webkit-user-select: text;
  user-select: text;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(20px);
}

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

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
}

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

.brand strong {
  font-size: 18px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: rgba(251, 248, 238, 0.84);
  font-size: 15px;
  font-weight: 700;
}

nav a:hover {
  color: var(--gold);
}

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

.header-cta,
.primary-action,
.book-button {
  background: var(--blue);
  color: white;
}

.primary-action:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

main {
  overflow: hidden;
}

section {
  padding: clamp(74px, 9vw, 132px) clamp(18px, 5vw, 78px);
}

.hero-section {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(390px, 0.9fr);
  align-items: center;
  gap: clamp(34px, 6vw, 82px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 960px;
  margin-bottom: 24px;
  font-size: clamp(56px, 8.6vw, 132px);
  line-height: 0.88;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 72px);
  line-height: 0.98;
}

h3 {
  margin-bottom: 14px;
  font-size: 24px;
}

p {
  color: var(--muted);
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.72;
}

.hero-actions,
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin: 34px 0 30px;
}

.hero-facts span {
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(251, 248, 238, 0.82);
  font-size: 12px;
  font-weight: 850;
}

.hero-visual {
  position: relative;
  min-height: 610px;
}

.photo-stage {
  height: min(62vw, 610px);
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(241, 196, 90, 0.22);
  background: #050505;
  box-shadow: var(--shadow);
}

.photo-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 82%;
  opacity: 0.78;
  filter: contrast(1.08) saturate(0.9);
}

.signal-card {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(340px, 82%);
  border: 1px solid rgba(241, 196, 90, 0.26);
  padding: 20px;
  background: rgba(0, 0, 0, 0.82);
  box-shadow: var(--shadow);
}

.signal-card strong,
.signal-card span {
  display: block;
}

.signal-card span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.section-head {
  max-width: 940px;
  margin-bottom: 34px;
}

.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.service-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(14px, 4vw, 58px);
  max-width: 1280px;
  margin: 0 auto 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.service-tabs button {
  min-height: 58px;
  border: 0;
  border-bottom: 5px solid transparent;
  background: transparent;
  color: rgba(251, 248, 238, 0.78);
  cursor: pointer;
  font-size: clamp(16px, 1.8vw, 24px);
}

.service-tabs .is-active {
  border-color: var(--blue);
  color: white;
}

.services-booking-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  max-width: 1500px;
  margin: 0 auto;
}

.service-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--paper);
  color: var(--paper-text);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.service-image {
  position: relative;
  aspect-ratio: 1.48;
  overflow: hidden;
  background: #111;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-image span {
  position: absolute;
  right: 16px;
  bottom: 14px;
  min-width: 86px;
  padding: 10px 14px;
  background: #f4dc80;
  color: #040404;
  font-size: 26px;
  font-weight: 950;
  text-align: center;
}

.service-body {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 3vw, 42px);
}

.service-body p {
  margin: 0;
  color: rgba(0, 0, 0, 0.56);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.service-body h3 {
  margin: 0;
  color: #050505;
  font-size: clamp(26px, 2.6vw, 42px);
  line-height: 1.13;
}

.service-body ul {
  display: grid;
  gap: 7px;
  min-height: 110px;
  margin: 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  color: rgba(0, 0, 0, 0.72);
  list-style: none;
}

.service-body li::before {
  content: "• ";
}

.service-meta {
  display: grid;
  gap: 8px;
  color: #111;
  font-size: 20px;
}

.service-meta strong {
  font-weight: 500;
}

.book-button {
  justify-self: start;
  min-width: 160px;
  font-size: 19px;
}

.vision-section {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(28px, 6vw, 80px);
  border-block: 1px solid rgba(255, 255, 255, 0.12);
  background: #000;
}

.vision-copy {
  columns: 2 280px;
  column-gap: 42px;
}

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

.services-grid article,
.contact-form,
.contact-card {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.services-grid article {
  min-height: 190px;
  padding: 22px;
}

.services-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  font-size: 19px;
}

.services-grid span {
  color: var(--muted);
  line-height: 1.6;
}

.productions-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 6vw, 82px);
}

.visual-panel {
  display: grid;
  place-items: center;
  min-height: 460px;
}

.visual-panel img {
  width: min(86%, 430px);
}

.quote-line {
  margin-top: 28px;
  border-left: 3px solid var(--gold);
  padding: 18px 0 18px 22px;
  color: var(--text);
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 900;
}

.contact-card {
  display: grid;
  gap: 10px;
  max-width: 500px;
  margin-top: 28px;
  padding: 22px;
}

.contact-card span,
.contact-card a {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 15px;
  padding: 24px;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(251, 248, 238, 0.78);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 0;
  padding: 14px;
  background: rgba(2, 3, 8, 0.72);
  color: var(--text);
  outline: none;
}

select {
  appearance: none;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(241, 196, 90, 0.1);
}

.form-status {
  margin: 0;
  color: rgba(251, 248, 238, 0.62);
  font-size: 13px;
}

.form-status.is-good {
  color: var(--good);
}

.form-status.is-error {
  color: var(--danger);
}

.booking-dialog {
  width: min(1120px, calc(100vw - 34px));
  max-height: calc(100vh - 34px);
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--paper-text);
}

.booking-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
}

.booking-card {
  position: relative;
  overflow: auto;
  max-height: calc(100vh - 34px);
  background: var(--paper);
  color: var(--paper-text);
  box-shadow: var(--shadow);
}

.booking-step {
  padding: clamp(34px, 5vw, 64px);
}

.booking-card h2,
.booking-card h3,
.booking-card p,
.booking-card label {
  color: var(--paper-text);
}

.booking-card .eyebrow,
.booking-card .muted-line {
  color: rgba(0, 0, 0, 0.58);
}

.booking-card h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
}

.dialog-close {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #111;
  cursor: pointer;
  font-size: 34px;
}

.booking-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.booking-progress span {
  padding: 18px;
  color: rgba(0, 0, 0, 0.42);
  text-align: center;
  font-weight: 800;
}

.booking-progress .is-active {
  color: var(--blue);
  box-shadow: inset 0 -4px 0 var(--blue);
}

.booking-progress .is-done {
  color: #111;
}

.extras-list {
  display: grid;
  gap: 22px;
  margin: 34px 0;
}

.extra-row,
.check-line {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: 18px;
  color: var(--paper-text);
  font-size: 20px;
  font-weight: 500;
  text-transform: none;
}

.extra-row input,
.check-line input {
  width: 22px;
  height: 22px;
  margin-top: 4px;
}

.extra-row span {
  display: grid;
  gap: 8px;
}

.extra-row small {
  max-width: 760px;
  color: rgba(0, 0, 0, 0.68);
  font-size: 16px;
  line-height: 1.5;
}

.extra-row b {
  font-weight: 500;
}

.booking-summary {
  display: grid;
  gap: 8px;
  margin: 26px 0;
  padding: 22px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: #fff;
}

.booking-summary strong,
.booking-summary span,
.booking-summary b {
  display: block;
}

.booking-summary span {
  color: rgba(0, 0, 0, 0.62);
}

.scheduler-layout {
  display: grid;
  grid-template-columns: 1fr 1fr minmax(270px, 0.75fr);
  gap: 32px;
  align-items: start;
  margin-top: 36px;
}

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

.calendar-strip button,
.time-grid button {
  min-height: 68px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: white;
  color: #111;
  cursor: pointer;
  font-size: 18px;
}

.calendar-strip button {
  display: grid;
  place-items: center;
  gap: 4px;
}

.calendar-strip span {
  color: rgba(0, 0, 0, 0.55);
  font-size: 14px;
}

.calendar-strip .is-active,
.time-grid .is-active {
  border-color: var(--blue);
  background: var(--blue);
  color: white;
}

.calendar-strip .is-active span {
  color: white;
}

.booking-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 28px;
}

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

.booking-card input,
.booking-card textarea,
.booking-card select {
  border: 2px solid rgba(0, 0, 0, 0.72);
  background: white;
  color: #111;
}

.wide {
  grid-column: 1 / -1;
}

.empty-note {
  margin: 0;
  padding: 18px;
  background: rgba(0, 0, 0, 0.06);
  color: rgba(0, 0, 0, 0.72);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 30px clamp(18px, 5vw, 76px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(251, 248, 238, 0.62);
}

@media (max-width: 1180px) {
  .services-booking-grid,
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 900px) {
  .site-header {
    position: relative;
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero-section,
  .vision-section,
  .productions-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 420px;
  }

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

@media (max-width: 680px) {
  section {
    padding-inline: 16px;
  }

  .hero-section {
    min-height: auto;
    padding-top: 64px;
  }

  .services-booking-grid,
  .services-grid,
  .calendar-strip,
  .time-grid {
    grid-template-columns: 1fr;
  }

  .header-cta,
  .primary-action,
  .secondary-action {
    width: 100%;
  }

  .booking-progress {
    grid-template-columns: 1fr;
  }
}
