:root {
  color-scheme: dark;
  --bg: #07090b;
  --panel: #11161a;
  --panel-2: #171b1c;
  --text: #f5f2ea;
  --muted: #b8b5ad;
  --line: rgba(255, 255, 255, 0.1);
  --gold: #d6b15c;
  --steel: #8fb5c7;
  --green: #70d99b;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(143, 181, 199, 0.12), transparent 38%),
    radial-gradient(circle at 82% 20%, rgba(214, 177, 92, 0.13), transparent 22%),
    #07090b;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 44px;
  align-items: center;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: linear-gradient(180deg, rgba(7, 9, 11, 0.78), rgba(7, 9, 11, 0.16) 72%, rgba(7, 9, 11, 0));
  backdrop-filter: blur(14px);
}

.brand,
.site-header nav,
.ig-link,
.button,
.ig-big {
  min-height: 44px;
}

.brand {
  display: inline-flex;
  justify-self: start;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-logo {
  width: clamp(230px, 24vw, 360px);
  max-height: 76px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.46));
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.93rem;
}

.site-header nav a:hover,
.contact-card a:hover {
  color: var(--text);
}

.ig-link,
.ig-big {
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.ig-link {
  width: 44px;
}

.ig-link svg,
.ig-big svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

body.lightbox-open {
  overflow: hidden;
}

.hero {
  min-height: 190vh;
}

.hero-stage {
  position: sticky;
  top: 0;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 92px clamp(20px, 5vw, 72px) 72px;
}

.hero-canvas,
.hero-car {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-canvas {
  z-index: 1;
  display: block;
  background:
    radial-gradient(circle at 50% 66%, rgba(214, 177, 92, 0.18), transparent 18%),
    radial-gradient(circle at 46% 48%, rgba(143, 181, 199, 0.12), transparent 28%),
    linear-gradient(180deg, #090c0f 0%, #050607 100%);
}

.hero-car {
  object-fit: cover;
  transform: scale(calc(1 + var(--hero-progress, 0) * 0.46)) translateY(calc(var(--hero-progress, 0) * -4vh));
  filter: brightness(calc(0.8 + var(--hero-progress, 0) * -0.18)) contrast(1.08);
  transition: transform 80ms linear, filter 80ms linear;
}

.fallback-car {
  opacity: 0;
  z-index: 0;
}

.no-webgl .fallback-car {
  opacity: 1;
}

.no-webgl .hero-canvas {
  display: none;
}

.hero-shade {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 9, 11, 0.74), rgba(7, 9, 11, 0.08) 50%, rgba(7, 9, 11, 0.78)),
    linear-gradient(0deg, rgba(7, 9, 11, calc(0.18 + var(--hero-progress, 0) * 0.78)), transparent 42%, rgba(7, 9, 11, 0.42));
}

.hero-copy {
  position: absolute;
  left: 50%;
  bottom: clamp(62px, 9vh, 104px);
  z-index: 3;
  width: min(1180px, calc(100% - 36px));
  opacity: var(--hero-copy-progress, 0);
  transform: translate(-50%, calc((1 - var(--hero-copy-progress, 0)) * 42px));
  text-align: left;
  pointer-events: none;
  will-change: opacity, transform;
}

.hero-copy h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2.9rem, 5.8vw, 6.2rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
  text-wrap: balance;
  text-shadow: 0 12px 44px rgba(0, 0, 0, 0.72);
}

.hero-copy .kicker {
  margin-bottom: 14px;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.82);
}

.kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  max-width: 720px;
  font-size: clamp(3.1rem, 8vw, 8.4rem);
  line-height: 0.92;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.6vw, 4.7rem);
  line-height: 0.98;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
}

.hero-copy p:not(.kicker),
.builder-copy > p,
.contact p {
  max-width: 610px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.24rem);
  line-height: 1.55;
}

.hero-copy p:not(.kicker) {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(245, 242, 234, 0.78);
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.82);
}

.hero-actions,
.form-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  padding: 0 18px;
  font-weight: 800;
  cursor: pointer;
  border-radius: 8px;
}

.button.primary {
  background: var(--gold);
  color: #10100e;
  border-color: var(--gold);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.06);
}

.scroll-cue {
  position: absolute;
  right: clamp(20px, 4vw, 60px);
  bottom: 38px;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  opacity: calc(1 - var(--hero-copy-progress, 0) * 1.8);
  transition: opacity 120ms linear;
}

.scroll-cue span {
  width: 1px;
  height: 52px;
  background: linear-gradient(var(--gold), transparent);
}

.section-wrap {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 104px 0;
  scroll-margin-top: 110px;
}

