:root {
  --ink: #0e0d0b;
  --ink-2: #171511;
  --panel: #201d18;
  --paper: #f6f1e9;
  --paper-soft: #ded6c9;
  --muted: #9d9587;
  --gold: #c8a96d;
  --red: #9f3d35;
  --green: #677762;
  --steel: #7a8790;
  --line: rgba(246, 241, 233, 0.14);
  --line-dark: rgba(14, 13, 11, 0.12);
  --shadow: 0 28px 100px rgba(0, 0, 0, 0.4);
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  padding: 12px clamp(18px, 3vw, 44px);
  background: rgba(14, 13, 11, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 82px;
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.45));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.5vw, 22px);
  color: rgba(246, 241, 233, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  padding: 9px 0;
}

.main-nav a:hover {
  color: var(--paper);
}

.nav-cta {
  padding: 10px 16px !important;
  color: var(--ink) !important;
  background: var(--gold);
  border-radius: 4px;
}

.menu-link {
  color: rgba(246, 241, 233, 0.92);
  font-size: 0.76rem;
  letter-spacing: 0;
}

.social-actions {
  display: flex;
  gap: 6px;
  padding-left: 12px;
  border-left: 1px solid var(--line);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  padding: 0 !important;
  color: rgba(246, 241, 233, 0.82);
  background: rgba(246, 241, 233, 0.06);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 0.56rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.social-icon:hover {
  color: var(--ink);
  background: var(--gold);
}

.social-icon svg,
.social-icon img {
  width: 17px;
  height: 17px;
}

.social-icon img {
  filter: invert(96%) sepia(8%) saturate(442%) hue-rotate(338deg) brightness(103%) contrast(93%);
}

.social-icon:hover img {
  filter: invert(4%) sepia(8%) saturate(958%) hue-rotate(353deg) brightness(92%) contrast(98%);
}

.social-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.social-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 20px;
}

.social-modal.open {
  display: grid;
}

.social-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 13, 11, 0.76);
  border: 0;
  cursor: pointer;
  backdrop-filter: blur(16px);
}

.social-modal-dialog {
  position: relative;
  width: min(100%, 420px);
  padding: 28px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
}

.social-modal-dialog.qr-only {
  width: min(100%, 350px);
  padding: 8px;
  background: #fff;
}

.social-modal-dialog span {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.social-modal-dialog h2 {
  max-width: 320px;
  margin-top: 16px;
  font-size: clamp(1.65rem, 6vw, 2.65rem);
}

.social-modal-dialog p {
  margin-top: 16px;
  color: #5d554b;
  font-size: 0.9rem;
}

.social-modal-dialog img {
  margin-top: 22px;
  background: #fff;
}

.social-modal-dialog.qr-only img {
  margin-top: 0;
}

.social-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line-dark);
  cursor: pointer;
}

.social-modal-close svg {
  width: 18px;
  height: 18px;
}

.icon-button {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--paper);
  background: rgba(246, 241, 233, 0.08);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.hero {
  --hero-brightness: 0.78;
  --hero-contrast: 1.08;
  --hero-overlay: 0.34;
  --hero-position-x: 56%;
  --hero-position-y: 72%;
  --hero-saturation: 0.78;
  --hero-scale: 1.015;
  --hero-text-x: 7%;
  --hero-text-y: 4px;
  --hero-title-size: 3rem;
  position: relative;
  display: grid;
  align-items: center;
  justify-items: start;
  min-height: calc(92svh - 96px);
  padding: clamp(88px, 10vw, 142px) clamp(18px, 4vw, 56px);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(14, 13, 11, var(--hero-overlay)), rgba(14, 13, 11, 0.08) 62%),
    url("/assets/hero-lamborghini-retouched-v2.jpg") var(--hero-position-x) var(--hero-position-y) / cover;
  filter:
    contrast(var(--hero-contrast))
    saturate(var(--hero-saturation))
    brightness(var(--hero-brightness));
  transform: scale(var(--hero-scale));
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(14, 13, 11, 0.14), rgba(14, 13, 11, 0) 46%),
    linear-gradient(180deg, rgba(14, 13, 11, 0.28), rgba(14, 13, 11, 0) 34%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin-left: var(--hero-text-x);
  text-align: left;
  transform: translateY(var(--hero-text-y));
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 560px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, var(--hero-title-size), 3.8rem);
  line-height: 1;
  text-shadow: 0 2px 18px rgba(14, 13, 11, 0.72);
  text-transform: uppercase;
}

.hero-inner p {
  margin: 14px 0 0;
  color: rgba(246, 241, 233, 0.8);
  font-family: var(--font-display);
  font-size: clamp(0.78rem, 1.1vw, 1rem);
  font-weight: 600;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 560px;
  margin: 26px 0 0;
  color: rgba(246, 241, 233, 0.82);
  font-size: clamp(1.03rem, 1.34vw, 1.24rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  text-transform: uppercase;
}

.button svg,
.icon-button svg,
.contact-band svg,
.quote-points svg {
  width: 18px;
  height: 18px;
}

.button.primary {
  color: var(--ink);
  background: var(--gold);
}

.button.ghost {
  color: var(--paper);
  background: rgba(246, 241, 233, 0.08);
  border-color: var(--line);
}

.hero-proof {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 calc(clamp(18px, 4vw, 56px) * -1);
  border-top: 1px solid var(--line);
  background: rgba(14, 13, 11, 0.58);
  backdrop-filter: blur(18px);
}

.hero-proof div {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 96px;
  padding: 22px clamp(18px, 4vw, 56px);
  border-right: 1px solid var(--line);
}

.hero-proof div:last-child {
  border-right: 0;
}

.hero-proof span {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
}

.hero-proof strong {
  display: block;
  color: rgba(246, 241, 233, 0.86);
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 1.2vw, 1.2rem);
  font-weight: 700;
  text-transform: uppercase;
}

