:root {
  --navy-950: #101322;
  --navy-900: #132045;
  --navy-800: #192f5a;
  --navy-700: #224475;
  --navy-600: #2b5488;
  --yellow: #e9c518;
  --yellow-strong: #edd823;
  --yellow-dark: #ab8b13;
  --white: #eceff6;
  --muted: #d6d9e3;
  --steel: #848b9a;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 26px 60px rgba(0, 0, 0, 0.38);
  font-family:
    Inter, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  color: var(--white);
  background: var(--navy-950);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 132px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--white);
  background:
    linear-gradient(112deg, rgba(233, 197, 24, 0.08) 0 1px, transparent 1px 112px),
    radial-gradient(circle at 15% 0%, rgba(233, 197, 24, 0.18), transparent 30rem),
    linear-gradient(180deg, #1a1d29 0, var(--navy-950) 220px),
    var(--navy-950);
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--yellow-strong);
  outline-offset: 4px;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 1.2em;
  height: 1.2em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-shell {
  overflow: hidden;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  min-height: 104px;
  padding: 16px clamp(14px, 4vw, 40px);
  pointer-events: none;
}

.nav-frame {
  display: flex;
  width: min(1180px, 100%);
  min-height: 96px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 2vw, 24px);
  padding: 10px 14px 10px 22px;
  border: 1px solid rgba(233, 197, 24, 0.34);
  border-radius: 999px;
  background: rgba(16, 19, 34, 0.92);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.38),
    inset 0 0 0 1px rgba(236, 239, 246, 0.06);
  backdrop-filter: blur(16px);
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  flex: 0 0 auto;
}

.brand-logo {
  width: clamp(108px, 10vw, 138px);
  height: auto;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.45));
}

.menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(233, 197, 24, 0.45);
  border-radius: 50%;
  color: var(--yellow);
  background: rgba(25, 47, 90, 0.82);
  cursor: pointer;
}

.menu-toggle .icon {
  width: 24px;
  height: 24px;
}

.menu-toggle .close-icon {
  display: none;
}

.menu-open .menu-toggle .menu-icon {
  display: none;
}

.menu-open .menu-toggle .close-icon {
  display: block;
}

h1,
h2,
h3 {
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1 1 auto;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.045em;
  line-height: 1.2;
  text-transform: uppercase;
}

.nav a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(14px, 1.4vw, 22px);
  border: 1px solid rgba(236, 239, 246, 0.12);
  border-radius: 999px;
  background: rgba(25, 47, 90, 0.74);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.18);
  white-space: nowrap;
  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.nav a:hover {
  border-color: rgba(233, 197, 24, 0.68);
  color: var(--navy-950);
  background: var(--yellow);
  transform: translateY(-1px);
}

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

.header-actions {
  flex: 0 0 auto;
  flex-wrap: nowrap;
}

.header-call {
  display: grid;
  gap: 5px;
  justify-items: center;
}

.header-phone {
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
}

.icon-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  font-family: 'Arial Black', Arial, sans-serif;
  font-weight: 1000;
  letter-spacing: 0.035em;
  line-height: 1.05;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.icon-link {
  width: 50px;
  height: 50px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--yellow);
  background: rgba(255, 255, 255, 0.06);
}

.button {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 0.9rem;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

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

.button-small {
  min-height: 52px;
  padding: 0 22px;
  font-size: 0.9rem;
  color: var(--navy-950);
  background: var(--yellow);
}

.button-primary {
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--yellow-strong), var(--yellow));
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.3),
    inset 0 -3px 0 rgba(16, 19, 34, 0.2);
}

.button-secondary {
  border: 1px solid rgba(236, 239, 246, 0.28);
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}

.button-dark {
  color: var(--yellow);
  background: var(--navy-950);
}

.button-light {
  color: var(--navy-950);
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  padding: 180px 0 84px;
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background-image: url('./assets/hero-shop.jpg');
  background-position: center;
  background-size: cover;
  filter: saturate(0.9) contrast(1.05);
}