.section-wrap::before {
  content: "";
  position: absolute;
  top: 64px;
  left: 0;
  width: min(170px, 28vw);
  height: 1px;
  background: linear-gradient(90deg, rgba(214, 177, 92, 0.72), transparent);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 700ms ease, transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.section-wrap.is-visible::before {
  opacity: 1;
  transform: scaleX(1);
}

.reveal-item {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 720ms ease,
    transform 820ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 240ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
}

.intro > div:first-child {
  align-self: center;
  padding-top: 10px;
}

.intro-grid,
.service-bands {
  display: grid;
  gap: 14px;
}

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

.intro-grid article,
.service-bands article,
.contact-card,
.ig-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, rgba(143, 181, 199, 0.08), transparent);
  box-shadow: var(--shadow);
}

.intro-grid article {
  min-height: 210px;
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.intro-grid article.is-visible {
  animation: soft-card-glow 900ms ease both;
}

.intro-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
}

.intro-grid span,
.service-bands p,
.form-footer p {
  color: var(--muted);
  line-height: 1.5;
}

.section-heading {
  display: block;
  margin-bottom: 30px;
}

.section-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(2.1rem, 3.4vw, 3.4rem);
}

.services .section-heading {
  text-align: left;
}

.intro > div > h2,
.builder-copy h2 {
  font-size: clamp(2.1rem, 3.4vw, 3.4rem);
}

.service-bands {
  display: block;
  border-top: 1px solid rgba(214, 177, 92, 0.42);
}

.service-bands article {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  grid-template-rows: auto 1fr;
  column-gap: clamp(40px, 7vw, 92px);
  min-height: 0;
  padding: 34px 0 36px;
  position: relative;
  overflow: visible;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.package-heading {
  display: grid;
  grid-column: 1;
  justify-items: start;
  align-content: start;
  gap: 7px;
  margin: 0;
  text-align: left;
}

.package-heading h3 {
  margin: 0;
  color: var(--gold);
  font-size: clamp(1.25rem, 1.65vw, 1.6rem);
  line-height: 1.15;
  text-shadow: 0 0 22px rgba(214, 177, 92, 0.12);
}

.package-heading strong {
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.service-bands article > p {
  grid-column: 1;
  max-width: 32ch;
  margin: 16px 0 0;
  text-align: left;
}

.service-bands ul {
  display: grid;
  grid-column: 2;
  grid-row: 1 / span 2;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(24px, 4vw, 54px);
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  align-self: start;
}

.service-bands li {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  align-items: baseline;
  column-gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(245, 242, 234, 0.82);
  line-height: 1.42;
}

.service-bands li::before {
  content: "";
  width: 12px;
  height: 1px;
  background: var(--gold);
  transform: translateY(-0.28em);
}

.service-bands article::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 110px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(480px, 1.28fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: center;
}

.builder-copy {
  position: sticky;
  top: 112px;
  padding: 4px 0;
}

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

label {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--muted);
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--text);
  font: inherit;
  padding: 13px 14px;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(214, 177, 92, 0.45);
  outline-offset: 1px;
}

.gallery-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(10, 13, 15, 0.9);
}

.price-catalog-heading {
  max-width: 840px;
}

.price-catalog-heading > p:not(.kicker) {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  line-height: 1.6;
}

.price-index {
  position: sticky;
  top: var(--site-header-h, 112px);
  z-index: 5;
  display: flex;
  gap: clamp(18px, 3vw, 40px);
  overflow-x: auto;
  padding: 16px 20px;
  border-top: 1px solid rgba(214, 177, 92, 0.42);
  border-left: 1px solid rgba(214, 177, 92, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(7, 9, 11, 0.92);
  backdrop-filter: blur(14px);
  scrollbar-width: none;
}

.price-index::-webkit-scrollbar {
  display: none;
}

.price-index a {
  flex: 0 0 auto;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: color 180ms ease;
}

.price-index a:hover,
.price-index a:focus-visible {
  color: var(--gold);
}

.price-chapters {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.price-chapter {
  display: grid;
  grid-template-columns: minmax(210px, 0.54fr) minmax(0, 1.46fr);
  gap: clamp(42px, 7vw, 100px);
  padding: 62px 0 70px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  scroll-margin-top: calc(var(--site-header-h, 112px) + 74px);
}

.price-chapter-heading {
  position: sticky;
  top: 160px;
  align-self: start;
}

.price-chapter-heading h3 {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: clamp(1.65rem, 2.5vw, 2.35rem);
  line-height: 1.05;
}

.price-chapter-heading p {
  max-width: 27ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.price-items {
  min-width: 0;
}

.price-subgroup {
  margin: 0;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(214, 177, 92, 0.4);
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price-subgroup:not(:first-child) {
  margin-top: 42px;
}

.price-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 28px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.085);
}

.price-item h4 {
  margin: 0;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.3;
}

.price-item p {
  max-width: 64ch;
  margin: 7px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.price-value {
  align-self: start;
  color: var(--gold);
  font-size: 0.98rem;
  white-space: nowrap;
}

.price-item details {
  grid-column: 1 / -1;
  margin-top: 8px;
}

.price-item summary {
  width: fit-content;
  color: rgba(214, 177, 92, 0.92);
  cursor: pointer;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.price-item details ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 30px;
  margin: 16px 0 2px;
  padding: 0;
  color: rgba(245, 242, 234, 0.78);
  list-style: none;
}

.price-item details li {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  align-items: baseline;
  column-gap: 10px;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.065);
}

.price-item details li::before {
  content: "";
  width: 12px;
  height: 1px;
  background: var(--gold);
  transform: translateY(-0.28em);
}

.inline-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin: 12px 0 0;
  padding: 0;
  color: rgba(245, 242, 234, 0.78);
  list-style: none;
}

.inline-options li::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 1px;
  margin: 0 10px 0 0;
  vertical-align: middle;
  background: var(--gold);
}