.contact-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-2);
}

.contact-band a,
.contact-band span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 66px;
  padding: 16px clamp(18px, 3vw, 34px);
  color: rgba(246, 241, 233, 0.84);
  border-right: 1px solid var(--line);
  font-weight: 800;
}

.contact-band a:last-child {
  border-right: 0;
}

.contact-band svg {
  color: var(--gold);
}

.section {
  padding: clamp(78px, 9vw, 124px) clamp(18px, 4vw, 56px);
}

.manifesto {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 0.55fr);
  gap: clamp(26px, 6vw, 90px);
  align-items: end;
  background: var(--paper);
  color: var(--ink);
}

.manifesto .section-label {
  grid-column: 1 / -1;
  color: var(--red);
}

.manifesto h2 {
  max-width: 920px;
}

.manifesto p {
  color: #4f473d;
  font-size: 1.05rem;
}

.pathways {
  background: var(--ink);
}

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

.pathway-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: clamp(22px, 3vw, 32px);
  background: var(--panel);
}

.pathway-card span,
.coverage-card span,
.decision-grid span,
.film-system span,
.surface-grid span,
.materials-grid span,
.comparison-grid span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pathway-card h3 {
  margin-top: auto;
  font-size: clamp(1.45rem, 2.4vw, 2.8rem);
  text-transform: uppercase;
}

.pathway-card p {
  margin-top: 16px;
  color: rgba(246, 241, 233, 0.72);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: clamp(24px, 5vw, 78px);
  align-items: end;
  margin-bottom: 36px;
}

h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 4vw, 4.4rem);
  line-height: 1;
  text-transform: uppercase;
}

h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 1.08;
}

p {
  margin: 0;
}

.section-heading p,
.intro-copy p,
.quote-copy p {
  color: var(--paper-soft);
  font-size: 1rem;
}

.intro {
  background: var(--paper);
  color: var(--ink);
}

.intro .section-label,
.package-focus .section-label {
  color: var(--red);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
}

.intro-copy h2 {
  max-width: 760px;
}

.intro-copy p {
  max-width: 600px;
  margin-top: 24px;
  color: #4b443b;
}

.proof-grid {
  display: grid;
  gap: 14px;
}

.proof-grid article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
  padding: 22px;
  background: #fffaf2;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
}

.proof-grid span,
.process-steps span {
  color: var(--red);
  font-weight: 900;
}

.proof-grid h3 {
  margin-bottom: 6px;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.proof-grid p {
  color: #5e574e;
}

.tesla {
  background: #e9e2d7;
  color: var(--ink);
}

.tesla .section-label,
.tesla .section-heading .section-label {
  color: var(--red);
}

.tesla .section-heading p,
.deep-paper .section-heading p {
  color: #51493f;
}

.tesla-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 1px;
  background: rgba(14, 13, 11, 0.16);
  border: 1px solid rgba(14, 13, 11, 0.16);
}

.tesla-feature,
.tesla-options article {
  background: #fff8ee;
}

.tesla-feature {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: clamp(28px, 5vw, 54px);
}

.tesla-feature span,
.tesla-options span,
.service-index span,
.package-card span {
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tesla-feature h3 {
  max-width: 600px;
  margin-top: auto;
  font-size: clamp(2.4rem, 5vw, 5.8rem);
  text-transform: uppercase;
}

.tesla-feature p {
  max-width: 560px;
  margin-top: 22px;
  color: #51493f;
  font-size: 1.02rem;
}

.tesla-feature a {
  margin-top: 28px;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.tesla-options {
  display: grid;
  gap: 1px;
}

.tesla-options article {
  display: grid;
  align-content: center;
  min-height: 136px;
  padding: 28px;
}

.tesla-options h3 {
  margin-top: 16px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  text-transform: uppercase;
}

.tesla-options p {
  margin-top: 10px;
  color: #5d554b;
}

.tesla-ladder {
  margin-top: 34px;
}

.package-focus {
  color: var(--ink);
  background: #e6ded2;
}

.package-ladder {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(14, 13, 11, 0.14);
  border: 1px solid rgba(14, 13, 11, 0.14);
}

.package-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 28px;
  background: #f8f2e8;
}

.package-card.featured {
  color: var(--paper);
  background:
    linear-gradient(145deg, rgba(159, 61, 53, 0.22), rgba(103, 119, 98, 0.2)),
    var(--ink-2);
}

.package-card span {
  color: var(--red);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.package-card.featured span {
  color: var(--gold);
}

.package-card h3 {
  margin-top: 48px;
  font-size: clamp(1.6rem, 2.3vw, 2.55rem);
  text-transform: uppercase;
}

.package-card p {
  margin-top: 16px;
  color: #5d554b;
}

.package-card ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  color: #5d554b;
  list-style: none;
}

.package-card li::before {
  color: var(--red);
  content: "+ ";
  font-weight: 900;
}

.package-card.featured p {
  color: rgba(246, 241, 233, 0.78);
}

.package-card.featured ul {
  color: rgba(246, 241, 233, 0.72);
}

.package-card.featured li::before {
  color: var(--gold);
}

.package-card a {
  margin-top: auto;
  color: inherit;
  font-weight: 900;
  text-transform: uppercase;
}

.services {
  background: var(--ink);
}

.service-deep h2 {
  max-width: 1040px;
}

.deep-dark {
  background: var(--ink);
}

.deep-paper {
  color: var(--ink);
  background: var(--paper);
}

.deep-paper .section-label {
  color: var(--red);
}

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

.coverage-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: clamp(22px, 3vw, 32px);
  background: var(--panel);
}

