﻿:root {
  --ink: #0b0b0c;
  --ink-soft: #171719;
  --panel: #202023;
  --paper: #f7f7f5;
  --paper-strong: #ffffff;
  --text: #171717;
  --muted: #626262;
  --line: #deded8;
  --red: #cf2f2f;
  --red-dark: #9f2024;
  --copper: #c1743d;
  --steel: #d7dce1;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-y: auto;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
  overflow-y: auto;
  touch-action: pan-y;
}

section[id],
form[id] {
  scroll-margin-top: 32px;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(207, 47, 47, 0.5);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 800;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: relative;
  z-index: 50;
  color: var(--white);
  background: #080809;
  pointer-events: auto;
}

.promo-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  min-height: 38px;
  padding: 8px 20px;
  background: linear-gradient(90deg, var(--red-dark), var(--red));
  color: var(--white);
  font-size: 14px;
  font-weight: 750;
  pointer-events: auto;
}

.promo-bar p {
  margin: 0;
}

.promo-bar a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.nav-shell {
  position: relative;
  width: min(calc(100% - 32px), var(--max));
  height: 76px;
  margin: 12px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 0 16px 0 12px;
  background: rgba(11, 11, 12, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.28);
  pointer-events: auto;
}

.nav-left,
.header-social {
  display: inline-flex;
  align-items: center;
}

.nav-left {
  gap: 12px;
  min-width: 300px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
  font-weight: 900;
  color: var(--white);
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand span {
  line-height: 1.1;
}

.header-social {
  gap: 8px;
}

.header-social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.07);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.header-social a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
  background: rgba(207, 47, 47, 0.24);
}

.header-social svg {
  width: 20px;
  height: 20px;
}

.header-social path,
.header-social rect,
.header-social circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-social path {
  fill: currentColor;
  stroke: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 750;
  transition: color 160ms ease, background 160ms ease;
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-links .nav-cta {
  margin-left: 8px;
  color: var(--white);
  background: var(--red);
}

.nav-links .nav-cta:hover {
  background: var(--red-dark);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
  padding: 88px 24px 72px;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-media {
  object-fit: cover;
  object-position: center;
  z-index: -3;
  background: var(--ink) url("assets/lambo-ceramic-poster.jpg") center / cover no-repeat;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 6, 7, 0.94) 0%, rgba(8, 8, 9, 0.75) 40%, rgba(8, 8, 9, 0.22) 100%),
    linear-gradient(0deg, rgba(6, 6, 7, 0.92) 0%, rgba(6, 6, 7, 0.08) 46%, rgba(6, 6, 7, 0.58) 100%);
}

.hero-content {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.eyebrow,
.section-kicker,
.package-label {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: 52px;
  line-height: 0.98;
  font-weight: 950;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.hero-actions,
.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 32px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 20px;
  font-size: 15px;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 16px 34px rgba(207, 47, 47, 0.24);
}

.btn-primary:hover {
  background: var(--red-dark);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.14);
}