.brand-note,
.price-notice {
  margin: 20px 0 4px;
  padding: 14px 0 14px 18px;
  border-left: 1px solid var(--gold);
  color: var(--muted);
  line-height: 1.55;
}

.brand-note strong,
.price-notice strong {
  display: block;
  margin-bottom: 5px;
  color: var(--gold);
  letter-spacing: 0.06em;
}

.price-notice p {
  margin: 0;
}

.price-catalog-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(214, 177, 92, 0.42);
}

.price-catalog-cta p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.price-catalog-cta p strong {
  color: var(--text);
}

.price-catalog {
  padding-bottom: 36px;
}

.additional-info {
  display: grid;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(46px, 8vw, 120px);
  padding-top: 70px;
  padding-bottom: 70px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(214, 177, 92, 0.42);
}

.additional-info-heading h2 {
  max-width: 12ch;
  margin-bottom: 20px;
}

.additional-info-heading > p:last-child {
  max-width: 43ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.additional-info-label {
  margin: 0 0 18px;
  color: var(--text);
  font-weight: 800;
}

.additional-info-content ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
  margin: 0;
  padding: 0;
  color: rgba(245, 242, 234, 0.82);
  list-style: none;
}

.additional-info-content li {
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  align-items: baseline;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
}

.additional-info-content li::before {
  content: "";
  width: 12px;
  height: 1px;
  background: var(--gold);
  transform: translateY(-0.28em);
}

.additional-info-notes {
  margin-top: 30px;
  border-top: 1px solid rgba(214, 177, 92, 0.4);
}

.additional-info-notes p {
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  color: var(--muted);
  line-height: 1.6;
}

.additional-info-notes strong {
  color: var(--text);
}

.contact-section {
  padding-top: 64px;
}

.contact-section::before {
  top: 24px;
}

.gallery-panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.gallery-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(330px, 48%);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  padding-bottom: 12px;
}

.gallery-card {
  position: relative;
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  scroll-snap-align: start;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0c0f11;
}

.image-zoom {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
  font: inherit;
  text-align: inherit;
}

.gallery-card img {
  transform: scale(1.035);
  transition: transform 1200ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-panel.is-visible .gallery-card img {
  transform: scale(1);
}

.gallery-single img,
.comparison-side img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.zoom-hint {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(214, 177, 92, 0.34);
  border-radius: 8px;
  background: rgba(7, 9, 11, 0.72);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 900;
}

.gallery-single::after,
.comparison-side::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 64%, rgba(0, 0, 0, 0.38));
  pointer-events: none;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  height: 100%;
  min-height: 430px;
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.comparison-side {
  position: relative;
  min-width: 0;
  overflow: hidden;
}

.comparison-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  min-width: 54px;
  height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(7, 9, 11, 0.78);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding-top: 6px;
}

.gallery-controls button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  font-size: 1.8rem;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.gallery-controls button:hover {
  transform: translateY(-1px);
  border-color: rgba(214, 177, 92, 0.42);
  background: rgba(214, 177, 92, 0.12);
}

.ig-big {
  grid-template-columns: 34px auto;
  gap: 14px;
  min-width: min(330px, 90%);
  padding: 18px 22px;
  font-size: 1.2rem;
  font-weight: 900;
  border-color: rgba(214, 177, 92, 0.26);
}

.ig-big svg {
  width: 34px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: 28px;
  align-items: start;
  padding-bottom: 120px;
}

.contact-options {
  display: grid;
  gap: 14px;
}

.contact-map {
  grid-column: 1 / -1;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 390px;
  border: 0;
  filter: grayscale(1) invert(0.9) hue-rotate(180deg) brightness(0.92) contrast(1.02);
}

.site-footer {
  padding: 0 0 34px;
}

.site-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
}

.site-footer a {
  color: var(--gold);
  font-weight: 800;
  transition: color 180ms ease;
}

