:root {
  color-scheme: dark;
  --ink: #f7f3ea;
  --muted: #c9c0ae;
  --soft: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.16);
  --gold: #d9aa54;
  --gold-2: #f0d48a;
  --carbon: #090a0c;
  --panel: #111317;
  --panel-2: #171a20;
  --green: #8fd7ba;
  --red: #ec8e77;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --topbar-height: 38px;
  --header-expanded: 206px;
  --header-compact: 116px;
  --logo-expanded: 146px;
  --logo-compact: 58px;
  --page-width: 1520px;
  --page-gutter: clamp(1.25rem, 4vw, 4rem);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(217, 170, 84, 0.12), transparent 32rem),
    linear-gradient(135deg, #08090b 0%, #11141a 46%, #08090b 100%);
  color: var(--ink);
  font-size: 17px;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 8, 10, 0.9);
  backdrop-filter: blur(18px);
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(240, 212, 138, 0.24);
  background: rgba(7, 8, 10, 0.96);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.32);
}

.contact-topbar {
  border-bottom: 1px solid rgba(240, 212, 138, 0.22);
  background: rgba(217, 170, 84, 0.11);
  color: var(--gold-2);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.25;
}

.contact-topbar-inner {
  display: flex;
  width: min(var(--page-width), calc(100% - (var(--page-gutter) * 2)));
  min-height: var(--topbar-height);
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.8rem, 3vw, 1.8rem);
  margin-inline: auto;
}

.contact-topbar a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.contact-topbar a:hover {
  color: var(--ink);
}

.contact-topbar svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.whatsapp-link {
  color: inherit;
  font-weight: 500;
  letter-spacing: 0;
}

.contact-topbar .whatsapp-link svg {
  width: 15px;
  height: 15px;
}

.contact-topbar .whatsapp-link {
  letter-spacing: 0;
}

.header-inner {
  display: flex;
  width: min(var(--page-width), calc(100% - (var(--page-gutter) * 2)));
  min-height: calc(var(--header-expanded) - var(--topbar-height));
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-inline: auto;
  transition: min-height 220ms ease;
}

.site-header.is-scrolled .header-inner {
  min-height: calc(var(--header-compact) - var(--topbar-height));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: var(--logo-expanded);
  height: var(--logo-expanded);
  object-fit: contain;
  flex: 0 0 auto;
  transition:
    width 220ms ease,
    height 220ms ease;
}

.site-header.is-scrolled .brand-logo {
  width: var(--logo-compact);
  height: var(--logo-compact);
}

.brand strong,
.brand small {
  display: block;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.1;
}

.brand small {
  margin-top: 0.14rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.1rem, 3vw, 2.1rem);
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--ink);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--muted);
  cursor: pointer;
  list-style: none;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: translateY(-0.12rem) rotate(45deg);
}

.nav-dropdown:hover summary,
.nav-dropdown[open] summary {
  color: var(--ink);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.8rem);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 190px;
  overflow: hidden;
  transform: translateX(-50%);
  border: 1px solid rgba(240, 212, 138, 0.26);
  border-radius: 8px;
  background: rgba(9, 10, 12, 0.98);
  box-shadow: var(--shadow);
}

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

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: grid;
}

.nav-dropdown-menu a {
  padding: 0.85rem 1rem;
  color: var(--muted);
  white-space: nowrap;
}

.nav-dropdown-menu a + a {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-dropdown-menu a:hover {
  background: rgba(217, 170, 84, 0.11);
  color: var(--ink);
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.05rem;
  border: 1px solid rgba(217, 170, 84, 0.6);
  border-radius: 6px;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #171006;
  font-weight: 900;
  white-space: nowrap;
}

.hero {
  position: relative;
  display: grid;
  min-height: 94svh;
  align-items: end;
  overflow: hidden;
  padding: 8rem clamp(1rem, 5vw, 5rem) 2rem;
}

.split-hero {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 92svh;
  overflow: hidden;
  padding-top: var(--header-expanded);
}

.split-hero-panel {
  position: relative;
  display: flex;
  align-items: end;
  min-height: calc(92svh - var(--header-expanded));
  padding: clamp(2rem, 6vw, 5rem);
  background-position: center;
  background-size: cover;
}

.split-hero-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(7, 8, 10, 0.18), rgba(7, 8, 10, 0.92)),
    linear-gradient(90deg, rgba(7, 8, 10, 0.68), rgba(7, 8, 10, 0.22));
}

