:root {
  --black: #080806;
  --ink: #16120c;
  --charcoal: #201d17;
  --steel: #78736a;
  --cream: #f5efe3;
  --cream-2: #e8dfcf;
  --white: #fffaf0;
  --line: rgba(19, 16, 11, 0.14);
  --gold: #b88b45;
  --champagne: #e0c78a;
  --shadow: 0 28px 90px rgba(8, 8, 6, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::selection {
  background: var(--champagne);
  color: var(--black);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 58px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(8, 8, 6, 0.82), rgba(8, 8, 6, 0));
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 8, 6, 0.94);
  border-bottom: 1px solid rgba(255, 250, 240, 0.1);
}

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

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border: 1px solid rgba(224, 199, 138, 0.34);
  background: rgba(8, 8, 6, 0.3);
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--champagne);
  border: 1px solid rgba(224, 199, 138, 0.58);
  background: rgba(255, 250, 240, 0.05);
  font-weight: 900;
}

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

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  color: rgba(255, 250, 240, 0.66);
  font-size: 0.72rem;
  margin-top: 3px;
}

.desktop-tabs {
  justify-self: center;
  display: inline-flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 250, 240, 0.11);
  background: rgba(8, 8, 6, 0.28);
  backdrop-filter: blur(16px);
}

.desktop-tabs a {
  padding: 10px 14px;
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.85rem;
  font-weight: 700;
}

.desktop-tabs a.active,
.desktop-tabs a:hover {
  color: var(--black);
  background: var(--champagne);
}

.call-pill {
  justify-self: end;
  padding: 13px 17px;
  color: var(--black);
  background: linear-gradient(135deg, var(--champagne), var(--gold));
  font-weight: 900;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroDrift 20s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    radial-gradient(circle at 76% 42%, rgba(224, 199, 138, 0.18), transparent 26%),
    linear-gradient(90deg, rgba(8, 8, 6, 0.94) 0%, rgba(8, 8, 6, 0.68) 46%, rgba(8, 8, 6, 0.08) 100%),
    linear-gradient(0deg, rgba(8, 8, 6, 0.76), rgba(8, 8, 6, 0.05));
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1040px;
  padding: 150px clamp(20px, 5vw, 72px) 82px;
}

.hero-kicker,
.eyebrow {
  margin: 0 0 14px;
  color: var(--champagne);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

h1 {
  max-width: 980px;
  margin-bottom: 22px;
  font-size: clamp(3.1rem, 7vw, 7.6rem);
  line-height: 0.9;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.8vw, 5.4rem);
  line-height: 0.96;
}

h3 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 500;
}

.hero p {
  max-width: 650px;
  color: rgba(255, 250, 240, 0.8);
  font-size: clamp(1rem, 2vw, 1.28rem);
  line-height: 1.7;
}

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

.hero-actions {
  margin-top: 30px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(255, 250, 240, 0.18);
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.btn.primary {
  color: var(--black);
  border-color: transparent;
  background: linear-gradient(135deg, var(--champagne), var(--gold));
}

.btn.glass {
  color: var(--white);
  background: rgba(255, 250, 240, 0.08);
  backdrop-filter: blur(16px);
}

.btn.full {
  width: 100%;
}

.signal-row {
  margin-top: 28px;
}

.signal-row span {
  padding-left: 12px;
  border-left: 1px solid rgba(224, 199, 138, 0.58);
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.9rem;
}

.hero-brand-panel {
  width: min(920px, 100%);
  margin-top: 28px;
  padding: clamp(18px, 2.5vw, 30px);
  background:
    linear-gradient(135deg, rgba(224, 199, 138, 0.16), rgba(255, 250, 240, 0.02) 48%, rgba(8, 8, 6, 0.02)),
    rgba(8, 8, 6, 0.72);
  border: 1px solid rgba(224, 199, 138, 0.34);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.brand-stage-kicker {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 250, 240, 0.66);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-stage-head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: baseline;
  margin-bottom: 10px;
}

.brand-stage-head strong {
  color: var(--champagne);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.05rem, 5vw, 5.2rem);
  font-weight: 500;
  line-height: 0.9;
  text-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
}

.brand-stage-head span {
  color: rgba(255, 250, 240, 0.56);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.4vw, 2.6rem);
}

.hero-brand-panel p {
  max-width: 730px;
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.98rem;
  line-height: 1.6;
}

