:root {
  --background: #050509;
  --surface: #0d0d14;
  --surface-secondary: #15141c;
  --primary: #a45acb;
  --primary-hover: #b46ad8;
  --primary-soft: rgba(164, 90, 203, 0.16);
  --accent-text: #c77dff;
  --text-main: #ffffff;
  --text-muted: #aaa7b3;
  --border: rgba(199, 125, 255, 0.18);
  --white-border: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(115deg, rgba(164, 90, 203, 0.07), transparent 32%),
    linear-gradient(180deg, #08080e 0%, var(--background) 44%, #050509 100%);
  color: var(--text-main);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

body::selection {
  background: rgba(199, 125, 255, 0.28);
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1180px, calc(100% - 40px));
  margin: 18px auto 0;
  padding: 14px 18px 14px 22px;
  border: 1px solid var(--white-border);
  border-radius: 22px;
  background: rgba(5, 5, 9, 0.82);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.brand {
  font-size: 20px;
  font-weight: 800;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: var(--text-muted);
  font-size: 14px;
}

.main-nav a,
.header-cta,
.button,
.work-card,
.album-card {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

.main-nav a:hover {
  color: var(--text-main);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(199, 125, 255, 0.3);
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--text-main);
  font-size: 14px;
  font-weight: 700;
}

.header-cta:hover {
  background: rgba(180, 106, 216, 0.22);
  transform: translateY(-1px);
}

.mobile-menu {
  display: none;
}

.mobile-menu summary {
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--white-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px 0;
  border-radius: 999px;
  background: var(--text-main);
}

.mobile-nav {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: grid;
  width: min(300px, calc(100vw - 28px));
  padding: 10px;
  border: 1px solid var(--white-border);
  border-radius: 20px;
  background: rgba(10, 10, 15, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.mobile-menu:not([open]) .mobile-nav {
  display: none;
}

.mobile-menu[open] .mobile-nav {
  display: grid;
}

.mobile-nav a {
  min-height: 44px;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 760;
}

.mobile-nav a:hover {
  background: rgba(164, 90, 203, 0.1);
  color: var(--text-main);
}

.dsound-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  align-items: center;
  gap: 64px;
  width: min(1180px, calc(100% - 40px));
  min-height: 92svh;
  margin: 0 auto;
  padding: 136px 0 76px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-text);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h1 {
  margin: 0;
  font-size: clamp(38px, 4.7vw, 62px);
  line-height: 1.1;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero-copy h1 {
  max-width: 680px;
}

.hero-copy h1 span {
  color: var(--accent-text);
}

.hero-subtitle {
  max-width: 610px;
  margin: 26px 0 0;
  color: var(--text-muted);
  font-size: clamp(17px, 1.3vw, 20px);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--text-main);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.button-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  box-shadow: 0 14px 30px rgba(164, 90, 203, 0.2);
}

.button-secondary,
.button-ghost {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.035);
}

.button-ghost {
  background: transparent;
  color: var(--text-muted);
}

.button:hover {
  transform: translateY(-2px);
}

.button-secondary:hover,
.button-ghost:hover {
  border-color: rgba(199, 125, 255, 0.34);
  background: rgba(164, 90, 203, 0.09);
  color: var(--text-main);
}

.hero-panel {
  border: 1px solid var(--white-border);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    rgba(13, 13, 20, 0.9);
  box-shadow: var(--shadow);
}

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

.request-card {
  padding: 26px;
}

.request-card h2 {
  margin: 0 0 2px;
  font-size: 24px;
  line-height: 1.15;
}

.request-card label,
.full-form label,
.full-form .form-field {
  display: grid;
  gap: 8px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
}

.request-card input,
.request-card select,
.full-form input,
.full-form select,
.full-form textarea,
.custom-select-button {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid var(--white-border);
  border-radius: 16px;
  outline: none;
  background: rgba(255, 255, 255, 0.052);
  color: var(--text-main);
  font: inherit;
}

.custom-select-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}

.custom-select-button::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 12px;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg) translateY(-2px);
  transition: transform 180ms ease;
}