.split-hero-panel > div {
  position: relative;
  z-index: 1;
  max-width: 610px;
}

.split-hero-panel h1,
.split-hero-panel h2 {
  max-width: 680px;
  font-size: clamp(2.7rem, 5.2vw, 5.8rem);
}

.split-hero-panel p:not(.eyebrow) {
  max-width: 530px;
  margin: 1.2rem 0 1.6rem;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.65;
}

.aircraft-panel {
  background-image: url("https://images.unsplash.com/photo-1540962351504-03099e0a754b?auto=format&fit=crop&w=1600&q=82");
}

.car-panel {
  background-image: url("assets/red-car-detailing.jpeg");
}

.split-divider {
  position: absolute;
  z-index: 2;
  top: var(--header-expanded);
  bottom: 0;
  left: 50%;
  display: grid;
  width: 86px;
  align-content: center;
  justify-items: center;
  gap: 0.9rem;
  transform: translateX(-50%);
  border-inline: 1px solid rgba(240, 212, 138, 0.42);
  background: rgba(7, 8, 10, 0.72);
  backdrop-filter: blur(14px);
}

.split-divider span {
  writing-mode: vertical-rl;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.split-divider strong {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(240, 212, 138, 0.55);
  border-radius: 50%;
  color: var(--gold-2);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.quote-hero {
  position: relative;
  display: block;
  width: min(var(--page-width), calc(100% - (var(--page-gutter) * 2)));
  min-height: 440px;
  margin-inline: auto;
  padding: calc(var(--header-expanded) + 2rem) 0 4rem;
}

.quote-hero > * {
  position: relative;
  z-index: 1;
}

.quote-hero h1 {
  max-width: 980px;
  font-size: clamp(3rem, 6vw, 6rem);
}

.quote-type-control {
  position: relative;
  display: grid;
  gap: 0.65rem;
  width: min(100%, 760px);
  justify-items: center;
  margin: 2.25rem auto 0;
  padding-top: 1.5rem;
}

.quote-type-control::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(240, 212, 138, 0.42), transparent);
}

.quote-type-control span {
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quote-type-control .quote-type-switch {
  justify-self: center;
  width: fit-content;
}

.contact-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(310px, 0.9fr);
  width: min(var(--page-width), calc(100% - (var(--page-gutter) * 2)));
  min-height: 650px;
  align-items: end;
  gap: clamp(1rem, 5vw, 4rem);
  margin-inline: auto;
  padding: calc(var(--header-expanded) + 2.5rem) 0 4rem;
}

.contact-page-hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 6vw, 6rem);
}

.contact-direct-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 19, 23, 0.9);
  box-shadow: var(--shadow);
}

.contact-direct-card a {
  display: grid;
  gap: 0.35rem;
  padding: 1.25rem;
}