.hero-repair-console {
  width: min(1040px, 100%);
  display: grid;
  grid-template-columns: 1.15fr repeat(3, minmax(150px, 0.68fr)) auto;
  gap: 1px;
  align-items: stretch;
  margin-top: 16px;
  padding: 1px;
  background: rgba(224, 199, 138, 0.26);
  border: 1px solid rgba(224, 199, 138, 0.24);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.hero-repair-console > * {
  background: rgba(8, 8, 6, 0.84);
}

.console-head {
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px;
}

.console-head span {
  color: rgba(255, 250, 240, 0.56);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.console-head strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  font-weight: 500;
  line-height: 1.05;
}

.hero-repair-console label {
  display: grid;
  align-content: center;
  padding: 14px;
  color: rgba(255, 250, 240, 0.58);
}

.hero-repair-console select {
  min-height: 46px;
  color: var(--white);
  background: rgba(255, 250, 240, 0.08);
  border-color: rgba(224, 199, 138, 0.18);
}

.hero-repair-console select option {
  color: var(--ink);
}

.console-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  align-content: center;
  min-width: 190px;
  padding: 12px;
}

.console-actions .btn {
  min-height: 46px;
  padding: 0 16px;
  white-space: nowrap;
}

.console-call {
  min-height: 38px;
  display: grid;
  place-items: center;
  color: rgba(255, 250, 240, 0.78);
  background: rgba(255, 250, 240, 0.07);
  border: 1px solid rgba(255, 250, 240, 0.1);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-logo-shelf {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
}

.hero-logo-shelf span {
  color: rgba(255, 250, 240, 0.62);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-logo-shelf img {
  width: min(360px, 100%);
  justify-self: end;
}

.hero-brand-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 250, 240, 0.1);
}

.hero-brand-line b {
  padding: 9px 13px;
  color: var(--champagne);
  background: rgba(255, 250, 240, 0.06);
  border: 1px solid rgba(224, 199, 138, 0.22);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.7vw, 1.35rem);
  font-weight: 500;
}

.page-shell {
  padding: clamp(56px, 8vw, 116px) clamp(18px, 4vw, 58px);
}

.tab-rail {
  position: sticky;
  top: 82px;
  z-index: 15;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: 0 auto 34px;
  max-width: 1120px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(8, 8, 6, 0.12);
}

.tab {
  min-height: 54px;
  border: 0;
  color: var(--steel);
  background: rgba(255, 250, 240, 0.82);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  cursor: pointer;
}

.tab.active,
.tab:hover {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(224, 199, 138, 0.13), rgba(255, 250, 240, 0)),
    var(--black);
}

.panel {
  display: none;
  max-width: 1240px;
  margin: 0 auto;
  animation: panelIn 220ms ease both;
}

.panel.active {
  display: block;
}

.panel-head {
  max-width: 890px;
  margin-bottom: 36px;
}

.panel-head p,
.feature-grid p,
.service-matrix p,
.booking-layout p,
.brand-focus p,
.site-footer p {
  color: var(--steel);
  line-height: 1.75;
}

.feature-grid,
.service-matrix,
.area-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

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

.feature-grid article,
.service-matrix article {
  min-height: 290px;
  padding: clamp(24px, 4vw, 42px);
  background: #fffaf0;
}

.feature-grid article {
  position: relative;
  overflow: hidden;
}

.feature-grid article::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -70px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(184, 139, 69, 0.22);
  transform: rotate(45deg);
}

.feature-grid span {
  display: inline-block;
  margin-bottom: 78px;
  color: var(--gold);
  font-weight: 900;
}

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

.premium-call-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 28px;
  color: var(--white);
  background: rgba(224, 199, 138, 0.22);
  border: 1px solid rgba(224, 199, 138, 0.24);
  box-shadow: var(--shadow);
}

.premium-call-rail span {
  min-height: 118px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: clamp(20px, 3vw, 32px);
  background:
    linear-gradient(135deg, rgba(224, 199, 138, 0.1), rgba(255, 250, 240, 0)),
    var(--black);
  color: rgba(255, 250, 240, 0.68);
  line-height: 1.55;
}

.premium-call-rail b {
  display: block;
  color: var(--champagne);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  font-weight: 500;
}

.service-matrix article {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(224, 199, 138, 0.11), rgba(255, 255, 255, 0)),
    var(--charcoal);
  border: 1px solid rgba(224, 199, 138, 0.15);
}