.custom-multiselect.is-open .custom-select-button::after {
  transform: rotate(225deg) translateY(-1px);
}

.custom-select-button span {
  overflow: hidden;
  color: var(--text-muted);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.custom-multiselect.has-value .custom-select-button span {
  color: var(--text-main);
}

.full-form textarea {
  min-height: 128px;
  padding: 14px;
  resize: vertical;
}

.request-card select,
.full-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--text-muted) 50%),
    linear-gradient(135deg, var(--text-muted) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 20px,
    calc(100% - 12px) 20px;
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
}

.request-card option,
.full-form option {
  background: var(--surface);
  color: var(--text-main);
}

.request-card input:focus,
.request-card select:focus,
.full-form input:focus,
.full-form select:focus,
.full-form textarea:focus,
.custom-select-button:focus {
  border-color: rgba(199, 125, 255, 0.42);
}

.request-card input[aria-invalid="true"],
.full-form input[aria-invalid="true"],
.custom-select-button[aria-invalid="true"] {
  border-color: rgba(199, 125, 255, 0.68);
}

.public-status-card {
  display: grid;
  gap: 18px;
}

.public-status-card h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

.status-muted {
  margin: 0;
  color: var(--text-muted);
}

.status-main {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(199, 125, 255, 0.22);
  border-radius: 16px;
  background: rgba(199, 125, 255, 0.08);
}

.status-main span,
.status-grid span {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 800;
}

.status-main strong {
  font-size: clamp(22px, 3vw, 34px);
}

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

.status-grid > div,
.status-service-list p,
.status-comment {
  margin: 0;
  padding: 14px;
  border: 1px solid var(--white-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.052);
}

.public-status-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.status-service-list {
  display: grid;
  gap: 10px;
}

.status-service-list p {
  display: grid;
  gap: 5px;
}

.status-service-list span {
  color: var(--text-muted);
}

.public-status-page {
  min-height: 100vh;
  padding: 34px 20px 48px;
  background:
    radial-gradient(circle at 16% 8%, rgba(164, 90, 203, 0.18), transparent 30%),
    linear-gradient(180deg, #050509 0%, #0b0a11 100%);
  color: var(--text-main);
}

.public-status-shell {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.public-status-header {
  display: grid;
  gap: 8px;
  margin-bottom: 26px;
}

.public-status-header h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
}

.public-status-header p:last-child {
  max-width: 560px;
  margin: 0;
  color: var(--text-muted);
  font-size: 16px;
}

.public-status-loading,
.public-status-error,
.public-info-card,
.public-order-hero {
  border: 1px solid rgba(199, 125, 255, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent),
    rgba(13, 13, 20, 0.9);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.public-status-loading,
.public-status-error {
  padding: 24px;
}

.public-order-page {
  display: grid;
  gap: 18px;
}

.public-order-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 18px;
  align-items: stretch;
  padding: 22px;
}

.public-order-car {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 230px;
}

.public-order-car h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1.02;
}

.public-order-car p {
  margin: 0;
}

.public-current-status {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(199, 125, 255, 0.18);
  border-radius: 20px;
  background: rgba(164, 90, 203, 0.1);
}

.public-current-status > div {
  display: grid;
  gap: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.public-current-status span,
.public-info-card dt,
.public-service-list span {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 750;
}

.public-current-status strong {
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.12;
}

.public-status-badge {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  padding: 8px 13px;
  border: 1px solid rgba(199, 125, 255, 0.26);
  border-radius: 999px;
  background: rgba(164, 90, 203, 0.18);
  color: var(--accent-text) !important;
}

.public-status-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.8fr);
  gap: 18px;
}

.public-status-column {
  display: grid;
  gap: 18px;
  align-content: start;
}