.coverage-card.featured {
  color: var(--ink);
  background: var(--gold);
}

.coverage-card.featured span {
  color: var(--red);
}

.coverage-card h3 {
  margin-top: auto;
  font-size: clamp(1.55rem, 2.6vw, 3rem);
  text-transform: uppercase;
}

.coverage-card p {
  margin-top: 16px;
  color: rgba(246, 241, 233, 0.72);
}

.coverage-card.featured p {
  color: rgba(14, 13, 11, 0.72);
}

.decision-grid,
.film-system,
.surface-grid,
.comparison-grid {
  display: grid;
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
  border: 1px solid var(--line);
}

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

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

.surface-grid,
.comparison-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.comparison-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--line-dark);
  border-color: var(--line-dark);
}

.decision-grid article,
.film-system article,
.surface-grid article,
.comparison-grid article {
  min-height: 280px;
  padding: clamp(22px, 3vw, 32px);
  background: var(--panel);
}

.deep-paper .film-system,
.deep-paper .comparison-grid {
  background: var(--line-dark);
  border-color: var(--line-dark);
}

.deep-paper .film-system article,
.deep-paper .comparison-grid article {
  background: #fff8ee;
}

.decision-grid h3,
.film-system h3,
.surface-grid h3,
.comparison-grid h3 {
  margin-top: 42px;
  font-size: clamp(1.35rem, 2vw, 2.1rem);
  text-transform: uppercase;
}

.decision-grid p,
.film-system p,
.surface-grid p,
.comparison-grid p {
  margin-top: 14px;
  color: rgba(246, 241, 233, 0.72);
}

.deep-paper .film-system p,
.deep-paper .comparison-grid p {
  color: #5d554b;
}

.decision-grid ul,
.film-system ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  color: rgba(246, 241, 233, 0.72);
  list-style: none;
}

.deep-paper .film-system ul {
  color: #5d554b;
}

.decision-grid li::before,
.film-system li::before {
  color: var(--gold);
  content: "+ ";
  font-weight: 900;
}

.deep-paper .film-system li::before {
  color: var(--red);
}

.system-specs {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 7px 14px;
  margin-top: 22px;
  padding-top: 16px;
  color: #5d554b;
  border-top: 1px solid var(--line-dark);
  font-size: 0.78rem;
}

.system-specs strong {
  color: var(--red);
}

.system-price {
  display: block;
  margin-top: 22px;
  color: var(--red);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  text-transform: uppercase;
}

.full-car-scope,
.package-scope-note {
  color: #5d554b;
  font-size: 0.82rem;
}

.full-car-scope {
  margin-top: 16px;
}