.hero-proof {
  width: min(100%, 780px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 46px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.hero-proof div {
  padding: 18px;
  background: rgba(12, 12, 13, 0.66);
}

.hero-proof dt {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-proof dd {
  margin: 0;
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
}

.section {
  padding: 104px 24px;
  background: var(--paper);
}

.section-light {
  background: var(--paper-strong);
}

.section-dark {
  color: var(--white);
  background: var(--ink);
}

.container {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.split,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: start;
}

.intro-band {
  padding-top: 68px;
  padding-bottom: 68px;
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  align-items: center;
}

.section-heading {
  max-width: 760px;
}

.section-heading.centered {
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading h2,
.about-grid h2,
.contact-copy h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.08;
  font-weight: 950;
}

.section-heading p,
.lead,
.about-grid p,
.contact-copy p {
  color: var(--muted);
  font-size: 17px;
}

.section-dark .section-heading p,
.section-dark .lead {
  color: rgba(255, 255, 255, 0.68);
}

.lead {
  margin: 0;
  font-size: 19px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card,
.why-item {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  padding: 26px;
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.04);
}

.service-number {
  color: var(--copper);
  font-size: 13px;
  font-weight: 950;
}

.service-card h3,
.why-item h3,
.package-card h3,
.quote-form h3 {
  margin: 10px 0 12px;
  font-size: 22px;
  line-height: 1.18;
}

.service-card p,
.why-item p,
.package-subtitle {
  margin: 0;
  color: var(--muted);
}

.service-card ul,
.package-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.service-card li,
.package-card li {
  position: relative;
  padding-left: 18px;
  color: var(--text);
  font-size: 14px;
}

.service-card li::before,
.package-card li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.section-dark .section-kicker,
.section-dark .package-label {
  color: #ff6868;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 40px;
}

.package-card {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 32px;
  background: var(--ink-soft);
  box-shadow: var(--shadow);
  transition: transform 160ms ease, border-color 160ms ease;
}

.package-card.featured {
  border-color: rgba(207, 47, 47, 0.55);
  background: linear-gradient(180deg, rgba(207, 47, 47, 0.16), rgba(23, 23, 25, 1) 34%);
}

.package-card-custom {
  border-color: rgba(193, 116, 61, 0.42);
  color: inherit;
  cursor: pointer;
  background: linear-gradient(180deg, rgba(193, 116, 61, 0.13), rgba(23, 23, 25, 1) 34%);
}

.package-card-custom:hover {
  border-color: rgba(193, 116, 61, 0.72);
  transform: translateY(-2px);
}

.package-card h3 {
  color: var(--white);
  font-size: 32px;
}

.package-card ul {
  margin-bottom: 28px;
}

.package-card .btn {
  margin-top: auto;
}

.package-card li {
  color: rgba(255, 255, 255, 0.76);
}

.price {
  margin: 24px 0 20px;
  color: var(--white);
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
}

.price small {
  display: inline-block;
  margin-left: 10px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 15px;
  font-weight: 800;
  vertical-align: middle;
}

.price-custom {
  font-size: 34px;
}

.about-section {
  background:
    radial-gradient(circle at 18% 12%, rgba(207, 47, 47, 0.18), transparent 34%),
    #09090a;
}

.about-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  align-items: center;
}

.about-logo {
  width: 148px;
  margin: 0 0 34px;
}

.about-copy {
  max-width: 640px;
}

.about-copy h2 span {
  color: var(--red);
}

.about-copy .lead,
.about-copy p {
  color: rgba(255, 255, 255, 0.7);
}

.brand-signature {
  margin: 34px 0 0;
  color: var(--red) !important;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 900;
}

.stat-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin: 0;
}

.stat-list div {
  min-height: 178px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
}

.stat-list div:first-child {
  border-color: rgba(207, 47, 47, 0.34);
}

.stat-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  color: var(--red);
  background: rgba(207, 47, 47, 0.14);
}

.stat-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-list dt {
  margin: 12px 0 0;
  color: var(--red);
  font-size: 34px;
  line-height: 1;
  font-weight: 950;
}

.stat-list dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.local-seo-section {
  background:
    linear-gradient(180deg, rgba(193, 116, 61, 0.08), rgba(193, 116, 61, 0) 34%),
    var(--paper);
}

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

.intent-card {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--paper-strong);
  box-shadow: 0 12px 44px rgba(0, 0, 0, 0.04);
}

.intent-card h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.18;
  font-weight: 950;
}

.intent-card p {
  margin: 0;
  color: var(--muted);
}

.faq-section {
  padding-top: 82px;
  padding-bottom: 82px;
}

.faq-list {
  display: grid;
  gap: 14px;
  width: min(100%, 900px);
  margin: 34px auto 0;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: var(--ink-soft);
  overflow: hidden;
}

.faq-item summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  color: var(--white);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #ff6868;
  font-size: 20px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: rgba(255, 255, 255, 0.68);
}

.faq-item a {
  color: var(--white);
  font-weight: 850;
}

.reviews-section {
  padding-top: 88px;
  padding-bottom: 88px;
}

.review-summaries {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, 860px);
  margin: -12px auto 28px;
}

.review-summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: var(--ink-soft);
  padding: 18px 20px;
}

.review-summary strong {
  color: var(--white);
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
}

.review-summary span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.review-summary a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 0 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 850;
}

.review-summary a:hover {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  display: grid;
  align-content: start;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
}

.review-card-google {
  border-color: rgba(66, 133, 244, 0.28);
}

.review-card-yelp {
  border-color: rgba(207, 47, 47, 0.26);
}

.review-source {
  width: max-content;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 4px 10px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.stars {
  color: #f7c948;
  font-size: 18px;
  letter-spacing: 2px;
}

.review-card blockquote {
  margin: 0;
  color: var(--white);
  font-size: 22px;
  line-height: 1.28;
  font-weight: 900;
}

.review-meta {
  display: grid;
  gap: 2px;
  padding-top: 2px;
}

.review-meta strong {
  color: var(--white);
}

.review-meta span,
.review-meta time,
.review-card p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
}

.review-card p {
  margin: 0;
}

.contact-section {
  background:
    linear-gradient(180deg, rgba(207, 47, 47, 0.08), rgba(207, 47, 47, 0) 28%),
    var(--paper);
}

.contact-grid {
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  align-items: start;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 30px 0 24px;
}

.contact-list div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  padding: 16px;
}

.contact-list span {
  display: block;
  margin-bottom: 6px;
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.contact-list p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 750;
}