.public-info-card {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.public-info-card h3 {
  margin: 0;
  font-size: 20px;
}

.public-info-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.public-info-card dl > div {
  display: grid;
  grid-template-columns: minmax(120px, 0.45fr) minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
}

.public-info-card dd {
  margin: 0;
  font-weight: 800;
}

.public-service-list {
  display: grid;
  gap: 10px;
}

.public-service-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, auto);
  gap: 12px;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.public-stage-card strong {
  color: var(--accent-text);
  font-size: 26px;
}

.public-timeline {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.public-timeline li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  color: var(--text-muted);
}

.public-timeline li span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  font-size: 13px;
  font-weight: 900;
}

.public-timeline li.is-done,
.public-timeline li.is-active {
  color: var(--text-main);
}

.public-timeline li.is-done span,
.public-timeline li.is-active span {
  border-color: rgba(199, 125, 255, 0.38);
  background: rgba(164, 90, 203, 0.2);
  color: var(--accent-text);
}

.public-comment {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
}

.form-field {
  position: relative;
}

.custom-dropdown {
  position: absolute;
  z-index: 30;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: none;
  max-height: min(320px, 58vh);
  overflow: auto;
  padding: 8px;
  border: 1px solid rgba(199, 125, 255, 0.2);
  border-radius: 16px;
  background: rgba(13, 13, 20, 0.98);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(14px);
  scrollbar-width: thin;
  scrollbar-color: rgba(199, 125, 255, 0.45) rgba(255, 255, 255, 0.06);
}

.form-field.is-open .custom-dropdown {
  display: grid;
  gap: 6px;
}

.choice-row {
  display: grid !important;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: center;
  gap: 10px !important;
  min-height: 42px;
  padding: 9px 10px;
  border-radius: 12px;
  color: var(--text-main) !important;
  cursor: pointer;
}

.choice-row:hover,
.year-dropdown button:hover,
.year-dropdown button:focus {
  background: rgba(164, 90, 203, 0.12);
}

.choice-row input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--primary);
}

.choice-row-consult {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--accent-text) !important;
}

.dropdown-done {
  width: 100%;
  min-height: 40px;
  margin-top: 4px;
}

.year-dropdown {
  max-height: 248px;
}

.year-dropdown button {
  min-height: 38px;
  padding: 0 10px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--text-main);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-align: left;
}

.field-error {
  color: var(--accent-text);
  font-size: 13px;
  line-height: 1.35;
}

.request-card .button {
  width: 100%;
  margin-top: 2px;
}

.request-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.45;
}

.prices-section,
.portfolio-preview,
.about-section,
.service-form-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.prices-section {
  padding: 10px 0 88px;
}

.prices-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.prices-tabs {
  display: none;
  flex: 0 0 auto;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--white-border);
  border-radius: 999px;
  background: rgba(13, 13, 20, 0.78);
}

.price-tab {
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.price-tab.is-active {
  border-color: rgba(199, 125, 255, 0.24);
  background: rgba(164, 90, 203, 0.14);
  color: var(--text-main);
}

.prices-tables {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.price-table-card {
  overflow: hidden;
  border: 1px solid var(--white-border);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), transparent),
    rgba(13, 13, 20, 0.86);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.22);
}

.price-table-card h3 {
  margin: 0;
  padding: 22px 24px 0;
  font-size: 22px;
  line-height: 1.2;
}

.price-table-scroll {
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: 16px 18px 20px;
  scrollbar-width: thin;
}

.price-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  table-layout: fixed;
}

.price-table th,
.price-table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
  padding: 15px 16px;
  text-align: left;
  vertical-align: middle;
}

.price-table tr:last-child th,
.price-table tr:last-child td {
  border-bottom: 0;
}

.price-table thead th {
  color: var(--accent-text);
  font-size: 13px;
  font-weight: 800;
}

.price-table th:first-child {
  width: 30%;
}

.price-table tbody th {
  color: var(--text-main);
  font-size: 14px;
  font-weight: 760;
}