.site-footer a:hover {
  color: var(--text);
}

.contact-option {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 92px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.026));
  box-shadow: var(--shadow);
  transition: border-color 220ms ease, transform 220ms ease, background 220ms ease;
}

.contact-option:hover {
  border-color: rgba(214, 177, 92, 0.55);
  background: linear-gradient(145deg, rgba(214, 177, 92, 0.12), rgba(255, 255, 255, 0.035));
  transform: translateY(-2px);
}

.contact-option-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(214, 177, 92, 0.34);
  border-radius: 8px;
  color: var(--gold);
}

.contact-option-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-option > span:last-child {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.contact-option strong {
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-option > span:last-child > span {
  overflow-wrap: anywhere;
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  font-weight: 800;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(44px, 0.12fr) minmax(0, 1fr) minmax(44px, 0.12fr);
  place-items: center;
  gap: 18px;
  padding: clamp(18px, 4vw, 44px);
  background: rgba(4, 6, 8, 0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

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

.lightbox figure {
  display: grid;
  gap: 14px;
  width: min(1120px, 100%);
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.lightbox figcaption {
  color: var(--muted);
  text-align: center;
  font-weight: 800;
}

.lightbox-close,
.lightbox-nav {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  cursor: pointer;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 1.8rem;
}

.lightbox-nav {
  font-size: 2rem;
}

@keyframes card-sheen {
  0% {
    opacity: 0;
    transform: translateX(-45%);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(45%);
  }
}

@keyframes soft-card-glow {
  0% {
    box-shadow: 0 0 0 rgba(214, 177, 92, 0);
  }
  45% {
    box-shadow: 0 0 34px rgba(214, 177, 92, 0.12);
  }
  100% {
    box-shadow: 0 0 0 rgba(214, 177, 92, 0);
  }
}

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

  .site-header nav {
    display: none;
  }

  .hero-stage {
    align-items: end;
    padding: 118px 18px 56px;
  }

  .hero-car {
    object-position: 58% center;
  }

  .hero-copy {
    bottom: 58px;
  }

  .hero-copy h1 {
    max-width: 720px;
    font-size: clamp(2.7rem, 8vw, 4.8rem);
  }

  .intro,
  .contact-section,
  .additional-info {
    grid-template-columns: 1fr;
  }

  .additional-info {
    gap: 32px;
  }

  .additional-info-heading h2 {
    max-width: 18ch;
  }

  .builder-copy {
    position: static;
  }

  .intro-grid,
  .service-bands {
    grid-template-columns: 1fr;
  }

  .price-index {
    top: var(--site-header-h, 112px);
  }

  .price-chapter {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 48px 0 56px;
  }

  .price-chapter-heading {
    position: static;
  }

  .price-chapter-heading p {
    max-width: 56ch;
  }

  .service-bands article {
    display: block;
    min-height: 0;
  }

  .service-bands article,
  .service-bands article:nth-child(4),
  .service-bands article:nth-child(5) {
    grid-column: auto;
  }

  .package-heading {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 18px;
  }

  .service-bands ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 20px;
  }

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

  .gallery-track {
    grid-auto-columns: 86%;
  }

  .lightbox {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 8px;
    padding: 18px 10px;
  }

  .lightbox img {
    max-height: 76vh;
  }

  .scroll-cue {
    display: none;
  }
}

@media (max-width: 620px) {
  .hero-copy {
    bottom: 50px;
  }

  .hero-copy h1 {
    margin-bottom: 14px;
    font-size: clamp(2.25rem, 11vw, 3.2rem);
    line-height: 0.98;
  }

  .hero-copy .kicker {
    max-width: 26ch;
    margin-bottom: 10px;
  }

  .hero-copy p:not(.kicker) {
    max-width: 34ch;
    font-size: 1rem;
    line-height: 1.48;
  }

  .service-bands article {
    padding: 28px 0 30px;
  }

  .package-heading {
    display: grid;
    justify-content: start;
    gap: 5px;
  }

  .service-bands ul {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .price-index {
    gap: 22px;
    margin-inline: -18px;
    padding-inline: 36px 18px;
    border-left: 0;
  }

  .price-item {
    gap: 8px 16px;
  }

  .price-item details ul {
    grid-template-columns: 1fr;
  }

  .price-catalog-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .additional-info {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .additional-info-content ul {
    grid-template-columns: 1fr;
  }

  .contact-map,
  .contact-map iframe {
    min-height: 320px;
    height: 320px;
  }

  .site-footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-car,
  .reveal-item,
  .gallery-card img {
    transition: none;
    transform: none;
  }

  .hero-copy {
    opacity: 1;
    transform: translate(-50%, 0);
  }

  .reveal-item {
    opacity: 1;
  }

  .service-bands article.is-visible::before,
  .intro-grid article.is-visible {
    animation: none;
  }
}