.contact-direct-card a + a {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-direct-card span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-direct-card strong {
  color: var(--gold-2);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.contact-page-section {
  padding-bottom: 5rem;
}

.catalogue-hero,
.catalogue-panel {
  width: min(var(--page-width), calc(100% - (var(--page-gutter) * 2)));
  margin-inline: auto;
}

.catalogue-hero {
  display: grid;
  min-height: 620px;
  align-items: end;
  padding: calc(var(--header-expanded) + 3rem) 0 4rem;
}

.catalogue-hero h1 {
  max-width: 1020px;
  font-size: clamp(3rem, 6.2vw, 6.4rem);
}

.catalogue-panel {
  display: grid;
  gap: 1.2rem;
  padding-bottom: 3rem;
}

.catalogue-panel[hidden] {
  display: none;
}

.catalogue-intro {
  display: grid;
  min-height: 430px;
  align-items: end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.catalogue-intro > div {
  max-width: 820px;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.catalogue-intro h2 {
  font-size: clamp(2.3rem, 4.5vw, 4.8rem);
}

.catalogue-intro p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.65;
}

.aviation-bg {
  background-image:
    linear-gradient(90deg, rgba(7, 8, 10, 0.88), rgba(7, 8, 10, 0.28)),
    url("https://images.unsplash.com/photo-1540962351504-03099e0a754b?auto=format&fit=crop&w=1800&q=82");
}

.automotive-bg {
  background-image:
    linear-gradient(90deg, rgba(7, 8, 10, 0.88), rgba(7, 8, 10, 0.24)),
    url("assets/red-car-detailing.jpeg");
}

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

.compact-grid {
  padding-top: 0.4rem;
}

.catalogue-card {
  min-height: 330px;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(217, 170, 84, 0.1), rgba(255, 255, 255, 0.045)),
    var(--panel);
  box-shadow: var(--shadow);
}

.catalogue-card.featured {
  border-color: rgba(240, 212, 138, 0.48);
  background:
    linear-gradient(135deg, rgba(217, 170, 84, 0.18), rgba(255, 255, 255, 0.06)),
    var(--panel);
}

.catalogue-card span {
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.catalogue-card h3 {
  margin: 2.1rem 0 0.75rem;
  font-size: clamp(1.35rem, 2.2vw, 1.7rem);
  line-height: 1.1;
}

.catalogue-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.catalogue-handover {
  width: 100%;
  margin-top: 0.4rem;
  margin-bottom: 0;
}

.automotive-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 1.2rem;
  align-items: center;
  padding: clamp(1.3rem, 3vw, 2rem);
  border: 1px solid rgba(217, 170, 84, 0.35);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(217, 170, 84, 0.14), rgba(255, 255, 255, 0.045)),
    var(--panel-2);
  box-shadow: var(--shadow);
}

.automotive-feature h2 {
  font-size: clamp(2rem, 3.6vw, 3.8rem);
}

.catalogue-contact {
  margin-top: 1rem;
}

.quote-type-switch {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.quote-type-switch::before {
  display: none;
}

.quote-type-switch a,
.quote-type-switch button {
  min-width: 120px;
  border: 0;
  padding: 0.9rem 1.1rem;
  background: transparent;
  text-align: center;
  color: var(--muted);
  cursor: pointer;
  font-weight: 900;
}

.quote-type-switch a.active,
.quote-type-switch button.active {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #171006;
}

.division-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(var(--page-width), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.division-column + .division-column {
  border-left: 1px solid rgba(240, 212, 138, 0.28);
}

.division-image {
  min-height: 340px;
  background-position: center;
  background-size: cover;
}

.aircraft-image {
  background-image:
    linear-gradient(180deg, transparent, rgba(7, 8, 10, 0.36)),
    url("https://images.unsplash.com/photo-1540962351504-03099e0a754b?auto=format&fit=crop&w=1200&q=82");
}

.car-image {
  background-image:
    linear-gradient(180deg, transparent, rgba(7, 8, 10, 0.36)),
    url("assets/red-car-detailing.jpeg");
}

.division-copy {
  padding: clamp(1.25rem, 3vw, 2rem);
}

.division-copy h2 {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
}

.division-copy p {
  color: var(--muted);
  line-height: 1.65;
}

.division-copy ul {
  display: grid;
  gap: 0.55rem;
  margin: 1.2rem 0 1.5rem;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.division-copy li::before {
  content: "+";
  margin-right: 0.5rem;
  color: var(--gold-2);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1540962351504-03099e0a754b?auto=format&fit=crop&w=2200&q=82");
  background-position: center;
  background-size: cover;
  filter: saturate(0.85) contrast(1.08);
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 5, 7, 0.94) 0%, rgba(4, 5, 7, 0.62) 45%, rgba(4, 5, 7, 0.28) 100%),
    linear-gradient(0deg, #08090b 0%, transparent 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 790px;
  padding-bottom: clamp(3rem, 12vh, 7rem);
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--gold-2);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.25rem, 7vw, 7.6rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

.hero-copy {
  max-width: 590px;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.82rem 1.2rem;
  cursor: pointer;
  font-weight: 800;
  font-size: 1rem;
}

.button.primary {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #171006;
  box-shadow: 0 14px 34px rgba(217, 170, 84, 0.23);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
}

.button.full {
  width: 100%;
}

.hero-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 680px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(12, 13, 16, 0.74);
  backdrop-filter: blur(18px);
}

.hero-stats div {
  padding: 1.1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong {
  display: block;
  color: var(--gold-2);
  font-size: 1.75rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.85rem;
}

.intro-section,
.services-section,
.handover-section,
.packages-section,
.contact-form-section,
.quote-shell,
.visual-band {
  width: min(var(--page-width), calc(100% - (var(--page-gutter) * 2)));
  margin-inline: auto;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
  gap: 2rem;
  padding: 5rem 0 3rem;
  scroll-margin-top: 92px;
}

.intro-section p:last-child {
  align-self: end;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.7;
}

.packages-section {
  padding: 2rem 0 3rem;
  scroll-margin-top: 92px;
}

.packages-section[hidden],
.quote-shell[hidden] {
  display: none;
}

.contact-redirect {
  display: flex;
  width: min(var(--page-width), calc(100% - (var(--page-gutter) * 2)));
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin: 0 auto 4rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid rgba(217, 170, 84, 0.35);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(217, 170, 84, 0.16), rgba(255, 255, 255, 0.05)),
    var(--panel);
  box-shadow: var(--shadow);
}

.contact-redirect[hidden] {
  display: none;
}

.contact-redirect h2 {
  max-width: 820px;
  font-size: clamp(2rem, 3.5vw, 3.6rem);
}

.contact-redirect p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.65;
}

.contact-form-section {
  margin-bottom: 5rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 19, 23, 0.88);
  box-shadow: var(--shadow);
  scroll-margin-top: 92px;
}