.price-table td {
  color: var(--text-muted);
  font-size: 14px;
}

.price-table .is-available {
  color: var(--accent-text);
  font-size: 18px;
  font-weight: 900;
}

.price-table .is-request {
  color: var(--text-muted);
}

.price-table .is-muted {
  color: rgba(170, 167, 179, 0.42);
}

.prices-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 15px 18px;
  border: 1px solid var(--white-border);
  border-radius: 18px;
  background: rgba(13, 13, 20, 0.76);
  color: var(--text-muted);
}

.prices-note span {
  display: inline-grid;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(199, 125, 255, 0.22);
  border-radius: 50%;
  color: var(--accent-text);
  font-size: 13px;
  font-weight: 900;
}

.prices-note p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.price-scroll-hint {
  display: none;
  margin: 16px 0 0;
  color: var(--text-muted);
  font-size: 13px;
}

.portfolio-preview {
  padding: 24px 0 88px;
}

.portfolio-preview-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.portfolio-all-link {
  flex: 0 0 auto;
}

.section-heading {
  max-width: 720px;
}

.section-heading h2,
.about-copy h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.15;
}

.section-heading p:not(.eyebrow),
.about-copy p {
  margin: 16px 0 0;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.65;
}

.carousel {
  overflow-x: auto;
  overflow-y: hidden;
  margin-top: 34px;
  padding: 2px;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
}

.carousel-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  width: max-content;
}

.carousel-hint {
  display: none;
}

.work-card,
.album-card {
  overflow: hidden;
  border: 1px solid var(--white-border);
  background: rgba(13, 13, 20, 0.82);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
}

.work-card {
  width: 260px;
  flex: 0 0 auto;
  border-radius: 18px;
}

.work-card:hover,
.album-card:hover {
  border-color: rgba(199, 125, 255, 0.26);
  transform: translateY(-3px);
}

.work-card img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.work-card span,
.work-card small,
.album-card span,
.album-card small {
  display: block;
}

.work-card span {
  padding: 14px 14px 2px;
  font-weight: 800;
}

.work-card small {
  padding: 0 14px 14px;
  color: var(--text-muted);
}

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

.album-card {
  border-radius: 18px;
}

.portfolio-image-shell {
  display: block;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(164, 90, 203, 0.12), transparent 48%),
    var(--surface-secondary);
}

.work-card .portfolio-image-shell,
.album-card .portfolio-image-shell {
  width: 100%;
}

.work-card .portfolio-image-shell,
.work-card img {
  aspect-ratio: 1.35;
}

.album-card .portfolio-image-shell,
.album-card img {
  aspect-ratio: 1.2;
}

.album-card img,
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.album-card span {
  padding: 14px 14px 2px;
  font-weight: 800;
}

.album-card small {
  padding: 0 14px 16px;
  color: var(--text-muted);
}

.album-card em {
  display: block;
  padding: 0 14px 16px;
  color: var(--accent-text);
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
}

.portfolio-fallback {
  display: none;
  width: 100%;
  height: 100%;
  min-height: 160px;
  place-items: center;
  padding: 18px;
  color: var(--text-muted);
  font-weight: 800;
  text-align: center;
}

.portfolio-image-shell.is-missing .portfolio-fallback {
  display: grid;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: 58px;
  padding: 0 0 96px;
}

.about-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.about-gallery img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
  border: 1px solid var(--white-border);
  border-radius: 18px;
  background: var(--surface-secondary);
}

.about-gallery img:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
  height: 100%;
}

.form-page {
  min-height: 100svh;
  padding: 136px 0 80px;
}

.prices-page {
  min-height: 100svh;
  padding: 136px 0 80px;
}

.contacts-page {
  min-height: 100svh;
  padding: 136px 0 80px;
}

.album-page {
  min-height: 100svh;
  padding: 136px 0 80px;
}

