:root {
  --void: #050506;
  --charcoal: #111113;
  --graphite: #1b1c1f;
  --platinum: #e7e9ee;
  --chrome: #aeb6c3;
  --champagne: #d6b46c;
  --champagne-2: #f2dc9a;
  --ink: #17191d;
  --muted: #727884;
  --line: rgba(231, 233, 238, 0.16);
  --paper: #f5f3ee;
  --white: #ffffff;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
  --radius: 6px;
  --max: 1180px;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 5, 6, 0.84);
  border-bottom: 1px solid rgba(231, 233, 238, 0.12);
  backdrop-filter: blur(22px);
}

.nav-shell {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(242, 220, 154, 0.48);
  background:
    linear-gradient(145deg, rgba(242, 220, 154, 0.20), rgba(231, 233, 238, 0.04)),
    var(--charcoal);
  color: var(--champagne-2);
  font-size: 15px;
  font-weight: 950;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
  border-radius: var(--radius);
}

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

.brand strong {
  color: var(--white);
  font-size: 17px;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand em {
  color: rgba(231, 233, 238, 0.68);
  font-size: 12px;
  font-style: normal;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.site-nav a,
.nav-cta {
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a {
  padding: 12px 6px;
  color: rgba(231, 233, 238, 0.72);
}

.site-nav a:hover {
  color: var(--champagne-2);
}

.nav-cta {
  padding: 12px 18px;
  background: var(--platinum);
  color: var(--void);
  border-radius: var(--radius);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(231, 233, 238, 0.22);
  background: transparent;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: var(--void);
  color: var(--white);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(0deg, var(--void), transparent);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
  filter: saturate(0.88) contrast(1.22);
  animation: slowZoom 18s ease-out forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.94), rgba(5, 5, 6, 0.58) 45%, rgba(5, 5, 6, 0.12)),
    linear-gradient(0deg, rgba(5, 5, 6, 0.90), rgba(5, 5, 6, 0.08) 58%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 56px;
  align-items: center;
  padding: 92px 0 54px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--champagne-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #8b6729;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 940px;
  margin: 0;
  color: var(--white);
  font-size: clamp(58px, 9vw, 132px);
  line-height: 0.84;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 5.2vw, 64px);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: inherit;
  font-size: 25px;
  line-height: 1.12;
}

.hero-lede {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(231, 233, 238, 0.78);
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.25;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 13px 20px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.platinum {
  background: linear-gradient(135deg, var(--platinum), var(--champagne-2));
  color: var(--void);
  box-shadow: 0 18px 50px rgba(214, 180, 108, 0.24);
}

.button.ghost {
  border-color: rgba(231, 233, 238, 0.36);
  color: var(--white);
  background: rgba(231, 233, 238, 0.06);
}

.button.dark {
  background: var(--void);
  color: var(--white);
}

.button.ghost-dark {
  border-color: rgba(17, 17, 19, 0.18);
  background: var(--white);
  color: var(--void);
}

.button.whatsapp {
  background: #128c4a;
  color: var(--white);
}

.finish-panel {
  align-self: end;
  padding: 22px;
  border: 1px solid rgba(231, 233, 238, 0.18);
  background: linear-gradient(145deg, rgba(231, 233, 238, 0.14), rgba(5, 5, 6, 0.70));
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  border-radius: var(--radius);
}

.panel-topline span {
  color: var(--champagne-2);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.panel-topline strong {
  display: block;
  margin-top: 6px;
  color: var(--white);
  font-size: 26px;
  line-height: 1;
}

.finish-panel dl {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
}

.finish-panel div {
  padding-top: 14px;
  border-top: 1px solid rgba(231, 233, 238, 0.14);
}

.finish-panel dt {
  color: rgba(231, 233, 238, 0.56);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.finish-panel dd {
  margin: 3px 0 0;
  color: var(--platinum);
}

.hero-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(231, 233, 238, 0.14);
  background: rgba(5, 5, 6, 0.70);
  backdrop-filter: blur(18px);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-strip span {
  padding: 18px 16px;
  border-right: 1px solid rgba(231, 233, 238, 0.12);
  color: rgba(231, 233, 238, 0.75);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-strip span:last-child {
  border-right: 0;
}

.proof-bar {
  display: none;
  background: var(--void);
  color: var(--white);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid div {
  padding: 30px 22px;
  border-left: 1px solid rgba(231, 233, 238, 0.12);
}

.proof-grid div:last-child {
  border-right: 1px solid rgba(231, 233, 238, 0.12);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  color: var(--champagne-2);
  font-size: 15px;
}

.proof-grid span {
  margin-top: 5px;
  color: rgba(231, 233, 238, 0.72);
  font-weight: 800;
}

.qr-section {
  padding: 76px 0;
  background:
    linear-gradient(135deg, rgba(214, 180, 108, 0.14), transparent 36%),
    var(--paper);
}

.qr-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 56px;
  align-items: center;
}

.qr-copy p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.qr-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 26px;
}

.qr-steps span {
  min-height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 17, 19, 0.12);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.qr-card {
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(242, 220, 154, 0.14), rgba(231, 233, 238, 0.05)),
    var(--void);
  color: var(--white);
  border: 1px solid rgba(242, 220, 154, 0.34);
  box-shadow: var(--shadow);
  text-align: center;
  border-radius: var(--radius);
}

.qr-frame {
  padding: 18px;
  background: var(--platinum);
  border-radius: var(--radius);
}

.qr-frame img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

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

.qr-card strong {
  margin-top: 18px;
  color: var(--champagne-2);
  font-size: 22px;
  line-height: 1.1;
}

.qr-card span {
  margin-top: 6px;
  color: rgba(231, 233, 238, 0.72);
}

.section {
  padding: 82px 0;
}

.split,
.video-layout,
.assistant-layout,
.coverage-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 64px;
  align-items: start;
}

.manifesto-section {
  display: none;
  background:
    linear-gradient(90deg, rgba(214, 180, 108, 0.10), transparent 34%),
    var(--paper);
}

.manifesto-copy p,
.section-heading p,
.video-copy p,
.assistant-layout p,
.coverage-layout p,
.contact-copy p {
  color: var(--muted);
  font-size: 18px;
}

.mini-features,
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.mini-features span,
.area-tags span {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(17, 17, 19, 0.10);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.services-section,
.assistant-section {
  background: var(--charcoal);
  color: var(--white);
}

.assistant-section {
  display: none;
}

.services-section h2,
.assistant-section h2 {
  color: var(--white);
}

.about-section {
  display: none;
  padding: 104px 0;
  background: var(--white);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 64px;
  align-items: start;
}

.about-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

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

.about-proof article {
  min-height: 210px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid rgba(17, 17, 19, 0.10);
}

.about-proof strong,
.about-proof span {
  display: block;
}

.about-proof strong {
  color: var(--ink);
  font-size: 21px;
  line-height: 1.1;
}

.about-proof span {
  margin-top: 12px;
  color: var(--muted);
}

.section-heading {
  max-width: 620px;
  margin-bottom: 28px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 27px;
  background: #f8f7f2;
  color: var(--ink);
  border: 1px solid rgba(17, 17, 19, 0.10);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.14);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  border-radius: var(--radius);
}

.service-card:nth-child(n+4) {
  display: none;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(214, 180, 108, 0.64);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.22);
}

.service-card.featured {
  background:
    linear-gradient(145deg, rgba(242, 220, 154, 0.18), rgba(231, 233, 238, 0.06)),
    var(--void);
  color: var(--white);
  border-color: rgba(242, 220, 154, 0.55);
}

.service-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 18px;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  background: var(--champagne);
}