.contact-list a:hover,
.site-footer a:hover,
.social-row a:hover {
  color: var(--red);
}

.social-row {
  margin: 0 0 24px;
}

.social-row a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  background: var(--paper-strong);
  font-weight: 850;
}

.map-card {
  position: relative;
  display: grid;
  gap: 6px;
  min-height: 210px;
  align-content: end;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 22px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(0, 0, 0, 0.1), rgba(207, 47, 47, 0.3)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 18px),
    var(--ink);
  box-shadow: var(--shadow);
}

.map-card::before,
.map-card::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.14);
}

.map-card::before {
  width: 120%;
  height: 1px;
  left: -10%;
  top: 44%;
  transform: rotate(-12deg);
}

.map-card::after {
  width: 1px;
  height: 140%;
  left: 58%;
  top: -20%;
  transform: rotate(22deg);
}

.map-card strong,
.map-card span {
  position: relative;
  z-index: 1;
}

.map-pin {
  width: 18px;
  height: 18px;
  border: 5px solid var(--red);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--white);
}

.quote-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-heading {
  margin-bottom: 22px;
}

.form-heading h3 {
  margin-bottom: 0;
  font-size: 30px;
}

.field {
  margin-bottom: 16px;
}

.field-row.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

label {
  display: block;
  margin-bottom: 7px;
  font-size: 14px;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cdcdc7;
  border-radius: var(--radius);
  padding: 12px 13px;
  color: var(--text);
  background: var(--paper);
  transition: border-color 140ms ease, background 140ms ease, box-shadow 140ms ease;
}

textarea {
  resize: vertical;
  min-height: 126px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  background: var(--white);
  outline: none;
  box-shadow: 0 0 0 4px rgba(207, 47, 47, 0.12);
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea,
.consent-field.is-invalid {
  border-color: var(--red);
}

.form-error {
  min-height: 18px;
  margin: 5px 0 0;
  color: var(--red-dark);
  font-size: 12px;
  font-weight: 750;
}

.consent-field {
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 6px 0;
}

.consent-field label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.consent-field input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--red);
}

.submit-btn {
  width: 100%;
  min-height: 54px;
}

.form-status {
  margin: 14px 0 0;
  font-size: 14px;
  font-weight: 800;
}

.form-status.is-success {
  color: #197245;
}

.form-status.is-error {
  color: var(--red-dark);
}

.site-footer {
  color: rgba(255, 255, 255, 0.75);
  background: #080809;
  padding: 64px 24px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 34px;
}

.footer-brand img {
  width: 128px;
  margin-bottom: 18px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 15px;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.footer-bottom {
  width: min(100%, var(--max));
  margin: 46px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 0;
}

.footer-bottom p {
  margin: 0;
}

.mobile-call {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 60;
  display: none;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--red);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
  font-weight: 950;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .service-grid,
  .intent-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .package-card-custom {
    grid-column: 1 / -1;
  }

  .split,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .promo-bar {
    justify-content: space-between;
    gap: 10px;
    font-size: 12px;
  }

  .nav-shell {
    height: 68px;
    width: calc(100% - 24px);
    gap: 12px;
  }

  .nav-left {
    min-width: 0;
    gap: 8px;
  }

  .brand {
    min-width: auto;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand span {
    display: none;
  }

  .header-social a {
    width: 36px;
    height: 36px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 12px;
    background: rgba(11, 11, 12, 0.96);
    box-shadow: var(--shadow);
    transform: none;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    justify-content: flex-start;
    min-height: 48px;
    padding: 0 14px;
  }

  .nav-links .nav-cta {
    margin-left: 0;
    justify-content: center;
  }

  .hero {
    min-height: 86vh;
    padding: 72px 20px 52px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 76px 20px;
  }

  .intro-band {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .section-heading h2,
  .about-grid h2,
  .contact-copy h2 {
    font-size: 34px;
  }

  .about-logo {
    width: 124px;
  }

  .package-grid,
  .why-grid,
  .intent-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-summaries {
    grid-template-columns: 1fr;
  }

  .review-summary {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-list,
  .field-row.two-col,
  .stat-list {
    grid-template-columns: 1fr;
  }

  .mobile-call {
    display: flex;
  }

  .site-footer {
    padding-bottom: 76px;
  }
}

@media (max-width: 620px) {
  section[id],
  form[id] {
    scroll-margin-top: 24px;
  }

  .promo-bar {
    flex-direction: column;
    min-height: auto;
  }

  .nav-links {
    top: calc(100% + 8px);
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-proof {
    display: none;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .service-grid,
  .intent-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .intent-card,
  .package-card,
  .quote-form {
    padding: 22px;
  }

  .faq-item summary {
    align-items: flex-start;
    font-size: 16px;
  }

  .package-card h3 {
    font-size: 28px;
  }

  .price {
    font-size: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