.service-matrix em {
  display: inline-block;
  margin-bottom: 54px;
  color: var(--champagne);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-matrix p {
  color: rgba(255, 250, 240, 0.66);
}

.service-matrix strong {
  display: block;
  margin-top: 24px;
  color: var(--champagne);
  line-height: 1.5;
}

.home-service-cta,
.service-banner,
.official-strip,
.brand-command,
.repair-lanes,
.brand-marquee {
  margin-top: 28px;
}

.home-service-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 4vw, 44px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(224, 199, 138, 0.12), rgba(224, 199, 138, 0)),
    var(--black);
  border: 1px solid rgba(224, 199, 138, 0.18);
}

.home-service-cta h3 {
  font-size: clamp(1.7rem, 3vw, 3rem);
}

.home-service-cta p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 250, 240, 0.68);
  line-height: 1.75;
}

.home-service-actions {
  display: grid;
  gap: 10px;
  min-width: min(280px, 100%);
}

.homepage-brand-showcase {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) 1.28fr;
  gap: 1px;
  margin-top: 28px;
  background: var(--line);
  border: 1px solid var(--line);
}

.homepage-brand-showcase > div {
  padding: clamp(24px, 4vw, 42px);
  background: #fffaf0;
}

.homepage-brand-showcase h3 {
  max-width: 470px;
  margin-bottom: 0;
  font-size: clamp(1.65rem, 2.7vw, 2.75rem);
  line-height: 1.05;
}

.homepage-brand-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  background:
    linear-gradient(135deg, rgba(224, 199, 138, 0.08), rgba(255, 250, 240, 0)),
    var(--black);
}

.homepage-brand-list span {
  min-height: 94px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--champagne);
  background: rgba(255, 250, 240, 0.035);
  border: 1px solid rgba(224, 199, 138, 0.12);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 2vw, 1.65rem);
  text-align: center;
}

.service-banner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px clamp(22px, 4vw, 38px);
  color: var(--black);
  background: linear-gradient(135deg, var(--champagne), #b88b45);
}

.service-banner strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.6vw, 2.2rem);
  font-weight: 500;
  line-height: 1.1;
}

.service-banner span {
  max-width: 460px;
  color: rgba(8, 8, 6, 0.72);
  font-weight: 800;
  line-height: 1.55;
}

.brand-command {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.9fr);
  gap: 1px;
  color: var(--white);
  background: rgba(224, 199, 138, 0.2);
  border: 1px solid rgba(224, 199, 138, 0.22);
  box-shadow: var(--shadow);
}