.js .header,
.js .hero-reveal {
  opacity: 0;
}

.js.page-ready .header {
  animation: intro-nav 600ms ease-out forwards;
}

.js.page-ready .hero-reveal {
  animation: intro-content 650ms ease-out forwards;
}

.js.page-ready .hero-reveal-1 { animation-delay: 120ms; }
.js.page-ready .hero-reveal-2 { animation-delay: 200ms; }
.js.page-ready .hero-reveal-3 { animation-delay: 280ms; }
.js.page-ready .hero-reveal-4 { animation-delay: 360ms; }
.js.page-ready .hero-reveal-5 { animation-delay: 440ms; }
.js.page-ready .hero-reveal-6 { animation-delay: 520ms; }

@keyframes intro-nav {
  from { opacity: 0; transform: translateY(-18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes intro-content {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16, 19, 34, 0.99) 0%, rgba(19, 32, 69, 0.91) 48%, rgba(25, 47, 90, 0.25) 100%),
    linear-gradient(180deg, rgba(16, 19, 34, 0.15), var(--navy-950));
}

.hero::after,
.section::before {
  content: '';
  position: absolute;
  pointer-events: none;
  opacity: 0.45;
  background: repeating-linear-gradient(
    115deg,
    transparent 0 18px,
    rgba(233, 197, 24, 0.34) 18px 22px,
    transparent 22px 42px
  );
}

.hero::after {
  right: -60px;
  bottom: 42px;
  width: 360px;
  height: 120px;
  transform: skewX(-18deg);
}

.hero-copy {
  width: 100%;
  min-width: 0;
  max-width: 780px;
}

.hero-content {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--yellow);
  font-size: 0.84rem;
  font-weight: 1000;
  letter-spacing: 0.105em;
  line-height: 1.35;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: 'Arial Black', Arial, sans-serif;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 6rem;
  line-height: 0.88;
  letter-spacing: 0.018em;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.5);
}

.hero-punch {
  width: fit-content;
  margin-bottom: 18px;
  padding: 10px 18px 11px;
  border-left: 6px solid var(--yellow);
  color: var(--white);
  background: linear-gradient(90deg, rgba(233, 197, 24, 0.16), rgba(233, 197, 24, 0));
  font-size: 2.35rem;
  font-weight: 1000;
  font-style: italic;
  line-height: 0.96;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 16px;
  font-size: 4rem;
  line-height: 0.96;
  letter-spacing: 0.018em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.05;
  letter-spacing: 0.04em;
}

p {
  color: var(--muted);
  line-height: 1.7;
  letter-spacing: 0.01em;
}

.hero-lede {
  max-width: 650px;
  margin-bottom: 30px;
  font-size: 1.2rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border: 1px solid rgba(233, 197, 24, 0.34);
  border-radius: 999px;
  color: var(--white);
  background: rgba(19, 32, 69, 0.78);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.trust-strip svg,
.service-icon svg {
  color: var(--yellow);
}

.section {
  position: relative;
  padding: 92px 0;
  background: linear-gradient(180deg, var(--navy-950), var(--navy-900));
}

.section::before {
  left: -90px;
  top: 44px;
  width: 260px;
  height: 80px;
  transform: skewX(-18deg);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 36px;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  align-items: end;
  gap: 32px;
  max-width: none;
}

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

.service-card,
.showcase-card,
.facebook-frame-wrap,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.service-card {
  position: relative;
  min-height: 230px;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--yellow) 0 5px, transparent 5px),
    linear-gradient(145deg, rgba(34, 68, 117, 0.58), rgba(16, 19, 34, 0.94));
}

.service-card::after {
  content: '';
  position: absolute;
  right: -58px;
  bottom: -58px;
  width: 140px;
  height: 140px;
  border: 18px solid rgba(233, 197, 24, 0.12);
  border-radius: 50%;
}