.quote-form.contact-form {
  max-width: min(100%, 980px);
  margin-top: 1.4rem;
}

.contact-form-section .quote-form.contact-form {
  max-width: 1120px;
}

.services-section {
  padding: 3rem 0;
  scroll-margin-top: 92px;
}

.text-link {
  flex: 0 0 auto;
  color: var(--gold-2);
  font-weight: 900;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(217, 170, 84, 0.12), rgba(255, 255, 255, 0.04)),
    var(--panel);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.service-card span {
  color: var(--gold-2);
  font-weight: 900;
}

.service-card h3 {
  margin: 2.3rem 0 0.75rem;
  font-size: 1.45rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.handover-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  overflow: hidden;
  margin-top: 1rem;
  margin-bottom: 2rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.handover-image {
  min-height: 500px;
  background-image:
    linear-gradient(180deg, rgba(7, 8, 10, 0.08), rgba(7, 8, 10, 0.46)),
    url("https://images.unsplash.com/photo-1540962351504-03099e0a754b?auto=format&fit=crop&w=1400&q=82");
  background-position: center;
  background-size: cover;
}

.handover-copy {
  display: grid;
  align-content: center;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.handover-copy p {
  max-width: 790px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.handover-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 1.2rem 0 1.5rem;
}

.handover-list span {
  min-height: 46px;
  padding: 0.72rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-weight: 800;
}

.handover-list span::before {
  content: "+";
  margin-right: 0.5rem;
  color: var(--gold-2);
}

.section-heading {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.packages-section .section-heading > * {
  position: relative;
  z-index: 1;
}

.section-heading.compact {
  display: block;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.package-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  cursor: pointer;
  box-shadow: var(--shadow);
}

.package-card.selected {
  border-color: rgba(240, 212, 138, 0.9);
}

.package-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  filter: saturate(0.9);
}

.package-body {
  padding: 1.2rem;
}

.package-body h3 {
  margin: 0;
  font-size: 1.5rem;
}

.package-badge {
  display: inline-flex;
  margin-bottom: 0.7rem;
  border: 1px solid rgba(240, 212, 138, 0.38);
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.package-body p {
  color: var(--muted);
  line-height: 1.55;
}

.package-price {
  color: var(--gold-2);
  font-size: 1.55rem;
  font-weight: 900;
}

.package-body ul {
  display: grid;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
  line-height: 1.45;
}

.package-body li::before {
  content: "+";
  margin-right: 0.5rem;
  color: var(--gold-2);
}

.quote-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.65fr);
  gap: 1.5rem;
  align-items: start;
  padding: 3rem 0 5rem;
  scroll-margin-top: 92px;
}

.quote-builder,
.quote-summary {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 19, 23, 0.88);
  box-shadow: var(--shadow);
}