.service-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.service-top span {
  color: #8b6729;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.featured .service-top span,
.featured a {
  color: var(--champagne-2);
}

.service-top strong {
  color: var(--ink);
}

.featured .service-top strong {
  color: var(--white);
}

.duration {
  margin: 8px 0 20px;
  color: var(--muted);
  font-weight: 850;
}

.featured .duration {
  color: rgba(231, 233, 238, 0.72);
}

.service-card a {
  margin-top: auto;
  color: #8b6729;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.price-section {
  display: none;
  padding: 96px 0;
  background:
    linear-gradient(135deg, rgba(214, 180, 108, 0.12), transparent 40%),
    var(--paper);
}

.price-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.price-board article {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(17, 17, 19, 0.10);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.08);
  border-radius: var(--radius);
}

.price-board span {
  color: #8b6729;
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
}

.price-board strong {
  margin-top: 18px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.1;
}

.price-board em {
  margin-top: 10px;
  color: var(--muted);
  font-style: normal;
}

.vehicle-section {
  display: none;
  padding: 104px 0;
  background: var(--white);
}

.vehicle-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 64px;
  align-items: start;
}

.vehicle-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.source-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.source-list a {
  padding: 9px 12px;
  border: 1px solid rgba(17, 17, 19, 0.10);
  background: var(--paper);
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.vehicle-pricer {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(242, 220, 154, 0.16), rgba(255, 255, 255, 0)),
    var(--paper);
  border: 1px solid rgba(17, 17, 19, 0.10);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.10);
}