.service-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid rgba(236, 239, 246, 0.22);
  border-radius: 50%;
  background: rgba(16, 19, 34, 0.52);
}

.service-card h3 {
  color: var(--yellow-strong);
  line-height: 1.16;
}

.headlight-card {
  grid-column: 2;
}

.primer-card,
.polish-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.primer-card .price-list,
.polish-card .price-list {
  gap: 12px;
  margin-top: 20px;
}

.primer-card .price-list li,
.polish-card .price-list li {
  min-height: 58px;
  padding: 13px 14px;
}

.primer-card .price-list strong,
.polish-card .price-list strong {
  font-size: 1rem;
}

.price-list {
  display: grid;
  gap: 9px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.price-list-tight {
  margin-top: 9px;
}

.price-list li {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 11px;
  border: 1px solid rgba(236, 239, 246, 0.14);
  border-radius: 8px;
  background: rgba(16, 19, 34, 0.46);
}

.price-list span {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.2;
}

.price-list strong {
  flex: 0 0 auto;
  color: var(--yellow-strong);
  font-size: 0.92rem;
  line-height: 1.1;
  text-align: right;
}

.july-special {
  display: none;
}

.july-special-active .july-special {
  position: relative;
  display: block;
  margin: 18px -10px 0;
  padding: 14px 10px 12px;
  border: 2px solid var(--yellow-strong);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(237, 216, 35, 0.22), rgba(233, 197, 24, 0.06)),
    rgba(16, 19, 34, 0.68);
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.3),
    0 0 0 4px rgba(233, 197, 24, 0.1),
    inset 0 0 28px rgba(233, 197, 24, 0.12);
}

.july-special-active .july-special::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 36%, rgba(255, 255, 255, 0.32) 44%, transparent 52%);
  opacity: 0.55;
}

.special-ribbon {
  width: fit-content;
  margin: -28px auto 8px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--navy-950);
  background: var(--yellow-strong);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.28);
  font-family: 'Arial Black', Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-transform: uppercase;
}

.special-price-list {
  margin-top: 0;
}

.special-price-list li {
  border-color: rgba(233, 197, 24, 0.42);
  background: rgba(16, 19, 34, 0.74);
}

.special-price-list strong {
  color: var(--yellow-strong);
  font-size: 1.08rem;
}

.price-label {
  margin: 16px 0 -6px;
  color: var(--yellow-strong);
  font-size: 0.76rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.price-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.45;
}

.pricing-help {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 22px;
  padding: 24px;
  border: 1px solid rgba(233, 197, 24, 0.32);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(233, 197, 24, 0.14), rgba(233, 197, 24, 0.02)),
    rgba(16, 19, 34, 0.72);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.26);
}

.pricing-help h3 {
  margin-bottom: 8px;
  color: var(--yellow-strong);
}

.pricing-help p:last-child {
  max-width: 720px;
  margin-bottom: 0;
}

.pricing-help p a {
  color: var(--yellow-strong);
  font-weight: 1000;
  white-space: nowrap;
}

.pricing-help-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.work-section {
  background:
    linear-gradient(112deg, rgba(233, 197, 24, 0.1) 0 1px, transparent 1px 118px),
    linear-gradient(180deg, var(--navy-900), var(--navy-800));
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
}

.showcase-card {
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(236, 239, 246, 0.08), rgba(236, 239, 246, 0.035)),
    var(--navy-900);
}

.showcase-card h3 {
  padding: 4px 4px 16px;
}

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

.compare figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 16px;
  background: var(--navy-800);
}

.compare img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.compare figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 8px 12px;
  border-radius: 5px;
  color: var(--navy-950);
  background: var(--yellow);
  font-size: 0.78rem;
  font-weight: 1000;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  transform: skewX(-8deg);
}