.quote-builder {
  padding: clamp(1rem, 3vw, 2rem);
}

.quote-summary {
  position: sticky;
  top: 92px;
  padding: 1.4rem;
}

.control-group {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 0;
  border: 0;
}

label,
legend {
  color: var(--ink);
  font-weight: 800;
}

select,
input,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  background: #0b0d10;
  color: var(--ink);
  padding: 0 0.9rem;
  outline: none;
}

select:focus,
input:focus,
textarea:focus {
  border-color: rgba(240, 212, 138, 0.8);
  box-shadow: 0 0 0 3px rgba(217, 170, 84, 0.14);
}

textarea {
  min-height: 110px;
  padding: 0.85rem 0.9rem;
  resize: vertical;
}

.radio-stack {
  display: grid;
  gap: 0.65rem;
}

.package-option,
.addon-card,
.checkbox-line {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.package-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.8rem;
  align-items: center;
  padding: 0.9rem;
}

.package-option span {
  color: var(--muted);
}

.addon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.addon-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  min-height: 94px;
  padding: 0.9rem;
  cursor: pointer;
}

.addon-card:has(input:checked),
.package-option:has(input:checked),
.checkbox-line:has(input:checked) {
  border-color: rgba(240, 212, 138, 0.85);
  background: rgba(217, 170, 84, 0.11);
}

.addon-card strong,
.addon-card span,
.package-option strong,
.package-option span {
  display: block;
}

.addon-card span,
.package-option span {
  margin-top: 0.25rem;
  font-size: 0.96rem;
}

.addon-card em {
  display: block;
  margin-top: 0.35rem;
  color: var(--gold-2);
  font-style: normal;
  font-weight: 900;
}

.control-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.checkbox-line {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem;
}

input[type="checkbox"],
input[type="radio"] {
  width: 18px;
  min-height: 18px;
  accent-color: var(--gold);
}

.price-block {
  margin-top: 1.2rem;
  padding: 1.2rem;
  border: 1px solid rgba(217, 170, 84, 0.35);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(217, 170, 84, 0.18), rgba(255, 255, 255, 0.04)),
    #111317;
}

.price-block span,
.price-block small {
  display: block;
  color: var(--muted);
}

.price-block strong {
  display: block;
  margin: 0.25rem 0;
  color: var(--gold-2);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1;
}

.summary-list {
  display: grid;
  gap: 0.7rem;
  margin: 1.2rem 0;
}

.summary-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-list dt {
  color: var(--muted);
}

.summary-list dd {
  margin: 0;
  text-align: right;
  font-weight: 800;
}

.quote-form {
  display: grid;
  gap: 0.85rem;
}

.quote-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.form-status {
  min-height: 1.3rem;
  color: var(--green);
}

.visual-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 290px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background-image:
    linear-gradient(90deg, rgba(7, 8, 10, 0.72), rgba(7, 8, 10, 0.22)),
    url("https://images.unsplash.com/photo-1554744512-d6c603f27c54?auto=format&fit=crop&w=1800&q=82");
  background-position: center;
  background-size: cover;
}