.full-car-scope strong {
  display: block;
  color: var(--red);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.package-scope-note {
  margin-top: 18px;
}

.detail-hero .package-scope-note {
  color: rgba(246, 241, 233, 0.72);
}

.system-link {
  display: inline-flex;
  align-items: center;
  margin-top: 26px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.system-link::after {
  margin-left: 8px;
  content: ">";
}

.google-strip {
  display: grid;
  grid-template-columns: minmax(140px, 0.32fr) minmax(260px, 0.52fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-top: 34px;
  padding: clamp(20px, 3vw, 30px);
  color: var(--paper);
  background: rgba(14, 13, 11, 0.78);
  border: 1px solid var(--line);
}

.google-strip.light {
  color: var(--ink);
  background: #fff8ee;
  border-color: var(--line-dark);
}

.google-strip span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.google-strip.light span {
  color: var(--red);
}

.google-strip strong {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 2.2rem);
  line-height: 1;
  text-transform: uppercase;
}

.google-strip p {
  color: rgba(246, 241, 233, 0.7);
}

.google-strip.light p {
  color: #5d554b;
}

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

.service-index article {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: clamp(22px, 3vw, 32px);
  background: var(--panel);
}

.service-index h3 {
  margin-top: auto;
  font-size: clamp(1.5rem, 2.2vw, 2.55rem);
  text-transform: uppercase;
}

.service-index p {
  margin-top: 16px;
  color: rgba(246, 241, 233, 0.74);
}

.service-index small {
  display: block;
  margin-top: 22px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

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

.service-card {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card img {
  height: clamp(220px, 25vw, 340px);
  object-fit: cover;
}

.service-card div {
  padding: 24px;
}

.service-card svg {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.service-card h3 {
  margin-top: 18px;
  font-size: 1.42rem;
  text-transform: uppercase;
}

.service-card p {
  margin-top: 12px;
  color: var(--paper-soft);
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  color: rgba(246, 241, 233, 0.75);
  list-style: none;
}

.service-card li::before {
  color: var(--gold);
  content: "+ ";
  font-weight: 900;
}

.process {
  background:
    linear-gradient(rgba(14, 13, 11, 0.88), rgba(14, 13, 11, 0.92)),
    url("https://images.squarespace-cdn.com/content/v1/6787335734d1b51aa3964805/695671e6-d3e4-4094-8f79-b5b32cd64ecd/A7M00779.jpg?format=2000w") center / cover;
}

.process h2 {
  max-width: 980px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 40px;
  background: var(--line);
  border: 1px solid var(--line);
}

.process-steps article {
  min-height: 260px;
  padding: 26px;
  background: rgba(14, 13, 11, 0.72);
  backdrop-filter: blur(8px);
}

.process-steps h3 {
  margin-top: 52px;
  font-size: 1.25rem;
  text-transform: uppercase;
}

.process-steps p {
  margin-top: 12px;
  color: rgba(246, 241, 233, 0.72);
}

.materials {
  background: var(--paper);
  color: var(--ink);
}

.materials .section-label {
  color: var(--red);
}

.materials h2 {
  max-width: 920px;
}

.materials-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.materials-grid article {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: clamp(22px, 3vw, 32px);
  background: #fff8ee;
}

.materials-grid span {
  color: var(--red);
}

.materials-grid h3 {
  margin-top: auto;
  font-size: clamp(1.35rem, 2vw, 2.15rem);
  text-transform: uppercase;
}

.materials-grid p {
  margin-top: 14px;
  color: #5d554b;
}

.material-list {
  display: grid;
  margin-top: 38px;
  border-top: 1px solid var(--line-dark);
}

.material-list article {
  display: grid;
  grid-template-columns: minmax(190px, 0.32fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 108px;
  border-bottom: 1px solid var(--line-dark);
}

.material-list strong {
  font-family: var(--font-display);
  font-size: clamp(1.28rem, 2vw, 2rem);
  text-transform: uppercase;
}

.material-list span {
  color: #51493f;
}

.proof {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
  background:
    linear-gradient(90deg, rgba(14, 13, 11, 0.94), rgba(14, 13, 11, 0.78)),
    url("https://images.squarespace-cdn.com/content/v1/6787335734d1b51aa3964805/ac93b560-4d70-4485-888d-2ce3685e2e4c/DSC03927.jpg?format=1600w") center / cover;
}

.review-placeholder {
  display: grid;
  gap: 14px;
}

.google-review-summary {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  background: rgba(246, 241, 233, 0.08);
  border: 1px solid var(--line);
}

.google-review-summary span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.google-review-summary strong {
  display: block;
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  text-transform: uppercase;
}

.google-review-summary small,
.google-review-card small {
  display: block;
  color: rgba(246, 241, 233, 0.62);
  font-size: 0.72rem;
}

.google-review-summary a {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.google-review-card {
  min-height: 210px;
  padding: 20px;
  background: rgba(14, 13, 11, 0.82);
  border: 1px solid var(--line);
}

.google-review-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.google-review-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--paper);
  background: #315e58;
  border-radius: 50%;
  font-weight: 900;
}

.google-review-head strong {
  color: var(--paper);
}

.google-review-head b {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.google-review-stars {
  margin-top: 14px;
  color: #f6c64f;
  letter-spacing: 0;
}

.google-review-card p {
  margin-top: 12px;
  color: rgba(246, 241, 233, 0.72);
  font-size: 0.88rem;
}

.results {
  background: var(--paper);
  color: var(--ink);
}

.results .section-label {
  color: var(--red);
}

.text-link {
  justify-self: end;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

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

figure {
  margin: 0;
  background: #fffaf2;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  overflow: hidden;
}

figure img {
  height: clamp(220px, 24vw, 360px);
  object-fit: cover;
}

figcaption {
  padding: 14px 16px;
  color: #494239;
  font-weight: 900;
  text-transform: uppercase;
}

.quote {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 1fr);
  gap: clamp(28px, 6vw, 88px);
  background: var(--ink-2);
}

.quote-copy {
  align-self: center;
}

.quote-copy p {
  max-width: 560px;
  margin-top: 22px;
}

.quote-points {
  display: grid;
  gap: 12px;
  margin-top: 30px;
  color: rgba(246, 241, 233, 0.78);
  font-weight: 800;
}

.quote-points span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.quote-points svg {
  color: var(--gold);
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--paper);
  border-radius: 8px;
  color: var(--ink);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: #3a342e;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  color: var(--ink);
  background: #fffaf2;
  border: 1px solid rgba(14, 13, 11, 0.18);
  border-radius: 6px;
  padding: 12px;
  outline: none;
}

.quote-form textarea {
  resize: vertical;
}

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

.form-note {
  grid-column: 1 / -1;
  color: #6e665c;
  font-size: 0.88rem;
}

.faq {
  background: var(--paper);
  color: var(--ink);
}

.faq .section-label {
  color: var(--red);
}

.faq h2 {
  max-width: 820px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
  margin-top: 34px;
}

details {
  background: #fffaf2;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-family: var(--font-display);
  font-weight: 700;
}

details p {
  padding: 0 22px 22px;
  color: #5d554b;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 56px);
  color: rgba(246, 241, 233, 0.7);
  background: var(--ink);
  border-top: 1px solid var(--line);
}

.site-footer strong {
  display: block;
  color: var(--paper);
}

.site-footer div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 800;
}

.vertical-hero .hero-copy {
  max-width: 650px;
}

.gateway-section {
  background: var(--paper);
  color: var(--ink);
}

.gateway-section .section-label,
.vertical-map .section-label,
.decision-layer .section-label {
  color: var(--red);
}

.gateway-section .section-heading p,
.vertical-map p,
.decision-layer .section-heading p {
  color: #51493f;
}

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

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

.gateway-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: clamp(22px, 3vw, 32px);
  color: var(--ink);
  background: #fff8ee;
}

.gateway-card.featured {
  color: var(--paper);
  background:
    linear-gradient(145deg, rgba(159, 61, 53, 0.24), rgba(103, 119, 98, 0.18)),
    var(--ink-2);
}

.gateway-card img {
  width: calc(100% + (clamp(22px, 3vw, 32px) * 2));
  height: auto;
  aspect-ratio: 4 / 3;
  margin: calc(clamp(22px, 3vw, 32px) * -1) calc(clamp(22px, 3vw, 32px) * -1) 28px;
  object-fit: cover;
}

.gateway-card span,
.map-rail span,
.breadcrumb,
.price-line span,
.scope-list span {
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gateway-card.featured span {
  color: var(--gold);
}

.gateway-card h3 {
  margin-top: auto;
  font-size: clamp(1.45rem, 2.35vw, 2.65rem);
  text-transform: uppercase;
}

.gateway-card p {
  margin-top: 16px;
  color: #5d554b;
}

.gateway-card.featured p {
  color: rgba(246, 241, 233, 0.72);
}

.gateway-card strong {
  margin-top: 26px;
  color: var(--red);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.gateway-card.featured strong {
  color: var(--gold);
}

.vertical-map {
  background: var(--paper);
  color: var(--ink);
}

.vertical-map h2 {
  max-width: 980px;
}

.map-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 38px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.map-rail article {
  min-height: 260px;
  padding: clamp(22px, 3vw, 32px);
  background: #fff8ee;
}

.map-rail h3 {
  margin-top: 70px;
  font-size: clamp(1.25rem, 2vw, 2rem);
  text-transform: uppercase;
}

.map-rail p {
  margin-top: 12px;
}

.page-hero {
  padding: clamp(78px, 9vw, 126px) clamp(18px, 4vw, 56px);
  color: var(--paper);
  background:
    linear-gradient(90deg, rgba(14, 13, 11, 0.96), rgba(14, 13, 11, 0.72)),
    url("/assets/hero-a7m00792.jpg") center / cover;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(46px, 7vw, 88px);
  color: var(--gold);
}

.breadcrumb a {
  color: rgba(246, 241, 233, 0.72);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.55fr);
  gap: clamp(24px, 6vw, 90px);
  align-items: end;
}

.page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 7.4rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.page-hero p {
  color: rgba(246, 241, 233, 0.78);
  font-size: 1.04rem;
}

.page-hero .hero-actions {
  margin-top: 38px;
}

.decision-layer {
  background: var(--paper);
  color: var(--ink);
}

.materials-grid.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.case-strip {
  background: var(--ink);
}

.case-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.case-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: clamp(22px, 3vw, 32px);
  background: var(--panel);
}

.case-card span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.case-card h3 {
  margin-top: auto;
  font-size: clamp(1.4rem, 2.5vw, 2.8rem);
  text-transform: uppercase;
}

.case-card p {
  margin-top: 14px;
  color: rgba(246, 241, 233, 0.72);
}

.case-card > img {
  width: calc(100% + (clamp(22px, 3vw, 32px) * 2));
  height: 190px;
  margin: calc(clamp(22px, 3vw, 32px) * -1) calc(clamp(22px, 3vw, 32px) * -1) 26px;
  object-fit: cover;
}

.visual-card {
  padding: 0;
  overflow: hidden;
}

.visual-card > img {
  width: 100%;
  height: 300px;
  margin: 0;
  object-fit: cover;
}

.visual-card span,
.visual-card h3 {
  margin-right: 28px;
  margin-left: 28px;
}

.visual-card span {
  margin-top: 24px;
}

.visual-card h3 {
  margin-bottom: 28px;
}

.visual-image {
  min-height: 300px;
  background:
    linear-gradient(180deg, rgba(14, 13, 11, 0), rgba(14, 13, 11, 0.32)),
    url("/assets/hero-a7m00792.jpg") 58% center / cover;
}

.next-layer {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) auto;
  gap: clamp(24px, 5vw, 80px);
  align-items: center;
  background: var(--paper);
  color: var(--ink);
}

.next-layer .section-label {
  color: var(--red);
}

.next-layer p {
  max-width: 640px;
  margin-top: 18px;
  color: #51493f;
}

.service-proof {
  min-height: 520px;
}

.interactive-coverage .coverage-card a {
  margin-top: auto;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.interactive-coverage .coverage-card.featured a {
  color: var(--red);
}

.detail-hero {
  min-height: 620px;
}

.price-line {
  display: grid;
  grid-template-columns: minmax(120px, 0.28fr) minmax(220px, 0.5fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 46px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-line strong {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
}

.price-line a {
  justify-self: end;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

.detail-split {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 92px);
  background: var(--paper);
  color: var(--ink);
}

.detail-split .section-label {
  color: var(--red);
}

.scope-list {
  display: grid;
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.scope-list article {
  display: grid;
  grid-template-columns: 72px minmax(0, 0.44fr) minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-height: 116px;
  padding: 22px;
  background: #fff8ee;
}

.scope-list h3 {
  font-size: clamp(1.1rem, 1.6vw, 1.55rem);
  text-transform: uppercase;
}

.scope-list p {
  color: #5d554b;
}

.tesla-offer {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: 0;
  padding: 0;
  color: var(--paper);
  background: var(--ink-2);
}

.tesla-offer-copy {
  align-self: center;
  padding: clamp(66px, 8vw, 116px) clamp(18px, 4vw, 56px);
}

.tesla-offer h2 {
  max-width: 820px;
}

.tesla-offer p {
  max-width: 620px;
  margin-top: 22px;
  color: rgba(246, 241, 233, 0.72);
}

.tesla-offer .button {
  margin-top: 30px;
}

.new-car-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background: #12110f;
}

.new-car-visual::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(180deg, rgba(17, 16, 14, 0.18), rgba(17, 16, 14, 0.08) 52%, rgba(17, 16, 14, 0.38)),
    linear-gradient(90deg, rgba(17, 16, 14, 0.2), transparent 24%, transparent 76%, rgba(17, 16, 14, 0.18));
  box-shadow: inset 0 0 0 1px rgba(246, 241, 233, 0.08);
}

.new-car-visual img {
  min-height: 620px;
  height: 100%;
  object-fit: cover;
  object-position: center 56%;
  filter: saturate(0.82) contrast(1.08) brightness(0.74);
}

.tesla-offer-page {
  border-bottom: 1px solid var(--line);
}

.tesla-gallery-section {
  color: var(--ink);
  background: var(--paper);
}

.tesla-gallery-section .section-label {
  color: var(--red);
}

.tesla-gallery-section .section-heading p {
  color: #5d554b;
}

.tesla-gallery,
.wrap-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.tesla-gallery img {
  height: 460px;
  object-fit: cover;
}

.tesla-gallery.single {
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
}

.tesla-gallery.single article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 48px);
  background: #fff8ee;
}

.tesla-gallery.single span {
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 900;
}

.tesla-gallery.single h3 {
  margin-top: 34px;
  font-size: clamp(1.6rem, 2.8vw, 3.1rem);
  text-transform: uppercase;
}

.tesla-gallery.single p {
  margin-top: 16px;
  color: #5d554b;
}

.tesla-gallery.single .button {
  align-self: flex-start;
  margin-top: 30px;
}

.media-credit {
  margin-top: 14px;
  color: #766c60;
  font-size: 0.74rem;
}

.media-credit a {
  color: inherit;
  text-decoration-color: rgba(118, 108, 96, 0.45);
  text-underline-offset: 3px;
}

.media-credit a:hover {
  color: var(--red);
}

.tesla-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.tesla-package-grid article {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: clamp(22px, 3vw, 32px);
  background: #fff8ee;
}

.tesla-package-grid article.featured {
  color: var(--paper);
  background: var(--ink-2);
}

.tesla-package-grid span,
.visual-price-card span {
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tesla-package-grid .featured span {
  color: var(--gold);
}

.tesla-package-grid h3 {
  margin-top: 66px;
  font-size: clamp(1.45rem, 2.2vw, 2.5rem);
  text-transform: uppercase;
}

.tesla-package-grid p {
  margin-top: 16px;
  color: #5d554b;
}

.tesla-package-grid .featured p,
.tesla-package-grid .featured ul {
  color: rgba(246, 241, 233, 0.72);
}

.tesla-package-grid ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 0;
  color: #5d554b;
  list-style: none;
}

.tesla-package-grid li::before {
  color: var(--red);
  content: "+ ";
  font-weight: 900;
}

.tesla-package-grid .featured li::before {
  color: var(--gold);
}

.tesla-package-grid a {
  margin-top: auto;
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
}

.tesla-package-grid .featured a {
  color: var(--gold);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button.ghost.dark {
  color: var(--ink);
  background: rgba(14, 13, 11, 0.06);
  border-color: var(--line-dark);
}

.brand-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
}

.flexishield-logo {
  max-width: 460px;
  margin: 0 0 32px;
  mix-blend-mode: multiply;
  filter: contrast(1.08) saturate(1.06);
}

.brand-editorial-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-dark);
}