.command-copy,
.command-logo,
.command-stats {
  background:
    radial-gradient(circle at 12% 0%, rgba(224, 199, 138, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
    #0b0b08;
}

.command-copy {
  padding: clamp(26px, 5vw, 56px);
}

.command-copy h3 {
  max-width: 660px;
  font-size: clamp(2rem, 4.4vw, 4.8rem);
  line-height: 0.96;
}

.command-copy p:not(.eyebrow) {
  max-width: 670px;
  color: rgba(255, 250, 240, 0.7);
  line-height: 1.75;
}

.command-logo {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(24px, 4vw, 44px);
}

.command-logo span {
  color: var(--champagne);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.command-logo img {
  width: min(440px, 100%);
  padding: 16px;
  background: rgba(255, 250, 240, 0.04);
  border: 1px solid rgba(255, 250, 240, 0.12);
}

.command-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(224, 199, 138, 0.16);
}

.command-stats span {
  display: grid;
  gap: 8px;
  padding: 20px clamp(18px, 3vw, 30px);
  background: #14120e;
  color: rgba(255, 250, 240, 0.64);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.command-stats b {
  color: var(--champagne);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  letter-spacing: 0;
}

.repair-lanes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.repair-lanes article {
  min-height: 210px;
  padding: 24px;
  background: #fffaf0;
}

.repair-lanes span {
  display: block;
  margin-bottom: 34px;
  color: var(--gold);
  font-weight: 900;
}

.repair-lanes strong {
  display: block;
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.repair-lanes p {
  margin: 0;
  color: var(--steel);
  line-height: 1.65;
}

.brand-marquee {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(224, 199, 138, 0.28);
  border: 1px solid rgba(224, 199, 138, 0.24);
}

.brand-marquee span {
  min-height: 96px;
  display: grid;
  place-items: center;
  color: var(--champagne);
  background:
    radial-gradient(circle at 50% 0%, rgba(224, 199, 138, 0.18), transparent 36%),
    #080806;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.4vw, 2.5rem);
  font-weight: 500;
  text-align: center;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  padding: 1px;
  background: rgba(224, 199, 138, 0.2);
  border: 1px solid rgba(224, 199, 138, 0.2);
}

.brand-grid span,
.area-grid span {
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 16px;
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    var(--charcoal);
  border: 1px solid rgba(224, 199, 138, 0.2);
  font-weight: 900;
}

.brand-grid span {
  position: relative;
  overflow: hidden;
  align-content: center;
  gap: 7px;
  min-height: 136px;
  background:
    radial-gradient(circle at 20% 0%, rgba(224, 199, 138, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
    #17140f;
}

.brand-grid span::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 250, 240, 0.06);
}

.brand-grid span.elite {
  background:
    radial-gradient(circle at 50% 0%, rgba(224, 199, 138, 0.23), transparent 36%),
    linear-gradient(135deg, rgba(224, 199, 138, 0.14), rgba(255, 255, 255, 0)),
    #0c0b08;
}

.brand-grid span.elite::after {
  content: "priority";
  position: absolute;
  top: 12px;
  right: 12px;
  color: rgba(224, 199, 138, 0.78);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-grid b {
  position: relative;
  z-index: 1;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.3vw, 2.15rem);
  font-weight: 500;
  color: var(--white);
}

.brand-grid small {
  position: relative;
  z-index: 1;
  color: rgba(255, 250, 240, 0.52);
  max-width: 180px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-focus {
  display: grid;
  grid-template-columns: 0.58fr 1fr;
  gap: 28px;
  align-items: center;
  margin-top: 28px;
  padding: clamp(22px, 4vw, 42px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(224, 199, 138, 0.1), rgba(224, 199, 138, 0)),
    var(--black);
  border: 1px solid rgba(224, 199, 138, 0.18);
}

.brand-focus img {
  padding: 14px;
  border: 1px solid rgba(255, 250, 240, 0.12);
}

.brand-focus p {
  margin-bottom: 0;
  color: rgba(255, 250, 240, 0.72);
}

.area-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: transparent;
  border: 0;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
}

.big-phone {
  display: inline-block;
  margin: 14px 0 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 4.6rem);
  line-height: 1;
}

.micro-panel {
  padding: 22px;
  color: var(--white);
  background: var(--charcoal);
  border-left: 4px solid var(--gold);
}

.micro-panel strong,
.micro-panel span {
  display: block;
}

.micro-panel span {
  margin-top: 8px;
  color: rgba(255, 250, 240, 0.66);
}

.service-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  padding: clamp(22px, 4vw, 42px);
  background: #fffaf0;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

label {
  display: block;
  color: var(--steel);
  font-size: 0.78rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  margin-top: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid rgba(22, 18, 12, 0.16);
  border-radius: 0;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(184, 139, 69, 0.26);
  border-color: var(--gold);
}

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

.bot-field {
  display: none;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--steel);
}

.site-footer {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 26px;
  padding: 36px clamp(18px, 4vw, 58px) 96px;
  color: rgba(255, 250, 240, 0.72);
  background: #070706;
}

.site-footer strong {
  color: var(--white);
}

.site-footer p {
  margin: 8px 0 0;
  color: rgba(255, 250, 240, 0.6);
  font-size: 0.78rem;
}

.mobile-nav {
  display: none;
}

@keyframes heroDrift {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.04);
  }
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 960px) {
  .site-header {
    position: absolute;
    grid-template-columns: 1fr auto;
    padding: 14px 16px;
  }

  .desktop-tabs,
  .call-pill {
    display: none;
  }

  .brand {
    min-width: 0;
  }

  .hero {
    min-height: auto;
    align-items: start;
  }

  .hero-bg {
    object-position: 68% top;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(8, 8, 6, 0.46) 0%, rgba(8, 8, 6, 0.58) 38%, rgba(8, 8, 6, 0.94) 100%),
      linear-gradient(90deg, rgba(8, 8, 6, 0.62), rgba(8, 8, 6, 0.12));
  }

  .hero-inner {
    max-width: 100%;
    padding: 118px 16px 104px;
  }

  h1 {
    max-width: 720px;
    font-size: clamp(2.55rem, 9.5vw, 4.8rem);
    line-height: 0.96;
    text-shadow: 0 20px 70px rgba(0, 0, 0, 0.7);
  }

  .hero p {
    max-width: 620px;
    color: rgba(255, 250, 240, 0.9);
    font-size: 1rem;
    line-height: 1.55;
    text-shadow: 0 12px 36px rgba(0, 0, 0, 0.64);
  }

  .hero-kicker {
    text-shadow: 0 10px 34px rgba(0, 0, 0, 0.72);
  }

  .hero-actions {
    margin-top: 22px;
  }

  .tab-rail {
    top: 0;
    grid-template-columns: repeat(5, minmax(118px, 1fr));
    overflow-x: auto;
    margin-left: -18px;
    margin-right: -18px;
    border-left: 0;
    border-right: 0;
  }

  .page-shell {
    padding: 46px 14px 112px;
  }

  .panel-head {
    margin-bottom: 24px;
  }

  h2 {
    font-size: clamp(2rem, 8vw, 3.7rem);
    line-height: 1;
  }

  .panel-head p,
  .feature-grid p,
  .service-matrix p,
  .booking-layout p,
  .brand-focus p,
  .site-footer p {
    line-height: 1.62;
  }

  .feature-grid article,
  .service-matrix article {
    min-height: 0;
    padding: 24px;
  }

  .feature-grid span,
  .service-matrix em {
    margin-bottom: 32px;
  }

  .feature-grid,
  .service-matrix,
  .booking-layout,
  .site-footer,
  .brand-focus,
  .home-service-cta,
  .brand-command {
    grid-template-columns: 1fr;
  }

  .service-banner,
  .official-strip,
  .hero-logo-shelf,
  .homepage-brand-showcase,
  .hero-repair-console {
    grid-template-columns: 1fr;
  }

  .hero-repair-console {
    margin-top: 14px;
    border-radius: 8px;
    overflow: hidden;
  }

  .console-actions {
    min-width: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-brand-panel {
    margin-top: 22px;
    border-radius: 8px;
    background:
      linear-gradient(135deg, rgba(224, 199, 138, 0.13), rgba(255, 250, 240, 0.03)),
      rgba(8, 8, 6, 0.86);
  }

  .brand-stage-head strong {
    font-size: clamp(2.2rem, 9vw, 4.3rem);
  }

  .brand-stage-head span {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
  }

  .hero-brand-line b {
    font-size: 1rem;
  }

  .signal-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 20px;
  }

  .signal-row span {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 10px 12px;
    color: rgba(255, 250, 240, 0.86);
    background: rgba(8, 8, 6, 0.58);
    border: 1px solid rgba(224, 199, 138, 0.16);
    border-left: 1px solid rgba(224, 199, 138, 0.16);
    backdrop-filter: blur(12px);
  }

  .service-banner {
    display: grid;
  }

  .official-strip img,
  .hero-logo-shelf img {
    justify-self: start;
  }

  .command-stats,
  .repair-lanes,
  .brand-marquee,
  .premium-call-rail {
    grid-template-columns: 1fr;
  }

  .brand-grid,
  .area-grid,
  .homepage-brand-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-form {
    grid-template-columns: 1fr;
    border-radius: 8px;
  }

  .wide {
    grid-column: auto;
  }

  .mobile-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 50;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    padding: 6px;
    background: rgba(8, 8, 6, 0.86);
    border: 1px solid rgba(255, 250, 240, 0.12);
    border-radius: 8px;
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
  }

  .mobile-nav a {
    display: grid;
    place-items: center;
    min-height: 48px;
    color: rgba(255, 250, 240, 0.72);
    font-size: 0.8rem;
    font-weight: 900;
  }

  .mobile-nav a.active {
    color: var(--black);
    background: linear-gradient(135deg, var(--champagne), var(--gold));
    border-radius: 6px;
  }
}