.vehicle-pricer label span {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.vehicle-pricer input,
.vehicle-pricer select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(17, 17, 19, 0.14);
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
}

.vehicle-result {
  display: block;
  min-height: 112px;
  padding: 22px;
  background: var(--void);
  color: var(--platinum);
  font-size: 20px;
  font-weight: 850;
  line-height: 1.35;
}

.chemical-section {
  display: none;
  padding: 104px 0;
  background: var(--charcoal);
  color: var(--white);
}

.chemical-section h2 {
  color: var(--white);
}

.chemical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.chemical-grid article {
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(231, 233, 238, 0.14);
  background:
    linear-gradient(145deg, rgba(242, 220, 154, 0.10), rgba(231, 233, 238, 0.04)),
    var(--void);
}

.chemical-grid span,
.chemical-grid strong {
  display: block;
}

.chemical-grid span {
  color: var(--champagne-2);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.chemical-grid strong {
  margin-top: 12px;
  color: var(--white);
  font-size: 21px;
  line-height: 1.12;
}

.chemical-grid p {
  margin: 14px 0 0;
  color: rgba(231, 233, 238, 0.72);
}

.video-section {
  padding: 82px 0;
  background: var(--void);
  color: var(--white);
}

.video-copy h2,
.coverage-layout h2 {
  color: var(--white);
}

.video-shell {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: var(--void);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.video-shell video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 8s ease;
}

.video-shell.is-playing video {
  transform: scale(1.09);
}

.video-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(5, 5, 6, 0.88), rgba(5, 5, 6, 0.06) 58%),
    linear-gradient(90deg, rgba(5, 5, 6, 0.46), transparent);
}

.video-play {
  position: absolute;
  left: 28px;
  bottom: 34px;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border: 0;
  background: var(--platinum);
  cursor: pointer;
}

.video-play span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 20px solid var(--void);
}

.video-shell.is-playing .video-play span {
  width: 18px;
  height: 24px;
  margin-left: 0;
  border: 0;
  border-left: 6px solid var(--void);
  border-right: 6px solid var(--void);
}

.video-caption {
  position: absolute;
  left: 124px;
  right: 28px;
  bottom: 40px;
  color: var(--white);
}

.video-caption strong,
.video-caption span {
  display: block;
}

.video-caption strong {
  font-size: 27px;
  line-height: 1.05;
}

.video-caption span {
  margin-top: 6px;
  color: rgba(231, 233, 238, 0.72);
}

.smart-booking,
.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(17, 17, 19, 0.10);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.12);
  border-radius: var(--radius);
}

.smart-booking label span,
.contact-form label span {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.smart-booking input,
.smart-booking select,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(17, 17, 19, 0.14);
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
}

.wide,
.form-hint {
  grid-column: 1 / -1;
}

.form-hint {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #4f3a12;
  font-weight: 850;
}

.contact-form button:disabled {
  opacity: 0.62;
  cursor: wait;
}

.integration-note {
  margin-top: 28px;
  padding: 20px;
  border-left: 4px solid var(--champagne);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(231, 233, 238, 0.82);
}

.live-status {
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(242, 220, 154, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: var(--platinum);
  font-weight: 850;
}

.trust-section {
  display: none;
  background: var(--paper);
}

.trust-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.trust-card-grid article {
  padding: 22px;
  background: var(--white);
  border: 1px solid rgba(17, 17, 19, 0.10);
}

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

.trust-card-grid strong {
  color: var(--ink);
  font-size: 18px;
}

.trust-card-grid span {
  margin-top: 7px;
  color: var(--muted);
}

.reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.reviews figure {
  margin: 0;
  padding: 26px;
  background: var(--void);
  color: var(--white);
}

.reviews blockquote {
  margin: 0;
  font-size: 18px;
}

.reviews figcaption {
  margin-top: 18px;
  color: var(--champagne-2);
  font-weight: 850;
}

.testimonial-section {
  display: none;
  padding: 104px 0;
  background:
    linear-gradient(135deg, rgba(214, 180, 108, 0.14), transparent 38%),
    var(--paper);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-grid figure {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(17, 17, 19, 0.10);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.08);
}

.testimonial-grid blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.42;
}