.facebook-section {
  background:
    linear-gradient(120deg, rgba(233, 197, 24, 0.1) 0 1px, transparent 1px 128px),
    radial-gradient(circle at 100% 15%, rgba(34, 68, 117, 0.8), transparent 35rem),
    var(--navy-950);
}

.facebook-layout {
  display: grid;
  grid-template-columns: minmax(320px, 430px) minmax(560px, 1fr);
  gap: clamp(48px, 6vw, 86px);
  align-items: center;
}

.facebook-copy {
  max-width: 430px;
  min-width: 0;
}

.facebook-copy h2 {
  max-width: 420px;
  font-size: 3.5rem;
  line-height: 0.98;
  overflow-wrap: normal;
}

@media (max-width: 1120px) {
  .facebook-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .facebook-copy {
    max-width: 760px;
  }

  .facebook-copy h2 {
    max-width: 720px;
    font-size: 3.25rem;
  }

  .facebook-frame-wrap {
    justify-self: center;
  }
}

.facebook-frame-wrap {
  position: relative;
  width: min(100%, 760px);
  justify-self: end;
  padding: 18px;
  overflow: hidden;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, var(--yellow), var(--navy-700), var(--yellow)) border-box;
  border: 3px solid transparent;
}

.facebook-status {
  display: flex;
  width: min(100%, 500px);
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 12px;
  padding: 10px 16px;
  border-radius: 12px;
  color: var(--navy-950);
  background:
    linear-gradient(135deg, rgba(233, 197, 24, 0.8), rgba(237, 216, 35, 0.95)),
    var(--yellow);
  box-shadow: 0 12px 24px rgba(16, 19, 34, 0.16);
  text-align: center;
}

.facebook-status svg {
  flex: 0 0 auto;
  color: #1877f2;
}

.facebook-status span {
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

.facebook-plugin-shell {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 500px);
  min-height: 720px;
  margin: 0 auto;
  place-items: center;
  border-radius: 12px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(16, 19, 34, 0.16);
}

.facebook-frame {
  position: relative;
  z-index: 2;
  display: block;
  width: 500px;
  max-width: 100%;
  height: 720px;
  min-height: 720px;
  border-radius: 12px;
  background: #ffffff;
}

.contact-cta {
  padding: 74px 0;
  color: var(--navy-950);
  background: var(--navy-950);
}

.contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: clamp(28px, 5vw, 52px);
  border: 0;
  border-radius: 16px 4px 16px 4px;
  color: var(--navy-950);
  background:
    linear-gradient(90deg, rgba(16, 19, 34, 0.08), transparent 55%),
    var(--yellow);
  overflow: hidden;
}

.contact-panel::before,
.contact-panel::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.contact-panel::before {
  inset: 0;
  background:
    linear-gradient(100deg, transparent 0 72%, rgba(16, 19, 34, 0.16) 72% 74%, transparent 74%),
    repeating-linear-gradient(172deg, rgba(16, 19, 34, 0.14) 0 2px, transparent 2px 16px);
  opacity: 0.55;
}

.contact-panel::after {
  left: -18px;
  right: -18px;
  bottom: -9px;
  height: 22px;
  background: repeating-linear-gradient(90deg, var(--yellow-dark) 0 34px, transparent 34px 50px);
  filter: blur(1px);
}

.contact-panel > * {
  position: relative;
  z-index: 1;
}

.contact-panel h2,
.contact-panel p,
.contact-panel .eyebrow {
  color: var(--navy-950);
}

.contact-panel p {
  max-width: 700px;
  margin-bottom: 0;
  font-weight: 700;
}

.contact-actions {
  justify-content: flex-end;
}

.footer {
  padding: 52px 0 28px;
  background:
    linear-gradient(90deg, rgba(233, 197, 24, 0.06) 0 1px, transparent 1px 112px),
    #0b0d17;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 420px);
  gap: 32px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(233, 197, 24, 0.24);
}

.footer-brand {
  display: inline-flex;
  margin-bottom: 18px;
}