@media (max-width: 540px) {
  .hero-inner {
    padding: 104px 14px 102px;
  }

  h1 {
    margin-bottom: 16px;
    font-size: clamp(2.28rem, 10.8vw, 3.55rem);
    line-height: 0.98;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero p {
    font-size: 0.96rem;
  }

  .signal-row {
    grid-template-columns: 1fr;
  }

  .hero-brand-panel {
    padding: 16px;
  }

  .brand-stage-head {
    gap: 6px 10px;
  }

  .brand-stage-head strong {
    font-size: clamp(1.95rem, 12vw, 3.2rem);
  }

  .brand-stage-head span {
    font-size: 1.55rem;
  }

  .hero-brand-line {
    gap: 6px;
  }

  .hero-brand-line b {
    padding: 8px 10px;
    font-size: 0.92rem;
  }

  .console-head,
  .hero-repair-console label,
  .console-actions {
    padding: 12px;
  }

  .console-head strong {
    font-size: 1.25rem;
  }

  .hero-repair-console select {
    min-height: 44px;
    margin-top: 6px;
  }

  .console-actions {
    grid-template-columns: 1fr;
  }

  .brand-grid,
  .area-grid,
  .homepage-brand-list {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .brand small {
    font-size: 0.66rem;
  }

  .command-copy,
  .command-logo {
    padding: 22px;
  }

  .feature-grid span {
    margin-bottom: 44px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