.testimonial-grid figcaption {
  margin-top: auto;
  padding-top: 26px;
}

.testimonial-grid strong,
.testimonial-grid span {
  display: block;
}

.testimonial-grid strong {
  color: #8b6729;
  font-size: 15px;
  text-transform: uppercase;
}

.testimonial-grid span {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 850;
}

.gallery-section {
  padding: 82px 0;
  background: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 16px;
}

.gallery-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--void);
  border-radius: var(--radius);
}

.gallery-grid .wide-shot {
  grid-column: span 2;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
  transition: transform 480ms ease, opacity 480ms ease;
}

.gallery-grid figure:hover img {
  transform: scale(1.06);
  opacity: 1;
}

.gallery-grid figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 10px;
  background: rgba(231, 233, 238, 0.94);
  color: var(--void);
  font-weight: 950;
  text-transform: uppercase;
}

.coverage-section {
  display: none;
  padding: 104px 0;
  background:
    linear-gradient(135deg, rgba(214, 180, 108, 0.18), transparent 36%),
    var(--charcoal);
  color: var(--white);
}

.coverage-layout p {
  color: rgba(231, 233, 238, 0.74);
}

.map-card {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  background:
    linear-gradient(rgba(231, 233, 238, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(231, 233, 238, 0.06) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(214, 180, 108, 0.26), rgba(231, 233, 238, 0.04) 34%, transparent 64%);
  background-size: 38px 38px, 38px 38px, auto;
  border: 1px solid rgba(231, 233, 238, 0.14);
}

.map-card > span {
  position: absolute;
  left: 22px;
  top: 22px;
  color: var(--white);
  font-weight: 950;
  text-transform: uppercase;
}

.map-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(242, 220, 154, 0.55);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.map-ring.one {
  width: 180px;
  height: 180px;
}

.map-ring.two {
  width: 300px;
  height: 300px;
}

.map-pin {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 18px;
  background: var(--champagne-2);
  transform: translate(-50%, -50%) rotate(45deg);
}

.contact-section {
  background: var(--paper);
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-details div {
  padding: 16px;
  background: var(--white);
  border: 1px solid rgba(17, 17, 19, 0.10);
  border-radius: var(--radius);
}

.contact-details dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 3px 0 0;
  color: var(--ink);
  font-weight: 850;
}

.site-footer {
  padding: 50px 0 22px;
  background: var(--void);
  color: rgba(231, 233, 238, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 32px;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-grid nav,
.footer-meta {
  display: grid;
  gap: 10px;
}

.footer-grid a,
.footer-meta span {
  color: rgba(231, 233, 238, 0.82);
  font-weight: 850;
}

.copyright {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(231, 233, 238, 0.12);
  font-size: 13px;
}

.chat-widget {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
}

.chat-launcher {
  min-width: 132px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  background: var(--void);
  color: var(--white);
  box-shadow: var(--shadow);
  cursor: pointer;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.chat-pulse {
  position: relative;
  width: 11px;
  height: 11px;
  background: #22c55e;
  border-radius: 50%;
}

.chat-pulse::after {
  content: "";
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(34, 197, 94, 0.55);
  border-radius: 50%;
  animation: chatPulse 1.8s ease-out infinite;
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 70px;
  width: min(400px, calc(100vw - 30px));
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(17, 17, 19, 0.10);
  box-shadow: var(--shadow);
}

.chat-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  background: linear-gradient(135deg, var(--void), var(--graphite));
  color: var(--white);
}

.chat-avatar {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  background: var(--champagne-2);
  color: var(--void);
  font-weight: 950;
}

.chat-header strong,
.chat-header span {
  display: block;
}

.chat-header span {
  color: rgba(231, 233, 238, 0.72);
  font-size: 13px;
}

.chat-header i {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 6px;
  background: #22c55e;
  border-radius: 50%;
}

.chat-close {
  margin-left: auto;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(231, 233, 238, 0.22);
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-weight: 950;
}

.chat-messages {
  max-height: 320px;
  display: grid;
  gap: 10px;
  overflow-y: auto;
  padding: 16px;
  background: var(--paper);
}

.chat-message {
  max-width: 88%;
  padding: 12px 13px;
  font-size: 14px;
  line-height: 1.45;
}

.chat-message.bot {
  justify-self: start;
  background: var(--white);
  border: 1px solid rgba(17, 17, 19, 0.10);
}

.chat-message.user {
  justify-self: end;
  background: var(--void);
  color: var(--white);
}

.chat-prompts {
  display: flex;
  gap: 8px;
  padding: 12px 14px 0;
}

.agent-tools {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 8px 14px 0;
}

.chat-prompts button {
  flex: 1;
}

.chat-prompts button,
.agent-tools button {
  min-height: 38px;
  border: 1px solid rgba(17, 17, 19, 0.12);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 950;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr 76px;
  gap: 8px;
  padding: 14px;
}

.chat-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.chat-form input {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(17, 17, 19, 0.14);
  padding: 10px 12px;
}

.chat-form button {
  border: 0;
  background: var(--champagne-2);
  color: var(--void);
  cursor: pointer;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.legal-page {
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  padding: 3rem 0;
}

.legal-content {
  max-width: 860px;
}

.legal-content .brand {
  color: var(--ink);
  margin-bottom: 2rem;
}

.legal-content h1 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 0.98;
  margin: 0 0 1rem;
}

.legal-content h2 {
  margin: 2rem 0 0.5rem;
  font-size: 1.25rem;
}

.legal-content p {
  color: var(--muted);
  max-width: 72ch;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@keyframes slowZoom {
  to {
    transform: scale(1.08);
  }
}

@keyframes chatPulse {
  from {
    opacity: 0.8;
    transform: scale(0.7);
  }

  to {
    opacity: 0;
    transform: scale(1.4);
  }
}

@media (max-width: 1050px) {
  .nav-shell {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .nav-cta {
    display: none;
  }

  .site-nav.is-open {
    position: fixed;
    inset: 78px 0 auto;
    display: grid;
    gap: 0;
    padding: 18px 24px 26px;
    background: rgba(5, 5, 6, 0.98);
  }

  .site-nav.is-open a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(231, 233, 238, 0.12);
  }

  .hero-grid,
  .qr-layout,
  .split,
  .about-layout,
  .video-layout,
  .assistant-layout,
  .vehicle-layout,
  .coverage-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .finish-panel {
    max-width: 540px;
  }

  .hero-strip,
  .qr-steps,
  .about-proof,
  .service-grid,
  .price-board,
  .chemical-grid,
  .trust-card-grid,
  .testimonial-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid .wide-shot {
    grid-column: span 1;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand em {
    font-size: 11px;
  }

  .hero,
  .hero-grid {
    min-height: auto;
  }

  .hero-grid {
    padding: 80px 0 36px;
  }

  h1 {
    font-size: 56px;
  }

  .hero-lede,
  .about-copy p:not(.eyebrow),
  .manifesto-copy p,
  .section-heading p,
  .video-copy p,
  .assistant-layout p,
  .coverage-layout p,
  .contact-copy p {
    font-size: 17px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-strip,
  .proof-grid,
  .about-proof,
  .service-grid,
  .trust-card-grid,
  .reviews,
  .testimonial-grid,
  .gallery-grid,
  .chemical-grid,
  .smart-booking,
  .vehicle-pricer,
  .contact-form,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-strip span {
    border-right: 0;
    border-top: 1px solid rgba(231, 233, 238, 0.12);
  }

  .proof-grid div,
  .proof-grid div:last-child {
    border: 0;
    border-top: 1px solid rgba(231, 233, 238, 0.12);
  }

  .section,
  .qr-section,
  .about-section,
  .price-section,
  .vehicle-section,
  .chemical-section,
  .gallery-section,
  .video-section,
  .coverage-section {
    padding: 68px 0;
  }

  .service-card {
    min-height: auto;
  }

  .video-shell {
    min-height: 360px;
  }

  .video-play {
    left: 20px;
    bottom: 96px;
  }

  .video-caption {
    left: 20px;
    right: 20px;
    bottom: 28px;
  }

  .chat-widget {
    right: 14px;
    bottom: 14px;
  }
}