.brand-editorial-head p {
  margin-top: 8px;
  color: #5d554b;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.brand-editorial-head a {
  align-self: end;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tint-brand-story {
  margin-top: 42px;
  align-items: stretch;
}

.tint-brand-story h2 {
  max-width: 700px;
}

.brand-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.brand-facts article {
  padding: 16px;
  background: #fff8ee;
}

.brand-facts span {
  display: block;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 900;
}

.brand-facts strong {
  display: block;
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  text-transform: uppercase;
}

.brand-feature-visual {
  position: relative;
  min-height: 100%;
  border: 0;
  border-radius: 0;
  background: #171511;
}

.brand-feature-visual img {
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.brand-feature-visual figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 14px 18px;
  color: rgba(246, 241, 233, 0.82);
  background: rgba(14, 13, 11, 0.78);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-story-grid p {
  max-width: 680px;
  margin-top: 22px;
  color: #51493f;
}

.brand-hero-image {
  min-height: 360px;
  max-height: 520px;
  object-fit: cover;
  background: #fff;
}

.text-link.align-left {
  display: inline-flex;
  justify-self: start;
  margin-top: 26px;
}

.brand-proof-grid,
.brand-gallery {
  display: grid;
  gap: 1px;
  margin-top: 38px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

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

.brand-proof-grid article {
  min-height: 250px;
  padding: clamp(22px, 3vw, 30px);
  background: #fff8ee;
}

.brand-proof-grid span {
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 900;
}

.brand-proof-grid h3 {
  margin-top: 48px;
  font-size: clamp(1.2rem, 1.8vw, 1.9rem);
  text-transform: uppercase;
}

.brand-proof-grid p {
  margin-top: 14px;
  color: #5d554b;
}

.brand-range-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.brand-range-grid article {
  padding: clamp(22px, 3vw, 30px);
  background: #f3eadf;
}

.brand-range-grid span {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-range-grid h3 {
  margin-top: 24px;
  font-size: clamp(1rem, 1.55vw, 1.55rem);
  text-transform: uppercase;
}

.brand-range-grid p {
  margin-top: 12px;
  color: #5d554b;
  font-size: 0.88rem;
}

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

.brand-gallery img {
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  background: #171511;
}

.brand-credential-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-block: 0;
  background: var(--line);
}

.brand-credential-band article {
  min-height: 230px;
  padding: clamp(24px, 3vw, 34px);
  background: #171511;
}

.brand-credential-band span {
  display: block;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 2.6rem);
  font-weight: 700;
  text-transform: uppercase;
}

.brand-credential-band strong {
  display: block;
  margin-top: 46px;
  color: var(--paper);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.brand-credential-band p {
  margin: 12px 0 0;
  color: rgba(246, 241, 233, 0.62);
  font-size: 0.86rem;
}

.video-showcase {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  background: #11100e;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.video-showcase-copy p {
  max-width: 460px;
  margin-top: 20px;
  color: rgba(246, 241, 233, 0.68);
}

.video-showcase-copy .button {
  margin-top: 18px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  background: #070707;
  border: 1px solid rgba(200, 169, 109, 0.32);
  box-shadow: var(--shadow);
}

.video-frame::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
  box-shadow: inset 0 0 0 1px rgba(246, 241, 233, 0.08);
}

.video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.product-banner-image {
  max-width: 620px;
  margin-top: 28px;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  background: #171511;
}

.ppf-price-section {
  color: var(--ink);
  background: var(--paper);
}

.ppf-guide-editorial {
  color: var(--ink);
  background: #f3eadf;
}

.ppf-guide-editorial .section-label {
  color: var(--red);
}

.ppf-guide-editorial .section-heading p {
  color: #51493f;
}

.ppf-guide-notes {
  display: grid;
  gap: 1px;
  background: var(--line-dark);
}

.ppf-guide-notes.horizontal {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ppf-guide-notes article {
  min-height: 156px;
  padding: 22px;
  background: #fff8ee;
}

.ppf-guide-notes span {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
}

.ppf-guide-notes strong {
  display: block;
  margin-top: 22px;
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
}

.ppf-guide-notes p {
  margin: 10px 0 0;
  color: #655c51;
  font-size: 0.88rem;
}

.ppf-price-section .section-label,
.ppf-reference .section-label {
  color: var(--red);
}

.ppf-price-section .section-heading p,
.ppf-reference p {
  color: #51493f;
}

.visual-price-grid {
  display: grid;
  gap: 14px;
}

.package-price-grid {
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.visual-price-card {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  overflow: hidden;
  background: #fff8ee;
  border: 0;
  border-radius: 0;
}

.visual-price-card.featured {
  background: #f3eadf;
}

.visual-price-card div {
  align-self: center;
  padding: 22px clamp(18px, 3vw, 32px);
}

.visual-price-card > img {
  width: 100%;
  height: 100%;
  min-height: 174px;
  padding: 12px;
  object-fit: contain;
  filter: contrast(1.04) saturate(0.92);
  background: #e5e1dc;
  border-right: 1px solid var(--line-dark);
}

.package-price-grid .visual-price-card:last-child {
  grid-column: auto;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
}

.package-price-grid .visual-price-card:last-child > img {
  height: 100%;
  border-right: 1px solid var(--line-dark);
  border-bottom: 0;
}

.visual-price-card h3 {
  margin-top: 6px;
  font-size: clamp(1rem, 1.4vw, 1.45rem);
  text-transform: uppercase;
}

.visual-price-card p {
  min-height: 3.1em;
  margin-top: 10px;
  color: #645b50;
  font-size: 0.84rem;
}

.visual-price-card strong {
  display: block;
  margin-top: 12px;
  color: var(--red);
  font-family: var(--font-display);
  font-size: clamp(1.32rem, 2vw, 2.1rem);
}

.pricing-note {
  margin-top: 22px;
  color: #5d554b;
  font-size: 0.9rem;
}

.ppf-reference {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) auto;
  gap: 24px;
  align-items: center;
  color: var(--ink);
  background: var(--paper);
}

.wrap-materials {
  color: var(--ink);
  background: var(--paper);
}

.wrap-materials .section-label,
.wrap-projects .section-label,
.edge-detail .section-label {
  color: var(--red);
}

.wrap-materials .section-heading p,
.wrap-projects .section-heading p {
  color: #5d554b;
}

.wrap-material-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.wrap-material-grid article {
  min-height: 470px;
  padding: clamp(26px, 4vw, 50px);
  background: #fff8ee;
}

.wrap-material-grid article.featured {
  color: var(--paper);
  background: var(--ink-2);
}

.wrap-material-grid span,
.wrap-gallery span {
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.wrap-material-grid .featured span {
  color: var(--gold);
}

.wrap-material-grid h3 {
  max-width: 540px;
  margin-top: 54px;
  font-size: clamp(1.8rem, 3vw, 3.5rem);
  text-transform: uppercase;
}

.wrap-material-grid p,
.wrap-material-grid ul {
  max-width: 660px;
  margin-top: 22px;
  color: #5d554b;
}

.wrap-material-grid .featured p,
.wrap-material-grid .featured ul {
  color: rgba(246, 241, 233, 0.72);
}

.wrap-material-grid strong {
  display: block;
  max-width: 640px;
  margin-top: 30px;
  color: var(--red);
}

.wrap-material-grid .featured strong {
  color: var(--gold);
}

.wrap-projects {
  color: var(--ink);
  background: #e9e2d7;
}

.wrap-gallery article {
  overflow: hidden;
  padding-bottom: 24px;
  background: #fff8ee;
}

.wrap-gallery img {
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.wrap-gallery span,
.wrap-gallery h3 {
  display: block;
  margin-right: 22px;
  margin-left: 22px;
}

.wrap-gallery span {
  margin-top: 22px;
}

.wrap-gallery h3 {
  margin-top: 12px;
  font-size: clamp(1.15rem, 1.8vw, 1.9rem);
  text-transform: uppercase;
}

.edge-detail,
.about-artisan {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: 0;
  align-items: stretch;
  color: var(--ink);
  background: var(--paper);
}

.edge-detail img,
.about-artisan img {
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.edge-detail div,
.about-artisan-copy {
  align-self: center;
  padding: clamp(50px, 7vw, 104px) clamp(22px, 5vw, 72px);
}

.edge-detail p,
.about-artisan p {
  max-width: 620px;
  margin-top: 22px;
  color: #5d554b;
}

.about-artisan {
  background: #e9e2d7;
}

.about-artisan .section-label {
  color: var(--red);
}

.about-details {
  display: grid;
  gap: 12px;
  margin-top: 34px;
}

.about-details a,
.about-details span,
.about-details button {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4d463e;
  font-weight: 800;
}

.about-details button {
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.about-details svg {
  width: 18px;
  height: 18px;
  color: var(--red);
}

.coating-editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1.22fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  color: var(--ink);
  background: #f3eadf;
}

.coating-editorial .section-label {
  color: var(--red);
}

.coating-editorial img {
  width: 100%;
  max-height: 650px;
  object-fit: cover;
}

.coating-editorial p {
  max-width: 620px;
  color: #655c51;
}

@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    inset: 96px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 22px 28px;
    background: rgba(14, 13, 11, 0.96);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .social-actions {
    padding: 16px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-cta {
    margin-top: 14px;
    text-align: center;
  }

  .icon-button {
    display: inline-flex;
  }

  .hero-proof,
  .contact-band,
  .manifesto,
  .pathway-grid,
  .gateway-grid,
  .gateway-grid.compact,
  .map-rail,
  .page-hero-grid,
  .case-grid,
  .next-layer,
  .price-line,
  .detail-split,
  .intro-grid,
  .tesla-grid,
  .tesla-offer,
  .brand-story-grid,
  .ppf-reference,
  .edge-detail,
  .about-artisan,
  .coating-editorial,
  .section-heading,
  .proof,
  .google-strip,
  .quote {
    grid-template-columns: 1fr;
  }

  .video-showcase {
    grid-template-columns: 1fr;
  }

  .brand-credential-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    --hero-overlay: 0.44;
    --hero-position-x: 62%;
    --hero-position-y: 68%;
  }

  .contact-band a,
  .contact-band span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .package-ladder,
  .coverage-table,
  .decision-grid,
  .film-system,
  .surface-grid,
  .comparison-grid,
  .materials-grid,
  .materials-grid.two-up,
  .tesla-package-grid,
  .brand-proof-grid,
  .brand-range-grid,
  .brand-gallery,
  .tesla-gallery,
  .wrap-gallery,
  .service-index,
  .service-grid,
  .process-steps,
  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .text-link {
    justify-self: start;
  }

  .new-car-visual,
  .new-car-visual img {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .hero {
    --hero-brightness: 0.7;
    --hero-overlay: 0.56;
    --hero-position-x: 68%;
    --hero-position-y: 62%;
    --hero-text-x: 0%;
    --hero-title-size: 2rem;
    justify-items: center;
    min-height: 72svh;
    padding: 76px 18px 40px;
  }

  .hero-inner {
    align-self: center;
    margin-left: 0;
    text-align: center;
  }

  .hero h1 {
    max-width: 320px;
    font-size: clamp(1.4rem, 8vw, 2.4rem);
  }

  .hero::after {
    display: none;
  }

  .hero-proof,
  .package-ladder,
  .coverage-table,
  .decision-grid,
  .film-system,
  .surface-grid,
  .comparison-grid,
  .materials-grid,
  .materials-grid.two-up,
  .tesla-package-grid,
  .package-price-grid,
  .brand-proof-grid,
  .brand-range-grid,
  .brand-gallery,
  .tesla-gallery,
  .wrap-gallery,
  .wrap-material-grid,
  .anatomy-list,
  .map-rail,
  .scope-list article,
  .service-index,
  .service-grid,
  .process-steps,
  .work-grid,
  .quote-form {
    grid-template-columns: 1fr;
  }

  .brand-facts,
  .google-review-grid,
  .brand-credential-band {
    grid-template-columns: 1fr;
  }

  .brand-editorial-head {
    flex-direction: column;
  }

  .brand-editorial-head a {
    align-self: start;
  }

  .google-review-summary {
    align-items: start;
    flex-direction: column;
  }

  .brand-feature-visual img {
    min-height: 320px;
  }

  .ppf-guide-notes.horizontal,
  .visual-price-card,
  .package-price-grid .visual-price-card:last-child,
  .tesla-gallery.single {
    grid-template-columns: 1fr;
  }

  .visual-price-card > img,
  .package-price-grid .visual-price-card:last-child > img {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .hero-proof div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .package-card,
  .pathway-card,
  .gateway-card,
  .coverage-card,
  .decision-grid article,
  .film-system article,
  .surface-grid article,
  .comparison-grid article,
  .materials-grid article,
  .service-index article,
  .process-steps article {
    min-height: 260px;
  }

  .tesla-feature {
    min-height: 360px;
  }

  .new-car-visual,
  .new-car-visual img,
  .brand-hero-image {
    min-height: 260px;
  }

  .tesla-gallery img {
    height: 300px;
  }

  .wrap-gallery img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .edge-detail img,
  .about-artisan img,
  .coating-editorial img {
    min-height: 320px;
  }

  .tesla-package-grid article {
    min-height: 320px;
  }

  .button-row {
    width: 100%;
  }

  .button-row .button {
    width: 100%;
  }

  .material-list article {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
    padding: 22px 0;
  }

  .site-footer {
    display: grid;
  }

  .price-line a {
    justify-self: start;
  }
}