.portfolio-page {
  min-height: 100svh;
  padding: 136px 0 80px;
}

.contacts-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.contacts-heading {
  max-width: 800px;
}

.contacts-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  align-items: start;
  gap: 28px;
  margin-top: 34px;
}

.contacts-list {
  display: grid;
  gap: 16px;
}

.contact-card,
.map-card {
  border: 1px solid var(--white-border);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    rgba(13, 13, 20, 0.88);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.22);
}

.contact-card {
  padding: 24px;
}

.contact-card-featured {
  border-color: rgba(199, 125, 255, 0.22);
  background:
    linear-gradient(145deg, rgba(164, 90, 203, 0.12), transparent 52%),
    rgba(13, 13, 20, 0.92);
}

.contact-label {
  margin: 0 0 10px;
  color: var(--accent-text);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.16;
}

.contact-card p:not(.contact-label):not(.contact-note) {
  margin: 12px 0 0;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-card address {
  margin-top: 16px;
  color: var(--text-main);
  font-style: normal;
  font-weight: 760;
  line-height: 1.55;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

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

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

.contact-details dt {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 800;
}

.contact-details dd {
  margin: 0;
  color: var(--text-main);
  font-weight: 760;
}

.contact-details a:hover {
  color: var(--accent-text);
}

.contact-note {
  margin: 16px 0 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}

.map-card {
  position: sticky;
  top: 112px;
  overflow: hidden;
  min-height: 560px;
}

.map-placeholder {
  display: grid;
  width: 100%;
  min-height: 560px;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 32px;
  background:
    linear-gradient(145deg, rgba(164, 90, 203, 0.13), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    #111019;
  text-align: center;
}

.map-placeholder span {
  color: var(--text-muted);
  font-size: 15px;
}

.map-placeholder strong {
  color: var(--text-main);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.12;
}

.service-form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 0.9fr);
  gap: 54px;
  align-items: start;
}

.full-form {
  grid-template-columns: 1fr 1fr;
  padding: 26px;
  border: 1px solid var(--white-border);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    rgba(13, 13, 20, 0.9);
  box-shadow: var(--shadow);
}

.wide-field,
.full-form .button {
  grid-column: 1 / -1;
}

.consent-field {
  display: grid !important;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
}

.consent-field input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.form-message {
  min-height: 22px;
  margin: 0;
  color: var(--accent-text);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.form-message.is-success {
  color: #7ee2a8;
}

.booking-success {
  display: grid;
  grid-column: 1 / -1;
  gap: 16px;
  min-height: 340px;
  align-content: center;
  justify-items: start;
}

.booking-success h2 {
  margin: 0;
  font-size: clamp(30px, 7vw, 44px);
  line-height: 1.1;
}

.booking-success p {
  max-width: 520px;
  margin: 0;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.5;
}

.full-form .button {
  width: max-content;
}

.album-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.portfolio-page-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.portfolio-albums-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.album-back {
  width: max-content;
  margin-top: 22px;
}

.album-photos {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  margin-top: 34px;
}

.album-photos img {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
  border: 1px solid var(--white-border);
  border-radius: 20px;
  background: var(--surface-secondary);
}

.album-photos img:first-child {
  grid-row: span 2;
  min-height: 536px;
}

@media (max-width: 1060px) {
  .dsound-hero {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
    gap: 38px;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

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

@media (max-width: 880px) {
  .public-status-page {
    padding: 20px 14px 28px;
  }

  .public-status-header {
    margin-bottom: 16px;
  }

  .public-status-header h1 {
    font-size: 34px;
  }

  .public-order-hero,
  .public-status-grid {
    grid-template-columns: 1fr;
  }

  .public-order-hero {
    gap: 12px;
    padding: 14px;
    border-radius: 20px;
  }

  .public-order-car {
    min-height: 0;
  }

  .public-order-car h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .public-current-status,
  .public-info-card {
    padding: 15px;
    border-radius: 18px;
  }

  .public-current-status strong {
    font-size: 22px;
  }

  .public-service-list article,
  .public-info-card dl > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .public-status-grid,
  .public-status-column,
  .public-order-page {
    gap: 12px;
  }

  .site-header {
    gap: 12px;
    width: min(100% - 28px, 760px);
  }

  .main-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu summary {
    display: grid;
  }

  .dsound-hero,
  .about-section,
  .service-form-section,
  .contacts-layout {
    grid-template-columns: 1fr;
  }

  .dsound-hero {
    width: min(100% - 28px, 760px);
    min-height: auto;
    gap: 34px;
    padding-top: 124px;
  }

  .prices-section,
  .portfolio-preview,
  .about-section,
  .service-form-section,
  .contacts-section,
  .portfolio-page-section,
  .album-section {
    width: min(100% - 28px, 760px);
  }

  .portfolio-preview-head {
    display: grid;
    gap: 18px;
  }

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

  .prices-header {
    display: grid;
    gap: 24px;
  }

  .prices-tabs {
    width: max-content;
    max-width: 100%;
    overflow-x: auto;
  }

  .map-card {
    position: static;
    min-height: 380px;
  }

  .map-placeholder {
    min-height: 380px;
  }

  .about-section {
    gap: 30px;
  }
}

@media (max-width: 620px) {
  .status-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    margin-top: 12px;
    padding: 12px;
    border-radius: 18px;
  }

  .brand {
    font-size: 18px;
  }

  .header-cta {
    min-height: 38px;
    padding: 0 14px;
    font-size: 13px;
  }

  .dsound-hero {
    width: min(100% - 24px, 480px);
    padding-top: 104px;
    padding-bottom: 46px;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 12px;
  }

  .hero-copy h1,
  .section-heading h1 {
    font-size: clamp(28px, 8vw, 34px);
    line-height: 1.1;
    word-break: break-word;
  }

  .hero-subtitle {
    margin-top: 20px;
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    margin-top: 28px;
  }

  .button {
    width: 100%;
    min-height: 48px;
  }

  .request-card,
  .full-form {
    padding: 18px;
  }

  .request-card input,
  .request-card select,
  .full-form input,
  .full-form select,
  .custom-select-button {
    min-height: 50px;
  }

  .full-form textarea {
    min-height: 136px;
  }

  .prices-section,
  .portfolio-preview,
  .about-section,
  .service-form-section,
  .portfolio-page-section,
  .contacts-section {
    width: min(100% - 24px, 480px);
  }

  .prices-section {
    padding-bottom: 64px;
  }

  .prices-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    border-radius: 18px;
  }

  .price-scroll-hint {
    display: block;
  }

  .price-tab {
    min-height: 44px;
    padding: 0 10px;
    font-size: 13px;
  }

  .prices-tables {
    margin-top: 24px;
  }

  .price-table-card:not(.is-active) {
    display: none;
  }

  .price-table-card h3 {
    padding: 18px 18px 0;
    font-size: 20px;
  }

  .price-table-scroll {
    padding: 12px 12px 16px;
  }

  .price-table {
    min-width: 680px;
  }

  .price-table th,
  .price-table td {
    padding: 13px 14px;
    font-size: 13px;
  }

  .price-table th:first-child,
  .price-table td:first-child {
    position: sticky;
    left: 0;
    z-index: 1;
    background: #101018;
  }

  .price-table thead th:first-child {
    z-index: 2;
  }

  .prices-note {
    align-items: flex-start;
    border-radius: 16px;
  }

  .portfolio-preview {
    padding-bottom: 64px;
  }

  .carousel {
    overflow-x: auto;
    overflow-y: hidden;
    mask-image: none;
    scroll-snap-type: x mandatory;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .carousel::-webkit-scrollbar {
    display: none;
  }

  .carousel-track {
    flex-wrap: nowrap;
    gap: 14px;
    padding-right: 16px;
  }

  .work-card {
    width: auto;
    max-width: 360px;
    flex: 0 0 84vw;
    scroll-snap-align: start;
  }

  .carousel-hint {
    display: block;
    margin-top: 10px !important;
    color: var(--text-muted);
    font-size: 13px !important;
  }

  .album-grid,
  .portfolio-albums-grid,
  .full-form {
    grid-template-columns: 1fr;
  }

  .about-gallery {
    grid-template-columns: 1fr;
  }

  .about-gallery img:first-child {
    grid-row: auto;
    height: auto;
  }

  .form-page {
    padding-top: 112px;
  }

  .prices-page {
    padding-top: 112px;
  }

  .contacts-page {
    padding-top: 112px;
  }

  .album-page {
    padding-top: 112px;
  }

  .portfolio-page {
    padding-top: 112px;
  }

  .contact-card {
    padding: 18px;
  }

  .contact-actions {
    display: grid;
  }

  .map-card,
  .map-placeholder {
    min-height: 340px;
  }

  .full-form .button {
    width: 100%;
  }

  .custom-dropdown {
    max-height: min(300px, 52vh);
  }

  .album-photos {
    grid-template-columns: 1fr;
  }

  .album-photos img,
  .album-photos img:first-child {
    grid-row: auto;
    min-height: 240px;
  }
}

@media (max-width: 390px) {
  .site-header {
    width: calc(100% - 20px);
    padding: 10px;
  }

  .header-cta {
    display: none;
  }

  .mobile-nav {
    width: calc(100vw - 20px);
  }

  .dsound-hero,
  .prices-section,
  .portfolio-preview,
  .about-section,
  .service-form-section,
  .portfolio-page-section,
  .contacts-section {
    width: min(100% - 20px, 370px);
  }

  .hero-copy h1,
  .section-heading h1 {
    max-width: 100%;
    font-size: 28px;
    line-height: 1.12;
    word-break: break-word;
  }

  .hero-subtitle,
  .section-heading p:not(.eyebrow),
  .about-copy p {
    font-size: 15px;
  }

  .button {
    padding: 0 16px;
    font-size: 13px;
  }

  .request-card h2,
  .contact-card h2 {
    font-size: 22px;
  }

  .price-table {
    min-width: 640px;
  }

  .map-card,
  .map-placeholder {
    min-height: 320px;
  }
}

/* Prices page: card-based price list */
.prices-section .section-heading {
  max-width: 780px;
}

.price-badge {
  display: inline-flex;
  width: max-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(199, 125, 255, 0.24);
  border-radius: 999px;
  background: rgba(164, 90, 203, 0.14);
  color: var(--accent-text);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.prices-lead {
  max-width: 720px;
  margin-top: 12px;
}

.prices-disclaimer {
  margin: 26px 0 0;
  padding: 16px 18px;
  border: 1px solid var(--white-border);
  border-radius: 18px;
  background: rgba(13, 13, 20, 0.76);
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.prices-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  width: auto;
  max-width: 100%;
  margin-top: 24px;
  padding: 5px;
  border-radius: 999px;
  position: relative;
  isolation: isolate;
  --tab-x: 5px;
  --tab-width: 0px;
  --tab-height: 42px;
}

.price-tab {
  position: relative;
  z-index: 1;
  min-height: 42px;
  transition:
    color 220ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.price-tab.is-active {
  background: transparent;
  box-shadow: none;
}

.prices-tabs-indicator {
  position: absolute;
  z-index: 0;
  top: 5px;
  left: 0;
  width: var(--tab-width);
  height: var(--tab-height);
  border: 1px solid rgba(199, 125, 255, 0.24);
  border-radius: 999px;
  background: rgba(164, 90, 203, 0.14);
  box-shadow: 0 10px 28px rgba(164, 90, 203, 0.16);
  transform: translateX(var(--tab-x));
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    width 240ms cubic-bezier(0.22, 1, 0.36, 1),
    height 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.prices-content {
  margin-top: 28px;
  min-height: 560px;
  transition: height 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.price-section-panel {
  display: none;
  gap: 18px;
}

.price-section-panel.is-active {
  display: grid;
  animation: tabFadeIn 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.prices-content.is-switching {
  overflow: hidden;
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.price-section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding: 22px 24px;
  border: 1px solid var(--white-border);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(164, 90, 203, 0.1), transparent 48%),
    rgba(13, 13, 20, 0.84);
}

.price-section-title h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.12;
}

.price-section-title p {
  max-width: 380px;
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.price-kicker {
  margin: 0 0 8px !important;
  color: var(--accent-text) !important;
  font-size: 12px !important;
  font-weight: 900;
  text-transform: uppercase;
}

.price-groups {
  display: grid;
  gap: 16px;
}

.price-group-card {
  overflow: hidden;
  border: 1px solid var(--white-border);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.032), transparent),
    rgba(13, 13, 20, 0.88);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.18);
}

.price-group-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px 8px;
}

.price-group-head h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.price-group-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.45;
  text-align: right;
}

.price-list {
  display: grid;
  padding: 0 18px 18px;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  align-items: center;
  gap: 24px;
  padding: 16px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
}

.price-row:last-child {
  border-bottom: 0;
}

.price-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.price-copy strong {
  color: var(--text-main);
  font-size: 15px;
  line-height: 1.35;
}

.price-copy span {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.45;
}

.price-amount {
  display: grid;
  justify-items: end;
  gap: 4px;
  text-align: right;
}

.price-value {
  color: var(--accent-text);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.price-meta,
.price-pill {
  width: max-content;
  max-width: 100%;
  padding: 6px 10px;
  border: 1px solid var(--white-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.price-pill {
  white-space: nowrap;
}

.prices-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  padding: 24px;
  border: 1px solid rgba(199, 125, 255, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(164, 90, 203, 0.13), transparent 50%),
    rgba(13, 13, 20, 0.9);
}

.prices-cta h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.18;
}

.prices-cta p {
  max-width: 620px;
  margin: 8px 0 0;
  color: var(--text-muted);
  line-height: 1.55;
}

@media (max-width: 880px) {
  .prices-tabs {
    display: flex;
    width: 100%;
    border-radius: 22px;
  }

  .price-tab {
    flex: 1 1 calc(50% - 6px);
  }

  .price-section-title,
  .price-group-head,
  .prices-cta {
    display: grid;
  }

  .price-section-title p,
  .price-group-head p {
    max-width: none;
    text-align: left;
  }
}

@media (max-width: 620px) {
  .prices-disclaimer {
    margin-top: 22px;
    padding: 14px 16px;
  }

  .prices-tabs {
    grid-template-columns: none;
    gap: 8px;
    padding: 6px;
    --tab-height: 46px;
  }

  .price-tab {
    flex-basis: 100%;
    min-height: 46px;
  }

  .prices-tabs-indicator {
    top: 6px;
  }

  .prices-content {
    min-height: 680px;
  }

  .price-section-title,
  .price-group-card,
  .prices-cta {
    border-radius: 20px;
  }

  .price-section-title,
  .prices-cta {
    padding: 18px;
  }

  .price-group-head {
    padding: 18px 18px 6px;
  }

  .price-list {
    padding: 0 14px 14px;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 15px 4px;
  }

  .price-amount {
    justify-items: start;
    text-align: left;
  }

  .price-value {
    padding: 7px 10px;
    border: 1px solid rgba(199, 125, 255, 0.22);
    border-radius: 999px;
    background: rgba(164, 90, 203, 0.11);
    font-size: 16px;
  }

  .price-pill {
    white-space: normal;
  }

  .prices-cta .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .prices-tabs-indicator,
  .price-tab,
  .prices-content {
    transition: none;
  }

  .price-section-panel {
    animation: none;
  }
}