.footer-logo {
  width: min(210px, 64vw);
  height: auto;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.45));
}

.footer-links {
  display: grid;
  gap: 14px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-weight: 800;
}

.footer-links svg {
  flex: 0 0 auto;
  color: var(--yellow);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  color: var(--steel);
  font-size: 0.86rem;
  letter-spacing: 0.015em;
}

@media (max-width: 1100px) and (min-width: 981px) {
  .header-secondary {
    display: none;
  }

  h1 {
    font-size: 5rem;
  }
}

@media (max-width: 980px) {
  .header {
    position: sticky;
    min-height: 0;
    padding: 12px 14px;
  }

  .nav-frame {
    flex-wrap: wrap;
    border-radius: 28px;
    min-height: 0;
    gap: 12px;
    padding: 10px;
  }

  .brand {
    order: 1;
  }

  .header-actions {
    order: 2;
    margin-left: auto;
  }

  .menu-toggle {
    display: inline-flex;
    order: 3;
  }

  .nav {
    display: none;
    order: 4;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 4px 0 0;
  }

  .menu-open .nav {
    display: grid;
  }

  .nav a {
    min-height: 46px;
    padding: 0 18px;
    text-align: center;
  }

  h1 {
    font-size: 4.5rem;
  }

  h2 {
    font-size: 3.25rem;
  }

  .hero-punch {
    font-size: 2rem;
  }

  .hero {
    min-height: 690px;
    padding-top: 92px;
  }

  .services-grid,
  .pricing-help,
  .showcase-grid,
  .facebook-layout,
  .contact-panel,
  .footer-grid,
  .split-heading {
    grid-template-columns: 1fr;
  }

  .facebook-frame-wrap {
    justify-self: stretch;
    width: 100%;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .pricing-help-actions {
    justify-content: flex-start;
  }

  .headlight-card {
    grid-column: auto;
  }
}

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

  .header-actions .icon-link {
    display: none;
  }

  .header-actions .button {
    width: auto;
  }

  .nav-frame {
    gap: 10px;
    padding: 9px;
  }

  .brand-logo {
    width: 92px;
  }

  .nav {
    gap: 8px;
    font-size: 0.74rem;
    letter-spacing: 0.035em;
  }

  .nav a {
    min-height: 44px;
    padding: 0 15px;
  }

  .button-small {
    min-height: 48px;
    padding: 0 16px;
    font-size: 0.8rem;
  }

  .header-phone {
    font-size: 0.7rem;
  }

  .hero {
    min-height: auto;
    padding: 74px 0 62px;
  }

  h1 {
    max-width: 100%;
    font-size: 2.6rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .facebook-copy h2 {
    font-size: 2.25rem;
  }

  .hero-punch {
    font-size: 1.5rem;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 54px;
    padding: 0 18px;
    line-height: 1.25;
    white-space: normal;
    text-align: center;
  }

  .trust-strip span {
    width: 100%;
  }

  .section {
    padding: 66px 0;
  }

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

  .compare {
    grid-template-columns: 1fr;
  }

  .compare img {
    height: 360px;
  }

  .facebook-frame-wrap {
    padding: 10px;
    border-radius: 16px;
  }

  .facebook-plugin-shell {
    width: 100%;
    min-height: 590px;
  }

  .facebook-frame {
    width: 100%;
    height: 590px;
    min-height: 590px;
  }

  .facebook-fallback {
    margin-top: 10px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 360px) {
  .header {
    padding-inline: 8px;
  }

  .nav-frame {
    gap: 8px;
    padding: 8px;
  }

  .brand-logo {
    width: 76px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .button-small {
    min-height: 44px;
    padding-inline: 10px;
    font-size: 0.72rem;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 2rem;
  }

  .facebook-copy h2 {
    font-size: 2rem;
  }

  .nav {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    scroll-behavior: auto !important;
  }

  .js .header,
  .js .hero-reveal {
    opacity: 1;
    transform: none;
  }
}