.visual-band div {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 1.4rem;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.visual-band div:last-child {
  border-right: 0;
}

.visual-band span {
  color: var(--gold-2);
  font-weight: 800;
}

.visual-band strong {
  margin-top: 0.35rem;
  font-size: 1.35rem;
}

.site-footer {
  margin-top: 4rem;
  border-top: 1px solid rgba(217, 170, 84, 0.24);
  background:
    linear-gradient(180deg, rgba(217, 170, 84, 0.08), transparent 45%),
    #07080a;
  color: var(--muted);
}

.footer-inner,
.footer-bottom {
  width: min(var(--page-width), calc(100% - (var(--page-gutter) * 2)));
  margin-inline: auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, 0.55fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(2.5rem, 6vw, 4rem) 0;
}

.footer-brand p {
  max-width: 360px;
  margin: 1rem 0 0;
  line-height: 1.65;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 0.7rem;
}

.site-footer h2 {
  margin: 0 0 0.45rem;
  color: var(--ink);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-footer strong,
.site-footer span,
.site-footer small {
  display: block;
}

.site-footer a,
.footer-contact a {
  color: var(--muted);
}

.footer-contact a[href^="mailto"] {
  color: var(--gold-2);
}

.site-footer a:hover {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.86rem;
}

.footer-bottom a {
  color: var(--gold-2);
}

@media (max-width: 920px) {
  :root {
    --topbar-height: 42px;
    --header-expanded: 200px;
    --header-compact: 146px;
    --logo-expanded: 94px;
    --logo-compact: 54px;
  }

  .contact-topbar-inner {
    justify-content: center;
    overflow-x: auto;
  }

  .main-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    gap: 1rem;
    padding-top: 0.35rem;
    white-space: nowrap;
  }

  .nav-dropdown-menu {
    left: 0;
    transform: none;
  }

  .header-inner {
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    padding: 0.8rem 0;
  }

  .intro-section,
  .quote-shell,
  .handover-section,
  .automotive-feature {
    grid-template-columns: 1fr;
  }

  .split-hero,
  .division-flow {
    grid-template-columns: 1fr;
  }

  .split-hero-panel {
    min-height: 58svh;
  }

  .split-divider {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    display: flex;
    width: 100%;
    min-height: 72px;
    justify-content: center;
    transform: none;
    border-block: 1px solid rgba(240, 212, 138, 0.42);
    border-inline: 0;
  }

  .split-divider span {
    writing-mode: horizontal-tb;
  }

  .division-column + .division-column {
    border-top: 1px solid rgba(240, 212, 138, 0.28);
    border-left: 0;
  }

  .contact-page-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .package-grid,
  .service-grid,
  .catalogue-grid,
  .visual-band {
    grid-template-columns: 1fr;
  }

  .catalogue-hero {
    min-height: auto;
  }

  .handover-image {
    min-height: 320px;
  }

  .contact-redirect {
    align-items: start;
    flex-direction: column;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .quote-summary {
    position: static;
  }

  .visual-band div {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
}

@media (max-width: 620px) {
  :root {
    --topbar-height: 70px;
    --header-expanded: 196px;
    --header-compact: 160px;
    --logo-expanded: 58px;
    --logo-compact: 48px;
  }

  .contact-topbar {
    font-size: 0.76rem;
  }

  .contact-topbar-inner {
    align-content: center;
    flex-wrap: wrap;
    gap: 0.35rem 0.85rem;
    padding: 0.42rem 0;
  }

  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: calc(var(--header-expanded) - var(--topbar-height));
    align-items: center;
    gap: 0.65rem 0.9rem;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-content: center;
    padding-top: 0.15rem;
    font-size: 0.84rem;
  }

  .header-cta {
    justify-self: end;
    min-height: 38px;
    padding: 0.65rem 0.8rem;
    font-size: 0.85rem;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .packages-section .section-heading::before {
    display: none;
  }

  .footer-bottom {
    align-items: start;
    flex-direction: column;
  }

  .brand strong,
  .brand small {
    display: block;
    font-size: clamp(0.64rem, 2.6vw, 0.78rem);
    line-height: 1.12;
  }

  .brand-logo {
    width: var(--logo-expanded);
    height: var(--logo-expanded);
  }

  .hero {
    min-height: 92svh;
    padding-top: 8rem;
  }

  .split-hero {
    padding-top: var(--header-expanded);
  }

  .split-hero-panel {
    min-height: 520px;
    padding: 1.25rem;
  }

  .split-hero-panel h1,
  .split-hero-panel h2,
  .quote-hero h1 {
    font-size: clamp(2.7rem, 14vw, 4.4rem);
  }

  .quote-hero {
    min-height: 390px;
    padding-top: calc(var(--header-expanded) + 1rem);
  }

  .contact-page-hero {
    padding-top: calc(var(--header-expanded) + 1.25rem);
  }

  .quote-type-switch,
  .quote-type-switch a,
  .quote-type-switch button {
    width: 100%;
  }

  .catalogue-hero {
    padding-top: calc(var(--header-expanded) + 1rem);
  }

  .handover-list {
    grid-template-columns: 1fr;
  }

  .hero-stats,
  .addon-grid,
  .control-row {
    grid-template-columns: 1fr;
  }

  .hero-stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-stats div:last-child {
    border-bottom: 0;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.6rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .header-inner,
  .brand-logo {
    transition: none;
  }
}
