@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600&display=swap");

:root {
  --background: #0e0e0d;
  --surface: #181715;
  --surface-2: #24211d;
  --foreground: #f4f0e8;
  --muted: #c8c1b7;
  --border: #3d3831;
  --primary: #d79748;
  --primary-dark: #17110a;
  --champagne: #f1d19a;
  --glass: rgba(255, 255, 255, 0.045);
  --success: #71d29a;
  --shadow-glow: 0 0 0 1px rgba(216, 161, 94, 0.28), 0 22px 58px -22px rgba(216, 161, 94, 0.5);
  --shadow-deep: 0 28px 80px rgba(0, 0, 0, 0.42);

  --site-frame: 1680px;
  --site-gutter: clamp(24px, 4.5vw, 64px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;

  background:
    linear-gradient(180deg, #151411 0%, var(--background) 28%, #11100f 100%);
  color: var(--foreground);

  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 64px;
  padding: 0 max(var(--site-gutter), calc((100vw - var(--site-frame)) / 2));
  border-bottom: 1px solid rgba(216, 161, 94, 0.16);
  background: rgba(15, 15, 14, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;

  font-size: 18px;

  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.brand img {
  width: 36px;
  height: 42px;
  border-radius: 4px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(216, 161, 94, 0.32));
}

.footer .brand img {
  width: 42px;
  height: 50px;
}

.nav {
  display: flex;
  gap: 28px;
  color: var(--muted);
  font-size: 13px;

  letter-spacing: 0.01em;
}

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

.small-cta,
.primary,
.secondary {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 12px;
  padding: 0 28px;
  border: 1px solid transparent;
  cursor: pointer;

  font-size: 15px;

  letter-spacing: 0.055em;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.86),
    0 10px 26px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.small-cta::before,
.primary::before,
.secondary::before {
  content: "";
  position: absolute;
  inset: 3px;
  z-index: 0;
  border-radius: calc(var(--cta-radius, 14px) - 2px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.32), transparent 18%, transparent 68%, rgba(0, 0, 0, 0.36)),
    radial-gradient(ellipse at 26% 0%, rgba(255, 255, 255, 0.18), transparent 22%),
    radial-gradient(ellipse at 76% 18%, rgba(226, 166, 88, 0.24), transparent 34%);
  opacity: 0.72;
  pointer-events: none;
}

.small-cta {
  --cta-radius: 14px;
  min-height: 38px;
  padding: 0 18px;
  border-radius: var(--cta-radius);
  border-color: rgba(229, 167, 88, 0.68);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.06) 52%, rgba(0, 0, 0, 0.35)) padding-box,
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 22%, rgba(0, 0, 0, 0.5)) padding-box,
    url("assets/optimized/design-finishes/black-gold.jpg") center / 145% auto padding-box,
    linear-gradient(90deg, #d69a52, #fff1bd 22%, #8a4d22 50%, #e0a25b 78%, #6f3b19) border-box;
  color: rgba(248, 244, 236, 0.94);
  font-size: 12px;
  letter-spacing: 0.05em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -1px 0 rgba(0, 0, 0, 0.9),
    0 10px 22px rgba(0, 0, 0, 0.28);
}

.primary {
  --cta-radius: 16px;
  border-color: rgba(229, 167, 88, 0.72);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.08) 52%, rgba(0, 0, 0, 0.38)) padding-box,
    linear-gradient(180deg, rgba(255, 255, 255, 0.17), transparent 20%, rgba(0, 0, 0, 0.5)) padding-box,
    url("assets/optimized/design-finishes/black-gold.jpg") center / 142% auto padding-box,
    linear-gradient(90deg, #d69a52, #fff1bd 20%, #8a4d22 50%, #e0a25b 78%, #6f3b19) border-box;
  color: rgba(248, 244, 236, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(0, 0, 0, 0.92),
    0 14px 30px rgba(0, 0, 0, 0.3);
}

.secondary {
  --cta-radius: 16px;
  border-color: rgba(229, 167, 88, 0.52);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.16) 52%, rgba(0, 0, 0, 0.44)) padding-box,
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 22%, rgba(0, 0, 0, 0.54)) padding-box,
    url("assets/optimized/design-finishes/black-marble.jpg") center / 142% auto padding-box,
    linear-gradient(90deg, rgba(214, 154, 78, 0.78), rgba(255, 229, 178, 0.42), rgba(108, 59, 26, 0.74)) border-box;
  color: rgba(248, 244, 236, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.86),
    0 10px 24px rgba(0, 0, 0, 0.24);
}

.small-cta:hover,
.primary:hover,
.secondary:hover {
  transform: translateY(-1px);
}

.small-cta:hover {
  border-color: rgba(232, 177, 101, 0.72);
  color: #f8f4ec;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.9),
    0 12px 28px rgba(0, 0, 0, 0.28);
}

.primary:hover {
  border-color: rgba(232, 177, 101, 0.76);
  color: #fff8ed;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -1px 0 rgba(0, 0, 0, 0.9),
    0 14px 30px rgba(0, 0, 0, 0.3);
}

.secondary:hover {
  border-color: rgba(232, 177, 101, 0.56);
  color: #f8f4ec;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.88),
    0 12px 26px rgba(0, 0, 0, 0.24);
}

.intro.section .primary,
.process.section .primary {
  border-color: rgba(223, 164, 88, 0.46);
  color: rgba(248, 244, 236, 0.96);
}

.intro.section .primary:hover,
.process.section .primary:hover {
  border-color: rgba(232, 177, 101, 0.68);
}

.intro.section .secondary,
.process.section .secondary {
  border-color: rgba(126, 87, 44, 0.34);
  color: rgba(248, 244, 236, 0.9);
}

.intro.section .secondary:hover,
.process.section .secondary:hover {
  border-color: rgba(198, 138, 66, 0.58);
}

.full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: calc(86vh - 64px);
  display: grid;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  padding: 82px max(var(--site-gutter), calc((100vw - var(--site-frame)) / 2)) 78px;
}

.hero > img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.86) 0%, rgba(8, 8, 7, 0.76) 26%, rgba(8, 8, 7, 0.34) 52%, rgba(8, 8, 7, 0.04) 82%),
    linear-gradient(0deg, rgba(8, 8, 7, 0.18), rgba(8, 8, 7, 0.02) 54%, rgba(8, 8, 7, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 960px);
  margin: 0 auto;
  text-align: center;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.62);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary);

  font-size: 12px;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {


  letter-spacing: -0.02em;
  text-transform: none;
}

h1 {
  max-width: 690px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  font-size: clamp(54px, 4.7vw, 68px);

  letter-spacing: -0.025em;
  line-height: 0.98;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4.1vw, 56px);
  line-height: 1;
}

h3 {
  margin-bottom: 16px;

  font-size: clamp(24px, 3.2vw, 36px);

  letter-spacing: -0.015em;
  line-height: 0.96;
}

.hero-content > p:not(.eyebrow):not(.subline) {
  max-width: 520px;
  margin: 0 auto;
  color: rgba(248, 244, 236, 0.94);
  font-size: clamp(19px, 1.45vw, 21px);
  line-height: 1.45;

}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-top: 32px;
}

.hero-actions a {
  text-shadow: none;
}

.hero .eyebrow {
  margin-bottom: 16px;
  color: #c68a42;
  font-size: clamp(13px, 1vw, 14px);

  letter-spacing: 0.105em;
}

.hero-actions .primary {
  min-height: 64px;
  min-width: min(100%, 340px);
  border-radius: 18px;
  font-size: 16px;
  letter-spacing: 0.075em;
}

.hero-actions .primary:hover {
  color: #fff8ed;
}

.hero-actions .secondary {
  min-height: 64px;
  min-width: min(100%, 304px);
  border-radius: 18px;
  font-size: 16px;
  letter-spacing: 0.075em;
}

.hero-actions .secondary:hover {
  transform: translateY(-1px);
  color: #f4f0e8;
}

.subline {
  margin: 30px 0 0;
  max-width: 560px;
  color: #8f867b;
  font-size: 16px;
  letter-spacing: 0.02em;
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 78px 0;
}

.intro.section {
  padding: 58px 0 64px;
  text-align: center;
}

.intro h2 {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.05;
}

.intro-summary {
  max-width: 650px;
  margin: 12px auto 0;
}

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

.style-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.style-cards article,
.wizard-card {
  border: 1px solid rgba(216, 161, 94, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.style-cards article {
  min-height: 250px;
  padding: 24px;
}

.intro-step {
  position: relative;
  display: grid;
  gap: 7px;
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(23, 18, 13, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.22);
}

.intro-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 62px;
  right: -11px;
  width: 10px;
  height: 1px;
  background: linear-gradient(90deg, rgba(216, 161, 94, 0.45), transparent);
}

.intro-visual {
  position: relative;
  min-height: 0;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  border: 1px solid rgba(216, 161, 94, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(0, 0, 0, 0.2);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.intro-upload {
  background-image:
    linear-gradient(180deg, rgba(10, 9, 8, 0.02), rgba(10, 9, 8, 0.08) 48%, rgba(10, 9, 8, 0.6)),
    url("assets/optimized/intro-upload-cluttered.jpg");
  background-size: cover;
  background-position: center;
}

.intro-upload::after {
  content: "Garage photo";
  position: absolute;
  left: 12px;
  bottom: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(10, 9, 8, 0.68);
  color: var(--foreground);
  font-size: 10px;

  letter-spacing: 0.1em;
  padding: 7px 10px;
  text-transform: uppercase;
}

.intro-styles {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 8px;
  padding: 12px;
  background:
    linear-gradient(180deg, rgba(10, 9, 8, 0.1), rgba(10, 9, 8, 0.56)),
    rgba(14, 13, 12, 0.74);
}

.intro-styles i {
  display: block;
  aspect-ratio: 1 / 1;
  min-height: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background-size: cover;
  background-position: center;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 10px 20px rgba(0, 0, 0, 0.18);
}

.intro-send {
  display: grid;
  place-items: center;
  padding: 14px;
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 161, 94, 0.2), transparent 38%),
    linear-gradient(135deg, rgba(14, 13, 12, 0.98), rgba(34, 30, 26, 0.9));
}

.send-graphic {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(10, 9, 8, 0.06), rgba(10, 9, 8, 0.28)),
    url("assets/optimized/intro-finished-coating.jpg") center / cover;
}

.send-graphic::before {
  display: none;
}

.send-graphic::after {
  display: none;
}

.send-button {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(156px, calc(100% - 28px));
  min-height: 32px;
  margin: auto;
  padding: 0 13px;
  border-radius: 10px;
  border: 1px solid rgba(198, 138, 66, 0.34);
  background:
    radial-gradient(circle at 22% 0%, rgba(216, 161, 94, 0.12), transparent 38%),
    linear-gradient(180deg, #24201a, #141211);
  color: rgba(248, 243, 234, 0.92);
  font-size: 10px;

  letter-spacing: 0.035em;
  text-align: center;
  text-transform: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.intro-step > span {
  display: inline-block;
  margin-bottom: 0;
  color: var(--primary);

  font-size: 11px;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intro p,
.style-cards p,
.studio-header p,
.step-help {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.intro-step h3,
.intro-step p {
  margin: 0;
}

.intro-step h3 {
  font-size: 20px;
  line-height: 1.12;
}

.step-help {
  max-width: 620px;
  margin-bottom: 20px;
}

.studio-header {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.studio-header h2,
.styles h2,
.reviews h2,
.service-area h2,
.faq h2,
.estimate-panel h2 {
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.05;
}

.wizard {
  width: min(100%, 980px);
  margin: 0 auto;
}

.progress-panel {
  position: sticky;
  top: 64px;
  z-index: 10;
  padding: 14px 0;
  background: rgba(15, 15, 14, 0.92);
  backdrop-filter: blur(18px);
}

.progress-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
  font-size: 12px;
}

.progress-top span {
  color: var(--primary);


  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.progress-top strong {
  color: var(--muted);
}

.progress-track {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

#progressFill {
  width: 11.111%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--champagne));
  transition: width 260ms ease;
}

.dots {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.dots button {
  flex: 1;
  height: 7px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.dots button.active {
  background: linear-gradient(90deg, var(--primary), var(--champagne));
}

.wizard-card {
  min-height: 430px;
  padding: clamp(22px, 4vw, 44px);
  box-shadow: var(--shadow-deep), inset 0 1px 0 rgba(255, 255, 255, 0.07);
  scroll-margin-top: 190px;
}

.wizard-step {
  display: none;
  min-height: 340px;
  scroll-margin-top: 190px;
}

.wizard-step.active {
  display: grid;
  align-content: start;
  animation: fadeUp 180ms ease both;
}

.photo-check {
  border: 1px solid rgba(216, 161, 94, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(0, 0, 0, 0.16);
}

.upload-zone {
  display: grid;
  place-items: center;
  min-height: 260px;
  padding: 24px;
  border: 1px dashed rgba(216, 161, 94, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(0, 0, 0, 0.14);
  text-align: center;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.upload-callout {
  display: grid;
  gap: 5px;
  margin: 16px 0 18px;
  padding: 16px 18px;
  border: 1px solid rgba(216, 161, 94, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 0% 0%, rgba(216, 161, 94, 0.14), transparent 38%),
    rgba(255, 255, 255, 0.045);
}

.upload-callout strong {
  color: var(--foreground);
  font-size: 15px;
}

.upload-callout p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.upload-zone.has-preview {
  align-content: start;
  place-items: stretch;
  text-align: left;
}

.upload-zone.is-scanning {
  border-color: rgba(241, 209, 154, 0.58);
  box-shadow: 0 0 0 1px rgba(216, 161, 94, 0.16), 0 22px 48px rgba(0, 0, 0, 0.26);
}

.upload-zone.scan-good {
  border-color: rgba(113, 210, 154, 0.48);
}

.upload-zone.scan-bad {
  border-color: rgba(255, 118, 118, 0.48);
}

.upload-zone input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.upload-preview {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(180px, 34vw, 280px);
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.26);
}

.upload-preview::before,
.upload-preview::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0;
}

.upload-preview::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(241, 209, 154, 0.14) 1px, transparent 1px),
    linear-gradient(0deg, rgba(241, 209, 154, 0.12) 1px, transparent 1px);
  background-size: 52px 52px;
}

.upload-preview::after {
  left: 0;
  right: 0;
  top: -20%;
  height: 22%;
  background: linear-gradient(180deg, transparent, rgba(241, 209, 154, 0.52), transparent);
  box-shadow: 0 0 34px rgba(241, 209, 154, 0.38);
}

.upload-zone.is-scanning .upload-preview::before {
  opacity: 1;
}

.upload-zone.is-scanning .upload-preview::after {
  opacity: 1;
  animation: photoScan 1800ms ease-in-out infinite;
}

.upload-preview[hidden] {
  display: none;
}

.upload-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.upload-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: rgba(216, 161, 94, 0.12);
  color: var(--primary);
  font-size: 34px;
}

.upload-zone.has-preview .upload-icon {
  display: none;
}

.upload-zone em {
  margin-top: 8px;
  color: var(--muted);
  font-style: normal;
}

.upload-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.upload-flow span {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 42px;
  padding: 8px 10px;
  border: 1px solid rgba(216, 161, 94, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(248, 243, 234, 0.82);
  font-size: 12px;

  text-align: center;
}

.upload-flow span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  width: 8px;
  height: 1px;
  background: rgba(216, 161, 94, 0.42);
}

.photo-check {
  display: grid;
  gap: 6px;
  margin-top: 14px;
  padding: 16px 18px;
}

.photo-check[hidden] {
  display: none;
}

.photo-check strong {
  color: var(--foreground);
}

.photo-check p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.photo-check.good {
  border-color: rgba(113, 210, 154, 0.36);
}

.photo-check.bad {
  border-color: rgba(255, 118, 118, 0.42);
}

.photo-check.checking {
  border-color: rgba(216, 161, 94, 0.34);
}

.photo-check.checking strong::after {
  content: "";
  display: inline-block;
  width: 1.2em;
  animation: ellipsis 1200ms steps(4, end) infinite;
}

.option-grid,
.style-picker,
.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

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

.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.category-tabs button {
  min-height: 40px;
  border: 1px solid rgba(216, 161, 94, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  cursor: pointer;
  padding: 0 14px;
  font-size: 12px;

  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.category-tabs button.active,
.category-tabs button.selected {
  border-color: rgba(216, 161, 94, 0.48);
  background: rgba(216, 161, 94, 0.12);
  color: var(--foreground);
}

.option-grid button,
.style-picker button,
.preview-grid button {
  min-height: 74px;
  border: 1px solid rgba(216, 161, 94, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(0, 0, 0, 0.14);
  color: var(--foreground);
  cursor: pointer;

  line-height: 1.25;
  text-align: left;
  padding: 16px;
}

.option-grid button.selected,
.style-picker button.selected,
.finish-card.selected,
.preview-grid article.selected,
.preview-grid button.selected {
  border-color: var(--primary);
  background:
    linear-gradient(180deg, rgba(216, 161, 94, 0.18), rgba(216, 161, 94, 0.08)),
    rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 0 1px rgba(216, 161, 94, 0.12), 0 18px 34px rgba(0, 0, 0, 0.22);
}

.finish-group + .finish-group,
.custom-design-card,
.custom-builder {
  margin-top: 26px;
}

.finish-group-heading {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

.finish-group-heading span {
  color: var(--primary);

  font-size: 13px;

  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.finish-group-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

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

.finish-card {
  display: grid;
  gap: 10px;
  min-height: 238px;
  border: 1px solid rgba(216, 161, 94, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018)),
    var(--surface-2);
  color: var(--foreground);
  cursor: pointer;
  padding: 12px;
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.finish-photo {
  display: block;
  min-height: 136px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.05);
  background-position: center;
  background-size: cover;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 34px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.finish-photo-large {
  min-height: 170px;
  margin-bottom: 18px;
}

.finish-domino { background-image: url("assets/optimized/design-finishes/domino.jpg"); }
.finish-shoreline { background-image: url("assets/optimized/design-finishes/shoreline.jpg"); }
.finish-gravel { background-image: url("assets/optimized/design-finishes/gravel.jpg"); }
.finish-nightfall { background-image: url("assets/optimized/design-finishes/nightfall.jpg"); }
.finish-tuxedo { background-image: url("assets/optimized/design-finishes/tuxedo.jpg"); }
.finish-creekbed { background-image: url("assets/optimized/design-finishes/creekbed.jpg"); }
.finish-blue-granite { background-image: url("assets/optimized/design-finishes/blue-granite.jpg"); }
.finish-silver-smoke { background-image: url("assets/optimized/design-finishes/silver-smoke.jpg"); }
.finish-black-marble { background-image: url("assets/optimized/design-finishes/black-marble.jpg"); }
.finish-black-gold { background-image: url("assets/optimized/design-finishes/black-gold.jpg"); }
.finish-ocean-blue { background-image: url("assets/optimized/design-finishes/ocean-blue.jpg"); }
.finish-copper-bronze { background-image: url("assets/optimized/design-finishes/copper-bronze.jpg"); }
.finish-white-marble { background-image: url("assets/optimized/design-finishes/white-marble.jpg"); }
.finish-emerald { background-image: url("assets/optimized/design-finishes/emerald.jpg"); }
.finish-custom-metallic { background-image: url("assets/optimized/design-finishes/custom-metallic.jpg"); }

.finish-card:hover {
  border-color: rgba(216, 161, 94, 0.62);
  transform: translateY(-1px);
}

.finish-card strong {

  font-size: 23px;

  letter-spacing: 0;
  line-height: 1;
}

.finish-card em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.35;
}

.asset-needed {
  display: grid;
  min-height: 92px;
  place-items: center;
  border: 1px dashed rgba(237, 138, 69, 0.38);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(237, 138, 69, 0.12), rgba(255, 255, 255, 0.025)),
    rgba(0, 0, 0, 0.12);
  color: rgba(246, 241, 233, 0.74);
  font-size: 12px;

  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.asset-needed.large {
  min-height: 150px;
  margin-bottom: 18px;
}

.custom-design-card,
.custom-builder,
.selected-design-panel {
  border: 1px solid rgba(216, 161, 94, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(0, 0, 0, 0.16);
  padding: 22px;
}

.custom-design-card h4,
.custom-builder h4 {
  margin: 0 0 8px;

  font-size: 31px;

  line-height: 1;
}

.custom-design-card p,
.custom-note,
.selected-design-panel p {
  color: var(--muted);
  line-height: 1.55;
}

.custom-design-card button,
.vibe-picker button,
.inline-options button,
.selected-design-panel button {
  min-height: 42px;
  border: 1px solid rgba(216, 161, 94, 0.2);
  border-radius: 6px;
  background: var(--glass);
  color: var(--foreground);
  cursor: pointer;
  padding: 0 14px;

  letter-spacing: 0.04em;
}

.custom-design-card button,
.selected-design-panel button {
  min-height: 46px;
  border-color: rgba(229, 167, 88, 0.62);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.1) 52%, rgba(0, 0, 0, 0.38)) padding-box,
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 22%, rgba(0, 0, 0, 0.5)) padding-box,
    url("assets/optimized/design-finishes/black-gold.jpg") center / 145% auto padding-box,
    linear-gradient(90deg, rgba(214, 154, 78, 0.82), rgba(255, 229, 178, 0.48), rgba(108, 59, 26, 0.78)) border-box;
  color: rgba(248, 243, 234, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(0, 0, 0, 0.8);
}

.custom-design-card button:hover,
.selected-design-panel button:not(:disabled):hover {
  transform: translateY(-1px);
  border-color: rgba(232, 177, 101, 0.62);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.04) 52%, rgba(0, 0, 0, 0.3)) padding-box,
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 20%, rgba(0, 0, 0, 0.44)) padding-box,
    url("assets/optimized/design-finishes/black-gold.jpg") center / 138% auto padding-box,
    linear-gradient(90deg, rgba(214, 154, 78, 0.88), rgba(255, 229, 178, 0.58), rgba(108, 59, 26, 0.84)) border-box;
  color: #fff8ed;
}

.selected-design-panel button:disabled {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(246, 241, 233, 0.42);
  cursor: not-allowed;
}

.custom-builder {
  display: grid;
  gap: 16px;
}

.custom-builder[hidden] {
  display: none;
}

.inline-options,
.vibe-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.vibe-picker span {
  width: 100%;
  color: var(--muted);

  font-size: 12px;

  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.selected-design-panel {
  display: grid;
  gap: 14px;
}

.generated-preview {
  position: relative;
  min-height: clamp(310px, 50vw, 560px);
  border: 1px solid rgba(216, 161, 94, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(216, 161, 94, 0.1), rgba(255, 255, 255, 0.028)),
    rgba(0, 0, 0, 0.22);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.reveal-preview {
  display: none;
  position: relative;
  min-height: inherit;
}

.generated-preview.has-photo .reveal-preview {
  display: block;
}

.reveal-preview img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.34);
}

.reveal-preview #aiGeneratedImage {
  display: none;
}

.reveal-ready {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 2;
  place-items: center;
  padding: 28px;
  background:
    radial-gradient(circle at 50% 45%, rgba(241, 209, 154, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(10, 9, 8, 0.12), rgba(10, 9, 8, 0.68));
  text-align: center;
  pointer-events: none;
}

.generated-preview.has-result:not(.is-revealed) .reveal-ready {
  display: grid;
}

.reveal-ready span {
  color: var(--primary);

  font-size: 12px;

  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.reveal-ready strong {
  display: block;
  max-width: 560px;
  margin: 10px auto 8px;
  color: var(--foreground);
  font-size: clamp(32px, 5vw, 62px);
  line-height: 0.96;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.6);
}

.reveal-ready em {
  color: rgba(246, 241, 233, 0.74);
  font-style: normal;

}

.reveal-preview button {
  display: none;
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 2;
  place-items: center;
  border: 1px solid rgba(223, 164, 88, 0.46);
  border-radius: 15px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.1) 52%, rgba(0, 0, 0, 0.4)) padding-box,
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 22%, rgba(0, 0, 0, 0.52)) padding-box,
    url("assets/optimized/design-finishes/black-gold.jpg") center / 145% auto padding-box,
    linear-gradient(90deg, rgba(214, 154, 78, 0.82), rgba(255, 229, 178, 0.48), rgba(108, 59, 26, 0.78)) border-box;
  color: rgba(248, 243, 234, 0.94);
  cursor: pointer;

  font-size: 14px;

  letter-spacing: 0.055em;
  width: min(390px, calc(100% - 48px));
  min-width: 0;
  min-height: 54px;
  padding: 0 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 42px rgba(0, 0, 0, 0.28);
  text-align: center;
  text-transform: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.generated-preview.has-result .reveal-preview button {
  display: grid;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
}

.reveal-preview button:hover {
  border-color: rgba(216, 161, 94, 0.58);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.05) 52%, rgba(0, 0, 0, 0.32)) padding-box,
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 20%, rgba(0, 0, 0, 0.46)) padding-box,
    url("assets/optimized/design-finishes/black-gold.jpg") center / 138% auto padding-box,
    linear-gradient(90deg, rgba(214, 154, 78, 0.88), rgba(255, 229, 178, 0.58), rgba(108, 59, 26, 0.84)) border-box;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 20px 44px rgba(0, 0, 0, 0.3);
  transform: translateX(-50%) translateY(-1px);
}

.reveal-preview button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.generated-preview.is-generating::before {
  content: "Creating realistic floor preview...";
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(10, 9, 8, 0.78);
  color: var(--foreground);

  font-size: clamp(26px, 4vw, 42px);

  letter-spacing: 0;
  text-align: center;
}

.generated-preview-empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  color: var(--muted);

  line-height: 1.45;
  text-align: center;
}

.generated-preview.has-photo .generated-preview-empty {
  display: none;
}

.generated-preview small {
  display: none;
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.64);
  color: rgba(246, 241, 233, 0.82);
  font-size: 11px;

  letter-spacing: 0.12em;
  padding: 7px 10px;
  text-transform: uppercase;
}

.generated-preview.has-result small {
  display: block;
}

.selected-design-panel span {
  color: var(--primary);


  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.selected-design-panel strong {

  font-size: clamp(38px, 5vw, 64px);

  line-height: 0.88;
}

.preview-disclaimer {
  max-width: 720px;
  color: #8f867b;
  font-size: 13px;
  line-height: 1.45;
}

.style-picker {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-height: 430px;
  overflow: auto;
  padding-right: 4px;
}

.style-picker button {
  display: grid;
  gap: 9px;
  align-content: start;
  min-height: 124px;
  padding: 10px;
  text-align: center;
  border-color: rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    var(--surface-2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.style-picker button:hover {
  transform: translateY(-1px);
  border-color: rgba(237, 138, 69, 0.58);
}

.style-picker button.selected {
  box-shadow:
    0 0 0 1px rgba(216, 161, 94, 0.18),
    0 14px 28px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.floor-swatch,
.floor-sample,
.preview-image {
  display: block;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.04) 34%, rgba(0, 0, 0, 0.18) 68%, rgba(255, 255, 255, 0.13)),
    radial-gradient(circle at 12% 16%, rgba(20, 20, 20, 0.55) 0 2px, transparent 3px),
    radial-gradient(circle at 45% 50%, rgba(255, 255, 255, 0.82) 0 2px, transparent 3px),
    radial-gradient(circle at 72% 28%, rgba(70, 70, 70, 0.55) 0 2px, transparent 3px),
    radial-gradient(circle at 24% 78%, rgba(255, 255, 255, 0.52) 0 1px, transparent 3px);
  background-size: auto, 18px 18px, 25px 25px, 22px 22px, 31px 31px;
}

.floor-swatch {
  width: 100%;
  height: 70px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -18px 32px rgba(0, 0, 0, 0.18),
    0 12px 24px rgba(0, 0, 0, 0.22);
  flex: none;
}

.floor-sample {
  height: 118px;
  margin-bottom: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -24px 36px rgba(0, 0, 0, 0.16);
}

.domino {
  background-color: #c6c7c1;
}

.gravel {
  background-color: #8a8175;
}

.stonewash {
  background-color: #76736f;
}

.wombat {
  background-color: #858079;
}

.tuxedo {
  background-color: #e7e6df;
}

.orbit {
  background-color: #2f3332;
}

.ash {
  background-color: #b9bab5;
}

.smoke {
  background-color: #8d8d88;
}

.cappuccino {
  background-color: #c1a57f;
}

.saddle {
  background-color: #ad8753;
}

.cabin {
  background-color: #a4865f;
}

.blue-ridge {
  background-color: #496d90;
}

.midnight {
  background-color: #202a33;
}

.outback {
  background-color: #9b5e34;
}

.creekbed {
  background-color: #b49771;
}

.nightfall {
  background-color: #535e61;
}

.shoreline {
  background-color: #a7b4b4;
}

.tidal {
  background-color: #4b7282;
}

.custom {
  background-color: #8d715e;
}

.white {
  background: #f5f4ef;
}

.light-gray {
  background: #bfc0bd;
}

.dove-gray {
  background: #979895;
}

.medium-gray {
  background: #666763;
}

.charcoal {
  background: #303331;
}

.black {
  background: #050505;
}

.beige {
  background: #c7ad86;
}

.taupe {
  background: #9b8973;
}

.sand {
  background: #b9a07b;
}

.slate-blue {
  background: #285e81;
}

.navy-blue {
  background: #0d2e5f;
}

.royal-blue {
  background: #071f8b;
}

.teal {
  background: #178b8c;
}

.hunter {
  background: #0d4a2d;
}

.burgundy {
  background: #7e061b;
}

.red {
  background: #b70d0d;
}

.glitter-silver,
.glitter-holo,
.glitter-gold,
.glitter-champagne,
.glitter-blue,
.glitter-purple,
.glitter-pink,
.glitter-black-gold {
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.06) 38%, rgba(0,0,0,.18)),
    radial-gradient(circle at 15% 20%, white 0 1px, transparent 2px),
    radial-gradient(circle at 70% 36%, rgba(255,255,255,.95) 0 1px, transparent 2px),
    radial-gradient(circle at 40% 78%, rgba(255,255,255,.82) 0 1px, transparent 2px),
    radial-gradient(circle at 82% 66%, rgba(255,255,255,.78) 0 1px, transparent 2px);
  background-size: auto, 9px 9px, 13px 13px, 17px 17px, 21px 21px;
}

.glitter-silver { background-color: #bfc1c4; }
.glitter-holo { background-color: #d8c7ff; }
.glitter-gold { background-color: #c38c16; }
.glitter-champagne { background-color: #b7895f; }
.glitter-blue { background-color: #064ab5; }
.glitter-purple { background-color: #8615a9; }
.glitter-pink { background-color: #d86d9f; }
.glitter-black-gold { background-color: #11100d; }

.metallic-silver,
.metallic-iron,
.metallic-blue,
.metallic-black-gold,
.metallic-copper,
.metallic-bronze,
.metallic-emerald,
.metallic-purple,
.marble-white,
.marble-blue,
.marble-black-gold,
.marble-teal {
  background-image:
    radial-gradient(circle at 25% 30%, rgba(255,255,255,.65), transparent 28%),
    radial-gradient(circle at 65% 62%, rgba(255,255,255,.24), transparent 32%),
    linear-gradient(135deg, rgba(255,255,255,.4), transparent 28%, rgba(0,0,0,.36) 62%, rgba(255,255,255,.2)),
    linear-gradient(45deg, transparent 0 42%, rgba(255,255,255,.35) 48%, transparent 56%);
}

.metallic-silver { background-color: #bfc0bd; }
.metallic-iron { background-color: #464747; }
.metallic-blue { background-color: #315b7f; }
.metallic-black-gold { background-color: #17130a; }
.metallic-copper { background-color: #b05d25; }
.metallic-bronze { background-color: #92733f; }
.metallic-emerald { background-color: #145535; }
.metallic-purple { background-color: #7a4b68; }

.marble-white { background-color: #e5e5e0; }
.marble-blue { background-color: #496c86; }
.marble-black-gold { background-color: #14110b; }
.marble-teal { background-color: #4b8c8d; }

.floor-swatch.domino, .floor-sample.domino, .preview-image.domino { background-image: url("assets/floor-swatches/domino.png"); }
.floor-swatch.shoreline, .floor-sample.shoreline, .preview-image.shoreline { background-image: url("assets/floor-swatches/shoreline.png"); }
.floor-swatch.gravel, .floor-sample.gravel, .preview-image.gravel { background-image: url("assets/floor-swatches/gravel.png"); }
.floor-swatch.stonewash, .floor-sample.stonewash, .preview-image.stonewash { background-image: url("assets/floor-swatches/stonewash.png"); }
.floor-swatch.wombat, .floor-sample.wombat, .preview-image.wombat { background-image: url("assets/floor-swatches/wombat.png"); }
.floor-swatch.nightfall, .floor-sample.nightfall, .preview-image.nightfall { background-image: url("assets/floor-swatches/nightfall.png"); }
.floor-swatch.tuxedo, .floor-sample.tuxedo, .preview-image.tuxedo { background-image: url("assets/floor-swatches/tuxedo.png"); }
.floor-swatch.orbit, .floor-sample.orbit, .preview-image.orbit { background-image: url("assets/floor-swatches/orbit.png"); }
.floor-swatch.ash, .floor-sample.ash, .preview-image.ash { background-image: url("assets/floor-swatches/ash.png"); }
.floor-swatch.smoke, .floor-sample.smoke, .preview-image.smoke { background-image: url("assets/floor-swatches/smoke.png"); }
.floor-swatch.cappuccino, .floor-sample.cappuccino, .preview-image.cappuccino { background-image: url("assets/floor-swatches/cappuccino.png"); }
.floor-swatch.saddle, .floor-sample.saddle, .preview-image.saddle { background-image: url("assets/floor-swatches/saddle.png"); }
.floor-swatch.cabin, .floor-sample.cabin, .preview-image.cabin { background-image: url("assets/floor-swatches/cabin.png"); }
.floor-swatch.blue-ridge, .floor-sample.blue-ridge, .preview-image.blue-ridge { background-image: url("assets/floor-swatches/blue-ridge.png"); }
.floor-swatch.midnight, .floor-sample.midnight, .preview-image.midnight { background-image: url("assets/floor-swatches/midnight.png"); }
.floor-swatch.outback, .floor-sample.outback, .preview-image.outback { background-image: url("assets/floor-swatches/outback.png"); }

.floor-swatch.white { background-image: url("assets/floor-swatches/white.png"); }
.floor-swatch.light-gray { background-image: url("assets/floor-swatches/light-gray.png"); }
.floor-swatch.dove-gray { background-image: url("assets/floor-swatches/dove-gray.png"); }
.floor-swatch.medium-gray { background-image: url("assets/floor-swatches/medium-gray.png"); }
.floor-swatch.charcoal { background-image: url("assets/floor-swatches/charcoal.png"); }
.floor-swatch.black { background-image: url("assets/floor-swatches/black.png"); }
.floor-swatch.beige { background-image: url("assets/floor-swatches/beige.png"); }
.floor-swatch.taupe { background-image: url("assets/floor-swatches/taupe.png"); }
.floor-swatch.sand { background-image: url("assets/floor-swatches/sand.png"); }
.floor-swatch.slate-blue { background-image: url("assets/floor-swatches/slate-blue.png"); }
.floor-swatch.navy-blue { background-image: url("assets/floor-swatches/navy-blue.png"); }
.floor-swatch.royal-blue { background-image: url("assets/floor-swatches/royal-blue.png"); }
.floor-swatch.teal { background-image: url("assets/floor-swatches/teal.png"); }
.floor-swatch.hunter { background-image: url("assets/floor-swatches/hunter.png"); }
.floor-swatch.burgundy { background-image: url("assets/floor-swatches/burgundy.png"); }
.floor-swatch.red { background-image: url("assets/floor-swatches/red.png"); }

.floor-swatch.glitter-silver { background-image: url("assets/floor-swatches/glitter-silver.png"); }
.floor-swatch.glitter-holo { background-image: url("assets/floor-swatches/glitter-holo.png"); }
.floor-swatch.glitter-gold { background-image: url("assets/floor-swatches/glitter-gold.png"); }
.floor-swatch.glitter-champagne { background-image: url("assets/floor-swatches/glitter-champagne.png"); }
.floor-swatch.glitter-light-blue { background-image: url("assets/floor-swatches/glitter-light-blue.png"); }
.floor-swatch.glitter-blue { background-image: url("assets/floor-swatches/glitter-blue.png"); }
.floor-swatch.glitter-purple { background-image: url("assets/floor-swatches/glitter-purple.png"); }
.floor-swatch.glitter-pink { background-image: url("assets/floor-swatches/glitter-pink.png"); }
.floor-swatch.glitter-black-silver { background-image: url("assets/floor-swatches/glitter-black-silver.png"); }
.floor-swatch.glitter-black-gold { background-image: url("assets/floor-swatches/glitter-black-gold.png"); }
.floor-swatch.glitter-emerald { background-image: url("assets/floor-swatches/glitter-emerald.png"); }
.floor-swatch.glitter-copper { background-image: url("assets/floor-swatches/glitter-copper.png"); }

.floor-swatch.metallic-silver, .preview-image.metallic-silver { background-image: url("assets/floor-swatches/metallic-silver.png"); }
.floor-swatch.metallic-iron, .preview-image.metallic-iron { background-image: url("assets/floor-swatches/metallic-iron.png"); }
.floor-swatch.metallic-blue, .preview-image.metallic-blue { background-image: url("assets/floor-swatches/metallic-blue.png"); }
.floor-swatch.metallic-black-gold, .preview-image.metallic-black-gold { background-image: url("assets/floor-swatches/metallic-black-gold.png"); }
.floor-swatch.metallic-copper, .preview-image.metallic-copper { background-image: url("assets/floor-swatches/metallic-copper.png"); }
.floor-swatch.metallic-bronze, .preview-image.metallic-bronze { background-image: url("assets/floor-swatches/metallic-bronze.png"); }
.floor-swatch.metallic-emerald, .preview-image.metallic-emerald { background-image: url("assets/floor-swatches/metallic-emerald.png"); }
.floor-swatch.metallic-purple, .preview-image.metallic-purple { background-image: url("assets/floor-swatches/metallic-purple.png"); }
.floor-swatch.pearl-silver { background-image: url("assets/floor-swatches/pearl-silver.png"); }
.floor-swatch.pearl-charcoal { background-image: url("assets/floor-swatches/pearl-charcoal.png"); }
.floor-swatch.pearl-blue { background-image: url("assets/floor-swatches/pearl-blue.png"); }
.floor-swatch.pearl-bronze { background-image: url("assets/floor-swatches/pearl-bronze.png"); }

.floor-swatch.marble-white, .preview-image.marble-white { background-image: url("assets/floor-swatches/marble-white.png"); }
.floor-swatch.marble-blue, .preview-image.marble-blue { background-image: url("assets/floor-swatches/marble-blue.png"); }
.floor-swatch.marble-black-gold, .preview-image.marble-black-gold { background-image: url("assets/floor-swatches/marble-black-gold.png"); }
.floor-swatch.marble-teal, .preview-image.marble-teal { background-image: url("assets/floor-swatches/marble-teal.png"); }

.floor-swatch,
.floor-sample,
.preview-image {
  background-size: cover;
  background-position: center;
}

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

.preview-grid article {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025)),
    var(--surface);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.preview-image {
  height: 132px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.preview-grid strong {
  display: block;
  margin-bottom: 10px;
}

.preview-grid button {
  width: 100%;
  min-height: 42px;
  text-align: center;
  padding: 8px;
  font-size: 13px;
}

.lead-form {
  display: grid;
  gap: 14px;
}

input,
textarea,
select {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--foreground);
  outline: none;
  padding: 0 14px;
}

textarea {
  min-height: 110px;
  padding: 14px;
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--primary);
}

select {
  color: var(--foreground);
}

select option {
  color: #17110a;
}

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

.consent {
  display: flex;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.consent input {
  width: auto;
  min-height: auto;
  margin-top: 4px;
}

.wizard-nav {
  position: sticky;
  bottom: max(14px, env(safe-area-inset-bottom));
  z-index: 22;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  margin: 14px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(216, 161, 94, 0.18);
  border-radius: 8px;
  background: rgba(15, 15, 14, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 -18px 46px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.wizard-nav button {
  min-width: 54px;
  min-height: 54px;
  border: 1px solid rgba(248, 243, 234, 0.2);
  border-radius: 12px;
  background: transparent;
  color: var(--foreground);
  cursor: pointer;

  font-size: 15px;

  letter-spacing: 0.01em;
  transition: transform 180ms ease, opacity 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.wizard-nav button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

#nextStep {
  min-width: 112px;
  border-color: rgba(223, 164, 88, 0.48);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.1) 52%, rgba(0, 0, 0, 0.4)) padding-box,
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 22%, rgba(0, 0, 0, 0.52)) padding-box,
    url("assets/optimized/design-finishes/black-gold.jpg") center / 145% auto padding-box,
    linear-gradient(90deg, rgba(214, 154, 78, 0.82), rgba(255, 229, 178, 0.48), rgba(108, 59, 26, 0.78)) border-box;
  color: rgba(248, 243, 234, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(0, 0, 0, 0.82);
}

#navHint {
  flex: 1;
  margin: 0;
  color: var(--muted);
  text-align: center;
  font-size: 13px;

}

.wizard-nav button:not(:disabled):hover {
  transform: translateY(-1px);
  border-color: rgba(248, 243, 234, 0.38);
  background: rgba(255, 255, 255, 0.055);
}

#nextStep:not(:disabled):hover {
  border-color: rgba(232, 177, 101, 0.68);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.05) 52%, rgba(0, 0, 0, 0.32)) padding-box,
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 20%, rgba(0, 0, 0, 0.46)) padding-box,
    url("assets/optimized/design-finishes/black-gold.jpg") center / 138% auto padding-box,
    linear-gradient(90deg, rgba(214, 154, 78, 0.88), rgba(255, 229, 178, 0.58), rgba(108, 59, 26, 0.84)) border-box;
}

.toast {
  pointer-events: none;
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  transform: translateY(20px);
  opacity: 0;
  max-width: 340px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  color: var(--foreground);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);

  transition: 180ms ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.trust-bar {
  border-block: 1px solid rgba(216, 161, 94, 0.1);
  background: rgba(14, 13, 12, 0.68);
}

.trust-bar > div {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 9px 0;
}

.trust-bar span,
.area-list span,
.gallery-filters button {
  border: 1px solid rgba(216, 161, 94, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 11px;

  letter-spacing: 0.055em;
  padding: 7px 10px;
  text-transform: uppercase;
}

.section-lead {
  max-width: 660px;
  margin: 0 auto 26px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  text-align: center;
}

.section > .eyebrow,
.section > h2 {
  text-align: center;
}

.section-cta,
.estimate-alt {
  margin: 26px auto 0;
}

.project-grid,
.feature-grid,
.service-grid,
.gallery-grid,
.review-grid {
  display: grid;
  gap: 18px;
}

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

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.project-card,
.feature-grid article,
.service-card,
.gallery-card,
.review-card,
.estimate-panel,
.final-cta,
.footer,
.project-modal {
  border: 1px solid rgba(216, 161, 94, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.project-card,
.feature-grid article,
.service-card,
.gallery-card,
.review-card {
  padding: 14px;
}

.feature-grid article {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 22px;
}

.feature-grid article:not(.feature-hero)::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(216, 161, 94, 0.18);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(216, 161, 94, 0.16), transparent 66%);
}

.feature-hero {
  grid-column: span 2;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(90deg, rgba(18, 15, 12, 0.94), rgba(18, 15, 12, 0.6)),
    linear-gradient(135deg, rgba(216, 161, 94, 0.2), transparent 42%),
    url("assets/optimized/projects/creekbed-after.jpg") center / cover;
}

.feature-hero small {
  width: fit-content;
  margin-bottom: 14px;
  border: 1px solid rgba(216, 161, 94, 0.28);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.34);
  color: var(--primary);
  font-size: 12px;

  letter-spacing: 0.14em;
  padding: 8px 11px;
  text-transform: uppercase;
}

.feature-hero h3 {
  max-width: 560px;
  margin: 0 0 12px;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 0.96;
}

.feature-hero p {
  max-width: 600px;
  margin: 0;
}

.feature-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.feature-metrics span {
  width: auto;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.34);
  color: var(--foreground);
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 9px 11px;
  text-transform: uppercase;
}

.reveal-frame {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 12px;
  background: #0c0b0a;
}

.reveal-frame img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reveal-after {
  clip-path: inset(0 0 0 var(--reveal-pos, 52%));
  transition: clip-path 80ms linear;
}

.project-modal-frame .reveal-after,
.reveal-frame.is-revealed .reveal-after {
  clip-path: inset(0 0 0 0);
}

.compare-frame {
  cursor: ew-resize;
  touch-action: pan-y;
  transition: transform 420ms ease, filter 420ms ease;
}

.compare-frame:hover {
  transform: scale(1.006);
}

.compare-label {
  position: absolute;
  z-index: 3;
  top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(11, 10, 9, 0.72);
  color: var(--foreground);
  font-size: 10px;

  letter-spacing: 0.12em;
  padding: 7px 9px;
  text-transform: uppercase;
}

.compare-label-before {
  left: 14px;
}

.compare-label-after {
  right: 14px;
}

.reveal-badge {
  position: absolute;
  z-index: 3;
  left: 14px;
  top: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(11, 10, 9, 0.72);
  color: var(--foreground);
  font-size: 10px;

  letter-spacing: 0.12em;
  padding: 7px 9px;
  text-transform: uppercase;
}

.compare-divider {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: var(--reveal-pos, 52%);
  width: 1px;
  background: rgba(255, 255, 255, 0.72);
  pointer-events: none;
}

.compare-divider i {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 42px;
  height: 42px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(12, 11, 10, 0.72);
  backdrop-filter: blur(14px);
}

.compare-divider i::before,
.compare-divider i::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--champagne);
  border-left: 1px solid var(--champagne);
}

.compare-divider i::before {
  left: 12px;
  transform: translateY(-50%) rotate(-45deg);
}

.compare-divider i::after {
  right: 12px;
  transform: translateY(-50%) rotate(135deg);
}

.compare-range {
  position: absolute;
  z-index: 5;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.project-placeholder,
.gallery-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px dashed rgba(216, 161, 94, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(216, 161, 94, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(10, 9, 8, 0.42);
  color: var(--muted);
  text-align: center;
}

.project-placeholder {
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  padding: 18px;
}

.project-placeholder span,
.gallery-placeholder span {
  border: 1px solid rgba(216, 161, 94, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--foreground);
  font-size: 12px;

  letter-spacing: 0.08em;
  padding: 8px 10px;
  text-transform: uppercase;
}

.project-placeholder i {
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.project-placeholder strong,
.gallery-placeholder strong {
  grid-column: 1 / -1;
  color: var(--primary);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.project-card h3,
.service-card h3,
.gallery-card h3,
.review-card h3,
.feature-grid h3 {
  margin: 12px 0 8px;
  font-size: 22px;
  line-height: 1.02;
}

.project-card p,
.service-card p,
.gallery-card p,
.review-card p,
.feature-grid p,
.footer p {
  color: var(--muted);
  line-height: 1.55;
}

.project-card p {
  font-size: 14px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--primary);
  font-size: 12px;

  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.service-card a,
.gallery-card button,
.faq-item a {
  color: var(--primary);

}

.feature-grid span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(216, 161, 94, 0.28);
  background: rgba(216, 161, 94, 0.1);
  color: var(--primary);

}

.feature-grid .feature-metrics span {
  display: inline-flex;
  width: auto;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.34);
  color: var(--foreground);
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 9px 11px;
  text-transform: uppercase;
}

.feature-grid .feature-hero h3 {
  max-width: 560px;
  margin: 0 0 12px;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 0.96;
}

.feature-grid .feature-hero p {
  max-width: 600px;
  margin: 0;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
}

.gallery-filters button {
  cursor: pointer;
}

.gallery-filters button.active {
  border-color: rgba(198, 138, 66, 0.4);
  background: linear-gradient(180deg, #28231d 0%, #161412 100%);
  color: rgba(248, 243, 234, 0.94);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-card button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.review-card .stars {
  color: var(--primary);
  letter-spacing: 0.08em;
}

.review-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 24px;
  padding: 14px 18px;
  border: 1px solid rgba(216, 161, 94, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018)),
    rgba(18, 17, 15, 0.74);
}

.review-summary strong {
  color: var(--foreground);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 0.9;
}

.review-summary span {
  color: var(--primary);
  letter-spacing: 0.08em;
}

.review-summary p {
  max-width: 290px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
  text-align: left;
}

.review-card {
  padding: 18px;
}

.review-card p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.48;
}

.review-author {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(216, 161, 94, 0.12);
}

.review-author h3 {
  margin: 0 0 3px;
  font-size: 19px;
  line-height: 1;
}

.review-author span {
  color: var(--primary);
  font-size: 12px;

  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
}

.review-cta,
.final-cta {
  margin-top: 26px;
  text-align: center;
}

.area-list {
  display: block;
  max-width: 1120px;
  margin: 0 auto;
}

.area-map {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(216, 161, 94, 0.16);
  border-radius: 8px;
  background: #f4efe7;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 26px 70px rgba(0, 0, 0, 0.24);
}

.area-map img {
  display: block;
  width: 100%;
  height: auto;
}

.service-area.section {
  padding-block: clamp(48px, 5vw, 72px) !important;
}

.service-area .area-map {
  max-width: 720px;
  margin: 0 auto;
  background: #111210;
  border: 0;
  box-shadow: none;
}

.intro.section,
.process.section,
.services.section {
  width: 100%;
  padding-left: max(20px, calc((100vw - 1120px) / 2));
  padding-right: max(20px, calc((100vw - 1120px) / 2));
}

.intro.section,
.process.section {
  background:
    linear-gradient(180deg, #ede4d6, #d8caba);
  color: #17120d;
}

.intro.section .eyebrow,
.process.section .eyebrow {
  color: #a76025;
}

.intro.section p,
.process.section p {
  color: #5f5549;
}

.trust-bar > div {
  gap: 0;
}

.trust-bar span {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 5px 16px;
  color: rgba(200, 193, 183, 0.76);
}

.trust-bar span:not(:last-child) {
  border-right: 1px solid rgba(216, 161, 94, 0.12);
}

.project-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.project-card-featured {
  grid-column: 1 / -1;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.project-card-featured .reveal-frame {
  aspect-ratio: 16 / 8.3;
}

.project-card-featured .project-caption {
  max-width: 760px;
  margin-top: 24px;
}

.project-caption-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.project-number {
  color: var(--primary);
  font-size: 18px;

  letter-spacing: 0.12em;
}

.project-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 12px;

  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-details span:not(:last-child)::after {
  content: "·";
  margin-left: 10px;
  color: rgba(216, 161, 94, 0.62);
}

.before-after .eyebrow {
  color: var(--primary);
}

.before-after h2 {
  max-width: 840px;
  font-size: clamp(38px, 4.6vw, 62px);
  line-height: 1.02;
}

.before-after .section-lead {
  max-width: 620px;
}

.before-after .project-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 52px) 22px;
  width: min(1180px, 100%);
  margin-top: 44px;
}

.before-after .project-card:not(.project-card-featured) {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.before-after .project-card:not(.project-card-featured) .project-caption {
  margin-top: 16px;
}

.before-after .project-card:not(.project-card-featured) .reveal-frame {
  aspect-ratio: 16 / 10.4;
}

.before-after .project-card h3 {
  margin: 12px 0 8px;
  font-size: clamp(22px, 2vw, 30px);
}

.before-after .project-card p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.process.section {
  background: #f4efe7;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.78fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  padding-top: clamp(58px, 7vw, 92px);
  padding-bottom: clamp(62px, 7vw, 96px);
}

.process-heading {
  display: block;
  max-width: 650px;
  margin: 0;
  text-align: left;
}

.process-heading .eyebrow {
  margin-bottom: clamp(18px, 2.6vw, 28px);
}

.process-heading h2 {
  color: #17120d;
  max-width: 600px;
  margin: 0;
  font-size: clamp(44px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: 0;
}

.process-heading h2 span {
  display: block;
}

.process-heading h2 span:last-child {
  color: #17120d;
}

.process-heading p {
  max-width: 535px;
  margin: clamp(22px, 3vw, 32px) 0 0;
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.6;
}

.process-story {
  max-width: 620px;
  margin: 0;
  align-self: center;
}

.company-photo {
  margin: 0;
}

.process-video-card {
  max-width: none;
  margin: 0 auto;
}

.process-video-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(23, 18, 13, 0.12);
  border-radius: 24px;
  background: #17120d;
  box-shadow: 0 18px 48px rgba(55, 42, 28, 0.12);
  aspect-ratio: 16 / 8.8;
}

.process-video-shell video,
.process-video-fallback {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-video-shell video {
  position: relative;
  z-index: 1;
}

.process-video-fallback {
  position: absolute;
  inset: 0;
}

.service-card-copy span {
  display: inline-block;
  margin-bottom: 0;
  color: #a76025;
  font-size: 13px;

  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.why-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
}

.why-split h2,
.why-split p {
  text-align: left;
}

.why-split > div:first-child p {
  max-width: 520px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.proof-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(216, 161, 94, 0.18);
}

.proof-list article {
  padding: 22px 0;
  border-bottom: 1px solid rgba(216, 161, 94, 0.18);
}

.proof-list h3 {
  margin: 0 0 8px;
  font-size: clamp(22px, 2vw, 28px);
}

.proof-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.why-crew.section {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 78px 0 86px;
  background: #11100f;
  overflow: hidden;
}

.why-crew.section::before {
  content: "";
  position: absolute;
  left: max(24px, calc((100vw - 1260px) / 2));
  top: 86px;
  width: 1px;
  height: 84px;
  background: rgba(216, 161, 94, 0.42);
}

.why-crew-main {
  display: grid;
  width: min(1260px, calc(100% - 48px));
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.9fr);
  grid-template-areas:
    "photos copy"
    "photos proof";
  column-gap: clamp(38px, 5vw, 76px);
  row-gap: 28px;
  align-items: start;
}

.crew-photo-stack {
  grid-area: photos;
  position: relative;
  padding-left: 24px;
}

.crew-photo {
  margin: 0;
}

.crew-photo img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
}

.team-photo img {
  aspect-ratio: 16 / 10;
  object-position: center;
}

.owner-photo {
  --owner-photo-size: clamp(164px, 9vw, 188px);
  display: grid;
  grid-template-columns: var(--owner-photo-size) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  width: min(780px, 100%);
  margin: 28px 0 0;
}

.owner-photo img {
  width: var(--owner-photo-size);
  height: var(--owner-photo-size);
  aspect-ratio: 1;
  object-position: center 38%;
  border-radius: 999px;
  border: 1px solid rgba(216, 161, 94, 0.42);
}

.crew-photo figcaption {
  margin: 0;
  color: var(--muted);
  font-size: 14px;

  letter-spacing: 0.01em;
}

.team-photo figcaption {
  display: none;
}

.owner-photo figcaption {
  max-width: 520px;
  color: var(--muted);
  font-size: 14px;

  letter-spacing: 0;
  line-height: 1.55;
}

.owner-photo figcaption span {
  display: block;
  margin-bottom: 4px;
  color: var(--primary);
  font-size: 11px;

  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.owner-photo figcaption strong {
  display: block;
  margin-bottom: 8px;
  color: var(--foreground);
  font-size: 20px;
  line-height: 1.1;
}

.owner-photo figcaption p {
  margin: 0 0 10px;
}

.owner-photo figcaption em {
  display: block;
  padding-left: 13px;
  border-left: 1px solid rgba(216, 161, 94, 0.48);
  color: var(--champagne);
  font-size: 13px;
  font-style: italic;
  line-height: 1.48;
}

.why-crew-copy h2,
.why-crew-copy p {
  text-align: left;
}

.why-crew-copy {
  grid-area: copy;
  padding-top: 8px;
}

.why-crew-copy .eyebrow {
  color: var(--primary);
}

.why-crew-copy h2 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.018em;
}

.why-crew-copy > p:not(.eyebrow) {
  max-width: 600px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.62;
}

.crew-proof-list {
  grid-area: proof;
  display: grid;
  gap: 0;
  margin-top: 2px;
}

.crew-proof-list article {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(216, 161, 94, 0.14);
}

.crew-proof-list article:last-child {
  border-bottom: 1px solid rgba(216, 161, 94, 0.14);
}

.crew-proof-list span {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border-radius: 999px;
  background: rgba(216, 161, 94, 0.16);
  color: var(--primary);
  font-size: 11px;

}

.crew-proof-list h3 {
  margin: 0 0 7px;
  font-size: 18px;
  line-height: 1.12;
}

.crew-proof-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.52;
}

.feature-grid article:not(.feature-hero)::after {
  display: none;
}

.feature-grid article:not(.feature-hero) {
  background: rgba(255, 255, 255, 0.026);
}

.services.section {
  background:
    linear-gradient(180deg, rgba(16, 15, 14, 0.98), rgba(22, 20, 18, 0.98));
}

.styles.section {
  padding-bottom: 72px;
}

.compact-styles {
  padding-top: clamp(42px, 5vw, 64px);
  padding-bottom: clamp(44px, 5vw, 68px);
}

.compact-styles h2 {
  margin-bottom: 0;
}

.compact-styles .style-cards {
  max-width: 900px;
  gap: 14px;
  margin-top: 20px;
}

.compact-styles .style-cards article {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  grid-template-areas:
    "photo label"
    "photo title"
    "photo copy"
    "photo action";
  column-gap: 18px;
  align-items: center;
  min-height: 0;
  padding: 16px;
}

.compact-styles .finish-photo-large {
  grid-area: photo;
  min-height: 112px;
  margin-bottom: 0;
}

.compact-styles .style-cards small {
  grid-area: label;
  margin-bottom: 4px;
}

.compact-styles .style-cards h3 {
  grid-area: title;
  margin-bottom: 6px;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1;
}

.compact-styles .style-cards p {
  grid-area: copy;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.45;
}

.compact-styles .style-cards button {
  grid-area: action;
  justify-self: start;
  min-height: 42px;
  padding: 0 16px;
  font-size: 13px;
}

.custom-style-link {
  display: flex;
  width: fit-content;
  margin: 22px auto 0;
  border: 0;
  background: transparent;
  color: rgba(216, 161, 94, 0.88);
  cursor: pointer;
  font-size: 15px;

}

.custom-style-link:hover {
  color: #f1d19a;
}

.services.section .service-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.service-card {
  position: relative;
  grid-column: span 2;
  display: grid;
  grid-template-rows: minmax(250px, 1fr) auto auto;
  min-height: 390px;
  overflow: hidden;
  padding: 0;
  border-color: rgba(216, 161, 94, 0.08);
  background: #11100f;
  transition: transform 220ms ease, border-color 220ms ease;
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: rgba(216, 161, 94, 0.16);
}

.service-card-featured {
  grid-column: span 4;
  min-height: 520px;
}

.service-card-premium {
  grid-column: span 2;
  min-height: 520px;
}

.service-card > img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
  transition: transform 500ms ease;
}

.service-card:hover > img {
  transform: scale(1.024);
}

.service-card-featured > img,
.service-card-premium > img {
  min-height: 360px;
}

.service-card:nth-child(4) {
  grid-column: span 4;
}

.service-card:nth-child(4) > img {
  object-position: center 58%;
  filter: saturate(0.78) contrast(0.98);
}

.service-card-copy,
.service-card ul,
.service-card .service-cta {
  margin-left: 18px;
  margin-right: 18px;
}

.service-card-copy {
  margin-top: 16px;
}

.service-card-copy span {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 12px;

  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card-copy span em {
  display: none;
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: clamp(22px, 2vw, 30px);
}

.service-card ul {
  display: none;
}

.service-card .service-cta {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  margin-top: 6px;
  margin-bottom: 20px;
  transition: transform 180ms ease;
}

.service-card:hover .service-cta {
  transform: translateX(4px);
}

.service-card-link {
  position: absolute;
  z-index: 1;
  inset: 0;
  border-radius: inherit;
}

.service-card p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.48;
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 960px;
  margin: 0 auto;
}

.review-grid:empty {
  display: none;
}

.review-summary {
  background: transparent;
  border-color: rgba(216, 161, 94, 0.24);
  margin-bottom: 18px;
  padding: 10px 0;
  border-width: 1px 0;
  border-radius: 0;
}

.review-summary strong:first-child:last-child,
.review-summary strong {
  text-transform: none;
  font-size: clamp(24px, 2.6vw, 34px);
}

.review-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.014)),
    rgba(19, 18, 16, 0.86);
}

.review-empty {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
  text-align: center;
}

.estimate-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 44px);
  align-items: start;
}

.estimate-panel > .eyebrow,
.estimate-panel > h2,
.estimate-panel > .section-lead {
  text-align: left;
}

.estimate-panel .lead-form {
  grid-column: 2;
  grid-row: 1 / span 4;
}

.footer {
  border: 0;
  background: transparent;
  box-shadow: none;
  border-top: 1px solid rgba(216, 161, 94, 0.16);
  border-radius: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid rgba(216, 161, 94, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  padding: 18px;
}

.faq-item summary {
  cursor: pointer;
  color: var(--foreground);
  font-size: 19px;

}

.faq-item p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.estimate-panel {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(24px, 4.5vw, 40px);
}

.lead-summary {
  border: 1px solid rgba(113, 210, 154, 0.26);
  border-radius: 8px;
  background: rgba(113, 210, 154, 0.08);
  color: var(--foreground);
  padding: 16px;
  line-height: 1.5;
}

.final-cta {
  padding: clamp(34px, 6vw, 70px);
  background:
    linear-gradient(180deg, rgba(10, 9, 8, 0.2), rgba(10, 9, 8, 0.72)),
    url("assets/optimized/garage-hero-v4.jpg") center / cover;
}

.final-cta p {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(248, 243, 234, 0.78);
  font-size: 18px;
  line-height: 1.55;
}

.footer {
  width: min(1120px, calc(100% - 40px));
  margin: 40px auto 86px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 24px;
  padding: 28px;
}

.footer nav,
.footer div:last-child {
  display: grid;
  gap: 10px;
}

.social-links,
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-links {
  margin-top: 8px;
  font-size: 12px;
}

.footer a {
  color: var(--muted);
}

.footer a:hover {
  color: var(--foreground);
}

.mobile-cta {
  display: none;
}

.project-modal {
  width: min(760px, calc(100% - 28px));
  color: var(--foreground);
  padding: 24px;
}

.project-modal::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

#closeProjectModal {
  float: right;
  border: 0;
  background: transparent;
  color: var(--foreground);
  cursor: pointer;
  font-size: 28px;
}

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

@keyframes photoScan {
  0%,
  100% {
    transform: translateY(-30%);
    opacity: 0;
  }
  50% {
    transform: translateY(520%);
    opacity: 1;
  }
}

@keyframes ellipsis {
  0% {
    content: "";
  }
  25% {
    content: ".";
  }
  50% {
    content: "..";
  }
  75%,
  100% {
    content: "...";
  }
}

@media (max-width: 900px) {
  .nav,
  .small-cta {
    display: none;
  }

  .hero {
    min-height: calc(88vh - 64px);
    justify-items: center;
    padding: 64px 24px;
  }

  .hero > img {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(10, 9, 8, 0.74), rgba(10, 9, 8, 0.2) 48%, rgba(10, 9, 8, 0.42)),
      linear-gradient(90deg, rgba(10, 9, 8, 0.62), rgba(10, 9, 8, 0.24));
  }

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

  .hero-content > p:not(.eyebrow):not(.subline),
  .subline {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .style-cards {
    grid-template-columns: 1fr;
  }

  .compact-styles .style-cards {
    max-width: 640px;
  }

  .intro-grid {
    gap: 10px;
  }

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

  .process.section {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .process-heading {
    max-width: none;
  }

  .process-story {
    max-width: none;
  }

  .process-heading p {
    max-width: 680px;
  }

  .process-video-card {
    margin: 0;
  }

  .project-card-featured,
  .why-split,
  .why-crew-main,
  .estimate-panel {
    grid-template-columns: 1fr;
  }

  .why-crew-main {
    grid-template-areas:
      "copy"
      "photos"
      "proof";
    row-gap: 28px;
  }

  .project-card-featured .reveal-frame,
  .project-card-featured .meta-row,
  .project-card-featured h3,
  .project-card-featured p {
    grid-column: auto;
    grid-row: auto;
  }

  .before-after .project-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .before-after .project-card-featured .reveal-frame,
  .before-after .project-card:not(.project-card-featured) .reveal-frame {
    aspect-ratio: 16 / 10.6;
  }

  .before-after h2 {
    font-size: clamp(38px, 9vw, 56px);
  }

  .why-crew-copy > p:not(.eyebrow) {
    max-width: none;
  }

  .why-crew.section {
    padding: 70px 0 76px;
  }

  .why-crew.section::before {
    top: 70px;
    height: 56px;
  }

  .services.section .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card-featured,
  .service-card-premium,
  .service-card:nth-child(4) {
    grid-column: auto;
    min-height: 0;
  }

  .service-card > img,
  .service-card-featured > img,
  .service-card-premium > img {
    height: auto;
    min-height: 220px;
    aspect-ratio: 16 / 8.5;
  }

  .service-card-featured > img {
    min-height: 270px;
  }

  .estimate-panel .lead-form {
    grid-column: auto;
    grid-row: auto;
  }

  .feature-hero {
    grid-column: 1 / -1;
  }

  .preview-grid,
  .style-picker,
  .finish-grid,
  .project-grid,
  .service-grid,
  .gallery-grid,
  .review-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .footer {
    margin-bottom: 92px;
  }

}

@media (max-width: 620px) {
  .header {
    padding: 0 20px;
  }

  .brand {
    font-size: 17px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .hero {
    padding: 64px 20px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .compact-styles .style-cards article {
    grid-template-columns: 86px minmax(0, 1fr);
    column-gap: 14px;
    padding: 13px;
  }

  .compact-styles .finish-photo-large {
    min-height: 86px;
  }

  .compact-styles .style-cards h3 {
    font-size: 21px;
  }

  .review-summary {
    flex-direction: column;
    text-align: center;
  }

  .review-summary p {
    text-align: center;
  }

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

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

  .trust-bar > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .trust-bar span {
    border-right: 0;
    text-align: center;
  }

  .trust-bar span:nth-child(odd) {
    border-right: 1px solid rgba(216, 161, 94, 0.18);
  }

  .trust-bar span:nth-child(n + 3) {
    border-top: 1px solid rgba(216, 161, 94, 0.12);
  }

  .process.section {
    padding-top: 58px;
    padding-bottom: 68px;
  }

  .process-heading h2 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .process-heading p {
    font-size: 17px;
  }

  .process-video-shell {
    border-radius: 20px;
  }

  .process-video-shell video {
    aspect-ratio: 4 / 3;
  }

  .crew-photo-stack {
    padding-left: 0;
  }

  .owner-photo {
    --owner-photo-size: 132px;
    grid-template-columns: var(--owner-photo-size) minmax(0, 1fr);
    gap: 18px;
    width: 100%;
    margin-top: 18px;
  }

  .owner-photo figcaption {
    font-size: 13px;
    line-height: 1.48;
  }

  .owner-photo figcaption strong {
    font-size: 18px;
  }

  .team-photo img {
    aspect-ratio: 16 / 10;
  }

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

  .intro-step:not(:last-child)::after {
    display: none;
  }

  .option-grid,
  .style-picker,
  .form-row {
    grid-template-columns: 1fr;
  }

  .wizard-card {
    padding: 22px;
  }

  .wizard-nav {
    bottom: calc(84px + env(safe-area-inset-bottom));
    gap: 10px;
  }

  .mobile-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 80;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(216, 161, 94, 0.18);
    border-radius: 8px;
    background: rgba(15, 15, 14, 0.94);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
  }

  .mobile-cta a {
    display: grid;
    place-items: center;
    min-height: 46px;
    border-radius: 12px;
    font-size: 13px;

    letter-spacing: 0.01em;
    text-transform: none;
  }

  .mobile-cta a:first-child {
    border: 1px solid rgba(248, 243, 234, 0.22);
  }

  .mobile-cta a:last-child {
    border: 1px solid rgba(216, 161, 94, 0.26);
    background: linear-gradient(180deg, #28231d 0%, #161412 100%);
    color: rgba(248, 243, 234, 0.94);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  }
}

/* Final Lucid polish pass: wide-screen centering, restrained luxury, and stable studio controls. */
:root {
  --background: #0f0e0c;
  --surface: #171512;
  --surface-2: #241f18;
  --foreground: #f5efe4;
  --muted: #bfb5a6;
  --border: #40372d;
  --primary: #bd8244;
  --primary-dark: #17100a;
  --champagne: #e5c184;
  --site-frame: 1500px;
  --site-gutter: clamp(22px, 3.2vw, 52px);
}

body {
  background:
    radial-gradient(circle at 48% 0%, rgba(189, 130, 68, 0.07), transparent 32rem),
    var(--background);
}

.header {
  display: grid;
  grid-template-columns: minmax(320px, auto) minmax(420px, 1fr) auto auto;
  align-items: center;
  justify-content: center;
  column-gap: clamp(22px, 2vw, 34px);
  height: 76px;
  padding-inline: max(24px, calc((100vw - var(--site-frame)) / 2 + 24px));
  background: rgba(11, 11, 10, 0.95);
}

.brand {
  justify-self: start;
}

.nav {
  justify-self: center;
}

.small-phone,
.small-cta {
  justify-self: end;
  white-space: nowrap;
}

.hero {
  min-height: calc(88vh - 76px);
  display: grid;
  place-items: center;
  justify-items: center;
  padding: 88px max(24px, calc((100vw - var(--site-frame)) / 2 + 24px)) 94px;
  overflow: hidden;
}

.hero > img {
  object-position: center center;
  filter: saturate(0.98) contrast(1.03);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 8, 7, 0.88) 0%, rgba(8, 8, 7, 0.68) 30%, rgba(8, 8, 7, 0.28) 58%, rgba(8, 8, 7, 0.08) 100%),
    linear-gradient(180deg, rgba(8, 8, 7, 0.08) 0%, rgba(8, 8, 7, 0.36) 100%);
}

.hero-content {
  width: min(900px, calc(100vw - 48px));
  max-width: none;
  margin-inline: auto;
  text-align: center;
  justify-self: center;
  transform: none;
}

.hero .eyebrow {
  text-align: center;
}

.hero-content h1 {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(50px, 5.1vw, 80px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-content > p:not(.eyebrow):not(.subline) {
  max-width: 650px;
  margin-inline: auto;
  color: rgba(245, 239, 228, 0.92);
}

.hero-actions {
  justify-content: center;
}

.primary,
.small-cta,
.section-cta,
.lead-form button,
.wizard-nav button#nextStep,
#generateAiPreview,
#revealPreviewToggle,
.intro-send .send-button {
  min-height: 52px;
  border: 1px solid rgba(190, 130, 68, 0.86) !important;
  border-radius: 14px !important;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.16), transparent 22%, rgba(189, 130, 68, 0.24) 50%, transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(0, 0, 0, 0.38)),
    url("assets/optimized/design-finishes/black-gold.jpg") center / cover,
    #130f0b !important;
  color: #fff7ea !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -18px 28px rgba(0, 0, 0, 0.38),
    0 14px 30px rgba(0, 0, 0, 0.22);

  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.primary::before,
.small-cta::before,
.section-cta::before {
  content: none !important;
}

.primary:hover,
.small-cta:hover,
.section-cta:hover,
.lead-form button:hover,
.wizard-nav button#nextStep:hover,
#generateAiPreview:hover {
  transform: translateY(-1px);
  border-color: rgba(230, 188, 126, 0.95) !important;
  filter: brightness(1.08);
}

.hero-actions .primary {
  width: min(430px, 100%);
}

.small-cta {
  min-height: 42px;
  padding-inline: 24px;
  font-size: 13px;
}

.trust-bar {
  min-height: 54px;
  background: #0e0d0c;
}

.trust-bar span {
  min-height: 54px;
  color: rgba(245, 239, 228, 0.68);
}

.before-after.section,
.studio.section,
.services.section,
.why-crew.section,
.reviews.section,
.estimate.section,
.site-footer {
  padding-inline: max(24px, calc((100vw - var(--site-frame)) / 2 + 24px));
}

.intro.section {
  padding: 64px max(24px, calc((100vw - var(--site-frame)) / 2 + 24px));
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(189, 130, 68, 0.12), transparent 28rem),
    #e7dccb;
  color: #17120e;
}

.intro.section h2 {
  max-width: 850px;
  margin-inline: auto;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1;
}

.intro-summary {
  margin-inline: auto;
}

.intro-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1120px;
  margin: 34px auto 0;
  gap: 18px;
}

.intro-step {
  min-height: 0;
  padding: 16px;
  border-radius: 18px;
}

.intro-visual {
  height: 146px;
}

.intro-send .send-button {
  position: absolute;
  left: 50% !important;
  top: 50%;
  width: min(230px, 72%);
  transform: translate(-50%, -50%) !important;
  display: grid;
  place-items: center;
  font-size: 12px;
}

.process.section {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
  align-items: center;
  gap: clamp(34px, 5vw, 84px);
  padding: 70px max(24px, calc((100vw - var(--site-frame)) / 2 + 24px));
  background: #f1e8d9;
}

.process-video-card {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.process-video-shell {
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(39, 29, 18, 0.16);
}

.compact-styles {
  padding: 54px max(24px, calc((100vw - var(--site-frame)) / 2 + 24px));
}

.compact-styles .style-cards {
  max-width: 1000px;
  margin-inline: auto;
}

.wizard {
  scroll-margin-top: 94px;
}

.wizard-nav {
  bottom: 18px;
  z-index: 45;
  margin-top: 20px;
  border-radius: 18px;
  background: rgba(14, 13, 12, 0.88);
  backdrop-filter: blur(18px);
}

.wizard-nav button#nextStep {
  min-width: 150px;
}

.generated-preview.has-result .reveal-preview button,
.reveal-preview button,
#revealPreviewToggle {
  left: 50% !important;
  right: auto !important;
  width: min(390px, calc(100% - 48px));
  transform: translateX(-50%) !important;
}

.generated-preview.has-result .reveal-preview button:hover,
.reveal-preview button:hover,
#revealPreviewToggle:hover {
  transform: translate(-50%, -1px) !important;
}

.reveal-after {
  clip-path: inset(0 0 0 var(--reveal-pos, 52%));
}

@media (max-width: 1100px) {
  .header {
    display: flex;
    height: 64px;
    padding: 0 22px;
  }

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

  .brand span {
    font-size: clamp(17px, 4vw, 24px);
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: calc(86vh - 64px);
    padding: 70px 22px;
  }

  .hero-content {
    width: min(100%, 680px);
  }

  .hero-content h1 {
    font-size: clamp(42px, 12vw, 62px);
  }

  .intro-grid,
  .process.section {
    grid-template-columns: 1fr;
  }

  .process-story {
    max-width: none;
  }

  .wizard-nav {
    bottom: calc(84px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 620px) {
  .hero-actions .primary {
    width: 100%;
  }

  .intro.section {
    padding-inline: 18px;
  }

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

/* Architectural brand refinement inspired by the Lucid Coating reference board. */
:root {
  --background: #11100e;
  --surface: #171512;
  --surface-2: #24211d;
  --foreground: #f3eee6;
  --muted: #bcb2a6;
  --border: rgba(218, 204, 186, 0.18);
  --primary: #a97646;
  --primary-dark: #16120e;
  --champagne: #d8bd8b;
  --cream: #eee5d6;
  --limestone: #d8cdbd;
  --taupe: #9a8977;
  --canyon-brown: #7d5238;
  --charcoal: #25231f;
  --black: #0d0c0b;

  --site-frame: 1480px;
  --site-gutter: clamp(22px, 4vw, 72px);
}

body {
  background: var(--background);
  color: var(--foreground);
}

.section {
  scroll-margin-top: 92px;
}

.before-after.section,
.studio.section,
.services.section,
.why-crew.section,
.reviews.section,
.service-area.section,
.faq.section,
.estimate.section {
  width: min(var(--site-frame), calc(100% - 48px));
  margin-inline: auto;
  padding-inline: 0;
}

.intro.section,
.process.section,
.compact-styles,
.footer {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100vw - var(--site-frame)) / 2 + 24px));
  padding-right: max(24px, calc((100vw - var(--site-frame)) / 2 + 24px));
}

h1,
h2,
.hero-content h1,
.section h2,
.studio-header h2,
.why-crew-copy h2,
.estimate-panel h2,
.process-copy h2,
.compact-styles h2 {


  letter-spacing: 0;
  line-height: 1.02;
  text-transform: none;
}

.section h2,
.studio-header h2,
.why-crew-copy h2,
.estimate-panel h2,
.process-copy h2,
.compact-styles h2 {
  font-size: clamp(38px, 4.2vw, 68px);
}

.intro-step h3,
.style-cards h3,
.service-card h3,
.review-cta h3,
.project-card h3 {


  letter-spacing: 0;
  line-height: 1.08;
  text-transform: none;
}

.eyebrow,
.progress-top span,
.intro-step span,
.service-card span,
.project-meta,
.caption,
.photo-tag,
.option-count {
  color: var(--primary);
  letter-spacing: 0.12em;

}

.header {
  height: 74px;
  padding-inline: max(30px, calc((100vw - var(--site-frame)) / 2 + 30px));
  border-bottom: 1px solid rgba(216, 196, 166, 0.12);
  background: rgba(13, 12, 11, 0.94);
  box-shadow: none;
}

.brand {
  gap: 12px;
  font-size: clamp(18px, 1.35vw, 24px);
  letter-spacing: 0.035em;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  filter: none;
}

.nav {
  gap: clamp(22px, 2.4vw, 42px);
  color: rgba(243, 238, 230, 0.72);
  font-size: 14px;
  letter-spacing: 0;
}

.small-phone {
  color: rgba(243, 238, 230, 0.9);
}

.hero {
  min-height: calc(88vh - 74px);
  display: grid;
  place-items: center;
  padding: clamp(86px, 8vw, 150px) var(--site-gutter) clamp(80px, 8vw, 138px);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(12, 11, 10, 0.82) 0%, rgba(12, 11, 10, 0.58) 34%, rgba(12, 11, 10, 0.18) 62%, rgba(12, 11, 10, 0.05) 100%),
    linear-gradient(180deg, rgba(12, 11, 10, 0.18), rgba(12, 11, 10, 0.34));
}

.hero-content {
  width: min(100%, 880px);
  margin-inline: auto;
  text-align: center;
  align-items: center;
  padding: 0;
}

.hero-content .eyebrow {
  font-size: clamp(12px, 1vw, 14px);
  color: #c0925d;
}

.hero-content h1 {
  max-width: 900px;
  margin: 24px auto 0;
  font-size: clamp(48px, 5.4vw, 88px);
  color: #f6f1e9;
}

.hero-content > p:not(.eyebrow):not(.subline) {
  max-width: 690px;
  margin: 24px auto 0;
  color: rgba(246, 241, 233, 0.86);
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.45;
}

.hero-actions {
  justify-content: center;
  margin-top: 42px;
}

.primary,
.secondary,
.small-cta,
.wizard-nav button,
.lead-form button,
.step-actions button,
.intro-send .send-button,
#generateAiPreview,
#revealPreviewToggle,
.reveal-preview button {
  border-radius: 10px !important;
  min-height: 52px;
  padding: 0 30px;
  border: 1px solid rgba(191, 132, 72, 0.72) !important;
  background:
    linear-gradient(rgba(15, 13, 11, 0.76), rgba(15, 13, 11, 0.82)) padding-box,
    url("assets/optimized/design-finishes/black-gold.jpg") center / 140% auto padding-box,
    #151310 !important;
  color: #f4eee5 !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 24px rgba(0, 0, 0, 0.18) !important;

  font-size: 14px;

  letter-spacing: 0.055em;
  text-transform: uppercase;
  text-shadow: none;
}

.primary::before,
.secondary::before,
.small-cta::before {
  opacity: 0.22;
  inset: 1px;
  border-radius: 9px;
}

.primary:hover,
.secondary:hover,
.small-cta:hover,
.wizard-nav button:not(:disabled):hover,
.lead-form button:hover,
.step-actions button:hover,
#generateAiPreview:hover,
#revealPreviewToggle:hover {
  transform: translateY(-1px);
  border-color: rgba(220, 166, 96, 0.86) !important;
  filter: saturate(1.05);
}

.secondary {
  background: transparent !important;
  border-color: rgba(216, 196, 166, 0.34) !important;
  color: rgba(246, 241, 233, 0.88) !important;
}

.small-cta {
  min-height: 42px;
  padding-inline: 22px;
  font-size: 12px;
}

.trust-bar {
  min-height: 68px;
  border-color: rgba(216, 196, 166, 0.12);
  background: #0f0e0d;
}

.trust-bar div {
  gap: clamp(18px, 4vw, 56px);
  color: rgba(243, 238, 230, 0.64);
  font-size: 12px;
}

.before-after.section,
.studio.section,
.services.section,
.reviews.section,
.faq.section,
.estimate.section {
  padding-top: clamp(72px, 8vw, 124px);
  padding-bottom: clamp(72px, 8vw, 124px);
}

.intro.section,
.process.section {
  background: var(--cream);
  color: #1b1713;
}

.intro.section {
  padding-top: clamp(66px, 7vw, 108px);
  padding-bottom: clamp(66px, 7vw, 108px);
}

.intro-grid {
  gap: 18px;
}

.intro-step,
.service-card,
.review-card,
.wizard-card,
.style-cards article,
.project-card,
.estimate-panel,
.faq-item,
.custom-design-card {
  border-radius: 12px;
  border: 1px solid rgba(82, 62, 42, 0.16);
  box-shadow: none;
}

.intro-step {
  background: rgba(255, 255, 255, 0.28);
  padding: clamp(18px, 2vw, 28px);
}

.intro-visual,
.send-graphic {
  border-radius: 10px;
}

.intro-send .send-graphic::before {
  opacity: 0;
}

.intro-send .send-button {
  position: absolute;
  inset: auto auto 22px 50%;
  transform: translateX(-50%);
  width: min(68%, 300px);
  min-height: 44px;
}

.before-after .project-grid {
  gap: clamp(24px, 3vw, 44px);
}

.reveal-frame,
.before-after .project-card-featured .reveal-frame,
.before-after .project-card:not(.project-card-featured) .reveal-frame {
  border-radius: 14px;
  border-color: rgba(216, 196, 166, 0.22);
}

.project-card {
  background: transparent;
}

.project-caption {
  padding-top: 18px;
}

.process.section {
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.74fr);
  align-items: center;
  gap: clamp(44px, 6vw, 92px);
}

.process-video-shell,
.process-video-shell video,
.crew-photo img,
.owner-photo,
.owner-photo img,
.service-card img,
.service-area-art,
.review-card {
  border-radius: 12px;
}

.process-copy p {
  max-width: 540px;
  color: #645949;
  font-size: clamp(17px, 1.2vw, 19px);
  line-height: 1.7;
}

.compact-styles {
  background: #151411;
  padding-top: 58px;
  padding-bottom: 58px;
}

.compact-styles .style-cards {
  max-width: 980px;
  gap: 16px;
}

.compact-styles .style-cards article {
  background: #1b1815;
  border-color: rgba(216, 196, 166, 0.14);
}

.compact-styles .finish-photo-large {
  border-radius: 10px;
}

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

.service-card {
  background: #181612;
  border-color: rgba(216, 196, 166, 0.14);
}

.why-crew.section {
  padding-top: clamp(78px, 8vw, 132px);
  padding-bottom: clamp(78px, 8vw, 132px);
  background: #0f0e0c;
}

.why-crew-main {
  max-width: var(--site-frame);
  margin-inline: auto;
}

.owner-profile {
  border-top: 1px solid rgba(216, 196, 166, 0.14);
}

.owner-photo,
.owner-photo img {
  width: clamp(116px, 8vw, 132px);
  height: clamp(116px, 8vw, 132px);
}

.crew-proof-list article {
  border-color: rgba(216, 196, 166, 0.14);
}

.reviews.section {
  background: #11100e;
}

.reviews-grid {
  gap: 18px;
}

.review-card {
  padding: clamp(20px, 2vw, 28px);
  background: #181612;
  border-color: rgba(216, 196, 166, 0.14);
}

.review-card p {
  color: rgba(243, 238, 230, 0.76);
}

.service-area.section {
  padding-block: clamp(68px, 7vw, 114px);
}

.service-area-art img {
  border-radius: 12px;
}

.studio-header,
.before-after > .eyebrow,
.before-after > h2,
.before-after > .section-lead,
.services > .eyebrow,
.services > h2,
.reviews > .eyebrow,
.reviews > h2,
.reviews > .section-lead,
.estimate > .eyebrow,
.estimate > h2,
.estimate > .section-lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.studio-header,
.section-lead {
  max-width: 780px;
}

.wizard {
  max-width: 1160px;
  margin-inline: auto;
}

.wizard-card {
  background: #171512;
  border-color: rgba(216, 196, 166, 0.16);
}

.wizard-step h3 {


  letter-spacing: 0;
  text-transform: none;
}

.option-grid button,
.finish-card,
.category-tabs button,
.upload-zone,
.lead-form input,
.lead-form textarea,
.custom-design-builder input,
.custom-design-builder textarea {
  border-radius: 10px;
  border-color: rgba(216, 196, 166, 0.18);
}

.finish-card.selected,
.option-grid button.selected,
.category-tabs button.active {
  border-color: rgba(185, 121, 65, 0.86);
  box-shadow: inset 0 0 0 1px rgba(185, 121, 65, 0.38);
}

.wizard-nav {
  border-radius: 12px;
  border-color: rgba(216, 196, 166, 0.12);
  background: rgba(15, 14, 12, 0.92);
}

.wizard-nav button#nextStep {
  min-width: 160px;
}

.wizard-nav button#nextStep:disabled {
  background: #2a2722 !important;
  border-color: rgba(216, 196, 166, 0.12) !important;
  color: rgba(243, 238, 230, 0.34) !important;
}

.footer {
  background: #0d0c0b;
  border-top: 1px solid rgba(216, 196, 166, 0.12);
}

@media (max-width: 1100px) {
  .header {
    height: 66px;
    padding-inline: 22px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: calc(86vh - 66px);
  }

  .process.section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .before-after.section,
  .studio.section,
  .services.section,
  .why-crew.section,
  .reviews.section,
  .service-area.section,
  .faq.section,
  .estimate.section {
    width: min(100% - 32px, var(--site-frame));
  }

  .hero {
    padding-inline: 20px;
    min-height: calc(82vh - 66px);
  }

  .hero-content {
    text-align: center;
  }

  .hero-content h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .hero-actions .primary {
    width: min(100%, 430px);
  }

  .primary,
  .secondary,
  .small-cta,
  .wizard-nav button,
  .lead-form button,
  .step-actions button,
  #generateAiPreview,
  #revealPreviewToggle,
  .reveal-preview button {
    min-height: 50px;
    font-size: 13px;
  }
}

/* Final architectural refinement pass: reference-board inspired, image-safe. */
:root {
  --background: #0f0e0c;
  --surface: #171512;
  --surface-2: #211e19;
  --foreground: #f2ece1;
  --muted: #b6aa9a;
  --border: rgba(217, 202, 181, 0.16);
  --primary: #b7783f;
  --primary-dark: #17120d;
  --champagne: #ccb38d;
  --cream: #ece2d2;
  --limestone: #d9cdbb;
  --taupe: #978673;
  --canyon-brown: #704731;
  --charcoal: #24211d;
  --black: #0b0a09;


  --site-frame: 1440px;
  --site-gutter: clamp(22px, 4.8vw, 76px);
}

body {
  background:
    linear-gradient(180deg, #0f0e0c 0%, #14120f 42%, #0f0e0c 100%);
  color: var(--foreground);

}

.header,
.before-after.section,
.studio.section,
.services.section,
.why-crew.section,
.reviews.section,
.service-area.section,
.faq.section,
.estimate.section,
.wizard,
.why-crew-main {
  box-sizing: border-box;
}

.header {
  height: 72px;
  padding-inline: max(var(--site-gutter), calc((100vw - var(--site-frame)) / 2 + var(--site-gutter)));
  background: rgba(11, 10, 9, 0.96);
  border-bottom: 1px solid rgba(217, 202, 181, 0.11);
}

.brand {
  letter-spacing: 0.02em;
}

.brand img {
  width: 44px;
  height: 44px;
}

.nav a,
.small-phone {
  color: rgba(242, 236, 225, 0.75);

}

.nav a:hover,
.small-phone:hover {
  color: #f2ece1;
}

.hero {
  min-height: calc(86vh - 72px);
  padding: clamp(92px, 8.4vw, 148px) var(--site-gutter) clamp(82px, 8vw, 128px);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(11, 10, 9, 0.78) 0%, rgba(11, 10, 9, 0.48) 38%, rgba(11, 10, 9, 0.1) 72%, rgba(11, 10, 9, 0.02) 100%),
    linear-gradient(180deg, rgba(11, 10, 9, 0.1), rgba(11, 10, 9, 0.36));
}

.hero-content {
  width: min(100%, 820px);
  margin-inline: auto;
  padding-inline: 0;
  text-align: center;
}

.hero-content .eyebrow,
.section > .eyebrow,
.studio-header .eyebrow,
.before-after > .eyebrow,
.process-heading .eyebrow,
.why-crew-copy .eyebrow,
.estimate-panel .eyebrow {
  color: #ba7b43;
  font-size: clamp(11px, 0.82vw, 13px);

  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-content h1 {
  max-width: 790px;
  margin-top: 22px;
  font-size: clamp(48px, 4.6vw, 76px);
  line-height: 0.98;


  letter-spacing: 0;
  text-wrap: balance;
}

.hero-content > p:not(.eyebrow):not(.subline) {
  max-width: 600px;
  font-size: clamp(18px, 1.28vw, 21px);
  line-height: 1.45;
  color: rgba(242, 236, 225, 0.9);
}

.hero-actions {
  margin-top: clamp(30px, 3vw, 44px);
}

h1,
h2,
.section h2,
.studio-header h2,
.why-crew-copy h2,
.estimate-panel h2,
.process-copy h2,
.compact-styles h2,
.wizard-step h3 {


  letter-spacing: 0;
  text-transform: none;
}

.section h2,
.studio-header h2,
.why-crew-copy h2,
.estimate-panel h2,
.process-copy h2,
.compact-styles h2 {
  font-size: clamp(36px, 3.7vw, 62px);
  line-height: 1.02;
  text-wrap: balance;
}

.section-lead,
.studio-header p,
.intro-summary,
.process-copy p,
.why-crew-copy > p,
.estimate-panel .section-lead {
  color: rgba(242, 236, 225, 0.68);
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.65;
}

.intro.section,
.process.section {
  background: #ece2d2;
  color: #17120d;
}

.intro.section h2,
.intro.section .intro-summary,
.process.section h2,
.process-copy p {
  color: #17120d;
}

.intro-summary,
.process-copy p {
  color: rgba(23, 18, 13, 0.68);
}

.before-after.section,
.studio.section,
.services.section,
.why-crew.section,
.reviews.section,
.service-area.section,
.faq.section,
.estimate.section {
  width: min(var(--site-frame), calc(100% - 44px));
  margin-inline: auto;
  padding-top: clamp(72px, 7vw, 116px);
  padding-bottom: clamp(72px, 7vw, 116px);
}

.intro.section,
.process.section,
.compact-styles,
.footer {
  padding-left: max(var(--site-gutter), calc((100vw - var(--site-frame)) / 2 + var(--site-gutter)));
  padding-right: max(var(--site-gutter), calc((100vw - var(--site-frame)) / 2 + var(--site-gutter)));
}

.primary,
.secondary,
.small-cta,
.wizard-nav button,
.lead-form button,
.step-actions button,
.custom-style-link,
#generateAiPreview,
#revealPreviewToggle,
.reveal-preview button,
#openCustomBuilder,
#saveCustomDesign {
  min-height: 50px;
  border-radius: 12px !important;
  padding: 0 28px;

  font-size: 13px;

  letter-spacing: 0.045em;
  text-transform: uppercase;
  text-shadow: none;
  box-shadow: none !important;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease, opacity 180ms ease;
}

.primary,
.small-cta,
.section-cta,
.lead-form button,
#generateAiPreview,
#revealPreviewToggle,
.reveal-preview button,
#saveCustomDesign {
  border: 1px solid rgba(178, 112, 55, 0.7) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)) padding-box,
    linear-gradient(rgba(15, 13, 10, 0.84), rgba(15, 13, 10, 0.9)) padding-box,
    url("assets/optimized/design-finishes/black-gold.jpg") center / 160% auto padding-box,
    #15120f !important;
  color: #f3eee6 !important;
}

.primary::before,
.secondary::before,
.small-cta::before,
.section-cta::before {
  display: none;
}

.primary:hover,
.small-cta:hover,
.section-cta:hover,
.lead-form button:hover,
#generateAiPreview:hover,
#revealPreviewToggle:hover,
.reveal-preview button:hover,
#saveCustomDesign:hover {
  transform: translateY(-1px);
  border-color: rgba(210, 147, 82, 0.92) !important;
  background-color: #1d1812 !important;
}

.secondary,
.estimate-alt,
.custom-style-link,
#openCustomBuilder {
  background: transparent !important;
  border: 1px solid rgba(217, 202, 181, 0.24) !important;
  color: rgba(242, 236, 225, 0.84) !important;
}

.secondary:hover,
.estimate-alt:hover,
.custom-style-link:hover,
#openCustomBuilder:hover {
  transform: translateY(-1px);
  border-color: rgba(217, 202, 181, 0.44) !important;
  background: rgba(242, 236, 225, 0.05) !important;
}

.small-cta {
  min-height: 40px;
  padding-inline: 20px;
  border-radius: 11px !important;
}

.hero-actions .primary {
  width: min(100%, 390px);
}

.trust-bar {
  min-height: 62px;
  background: #0d0c0a;
  border-top: 1px solid rgba(217, 202, 181, 0.1);
  border-bottom: 1px solid rgba(217, 202, 181, 0.1);
}

.trust-bar > div {
  width: min(var(--site-frame), calc(100% - 44px));
  margin-inline: auto;
}

.trust-bar span {
  color: rgba(242, 236, 225, 0.58);
  font-size: 11px;
  letter-spacing: 0.12em;
}

.intro-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.intro-step,
.service-card,
.review-card,
.project-card,
.wizard-card,
.estimate-panel,
.faq-item,
.custom-design-card,
.style-cards article {
  border-radius: 10px;
  border: 1px solid rgba(95, 73, 50, 0.16);
  box-shadow: none;
}

.intro-step {
  background: rgba(255, 255, 255, 0.2);
}

.intro-step h3,
.service-card h3,
.review-card strong,
.project-card h3 {


  letter-spacing: 0;
}

.before-after .project-grid {
  gap: clamp(22px, 3vw, 40px);
}

.reveal-frame,
.project-card img,
.process-video-shell,
.process-video-shell video,
.crew-photo img,
.owner-photo,
.owner-photo img,
.service-card img,
.service-area-art img {
  border-radius: 10px;
}

.process.section {
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.68fr);
  gap: clamp(44px, 6vw, 90px);
  min-height: 0;
}

.process-video-card {
  max-width: 590px;
  justify-self: end;
}

.process-video-shell {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.compact-styles {
  background: #14120f;
  border-block: 1px solid rgba(217, 202, 181, 0.08);
}

.compact-styles .style-cards article,
.service-card,
.review-card,
.wizard-card {
  background: #171512;
  border-color: rgba(217, 202, 181, 0.13);
}

.finish-card,
.option-grid button,
.category-tabs button,
.upload-zone,
.lead-form input,
.lead-form textarea,
.custom-design-builder input,
.custom-design-builder textarea {
  border-radius: 10px;
  border-color: rgba(217, 202, 181, 0.18);
  background-color: rgba(242, 236, 225, 0.035);
}

.finish-card.selected,
.option-grid button.selected,
.category-tabs button.active {
  border-color: rgba(183, 120, 63, 0.82);
  box-shadow: inset 0 0 0 1px rgba(183, 120, 63, 0.3);
}

.why-crew.section {
  background:
    radial-gradient(circle at 16% 22%, rgba(183, 120, 63, 0.08), transparent 34%),
    #0f0e0c;
}

.owner-profile {
  border-top-color: rgba(217, 202, 181, 0.14);
}

.owner-photo,
.owner-photo img {
  width: clamp(132px, 8.5vw, 156px);
  height: clamp(132px, 8.5vw, 156px);
}

.reviews-grid {
  gap: clamp(16px, 2vw, 24px);
}

.review-card {
  padding: clamp(20px, 2vw, 28px);
}

.review-card p {
  color: rgba(242, 236, 225, 0.76);
}

.service-area.section {
  width: 100%;
  max-width: none;
  padding-left: max(var(--site-gutter), calc((100vw - var(--site-frame)) / 2 + var(--site-gutter)));
  padding-right: max(var(--site-gutter), calc((100vw - var(--site-frame)) / 2 + var(--site-gutter)));
}

.studio-header,
.before-after > .eyebrow,
.before-after > h2,
.before-after > .section-lead,
.services > .eyebrow,
.services > h2,
.reviews > .eyebrow,
.reviews > h2,
.reviews > .section-lead,
.estimate > .eyebrow,
.estimate > h2,
.estimate > .section-lead {
  max-width: 800px;
  text-align: center;
  margin-inline: auto;
}

.wizard-nav {
  border-radius: 10px;
  background: rgba(12, 11, 10, 0.94);
  border-color: rgba(217, 202, 181, 0.12);
}

.wizard-nav button#nextStep {
  min-width: 148px;
}

@media (min-width: 1500px) {
  .hero-content h1 {
    font-size: 72px;
  }
}

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

  .hero-content h1 {
    font-size: clamp(46px, 7vw, 66px);
  }

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

  .process-video-card {
    justify-self: stretch;
    max-width: none;
  }
}

@media (max-width: 760px) {
  .before-after.section,
  .studio.section,
  .services.section,
  .why-crew.section,
  .reviews.section,
  .service-area.section,
  .faq.section,
  .estimate.section {
    width: min(calc(100% - 32px), var(--site-frame));
  }

  .intro.section,
  .process.section,
  .compact-styles,
  .footer,
  .service-area.section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    min-height: calc(82vh - 66px);
    padding-inline: 20px;
  }

  .hero-content h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .hero-content > p:not(.eyebrow):not(.subline) {
    font-size: 17px;
  }

  .primary,
  .secondary,
  .small-cta,
  .wizard-nav button,
  .lead-form button,
  .step-actions button,
  .custom-style-link,
  #generateAiPreview,
  #revealPreviewToggle,
  .reveal-preview button,
  #openCustomBuilder,
  #saveCustomDesign {
    min-height: 48px;
    padding-inline: 22px;
    font-size: 12px;
  }
}

/* Final layout correction pass: keep the current design, but lock every section to one clean grid. */
:root {
  --content-max: 1440px;
  --content-narrow: 1240px;
  --page-pad: clamp(18px, 3vw, 44px);
  --band-pad: max(var(--page-pad), calc((100vw - var(--content-max)) / 2 + var(--page-pad)));
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.header {
  display: grid;
  grid-template-columns: minmax(290px, auto) minmax(0, 1fr) auto auto;
  align-items: center;
  gap: clamp(18px, 2.2vw, 36px);
  padding-inline: var(--band-pad) !important;
}

.brand,
.small-phone,
.small-cta {
  flex-shrink: 0;
}

.nav {
  min-width: 0;
  justify-content: center;
  gap: clamp(22px, 2.6vw, 42px);
}

.hero {
  display: grid;
  align-items: center;
  justify-items: center;
  padding-inline: var(--band-pad) !important;
}

.hero-content {
  width: min(920px, 100%) !important;
  margin-inline: auto !important;
  text-align: center !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content h1 {
  max-width: 820px;
  margin-inline: auto;
}

.hero-content > p:not(.eyebrow):not(.subline) {
  max-width: 680px;
  margin-inline: auto;
}

.hero-actions {
  width: 100%;
  justify-content: center;
}

.trust-bar > div {
  width: min(var(--content-max), calc(100% - (var(--page-pad) * 2))) !important;
  margin-inline: auto;
}

.before-after.section,
.studio.section,
.services.section,
.reviews.section,
.faq.section,
.estimate.section {
  width: min(var(--content-max), calc(100% - (var(--page-pad) * 2))) !important;
  margin-inline: auto !important;
}

.intro.section,
.process.section,
.compact-styles,
.why-crew.section,
.service-area.section,
.footer {
  padding-left: var(--band-pad) !important;
  padding-right: var(--band-pad) !important;
}

.intro.section {
  text-align: center;
}

.intro.section > .eyebrow,
.intro.section > h2,
.intro-summary {
  max-width: 840px;
  margin-inline: auto;
}

.intro-grid {
  width: min(1180px, 100%);
  margin-inline: auto;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: stretch;
}

.intro-step {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.intro-visual {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.intro-send .send-graphic {
  display: grid;
  place-items: center;
}

.intro-send .send-button {
  position: relative !important;
  inset: auto !important;
  transform: none !important;
  width: min(78%, 240px) !important;
  min-height: 52px;
  margin: auto !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.before-after .project-grid {
  width: min(1320px, 100%) !important;
  margin-inline: auto !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.project-card {
  min-width: 0;
}

.reveal-frame,
.before-after .project-card-featured .reveal-frame,
.before-after .project-card:not(.project-card-featured) .reveal-frame {
  aspect-ratio: 16 / 9 !important;
  height: auto !important;
}

.reveal-frame img {
  object-position: center !important;
}

.compare-label-before {
  left: 18px;
}

.compare-label-after {
  right: 18px;
}

.compare-divider {
  left: var(--reveal-pos, 52%);
  transform: translateX(-50%);
}

.compare-handle {
  left: var(--reveal-pos, 52%);
  transform: translate(-50%, -50%);
}

.compare-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: ew-resize;
  opacity: 0;
}

.process.section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  align-items: center;
  gap: clamp(42px, 6vw, 86px);
}

.process-video-card {
  width: 100%;
  max-width: 560px;
  justify-self: end;
}

.compact-styles > .eyebrow,
.compact-styles > h2,
.compact-styles > p,
.compact-styles .style-cards {
  max-width: var(--content-narrow);
  margin-inline: auto;
}

.compact-styles .style-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.services.section .service-grid,
.review-grid,
.reviews-grid {
  width: min(1240px, 100%);
  margin-inline: auto;
}

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

.service-card img {
  aspect-ratio: 16 / 10;
  height: auto !important;
  object-fit: cover;
}

.why-crew.section {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

.why-crew.section::before {
  left: var(--band-pad) !important;
}

.why-crew-main {
  width: 100% !important;
  max-width: 1320px !important;
  margin-inline: auto !important;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1fr) !important;
  grid-template-areas:
    "photos copy"
    "photos proof" !important;
  column-gap: clamp(36px, 5vw, 78px);
  align-items: center;
}

.crew-photo-stack {
  min-width: 0;
  padding-left: 0 !important;
}

.team-photo img {
  width: 100%;
  aspect-ratio: 16 / 10 !important;
  height: auto !important;
  object-fit: cover;
  object-position: center !important;
}

figure.owner-photo {
  --owner-photo-size: clamp(136px, 9vw, 168px);
  width: min(760px, 100%) !important;
  height: auto !important;
  display: grid !important;
  grid-template-columns: var(--owner-photo-size) minmax(0, 1fr) !important;
  gap: clamp(18px, 2vw, 28px) !important;
  align-items: center !important;
  margin-top: 26px !important;
  border-radius: 0 !important;
}

figure.owner-photo img {
  width: var(--owner-photo-size) !important;
  height: var(--owner-photo-size) !important;
  min-width: var(--owner-photo-size);
  border-radius: 50% !important;
  object-fit: cover !important;
  object-position: center 32% !important;
}

figure.owner-photo figcaption {
  max-width: 560px !important;
  min-width: 0;
}

.why-crew-copy,
.crew-proof-list {
  min-width: 0;
}

.why-crew-copy h2,
.why-crew-copy > p:not(.eyebrow) {
  max-width: 620px;
}

.footer {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(240px, 1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}

.footer nav {
  justify-self: center;
}

.footer div:last-child {
  justify-self: end;
  text-align: right;
}

@media (max-width: 1180px) {
  .header {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .small-phone {
    display: none;
  }

  .nav {
    justify-content: flex-end;
  }

  .hero-content h1 {
    font-size: clamp(48px, 7vw, 66px);
  }

  .before-after .project-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .intro-grid,
  .services.section .service-grid,
  .compact-styles .style-cards,
  .review-grid,
  .reviews-grid {
    grid-template-columns: 1fr !important;
  }

  .process.section {
    grid-template-columns: 1fr;
  }

  .process-video-card {
    justify-self: stretch;
    max-width: none;
  }

  .why-crew-main {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "photos"
      "copy"
      "proof" !important;
    align-items: start;
  }

  .why-crew-copy {
    padding-top: 22px;
  }

  .why-crew-copy h2,
  .why-crew-copy > p:not(.eyebrow) {
    max-width: 760px;
  }

  .footer {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer nav,
  .footer div:last-child {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 760px) {
  :root {
    --page-pad: 18px;
    --band-pad: 18px;
  }

  .header {
    padding-inline: 18px !important;
  }

  .hero {
    min-height: calc(82vh - 66px);
    padding-inline: 18px !important;
  }

  .hero-content {
    align-items: center;
    text-align: center !important;
  }

  .hero-content h1 {
    max-width: 100%;
    font-size: clamp(40px, 12vw, 58px);
  }

  .hero-content > p:not(.eyebrow):not(.subline) {
    font-size: 17px;
  }

  figure.owner-photo {
    grid-template-columns: 1fr !important;
    justify-items: center;
    text-align: center;
  }

  figure.owner-photo img {
    width: 132px !important;
    height: 132px !important;
    min-width: 132px;
  }

  figure.owner-photo figcaption em {
    padding-top: 10px;
    padding-left: 0;
    border-top: 1px solid rgba(216, 161, 94, 0.45);
    border-left: 0;
  }
}

/* Compact services strip: four controlled visuals without the oversized gallery feel. */
.services.section {
  padding-block: clamp(64px, 7vw, 96px) !important;
}

.services.section > .eyebrow,
.services.section > h2,
.services.section > .section-lead {
  width: min(920px, 100%) !important;
  margin-inline: auto !important;
  text-align: center !important;
}

.services.section > .section-lead {
  margin-bottom: clamp(28px, 3.5vw, 42px) !important;
}

.services.section .service-grid {
  width: min(1120px, 100%) !important;
  max-width: 1120px !important;
  margin-inline: auto !important;
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: clamp(14px, 1.5vw, 20px) !important;
  align-items: stretch !important;
}

.services.section .service-card,
.services.section .service-card-featured,
.services.section .service-card-premium,
.services.section .service-card:nth-child(4) {
  grid-column: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  display: flex !important;
  flex-direction: column !important;
  background: rgba(21, 19, 16, 0.94) !important;
}

.services.section .service-card > img,
.services.section .service-card-featured > img,
.services.section .service-card-premium > img,
.services.section .service-card:nth-child(4) > img {
  width: 100% !important;
  height: auto !important;
  max-height: 158px !important;
  aspect-ratio: 16 / 10 !important;
  object-fit: contain !important;
  background: #0c0b0a !important;
  border-radius: 14px 14px 0 0 !important;
}

.services.section .service-card-copy {
  padding: 16px 16px 8px !important;
}

.services.section .service-card-copy span {
  font-size: 11px !important;
  margin-bottom: 8px !important;
}

.services.section .service-card h3 {
  font-size: clamp(18px, 1.45vw, 22px) !important;
  line-height: 1.08 !important;
  margin-bottom: 8px !important;
}

.services.section .service-card p {
  font-size: 14px !important;
  line-height: 1.45 !important;
  margin: 0 !important;
}

.services.section .service-card ul {
  display: none !important;
}

.services.section .service-card .service-cta {
  margin: auto 16px 16px !important;
  padding-top: 10px !important;
  font-size: 12px !important;
}

@media (max-width: 1100px) {
  .services.section .service-grid {
    width: min(1040px, 100%) !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  .services.section .service-card-copy {
    padding: 14px 14px 8px !important;
  }

  .services.section .service-card p {
    font-size: 13px !important;
  }
}

@media (max-width: 820px) {
  .services.section .service-grid {
    width: min(620px, 100%) !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 560px) {
  .services.section .service-grid {
    width: min(360px, 100%) !important;
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 620px) {
  .services.section .service-card > img,
  .services.section .service-card-featured > img,
  .services.section .service-card-premium > img,
  .services.section .service-card:nth-child(4) > img {
    max-height: 190px !important;
  }
}

/* Final service-card correction: show the full photo instead of cropping it. */
.services.section .service-card > img,
.services.section .service-card-featured > img,
.services.section .service-card-premium > img,
.services.section .service-card:nth-child(4) > img {
  display: block !important;
  width: 100% !important;
  height: 150px !important;
  max-height: 150px !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: #0c0b0a !important;
}

@media (max-width: 820px) {
  .services.section .service-card > img,
  .services.section .service-card-featured > img,
  .services.section .service-card-premium > img,
  .services.section .service-card:nth-child(4) > img {
    height: 155px !important;
    max-height: 155px !important;
  }
}

/* Final CTA material pass: brighter black-gold epoxy with cleaner contrast. */
.primary,
.secondary,
.small-cta,
.section-cta,
.lead-form button:not(:disabled),
.step-actions button:not(:disabled),
.wizard-nav button#nextStep:not(:disabled),
.custom-style-link,
#generateAiPreview:not(:disabled),
#revealPreviewToggle,
.reveal-preview button,
#openCustomBuilder,
#saveCustomDesign {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(214, 145, 66, 0.9) !important;
  border-radius: 13px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.07) 18%, rgba(10, 8, 6, 0.12) 54%, rgba(0, 0, 0, 0.34) 100%) padding-box,
    radial-gradient(120% 115% at 22% 4%, rgba(255, 222, 157, 0.26), rgba(198, 119, 44, 0.08) 28%, transparent 54%) padding-box,
    radial-gradient(125% 100% at 88% 86%, rgba(225, 137, 50, 0.3), transparent 56%) padding-box,
    url("assets/optimized/design-finishes/black-gold.jpg") center / 118% auto padding-box,
    linear-gradient(135deg, rgba(244, 189, 105, 0.98), rgba(113, 63, 28, 0.94) 42%, rgba(237, 169, 82, 0.96)) border-box !important;
  color: #fff7ec !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(0, 0, 0, 0.62),
    0 12px 24px rgba(0, 0, 0, 0.2) !important;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.62);
}

.primary::before,
.secondary::before,
.small-cta::before,
.section-cta::before,
.lead-form button:not(:disabled)::before,
.step-actions button:not(:disabled)::before,
.wizard-nav button#nextStep:not(:disabled)::before,
.custom-style-link::before,
#generateAiPreview:not(:disabled)::before,
#revealPreviewToggle::before,
.reveal-preview button::before,
#openCustomBuilder::before,
#saveCustomDesign::before {
  content: "";
  display: block !important;
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: 11px;
  background:
    linear-gradient(105deg, transparent 0 19%, rgba(255, 220, 156, 0.34) 22%, transparent 29%, transparent 62%, rgba(198, 126, 52, 0.26) 67%, transparent 75%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 36%, rgba(255, 174, 82, 0.08));
  opacity: 0.88;
  pointer-events: none;
}

.primary:hover,
.secondary:hover,
.small-cta:hover,
.section-cta:hover,
.lead-form button:not(:disabled):hover,
.step-actions button:not(:disabled):hover,
.wizard-nav button#nextStep:not(:disabled):hover,
.custom-style-link:hover,
#generateAiPreview:not(:disabled):hover,
#revealPreviewToggle:hover,
.reveal-preview button:hover,
#openCustomBuilder:hover,
#saveCustomDesign:hover {
  transform: translateY(-1px);
  border-color: rgba(245, 187, 104, 0.98) !important;
  background-size: auto, auto, auto, 108% auto, auto !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -1px 0 rgba(0, 0, 0, 0.56),
    0 15px 30px rgba(0, 0, 0, 0.24) !important;
}

/* Reference CTA pass: crisper black metallic face, brighter gold veining, clean centered type. */
.primary,
.secondary,
.small-cta,
.section-cta,
.lead-form button:not(:disabled),
.step-actions button:not(:disabled),
.wizard-nav button#nextStep:not(:disabled),
.custom-style-link,
#generateAiPreview:not(:disabled),
#revealPreviewToggle,
.reveal-preview button,
#openCustomBuilder,
#saveCustomDesign {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  min-height: 56px !important;
  padding: 0 34px !important;
  border: 1px solid rgba(226, 179, 98, 0.92) !important;
  border-radius: 18px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.05) 18%, rgba(5, 4, 3, 0.18) 60%, rgba(0, 0, 0, 0.46)) padding-box,
    radial-gradient(100% 120% at 18% 10%, rgba(255, 241, 199, 0.18), transparent 42%) padding-box,
    radial-gradient(105% 125% at 86% 72%, rgba(204, 129, 42, 0.24), transparent 48%) padding-box,
    url("assets/optimized/design-finishes/black-gold.jpg") center / 122% auto padding-box,
    linear-gradient(135deg, #f6d38f, #9b612d 38%, #d5a255 62%, #fff0bd) border-box !important;
  color: #fffaf0 !important;

  letter-spacing: 0.08em !important;
  text-align: center !important;
  text-transform: uppercase !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 0 0 1px rgba(255, 238, 185, 0.1),
    inset 0 -10px 18px rgba(0, 0, 0, 0.38),
    0 10px 22px rgba(0, 0, 0, 0.22) !important;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.62), 0 0 18px rgba(255, 255, 255, 0.12) !important;
}

.primary::before,
.secondary::before,
.small-cta::before,
.section-cta::before,
.lead-form button:not(:disabled)::before,
.step-actions button:not(:disabled)::before,
.wizard-nav button#nextStep:not(:disabled)::before,
.custom-style-link::before,
#generateAiPreview:not(:disabled)::before,
#revealPreviewToggle::before,
.reveal-preview button::before,
#openCustomBuilder::before,
#saveCustomDesign::before {
  content: "" !important;
  position: absolute !important;
  inset: 4px !important;
  z-index: -1 !important;
  border-radius: 14px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 22%, rgba(255, 198, 104, 0.05) 64%, rgba(0, 0, 0, 0.24)),
    linear-gradient(110deg, transparent 0 16%, rgba(249, 210, 138, 0.22) 23%, transparent 31%, transparent 70%, rgba(211, 140, 55, 0.18) 78%, transparent 86%) !important;
  opacity: 1 !important;
  pointer-events: none !important;
}

.hero-actions .primary {
  min-width: clamp(340px, 34vw, 560px) !important;
  min-height: clamp(74px, 6vw, 92px) !important;
  padding: 0 clamp(74px, 6vw, 104px) 0 clamp(46px, 4vw, 72px) !important;
  border-radius: 34px !important;
  font-size: clamp(19px, 1.55vw, 30px) !important;
  letter-spacing: 0.1em !important;
  line-height: 1 !important;
  background-size: auto, auto, auto, 116% auto, auto !important;
}

.hero-actions .primary::before {
  inset: 5px !important;
  border-radius: 29px !important;
}

.hero-actions .primary::after {
  content: "";
  position: absolute;
  right: clamp(28px, 2.6vw, 46px);
  top: 50%;
  transform: translateY(-54%);
  color: #d6ad5f;

  font-size: clamp(54px, 4.2vw, 78px);

  line-height: 0.8;
  text-shadow: 0 0 18px rgba(214, 173, 95, 0.22);
}

.site-header .primary,
.nav .primary,
.navbar .primary {
  min-height: 48px !important;
  border-radius: 18px !important;
  padding: 0 28px !important;
  background-size: auto, auto, auto, 130% auto, auto !important;
}

.primary:hover,
.secondary:hover,
.small-cta:hover,
.section-cta:hover,
.lead-form button:not(:disabled):hover,
.step-actions button:not(:disabled):hover,
.wizard-nav button#nextStep:not(:disabled):hover,
.custom-style-link:hover,
#generateAiPreview:not(:disabled):hover,
#revealPreviewToggle:hover,
.reveal-preview button:hover,
#openCustomBuilder:hover,
#saveCustomDesign:hover {
  transform: translateY(-1px) !important;
  border-color: rgba(255, 216, 139, 0.98) !important;
  background-size: auto, auto, auto, 112% auto, auto !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 0 0 1px rgba(255, 238, 185, 0.14),
    inset 0 -10px 18px rgba(0, 0, 0, 0.34),
    0 13px 28px rgba(0, 0, 0, 0.26) !important;
}

@media (max-width: 700px) {
  .hero-actions .primary {
    width: min(100%, 420px) !important;
    min-width: 0 !important;
    min-height: 66px !important;
    padding: 0 58px 0 30px !important;
    font-size: 17px !important;
    border-radius: 26px !important;
  }

  .hero-actions .primary::before {
    border-radius: 22px !important;
  }

  .hero-actions .primary::after {
    right: 24px;
    font-size: 48px;
  }
}

/* Exact-reference CTA pass: black/gold metallic epoxy slab buttons. */
.primary,
.secondary,
.small-cta,
.section-cta,
.lead-form button:not(:disabled),
.step-actions button:not(:disabled),
.wizard-nav button#nextStep:not(:disabled),
.custom-style-link,
#generateAiPreview:not(:disabled),
#revealPreviewToggle,
.reveal-preview button,
#openCustomBuilder,
#saveCustomDesign {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  isolation: isolate;
  min-height: 58px !important;
  padding: 0 38px !important;
  border: 1.5px solid rgba(214, 178, 96, 0.9) !important;
  border-radius: 22px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.04) 18%, rgba(0, 0, 0, 0.28) 58%, rgba(0, 0, 0, 0.72) 100%) padding-box,
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.15) 48%, rgba(0, 0, 0, 0.7)) padding-box,
    url("assets/optimized/design-finishes/black-gold.jpg") center / 128% auto padding-box,
    linear-gradient(90deg, #fff0bb 0%, #cda24f 18%, #6f461f 48%, #c29446 78%, #f7dc8d 100%) border-box !important;
  background-blend-mode: normal, multiply, normal, normal !important;
  color: #fff9ef !important;

  font-size: 18px !important;


  letter-spacing: 0.085em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  white-space: nowrap;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.46),
    inset 0 0 0 1px rgba(255, 237, 182, 0.1),
    inset 0 -18px 26px rgba(0, 0, 0, 0.56),
    0 2px 0 rgba(0, 0, 0, 0.8),
    0 14px 30px rgba(0, 0, 0, 0.26) !important;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.88),
    0 0 16px rgba(255, 255, 255, 0.12) !important;
}

.primary::before,
.secondary::before,
.small-cta::before,
.section-cta::before,
.lead-form button:not(:disabled)::before,
.step-actions button:not(:disabled)::before,
.wizard-nav button#nextStep:not(:disabled)::before,
.custom-style-link::before,
#generateAiPreview:not(:disabled)::before,
#revealPreviewToggle::before,
.reveal-preview button::before,
#openCustomBuilder::before,
#saveCustomDesign::before {
  content: "" !important;
  position: absolute !important;
  pointer-events: none !important;
  z-index: 0 !important;
  inset: 5px !important;
  border-radius: 17px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 18%, rgba(224, 171, 76, 0.06) 68%, rgba(0, 0, 0, 0.34)),
    linear-gradient(108deg, transparent 0 22%, rgba(255, 230, 164, 0.14) 28%, transparent 36%, transparent 66%, rgba(205, 154, 70, 0.14) 73%, transparent 84%) !important;
  mix-blend-mode: screen;
}

.hero-actions {
  align-items: center !important;
  justify-content: center !important;
  width: min(100%, 940px) !important;
}

.hero-actions .primary {
  box-sizing: border-box !important;
  width: min(100%, 940px) !important;
  min-width: 0 !important;
  min-height: clamp(96px, 5.35vw, 126px) !important;
  padding: 0 clamp(128px, 7.2vw, 172px) 0 clamp(90px, 5vw, 132px) !important;
  border: 2px solid rgba(218, 182, 97, 0.98) !important;
  border-radius: clamp(48px, 3.6vw, 66px) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.19) 0%, rgba(255, 255, 255, 0.045) 14%, rgba(0, 0, 0, 0.2) 42%, rgba(0, 0, 0, 0.78) 100%) padding-box,
    radial-gradient(ellipse at 18% 55%, rgba(196, 132, 52, 0.22), transparent 34%) padding-box,
    radial-gradient(ellipse at 74% 38%, rgba(226, 184, 88, 0.18), transparent 30%) padding-box,
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.12) 48%, rgba(0, 0, 0, 0.78)) padding-box,
    url("assets/optimized/design-finishes/black-gold.jpg") center / 112% auto padding-box,
    linear-gradient(90deg, #fff2bc 0%, #d8b45f 15%, #7e5124 48%, #c28b3f 76%, #f4dc8d 100%) border-box !important;
  background-blend-mode: normal, screen, screen, multiply, normal, normal !important;

  font-size: clamp(36px, 2.45vw, 56px) !important;

  letter-spacing: 0.085em !important;
  justify-content: center !important;
  text-align: center !important;
  margin-inline: auto !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    inset 0 0 0 1px rgba(255, 236, 178, 0.12),
    inset 0 -24px 32px rgba(0, 0, 0, 0.62),
    0 2px 0 rgba(0, 0, 0, 0.85),
    0 20px 46px rgba(0, 0, 0, 0.38) !important;
}

.hero-actions .primary::before {
  inset: 7px !important;
  border-radius: clamp(34px, 3.2vw, 49px) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 20%, rgba(0, 0, 0, 0.22) 100%),
    linear-gradient(108deg, transparent 0 18%, rgba(255, 232, 174, 0.11) 25%, transparent 34%, transparent 70%, rgba(214, 160, 72, 0.15) 79%, transparent 88%) !important;
  mix-blend-mode: screen;
}

.hero-actions .primary::after {
  content: "" !important;
  position: absolute !important;
  display: block !important;
  pointer-events: none !important;
  z-index: 2 !important;
  top: 50% !important;
  right: clamp(48px, 4.3vw, 82px) !important;
  width: auto !important;
  height: auto !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #d8b45f !important;

  font-size: clamp(42px, 2.9vw, 64px) !important;

  letter-spacing: 0 !important;
  line-height: 1 !important;
  transform: translateY(-52%) scaleX(0.72) !important;
  text-shadow: 0 0 14px rgba(218, 178, 91, 0.28) !important;
  box-shadow: none !important;
}

.site-header .primary,
.nav .primary,
.navbar .primary,
.header .small-cta {
  min-height: 50px !important;
  padding: 0 30px !important;
  border-radius: 24px !important;
  font-size: 14px !important;
  letter-spacing: 0.1em !important;
  background-size: auto, auto, 118% auto, auto !important;
}

.primary:hover,
.secondary:hover,
.small-cta:hover,
.section-cta:hover,
.lead-form button:not(:disabled):hover,
.step-actions button:not(:disabled):hover,
.wizard-nav button#nextStep:not(:disabled):hover,
.custom-style-link:hover,
#generateAiPreview:not(:disabled):hover,
#revealPreviewToggle:hover,
.reveal-preview button:hover,
#openCustomBuilder:hover,
#saveCustomDesign:hover {
  background-size: auto, auto, 123% auto, auto !important;
  border-color: rgba(246, 216, 139, 1) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.56),
    inset 0 0 0 1px rgba(255, 236, 180, 0.16),
    inset 0 -18px 24px rgba(0, 0, 0, 0.48),
    0 2px 0 rgba(0, 0, 0, 0.72),
    0 18px 38px rgba(0, 0, 0, 0.3) !important;
}

.hero-actions .primary:hover {
  background-size: auto, auto, auto, auto, 108% auto, auto !important;
  transform: translateY(-1px);
}

@media (max-width: 700px) {
  .hero-actions {
    width: min(100%, 430px) !important;
  }

  .hero-actions .primary {
    width: min(100%, 390px) !important;
    min-height: 68px !important;
    padding: 0 62px 0 30px !important;
    border-radius: 34px !important;
    font-size: 21px !important;
    letter-spacing: 0.075em !important;
  }

  .hero-actions .primary::before {
    inset: 5px !important;
    border-radius: 28px !important;
  }

  .hero-actions .primary::after {
    right: 32px !important;
    width: auto !important;
    height: auto !important;
    border: 0 !important;
    font-size: 34px !important;
  }
}

/* Shared reference CTA component. Visual source: assets/cta-reference-epoxy.png. */
.hero-actions .primary,
.primary,
.secondary,
.small-cta,
.section-cta,
.wizard-nav button#nextStep,
.wizard-nav button#nextStep:disabled,
#generateAiPreview,
#generateAiPreview:disabled,
.lead-form button:not(:disabled),
.step-actions button:not(:disabled),
.wizard-nav button#nextStep:not(:disabled),
.custom-style-link,
#generateAiPreview:not(:disabled),
#revealPreviewToggle,
.reveal-preview button,
#openCustomBuilder,
#saveCustomDesign,
.intro-send .send-button,
.mobile-cta a,
.services.section .service-card .service-cta {
  position: relative !important;
  isolation: isolate !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  width: auto;
  max-width: min(100%, 760px) !important;
  min-height: clamp(52px, 5.1vw, 68px) !important;
  padding: 0 clamp(58px, 5.3vw, 86px) 0 clamp(24px, 3.4vw, 46px) !important;
  border: 1.5px solid transparent !important;
  border-radius: clamp(24px, 3vw, 34px) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.045) 17%, rgba(3, 3, 3, 0.2) 56%, rgba(0, 0, 0, 0.74) 100%) padding-box,
    linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.1) 48%, rgba(0, 0, 0, 0.72)) padding-box,
    url("assets/cta-reference-epoxy.png") center 92% / auto 230% padding-box,
    linear-gradient(90deg, #fff1b7 0%, #d7b25c 18%, #7c5023 48%, #c59243 78%, #f6dc8b 100%) border-box !important;
  background-blend-mode: normal, multiply, normal, normal !important;
  color: #fff9ef !important;

  font-size: clamp(13px, 1.42vw, 18px) !important;


  letter-spacing: 0.085em !important;
  line-height: 1 !important;
  text-align: center !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  cursor: pointer;
  opacity: 1 !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 0 0 1px rgba(255, 238, 185, 0.12),
    inset 0 -16px 26px rgba(0, 0, 0, 0.55),
    0 2px 0 rgba(0, 0, 0, 0.82),
    0 14px 30px rgba(0, 0, 0, 0.28) !important;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.9),
    0 0 16px rgba(255, 255, 255, 0.12) !important;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, filter 180ms ease !important;
}

.hero-actions .primary::before,
.primary::before,
.secondary::before,
.small-cta::before,
.section-cta::before,
.wizard-nav button#nextStep::before,
.wizard-nav button#nextStep:disabled::before,
#generateAiPreview::before,
#generateAiPreview:disabled::before,
.lead-form button:not(:disabled)::before,
.step-actions button:not(:disabled)::before,
.wizard-nav button#nextStep:not(:disabled)::before,
.custom-style-link::before,
#generateAiPreview:not(:disabled)::before,
#revealPreviewToggle::before,
.reveal-preview button::before,
#openCustomBuilder::before,
#saveCustomDesign::before,
.intro-send .send-button::before,
.mobile-cta a::before,
.services.section .service-card .service-cta::before {
  content: "" !important;
  position: absolute !important;
  pointer-events: none !important;
  z-index: -1 !important;
  inset: 5px !important;
  border-radius: calc(clamp(24px, 3vw, 34px) - 7px) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 22%, rgba(224, 171, 76, 0.05) 66%, rgba(0, 0, 0, 0.32)),
    linear-gradient(108deg, transparent 0 18%, rgba(255, 232, 174, 0.14) 26%, transparent 35%, transparent 68%, rgba(214, 160, 72, 0.16) 78%, transparent 88%) !important;
  mix-blend-mode: screen;
}

.hero-actions .primary::after,
.primary::after,
.secondary::after,
.small-cta::after,
.section-cta::after,
.wizard-nav button#nextStep::after,
.wizard-nav button#nextStep:disabled::after,
#generateAiPreview::after,
#generateAiPreview:disabled::after,
.lead-form button:not(:disabled)::after,
.step-actions button:not(:disabled)::after,
.wizard-nav button#nextStep:not(:disabled)::after,
.custom-style-link::after,
#generateAiPreview:not(:disabled)::after,
#revealPreviewToggle::after,
.reveal-preview button::after,
#openCustomBuilder::after,
#saveCustomDesign::after,
.intro-send .send-button::after,
.mobile-cta a::after,
.services.section .service-card .service-cta::after {
  content: "" !important;
  position: absolute !important;
  pointer-events: none !important;
  z-index: 2 !important;
  top: 50% !important;
  right: clamp(23px, 2.7vw, 38px) !important;
  width: clamp(13px, 1.3vw, 19px) !important;
  height: clamp(13px, 1.3vw, 19px) !important;
  border: solid #d8b45f !important;
  border-width: 0 clamp(3px, 0.32vw, 5px) clamp(3px, 0.32vw, 5px) 0 !important;
  border-radius: 1px !important;
  background: transparent !important;
  box-shadow: 0 0 14px rgba(218, 178, 91, 0.26) !important;
  transform: translateY(-50%) rotate(-45deg) !important;
}

.hero-actions .primary:hover,
.primary:hover,
.secondary:hover,
.small-cta:hover,
.section-cta:hover,
.wizard-nav button#nextStep:not(:disabled):hover,
#generateAiPreview:not(:disabled):hover,
.lead-form button:not(:disabled):hover,
.step-actions button:not(:disabled):hover,
.wizard-nav button#nextStep:not(:disabled):hover,
.custom-style-link:hover,
#generateAiPreview:not(:disabled):hover,
#revealPreviewToggle:hover,
.reveal-preview button:hover,
#openCustomBuilder:hover,
#saveCustomDesign:hover,
.intro-send .send-button:hover,
.mobile-cta a:hover,
.services.section .service-card .service-cta:hover {
  transform: translateY(-1px) !important;
  border-color: rgba(246, 216, 139, 1) !important;
  filter: brightness(1.05) contrast(1.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.56),
    inset 0 0 0 1px rgba(255, 236, 180, 0.16),
    inset 0 -16px 24px rgba(0, 0, 0, 0.48),
    0 2px 0 rgba(0, 0, 0, 0.72),
    0 18px 38px rgba(0, 0, 0, 0.3) !important;
}

.hero-actions {
  align-items: center !important;
  justify-content: center !important;
  width: min(100%, var(--site-frame)) !important;
}

.hero-actions .primary {
  width: min(100%, 760px) !important;
  min-width: 0 !important;
  min-height: clamp(52px, 5.1vw, 68px) !important;
  padding-left: clamp(24px, 3.4vw, 46px) !important;
  padding-right: clamp(58px, 5.3vw, 86px) !important;
  border-width: 1.5px !important;
  border-radius: clamp(24px, 3vw, 34px) !important;
  font-size: clamp(13px, 1.42vw, 18px) !important;
}

.header .small-cta,
.site-header .primary,
.nav .primary,
.navbar .primary {
  min-height: clamp(52px, 5.1vw, 68px) !important;
  padding-left: clamp(24px, 3.4vw, 46px) !important;
  padding-right: clamp(58px, 5.3vw, 86px) !important;
  border-radius: clamp(24px, 3vw, 34px) !important;
  font-size: clamp(13px, 1.42vw, 18px) !important;
}

.full,
.lead-form button:not(:disabled).full,
#saveCustomDesign.full {
  width: 100% !important;
  max-width: 100% !important;
}

.mobile-cta a {
  flex: 1 1 0 !important;
  min-width: 0 !important;
}

@media (max-width: 900px) {
  .hero-actions .primary,
  .primary,
  .secondary,
  .small-cta,
  .section-cta,
  .wizard-nav button#nextStep,
  .wizard-nav button#nextStep:disabled,
  #generateAiPreview,
  #generateAiPreview:disabled,
  .lead-form button:not(:disabled),
  .step-actions button:not(:disabled),
  .wizard-nav button#nextStep:not(:disabled),
  .custom-style-link,
  #generateAiPreview:not(:disabled),
  #revealPreviewToggle,
  .reveal-preview button,
  #openCustomBuilder,
  #saveCustomDesign,
  .intro-send .send-button,
  .mobile-cta a,
  .services.section .service-card .service-cta {
    min-height: clamp(50px, 7vw, 62px) !important;
    padding-left: clamp(20px, 4vw, 34px) !important;
    padding-right: clamp(54px, 8vw, 72px) !important;
    font-size: clamp(12px, 2vw, 16px) !important;
  }
}

@media (max-width: 700px) {
  .hero-actions {
    width: min(100%, 430px) !important;
  }

  .hero-actions .primary {
    width: min(100%, 390px) !important;
    min-height: clamp(50px, 7vw, 62px) !important;
    padding-left: clamp(20px, 4vw, 34px) !important;
    padding-right: clamp(54px, 8vw, 72px) !important;
    border-radius: clamp(24px, 3vw, 34px) !important;
    font-size: clamp(12px, 2vw, 16px) !important;
  }

  .mobile-cta {
    padding-inline: 12px !important;
    gap: 10px !important;
  }
}

@media (max-width: 520px) {
  .hero-actions .primary,
  .primary,
  .secondary,
  .small-cta,
  .section-cta,
  .wizard-nav button#nextStep,
  .wizard-nav button#nextStep:disabled,
  #generateAiPreview,
  #generateAiPreview:disabled,
  .lead-form button:not(:disabled),
  .step-actions button:not(:disabled),
  .wizard-nav button#nextStep:not(:disabled),
  .custom-style-link,
  #generateAiPreview:not(:disabled),
  #revealPreviewToggle,
  .reveal-preview button,
  #openCustomBuilder,
  #saveCustomDesign,
  .intro-send .send-button,
  .mobile-cta a,
  .services.section .service-card .service-cta {
    width: min(100%, calc(100vw - 32px)) !important;
    min-height: 50px !important;
    padding-left: 18px !important;
    padding-right: 52px !important;
    border-radius: 25px !important;
    font-size: 12px !important;
    letter-spacing: 0.07em !important;
  }

  .hero-actions .primary::after,
  .primary::after,
  .secondary::after,
  .small-cta::after,
  .section-cta::after,
  .wizard-nav button#nextStep::after,
  .wizard-nav button#nextStep:disabled::after,
  #generateAiPreview::after,
  #generateAiPreview:disabled::after,
  .lead-form button:not(:disabled)::after,
  .step-actions button:not(:disabled)::after,
  .wizard-nav button#nextStep:not(:disabled)::after,
  .custom-style-link::after,
  #generateAiPreview:not(:disabled)::after,
  #revealPreviewToggle::after,
  .reveal-preview button::after,
  #openCustomBuilder::after,
  #saveCustomDesign::after,
  .intro-send .send-button::after,
  .mobile-cta a::after,
  .services.section .service-card .service-cta::after {
    right: 22px !important;
    width: 12px !important;
    height: 12px !important;
    border-width: 0 3px 3px 0 !important;
  }
}

/* Premium services section rebuild: one consistent 2x2 service-card system. */
.services.section {
  padding-block: clamp(72px, 8vw, 112px) !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 161, 94, 0.13), transparent 34rem),
    linear-gradient(180deg, #0c0b0a 0%, #15110e 48%, #0c0b0a 100%) !important;
}

.services.section > .eyebrow,
.services.section > h2,
.services.section > .section-lead {
  width: min(900px, 100%) !important;
  margin-inline: auto !important;
  text-align: center !important;
}

.services.section > h2 {
  max-width: 760px !important;
  line-height: 0.98 !important;
}

.services.section > .section-lead {
  max-width: 650px !important;
  margin-top: 14px !important;
  margin-bottom: clamp(34px, 4vw, 52px) !important;
  color: rgba(245, 239, 228, 0.76) !important;
}

.services.section .service-grid {
  width: min(1080px, 100%) !important;
  max-width: 1080px !important;
  margin-inline: auto !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: clamp(22px, 2.4vw, 32px) !important;
  align-items: stretch !important;
}

.services.section .service-card,
.services.section .service-card-featured,
.services.section .service-card-premium,
.services.section .service-card:nth-child(4) {
  position: relative !important;
  grid-column: auto !important;
  display: grid !important;
  grid-template-rows: auto 1fr auto !important;
  height: clamp(500px, 43vw, 560px) !important;
  min-height: clamp(430px, 34vw, 500px) !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 1px solid rgba(216, 161, 94, 0.24) !important;
  border-radius: 18px !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    linear-gradient(145deg, rgba(35, 29, 22, 0.96), rgba(14, 12, 10, 0.98)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 54px rgba(0, 0, 0, 0.24) !important;
  transform: translateY(0);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease !important;
}

.services.section .service-card:hover,
.services.section .service-card-featured:hover,
.services.section .service-card-premium:hover,
.services.section .service-card:nth-child(4):hover {
  transform: translateY(-4px) !important;
  border-color: rgba(231, 183, 107, 0.42) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 28px 68px rgba(0, 0, 0, 0.3),
    0 0 34px rgba(216, 161, 94, 0.08) !important;
}

.services.section .service-card > img,
.services.section .service-card-featured > img,
.services.section .service-card-premium > img,
.services.section .service-card:nth-child(4) > img {
  display: block !important;
  width: 100% !important;
  height: clamp(190px, 18vw, 238px) !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: 16 / 9 !important;
  object-fit: cover !important;
  object-position: center center !important;
  border-radius: 0 !important;
  background: transparent !important;
  filter: saturate(0.96) contrast(1.05) brightness(0.9);
  transition: transform 420ms ease, filter 220ms ease !important;
}

.services.section .service-card:hover > img {
  transform: scale(1.035) !important;
  filter: saturate(1.02) contrast(1.08) brightness(0.96);
}

.services.section .service-card::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  border-radius: inherit !important;
  background:
    linear-gradient(180deg, transparent 0 38%, rgba(0, 0, 0, 0.24) 38%, transparent 58%),
    radial-gradient(circle at 14% 0%, rgba(255, 230, 168, 0.12), transparent 18rem) !important;
}

.services.section .service-card-link {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  border-radius: inherit !important;
}

.services.section .service-card-copy {
  position: relative !important;
  z-index: 2 !important;
  display: flex !important;
  flex-direction: column !important;
  padding: clamp(22px, 2.4vw, 30px) clamp(22px, 2.6vw, 32px) 12px !important;
}

.services.section .service-card-copy span {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 0 0 12px !important;
  color: #d9ae61 !important;
  font-size: 12px !important;

  letter-spacing: 0.18em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

.services.section .service-card-copy span em {
  display: none !important;
}

.services.section .service-card h3 {
  max-width: 13ch !important;
  margin: 0 0 12px !important;
  color: #fff8ed !important;
  font-size: clamp(28px, 3vw, 42px) !important;

  letter-spacing: 0.012em !important;
  line-height: 1.08 !important;
  text-wrap: balance;
}

.services.section .service-card p {
  max-width: 42ch !important;
  margin: 0 !important;
  color: rgba(245, 239, 228, 0.76) !important;
  font-size: clamp(15px, 1.25vw, 17px) !important;
  line-height: 1.48 !important;
}

.services.section .service-card ul {
  display: none !important;
}

.services.section .service-card .service-cta {
  position: relative !important;
  z-index: 2 !important;
  align-self: start !important;
  width: min(100% - 44px, 340px) !important;
  max-width: 340px !important;
  min-height: 52px !important;
  margin: auto clamp(22px, 2.6vw, 32px) clamp(22px, 2.6vw, 32px) !important;
  font-size: 13px !important;
}

@media (max-width: 980px) {
  .services.section .service-grid {
    width: min(760px, 100%) !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 20px !important;
  }

  .services.section .service-card,
  .services.section .service-card-featured,
  .services.section .service-card-premium,
  .services.section .service-card:nth-child(4) {
    height: 500px !important;
    min-height: 420px !important;
  }

  .services.section .service-card > img,
  .services.section .service-card-featured > img,
  .services.section .service-card-premium > img,
  .services.section .service-card:nth-child(4) > img {
    height: 190px !important;
  }

  .services.section .service-card h3 {
    max-width: 12ch !important;
    font-size: clamp(24px, 3.4vw, 32px) !important;
  }
}

@media (max-width: 680px) {
  .services.section .service-grid {
    width: min(430px, 100%) !important;
    grid-template-columns: 1fr !important;
  }

  .services.section .service-card,
  .services.section .service-card-featured,
  .services.section .service-card-premium,
  .services.section .service-card:nth-child(4) {
    height: clamp(452px, 118vw, 480px) !important;
    min-height: 0 !important;
  }

  .services.section .service-card > img,
  .services.section .service-card-featured > img,
  .services.section .service-card-premium > img,
  .services.section .service-card:nth-child(4) > img {
    height: clamp(188px, 48vw, 230px) !important;
    min-height: 0 !important;
  }

  .services.section .service-card-copy {
    padding: 22px 22px 10px !important;
  }

  .services.section .service-card h3 {
    max-width: 14ch !important;
    font-size: clamp(26px, 8vw, 34px) !important;
  }

  .services.section .service-card .service-cta {
    width: calc(100% - 44px) !important;
    max-width: none !important;
    margin: auto 22px 22px !important;
  }
}

/* Locked master CTA: faithful no-icon reference button. */
.hero-actions .primary,
.primary,
.secondary,
.small-cta,
.section-cta,
.wizard-nav button#nextStep,
.wizard-nav button#nextStep:disabled,
#generateAiPreview,
#generateAiPreview:disabled,
.lead-form button:not(:disabled),
.step-actions button:not(:disabled),
.wizard-nav button#nextStep:not(:disabled),
.custom-style-link,
#generateAiPreview:not(:disabled),
#revealPreviewToggle,
.reveal-preview button,
#openCustomBuilder,
#saveCustomDesign,
.intro-send .send-button,
.mobile-cta a,
.services.section .service-card .service-cta {
  position: relative !important;
  isolation: isolate !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  width: fit-content;
  max-width: min(100%, 340px) !important;
  min-height: clamp(64px, 5vw, 68px) !important;
  padding: 0 clamp(36px, 3.25vw, 44px) !important;
  border: 1.5px solid transparent !important;
  border-radius: clamp(16px, 1.55vw, 20px) !important;
  background:
    url("assets/cta-reference-epoxy.png") center center / cover no-repeat padding-box,
    linear-gradient(90deg, #fff0b5 0%, #d7b45d 17%, #805223 48%, #c69445 78%, #f4dc8e 100%) border-box !important;
  background-color: #090807 !important;
  color: #fff8ef !important;

  font-size: clamp(12px, 1.18vw, 16px) !important;


  letter-spacing: 0.08em !important;
  line-height: 0.95 !important;
  text-align: center !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  white-space: normal !important;
  cursor: pointer;
  opacity: 1 !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 245, 199, 0.36),
    inset 0 -10px 22px rgba(0, 0, 0, 0.46),
    0 2px 0 rgba(0, 0, 0, 0.86),
    0 14px 28px rgba(0, 0, 0, 0.26) !important;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.92),
    0 0 12px rgba(255, 255, 255, 0.12) !important;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease !important;
}

.hero-actions .primary::before,
.primary::before,
.secondary::before,
.small-cta::before,
.section-cta::before,
.wizard-nav button#nextStep::before,
.wizard-nav button#nextStep:disabled::before,
#generateAiPreview::before,
#generateAiPreview:disabled::before,
.lead-form button:not(:disabled)::before,
.step-actions button:not(:disabled)::before,
.wizard-nav button#nextStep:not(:disabled)::before,
.custom-style-link::before,
#generateAiPreview:not(:disabled)::before,
#revealPreviewToggle::before,
.reveal-preview button::before,
#openCustomBuilder::before,
#saveCustomDesign::before,
.intro-send .send-button::before,
.mobile-cta a::before,
.services.section .service-card .service-cta::before,
.hero-actions .primary::after,
.primary::after,
.secondary::after,
.small-cta::after,
.section-cta::after,
.wizard-nav button#nextStep::after,
.wizard-nav button#nextStep:disabled::after,
#generateAiPreview::after,
#generateAiPreview:disabled::after,
.lead-form button:not(:disabled)::after,
.step-actions button:not(:disabled)::after,
.wizard-nav button#nextStep:not(:disabled)::after,
.custom-style-link::after,
#generateAiPreview:not(:disabled)::after,
#revealPreviewToggle::after,
.reveal-preview button::after,
#openCustomBuilder::after,
#saveCustomDesign::after,
.intro-send .send-button::after,
.mobile-cta a::after,
.services.section .service-card .service-cta::after {
  content: none !important;
  display: none !important;
}

.hero-actions .primary:hover,
.primary:hover,
.secondary:hover,
.small-cta:hover,
.section-cta:hover,
.wizard-nav button#nextStep:not(:disabled):hover,
#generateAiPreview:not(:disabled):hover,
.lead-form button:not(:disabled):hover,
.step-actions button:not(:disabled):hover,
.custom-style-link:hover,
#revealPreviewToggle:hover,
.reveal-preview button:hover,
#openCustomBuilder:hover,
#saveCustomDesign:hover,
.intro-send .send-button:hover,
.mobile-cta a:hover,
.services.section .service-card .service-cta:hover {
  transform: translateY(-1px) !important;
  filter: brightness(1.04) contrast(1.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 245, 199, 0.42),
    inset 0 -10px 22px rgba(0, 0, 0, 0.42),
    0 2px 0 rgba(0, 0, 0, 0.78),
    0 18px 36px rgba(0, 0, 0, 0.3) !important;
}

.hero-actions .primary {
  width: fit-content !important;
  max-width: min(100%, 340px) !important;
  min-width: 0 !important;
}

.header .small-cta,
.site-header .primary,
.nav .primary,
.navbar .primary {
  min-height: clamp(42px, 4vw, 50px) !important;
  padding-inline: clamp(28px, 2.6vw, 34px) !important;
  border-radius: clamp(14px, 1.35vw, 16px) !important;
  font-size: clamp(12px, 1.1vw, 14px) !important;
}

.full,
.lead-form button:not(:disabled).full,
#saveCustomDesign.full {
  width: 100% !important;
  max-width: 100% !important;
}

.services.section .service-card .service-cta {
  width: fit-content !important;
  max-width: 340px !important;
  min-height: 64px !important;
  margin: auto clamp(22px, 2.6vw, 32px) clamp(22px, 2.6vw, 32px) !important;
  font-size: 13px !important;
}

.custom-style-link,
.estimate-alt {
  max-width: min(100%, 520px) !important;
  font-size: clamp(10px, 0.95vw, 13px) !important;
  line-height: 1.08 !important;
}

.mobile-cta a {
  flex: 1 1 0 !important;
  min-width: 0 !important;
}

@media (max-width: 900px) {
  .hero-actions .primary,
  .primary,
  .secondary,
  .small-cta,
  .section-cta,
  .wizard-nav button#nextStep,
  .wizard-nav button#nextStep:disabled,
  #generateAiPreview,
  #generateAiPreview:disabled,
  .lead-form button:not(:disabled),
  .step-actions button:not(:disabled),
  .wizard-nav button#nextStep:not(:disabled),
  .custom-style-link,
  #generateAiPreview:not(:disabled),
  #revealPreviewToggle,
  .reveal-preview button,
  #openCustomBuilder,
  #saveCustomDesign,
  .intro-send .send-button,
  .mobile-cta a,
  .services.section .service-card .service-cta {
    min-height: clamp(54px, 7vw, 58px) !important;
    padding-inline: clamp(26px, 4.4vw, 36px) !important;
    border-radius: clamp(14px, 2vw, 16px) !important;
    font-size: clamp(11px, 1.8vw, 14px) !important;
  }

  .custom-style-link,
  .estimate-alt {
    font-size: clamp(10px, 1.65vw, 12px) !important;
  }
}

@media (max-width: 520px) {
  .hero-actions .primary,
  .primary,
  .secondary,
  .small-cta,
  .section-cta,
  .wizard-nav button#nextStep,
  .wizard-nav button#nextStep:disabled,
  #generateAiPreview,
  #generateAiPreview:disabled,
  .lead-form button:not(:disabled),
  .step-actions button:not(:disabled),
  .wizard-nav button#nextStep:not(:disabled),
  .custom-style-link,
  #generateAiPreview:not(:disabled),
  #revealPreviewToggle,
  .reveal-preview button,
  #openCustomBuilder,
  #saveCustomDesign,
  .intro-send .send-button,
  .mobile-cta a,
  .services.section .service-card .service-cta {
    width: min(100%, calc(100vw - 32px)) !important;
    max-width: min(100%, 340px) !important;
    min-height: 54px !important;
    padding-inline: 24px !important;
    border-width: 1.5px !important;
    border-radius: 15px !important;
    font-size: 11px !important;
    letter-spacing: 0.055em !important;
  }

  .custom-style-link,
  .estimate-alt {
    font-size: 10px !important;
    line-height: 1.08 !important;
  }
}

/* Decorative intro preview label: smaller and non-interactive. */
.intro-send .send-button {
  width: min(46%, 220px) !important;
  max-width: 220px !important;
  min-height: 40px !important;
  padding-inline: 18px !important;
  border-radius: 14px !important;
  font-size: 10px !important;
  line-height: 1 !important;
  pointer-events: none !important;
  cursor: default !important;
  user-select: none !important;
}

@media (max-width: 700px) {
  .intro-send .send-button {
    width: min(52%, 190px) !important;
    min-height: 36px !important;
    padding-inline: 14px !important;
    border-radius: 12px !important;
    font-size: 9px !important;
  }
}

.brand {
  gap: clamp(14px, 1.6vw, 24px) !important;
  color: #fffaf2 !important;

  letter-spacing: 0.018em !important;
}

.brand img[src$="lucid-coating-header-mark.png"] {
  width: clamp(44px, 4.5vw, 58px) !important;
  height: clamp(44px, 4.5vw, 58px) !important;
  border-radius: 3px !important;
  object-fit: cover !important;
  background: #e8e2d8 !important;
  filter: none !important;
  box-shadow: none !important;
}

.brand span {
  color: #ffffff !important;

  font-size: clamp(21px, 2.1vw, 35px) !important;

  letter-spacing: 0.006em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

.footer .brand img[src$="lucid-coating-header-mark.png"] {
  width: 54px !important;
  height: 54px !important;
}

@media (max-width: 700px) {
  .brand {
    gap: 10px !important;
  }

  .brand img[src$="lucid-coating-header-mark.png"] {
    width: 40px !important;
    height: 40px !important;
  }

  .brand span {
    font-size: 16px !important;
  }
}

/* Reference-inspired first viewport refresh. CTA texture and geometry stay locked above. */
.header {
  height: clamp(82px, 6.6vw, 110px) !important;
  padding-inline: clamp(32px, 3.8vw, 78px) !important;
  gap: clamp(24px, 3vw, 58px) !important;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(175, 174, 170, 0.3), transparent 58%),
    linear-gradient(180deg, #41423f 0%, #2d2f2c 100%) !important;
  border-bottom: 1px solid rgba(231, 220, 205, 0.16) !important;
  box-shadow: none !important;
}

.brand {
  flex: 0 0 auto !important;
  gap: 0 !important;
}

.footer .brand:has(> .brand-logo-full) {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 6px;
  background: #f4f0e9;
}

.brand img[src$="lucid-coating-mark.png"],
.brand img[src$="chroma-coatings-mark.png"] {
  width: clamp(50px, 4.3vw, 74px) !important;
  height: clamp(50px, 4.3vw, 74px) !important;
  border-radius: 0 !important;
  object-fit: contain !important;
  background: transparent !important;
  filter: invert(1) grayscale(1) contrast(1.25) brightness(1.7) !important;
  mix-blend-mode: screen !important;
  opacity: 0.96 !important;
  box-shadow: none !important;
}

.brand img.brand-logo-full,
.brand img[src$="chroma-coatings-official-logo.png"],
.brand img[src$="chroma-coatings-official-logo-cropped.png"] {
  width: clamp(98px, 8.6vw, 124px) !important;
  height: auto !important;
  border-radius: 0 !important;
  object-fit: contain !important;
  object-position: left center !important;
  background: transparent !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  opacity: 1 !important;
  box-shadow: none !important;
}

.brand-name {
  display: block !important;
  color: #ffffff !important;

  font-size: clamp(23px, 2vw, 37px) !important;

  letter-spacing: 0.018em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.nav {
  flex: 1 1 auto !important;
  justify-content: center !important;
  gap: clamp(28px, 3.4vw, 72px) !important;
  color: #f4eee5 !important;
  font-size: clamp(15px, 1.05vw, 19px) !important;

  letter-spacing: 0 !important;
}

.small-phone {
  margin-left: auto !important;
  padding-left: clamp(22px, 2.2vw, 44px) !important;
  border-left: 1px solid rgba(231, 220, 205, 0.28) !important;
  color: #f7f3ed !important;
  font-size: clamp(15px, 1.05vw, 19px) !important;

}

.hero {
  min-height: calc(100vh - clamp(82px, 6.6vw, 110px)) !important;
  padding: clamp(72px, 7vw, 118px) var(--site-gutter) clamp(78px, 7vw, 120px) !important;
  place-items: center !important;
  background: #080807 !important;
}

.hero > img {
  object-position: center center !important;
}

.hero-shade {
  background:
    radial-gradient(ellipse at 50% 58%, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.18) 42%, rgba(0, 0, 0, 0.42) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.22) 0%, rgba(0, 0, 0, 0.08) 38%, rgba(0, 0, 0, 0.32) 100%) !important;
}

.hero-content {
  width: min(100%, 980px) !important;
  text-align: center !important;
  transform: translateY(clamp(-26px, -2.4vw, -8px)) !important;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.66) !important;
}

.hero-logo-watermark {
  width: clamp(250px, 24vw, 390px) !important;
  height: auto !important;
  margin: 0 auto clamp(22px, 2vw, 34px) !important;
  opacity: 0.65 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  pointer-events: none !important;
  user-select: none !important;
}

.hero-logo-watermark[src$="chroma-flat-cc-20260910.png"] {
  width: clamp(92px, 9.5vw, 150px) !important;
  margin-bottom: clamp(20px, 1.8vw, 30px) !important;
}

.hero-content .eyebrow {
  color: #8f765c !important;
  font-size: clamp(12px, 0.88vw, 16px) !important;

  letter-spacing: 0.18em !important;
}

.hero-content h1 {
  max-width: 940px !important;
  margin: 0 auto !important;
  color: #fffaf2 !important;
  font-size: clamp(58px, 6vw, 112px) !important;
  line-height: 0.9 !important;
  text-shadow: 0 5px 32px rgba(0, 0, 0, 0.72) !important;
}

.hero-content > p:not(.eyebrow):not(.subline) {
  margin: clamp(22px, 1.8vw, 30px) auto 0 !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: clamp(18px, 1.45vw, 27px) !important;

  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.72) !important;
}

.hero-actions {
  margin-top: clamp(30px, 2.5vw, 44px) !important;
}

.trust-bar {
  background: #f3efe7 !important;
  color: #413930 !important;
  border-top: 1px solid rgba(69, 55, 42, 0.14) !important;
  border-bottom: 1px solid rgba(69, 55, 42, 0.12) !important;
}

.trust-bar > div {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 0 !important;
  width: min(100%, 1720px) !important;
}

.trust-bar span {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 16px !important;
  justify-content: center !important;
  min-height: 86px !important;
  color: #3b342e !important;
  font-size: clamp(12px, 0.88vw, 16px) !important;

  letter-spacing: 0.08em !important;
}

.trust-bar span::before {
  display: inline-grid !important;
  place-items: center !important;
  flex: 0 0 auto !important;
  width: 42px !important;
  height: 42px !important;
  border: 1px solid rgba(83, 68, 54, 0.48) !important;
  border-radius: 50% !important;
  color: #7b6755 !important;
  font-size: 22px !important;

  line-height: 1 !important;
}

.trust-bar span:nth-child(1)::before {
  content: "⌖" !important;
}

.trust-bar span:nth-child(2)::before {
  content: "▱" !important;
}

.trust-bar span:nth-child(3)::before {
  content: "□" !important;
}

.trust-bar span:nth-child(4)::before {
  content: "◇" !important;
}

.trust-bar span + span {
  border-left: 1px solid rgba(83, 68, 54, 0.22) !important;
}

@media (max-width: 1100px) {
  .header {
    height: 76px !important;
    padding-inline: 22px !important;
  }

  .brand img[src$="lucid-coating-mark.png"],
  .brand img[src$="chroma-coatings-mark.png"] {
    width: 48px !important;
    height: 48px !important;
  }

  .brand img.brand-logo-full,
  .brand img[src$="chroma-coatings-official-logo.png"],
  .brand img[src$="chroma-coatings-official-logo-cropped.png"] {
    width: clamp(82px, 12vw, 104px) !important;
  }

  .brand-name {
    font-size: 22px !important;
  }

  .hero {
    min-height: calc(100vh - 76px) !important;
    padding-top: 68px !important;
    padding-bottom: 82px !important;
  }

  .trust-bar > div {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .trust-bar span:nth-child(3) {
    border-left: 0 !important;
  }
}

@media (max-width: 620px) {
  .header {
    height: 66px !important;
    padding-inline: 16px !important;
  }

  .brand img[src$="lucid-coating-mark.png"],
  .brand img[src$="chroma-coatings-mark.png"] {
    width: 38px !important;
    height: 38px !important;
  }

  .brand img.brand-logo-full,
  .brand img[src$="chroma-coatings-official-logo.png"],
  .brand img[src$="chroma-coatings-official-logo-cropped.png"] {
    width: clamp(72px, 23vw, 88px) !important;
  }

  .brand-name {
    font-size: 16px !important;
    letter-spacing: 0.012em !important;
  }

  .small-phone {
    display: none !important;
  }

  .hero {
    min-height: calc(100vh - 66px) !important;
    padding-top: 58px !important;
    padding-bottom: 78px !important;
  }

  .hero-content h1 {
    font-size: clamp(38px, 11vw, 54px) !important;
    line-height: 0.94 !important;
  }

  .hero-logo-watermark {
    width: clamp(190px, 58vw, 260px) !important;
    margin-bottom: 16px !important;
  }

  .hero-logo-watermark[src$="chroma-flat-cc-20260910.png"] {
    width: clamp(76px, 24vw, 112px) !important;
  }

  .trust-bar > div {
    grid-template-columns: 1fr !important;
  }

  .trust-bar span {
    min-height: 58px !important;
    border-left: 0 !important;
    border-top: 1px solid rgba(83, 68, 54, 0.18) !important;
  }
}

/* Service typography balance: keep card text elegant and consistent, not overly bold. */
.services.section .service-card-copy span {

  color: rgba(217, 174, 97, 0.88) !important;
}

.services.section .service-card h3 {

  color: #fff7ea !important;
}

.services.section .service-card p {
  color: rgba(245, 239, 228, 0.68) !important;

  letter-spacing: 0 !important;
}

/* Simplify trust and company sections: no icon clutter, no owner-photo essay. */
.trust-bar span {
  min-height: 68px !important;
  gap: 0 !important;
  font-size: clamp(11px, 0.78vw, 14px) !important;

  letter-spacing: 0.07em !important;
}

.trust-bar span::before {
  content: none !important;
  display: none !important;
}

.why-crew.section {
  padding-block: clamp(72px, 7vw, 112px) !important;
}

.why-crew.section::before,
.crew-photo-stack.is-hidden {
  display: none !important;
}

.why-crew-main {
  width: min(1180px, calc(100% - 48px)) !important;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1fr) !important;
  grid-template-areas:
    "photos copy"
    "photos proof" !important;
  column-gap: clamp(48px, 7vw, 116px) !important;
  align-items: center !important;
}

.why-crew-copy {
  grid-area: copy !important;
  padding-top: 0 !important;
}

.why-crew-copy h2 {
  max-width: 620px !important;
}

.why-crew-copy > p:not(.eyebrow) {
  max-width: 560px !important;

}

.crew-proof-list {
  grid-area: proof !important;
  margin-top: 0 !important;
}

.crew-proof-list h3 {

}

.crew-proof-list p {

}

@media (max-width: 900px) {
  .why-crew-main {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "photos"
      "copy"
      "proof" !important;
    row-gap: 28px !important;
  }
}

.about-photo-stack {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(22px, 3vw, 38px);
  width: min(1040px, 100%);
  margin: clamp(34px, 4vw, 58px) auto;
  align-items: stretch;
}

.about-photo-stack figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 161, 94, 0.18);
  border-radius: 18px;
  background: rgba(20, 18, 15, 0.78);
}

.about-photo-stack img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.about-photo-stack figure:first-child img {
  aspect-ratio: 16 / 10;
}

.about-photo-stack figure:last-child {
  display: grid;
  grid-template-rows: minmax(260px, 1fr) auto;
}

.about-photo-stack figure:last-child img {
  min-height: 260px;
  object-position: center 24%;
}

.about-photo-stack figcaption {
  padding: 22px;
  color: rgba(245, 239, 228, 0.72);
  text-align: left;
}

.about-photo-stack figcaption span {
  display: block;
  margin-bottom: 6px;
  color: rgba(217, 174, 97, 0.9);
  font-size: 11px;

  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about-photo-stack figcaption strong {
  display: block;
  margin-bottom: 8px;
  color: #fff7ea;
  font-size: 18px;
  line-height: 1.1;
}

.about-photo-stack figcaption p {
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 760px) {
  .about-photo-stack {
    grid-template-columns: 1fr;
  }
}

/* About Lucid editorial rebuild. */
.why-crew.section {
  padding-block: clamp(78px, 8vw, 124px) !important;
  background: #0f0e0c !important;
}

.why-crew.section::before {
  display: none !important;
}

.why-crew-main {
  width: min(1240px, calc(100% - 48px)) !important;
  display: grid !important;
  grid-template-columns: minmax(420px, 1.05fr) minmax(0, 0.95fr) !important;
  grid-template-areas:
    "photos copy"
    "photos proof" !important;
  column-gap: clamp(48px, 6vw, 92px) !important;
  row-gap: clamp(24px, 2.8vw, 34px) !important;
  align-items: start !important;
}

.crew-photo-stack {
  grid-area: photos !important;
  position: relative !important;
  min-width: 0 !important;
  padding: 0 0 clamp(52px, 6vw, 76px) !important;
}

.crew-photo {
  margin: 0 !important;
}

.team-photo {
  position: relative !important;
  overflow: hidden !important;
  border: 1px solid rgba(216, 161, 94, 0.22) !important;
  border-radius: 20px !important;
  background: #171512 !important;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34) !important;
}

.team-photo img {
  display: block !important;
  width: 100% !important;
  height: clamp(560px, 54vw, 720px) !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  object-position: center !important;
  border-radius: 0 !important;
}

.team-photo figcaption {
  display: none !important;
}

figure.owner-photo {
  --owner-photo-size: clamp(78px, 7.5vw, 104px);
  position: absolute !important;
  left: clamp(22px, 3vw, 38px) !important;
  bottom: 0 !important;
  z-index: 2 !important;
  width: auto !important;
  height: auto !important;
  display: grid !important;
  grid-template-columns: var(--owner-photo-size) max-content !important;
  align-items: center !important;
  gap: 16px !important;
  margin: 0 !important;
  padding: 12px 18px 12px 12px !important;
  border: 1px solid rgba(216, 161, 94, 0.24) !important;
  border-radius: 999px !important;
  background: rgba(15, 14, 12, 0.88) !important;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.35) !important;
  backdrop-filter: blur(10px);
}

figure.owner-photo img {
  display: block !important;
  width: var(--owner-photo-size) !important;
  height: var(--owner-photo-size) !important;
  min-width: var(--owner-photo-size) !important;
  aspect-ratio: 1 !important;
  object-fit: cover !important;
  object-position: center 32% !important;
  border: 1px solid rgba(245, 239, 228, 0.2) !important;
  border-radius: 50% !important;
}

figure.owner-photo figcaption {
  max-width: none !important;
  min-width: 0 !important;
  color: rgba(245, 239, 228, 0.7) !important;
  font-size: 12px !important;

  letter-spacing: 0.08em !important;
  line-height: 1.25 !important;
  text-align: left !important;
  text-transform: uppercase !important;
}

figure.owner-photo figcaption strong {
  display: block !important;
  margin: 0 0 4px !important;
  color: #fff7ea !important;

  font-size: 18px !important;

  letter-spacing: 0.02em !important;
  line-height: 1 !important;
  text-transform: none !important;
}

figure.owner-photo figcaption span {
  display: block !important;
  margin: 0 !important;
  color: rgba(217, 174, 97, 0.84) !important;
  font-size: 11px !important;

  letter-spacing: 0.12em !important;
}

.owner-photo figcaption p,
.owner-photo figcaption em {
  display: none !important;
}

.why-crew-copy {
  grid-area: copy !important;
  max-width: 620px !important;
  padding: 0 !important;
  align-self: start !important;
}

.why-crew-copy .eyebrow {
  margin-bottom: 18px !important;
}

.why-crew-copy h2 {
  max-width: 620px !important;
  margin: 0 0 24px !important;
  color: #fff7ea !important;
  font-size: clamp(46px, 5.4vw, 76px) !important;

  letter-spacing: 0 !important;
  line-height: 0.98 !important;
}

.why-crew-copy > p:not(.eyebrow) {
  max-width: 560px !important;
  margin: 0 !important;
  color: rgba(245, 239, 228, 0.72) !important;
  font-size: clamp(17px, 1.35vw, 20px) !important;

  letter-spacing: 0 !important;
  line-height: 1.58 !important;
}

.why-crew-copy > p + p {
  margin-top: 18px !important;
}

.why-crew-copy .owner-note {
  color: rgba(255, 247, 234, 0.86) !important;
  font-size: clamp(18px, 1.45vw, 21px) !important;
  line-height: 1.52 !important;
}

.crew-proof-list {
  grid-area: proof !important;
  max-width: 600px !important;
  margin: 0 !important;
  align-self: start !important;
  display: grid !important;
  gap: 0 !important;
}

.standard-label {
  margin: 0 0 12px !important;
  color: rgba(217, 174, 97, 0.9) !important;
  font-size: 12px !important;

  letter-spacing: 0.16em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

.crew-proof-list article {
  display: block !important;
  padding: 18px 0 !important;
  border: 0 !important;
  border-top: 1px solid rgba(216, 161, 94, 0.16) !important;
  background: transparent !important;
  box-shadow: none !important;
}

.crew-proof-list article:last-child {
  border-bottom: 1px solid rgba(216, 161, 94, 0.16) !important;
}

.crew-proof-list span {
  display: none !important;
}

.crew-proof-list h3 {
  margin: 0 0 6px !important;
  color: #fff7ea !important;
  font-size: clamp(20px, 1.75vw, 25px) !important;

  letter-spacing: 0 !important;
  line-height: 1.14 !important;
}

.crew-proof-list p {
  max-width: 520px !important;
  margin: 0 !important;
  color: rgba(245, 239, 228, 0.67) !important;
  font-size: clamp(15px, 1.05vw, 17px) !important;

  letter-spacing: 0 !important;
  line-height: 1.5 !important;
}

@media (max-width: 960px) {
  .why-crew-main {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "photos"
      "copy"
      "proof" !important;
    row-gap: 32px !important;
    align-items: start !important;
  }

  .team-photo img {
    height: clamp(340px, 62vw, 520px) !important;
  }

  .why-crew-copy,
  .crew-proof-list {
    max-width: 720px !important;
  }
}

@media (max-width: 640px) {
  .why-crew.section {
    padding-block: 64px !important;
  }

  .why-crew-main {
    width: min(100% - 36px, 1240px) !important;
    row-gap: 28px !important;
  }

  .crew-photo-stack {
    padding-bottom: 62px !important;
  }

  .team-photo {
    border-radius: 16px !important;
  }

  .team-photo img {
    height: 340px !important;
  }

  figure.owner-photo {
    --owner-photo-size: 72px;
    left: 14px !important;
    right: 14px !important;
    grid-template-columns: var(--owner-photo-size) minmax(0, 1fr) !important;
    gap: 14px !important;
    padding: 10px 14px 10px 10px !important;
  }

  .why-crew-copy h2 {
    font-size: clamp(38px, 12vw, 54px) !important;
  }
}

/* About Lucid personal story refinement. */
.why-crew.section {
  padding-block: clamp(76px, 7vw, 112px) !important;
}

.why-crew-main {
  width: min(1160px, calc(100% - 48px)) !important;
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 0.88fr) !important;
  grid-template-areas: "photos copy" !important;
  column-gap: clamp(46px, 6vw, 86px) !important;
  align-items: center !important;
}

.crew-photo-stack {
  padding: 0 !important;
}

.team-photo {
  border-radius: 18px !important;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28) !important;
}

.team-photo img {
  height: clamp(400px, 42vw, 540px) !important;
  object-fit: cover !important;
  object-position: center 46% !important;
}

figure.owner-photo {
  --owner-photo-size: clamp(62px, 5.5vw, 78px);
  position: static !important;
  width: min(520px, 100%) !important;
  display: grid !important;
  grid-template-columns: var(--owner-photo-size) minmax(0, 1fr) !important;
  gap: 16px !important;
  align-items: center !important;
  margin: 22px 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

figure.owner-photo img {
  width: var(--owner-photo-size) !important;
  height: var(--owner-photo-size) !important;
  min-width: var(--owner-photo-size) !important;
  border: 1px solid rgba(216, 161, 94, 0.32) !important;
  border-radius: 50% !important;
}

figure.owner-photo figcaption {
  display: block !important;
  color: rgba(245, 239, 228, 0.7) !important;
  font-size: 14px !important;

  letter-spacing: 0 !important;
  line-height: 1.45 !important;
  text-transform: none !important;
}

figure.owner-photo figcaption strong {
  margin: 0 0 2px !important;
  color: #fff7ea !important;
  font-size: 17px !important;

  letter-spacing: 0 !important;
}

figure.owner-photo figcaption span {
  margin: 0 0 8px !important;
  color: rgba(217, 174, 97, 0.82) !important;
  font-size: 12px !important;

  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
}

figure.owner-photo figcaption p {
  display: block !important;
  max-width: 34ch !important;
  margin: 0 !important;
  color: rgba(245, 239, 228, 0.78) !important;

  font-size: clamp(17px, 1.2vw, 19px) !important;
  font-style: normal !important;
  line-height: 1.34 !important;
}

.why-crew-copy {
  max-width: 560px !important;
  align-self: center !important;
}

.why-crew-copy .eyebrow {
  margin-bottom: 16px !important;
}

.why-crew-copy h2 {
  max-width: 520px !important;
  margin-bottom: 24px !important;
  font-size: clamp(48px, 5vw, 72px) !important;
  line-height: 0.96 !important;
}

.why-crew-copy > p:not(.eyebrow) {
  max-width: 520px !important;
  color: rgba(245, 239, 228, 0.74) !important;
  font-size: clamp(17px, 1.25vw, 19px) !important;
  line-height: 1.62 !important;
}

.why-crew-copy > p + p {
  margin-top: 18px !important;
}

.why-crew-copy > p:last-child {
  color: rgba(255, 247, 234, 0.9) !important;
}

.crew-proof-list {
  display: none !important;
}

@media (max-width: 960px) {
  .why-crew-main {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "photos"
      "copy" !important;
    row-gap: 34px !important;
    align-items: start !important;
  }

  .team-photo img {
    height: clamp(320px, 60vw, 500px) !important;
  }

  .why-crew-copy {
    max-width: 720px !important;
  }
}

@media (max-width: 640px) {
  .why-crew-main {
    width: min(100% - 36px, 1160px) !important;
  }

  .team-photo img {
    height: 320px !important;
  }

  figure.owner-photo {
    --owner-photo-size: 60px;
    margin-top: 18px !important;
  }

  .why-crew-copy h2 {
    font-size: clamp(42px, 13vw, 56px) !important;
  }
}

/* About Lucid trust-focused refinement. */
.why-crew-main {
  width: min(1180px, calc(100% - 48px)) !important;
  grid-template-columns: minmax(380px, 0.92fr) minmax(0, 0.92fr) !important;
  column-gap: clamp(48px, 6vw, 92px) !important;
}

.team-photo img {
  height: clamp(410px, 40vw, 530px) !important;
  object-position: center 46% !important;
}

figure.owner-photo {
  --owner-photo-size: clamp(86px, 7vw, 108px);
  width: min(560px, 100%) !important;
  gap: 18px !important;
  margin-top: 24px !important;
}

figure.owner-photo figcaption strong {
  font-size: 19px !important;
}

figure.owner-photo figcaption span {
  margin-bottom: 10px !important;
}

figure.owner-photo figcaption p {
  max-width: 36ch !important;
  font-size: clamp(18px, 1.35vw, 21px) !important;
  line-height: 1.32 !important;
}

.why-crew-copy {
  max-width: 580px !important;
}

.why-crew-copy h2 {
  max-width: 560px !important;
  font-size: clamp(46px, 4.8vw, 70px) !important;
  line-height: 0.98 !important;
}

.why-crew-copy > p:not(.eyebrow) {
  max-width: 550px !important;
  font-size: clamp(17px, 1.22vw, 19px) !important;
}

@media (max-width: 960px) {
  .why-crew-main {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "photos"
      "copy" !important;
    row-gap: 34px !important;
  }

  figure.owner-photo {
    --owner-photo-size: 92px;
  }
}

@media (max-width: 640px) {
  .team-photo img {
    height: 320px !important;
  }

  figure.owner-photo {
    --owner-photo-size: 78px;
    gap: 14px !important;
  }

  figure.owner-photo figcaption p {
    font-size: 17px !important;
  }
}

/* About Lucid modern home-service redesign. */
.why-crew.section {
  padding-block: clamp(72px, 7vw, 108px) !important;
  background: #0f0e0c !important;
}

.why-crew-main {
  width: min(1240px, calc(100% - 48px)) !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1.08fr) minmax(440px, 1fr) !important;
  grid-template-areas: "photos copy" !important;
  gap: clamp(28px, 3.4vw, 44px) !important;
  align-items: stretch !important;
}

.crew-photo-stack {
  grid-area: photos !important;
  display: flex !important;
  padding: 0 !important;
  min-width: 0 !important;
}

.team-photo {
  width: 100% !important;
  margin: 0 !important;
  overflow: hidden !important;
  border: 1px solid rgba(216, 161, 94, 0.16) !important;
  border-radius: 18px !important;
  background: #171512 !important;
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.24) !important;
}

.team-photo img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-height: clamp(430px, 37vw, 560px) !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  object-position: center 46% !important;
  border-radius: 0 !important;
}

.team-photo figcaption {
  display: none !important;
}

.why-crew-copy {
  grid-area: copy !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: clamp(32px, 3.2vw, 42px) !important;
  border: 0 !important;
  border-radius: 18px !important;
  background: rgba(28, 25, 21, 0.82) !important;
  box-shadow: inset 0 1px 0 rgba(255, 247, 234, 0.035) !important;
}

.why-crew-copy .eyebrow {
  margin: 0 0 15px !important;
  color: rgba(217, 174, 97, 0.9) !important;
}

.why-crew-copy h2 {
  max-width: 570px !important;
  margin: 0 0 18px !important;
  color: #fff7ea !important;
  font-size: clamp(38px, 3.25vw, 54px) !important;

  letter-spacing: 0 !important;
  line-height: 1.02 !important;
}

.why-crew-copy > p:not(.eyebrow) {
  max-width: 560px !important;
  margin: 0 !important;
  color: rgba(245, 239, 228, 0.74) !important;
  font-size: clamp(16px, 1.1vw, 18px) !important;

  letter-spacing: 0 !important;
  line-height: 1.58 !important;
}

.why-crew-copy > p + p {
  margin-top: 14px !important;
}

.crew-proof-list {
  display: grid !important;
  gap: 0 !important;
  max-width: 590px !important;
  margin: clamp(20px, 2.4vw, 28px) 0 0 !important;
}

.standard-label {
  display: none !important;
}

.crew-proof-list article {
  display: grid !important;
  grid-template-columns: 40px minmax(0, 1fr) !important;
  gap: 16px !important;
  padding: 14px 0 !important;
  border: 0 !important;
  border-top: 1px solid rgba(216, 161, 94, 0.13) !important;
  background: transparent !important;
  box-shadow: none !important;
}

.crew-proof-list article:last-child {
  border-bottom: 1px solid rgba(216, 161, 94, 0.13) !important;
}

.crew-proof-list span {
  display: block !important;
  color: rgba(217, 174, 97, 0.86) !important;
  font-size: 12px !important;

  letter-spacing: 0.12em !important;
  line-height: 1.35 !important;
}

.crew-proof-list h3 {
  margin: 0 0 5px !important;
  color: #fff7ea !important;

  font-size: clamp(16px, 1.1vw, 18px) !important;

  letter-spacing: 0 !important;
  line-height: 1.18 !important;
}

.crew-proof-list p {
  max-width: 500px !important;
  margin: 0 !important;
  color: rgba(245, 239, 228, 0.62) !important;
  font-size: clamp(14px, 0.95vw, 16px) !important;

  line-height: 1.45 !important;
}

figure.owner-photo {
  --owner-photo-size: clamp(92px, 7.2vw, 110px);
  position: static !important;
  width: 100% !important;
  display: grid !important;
  grid-template-columns: var(--owner-photo-size) minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 18px !important;
  margin: clamp(20px, 2.4vw, 28px) 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

figure.owner-photo img {
  display: block !important;
  width: var(--owner-photo-size) !important;
  height: var(--owner-photo-size) !important;
  min-width: var(--owner-photo-size) !important;
  aspect-ratio: 1 !important;
  object-fit: cover !important;
  object-position: center 32% !important;
  border: 1px solid rgba(216, 161, 94, 0.26) !important;
  border-radius: 50% !important;
}

figure.owner-photo figcaption {
  display: block !important;
  max-width: 390px !important;
  color: rgba(245, 239, 228, 0.66) !important;
  font-size: 14px !important;

  letter-spacing: 0 !important;
  line-height: 1.42 !important;
  text-align: left !important;
  text-transform: none !important;
}

figure.owner-photo figcaption strong {
  display: block !important;
  margin: 0 0 3px !important;
  color: #fff7ea !important;

  font-size: 18px !important;

  letter-spacing: 0 !important;
  line-height: 1 !important;
}

figure.owner-photo figcaption span {
  display: block !important;
  margin: 0 0 9px !important;
  color: rgba(217, 174, 97, 0.78) !important;
  font-size: 12px !important;

  letter-spacing: 0.045em !important;
  text-transform: uppercase !important;
}

figure.owner-photo figcaption p {
  display: block !important;
  max-width: 34ch !important;
  margin: 0 !important;
  color: rgba(245, 239, 228, 0.76) !important;

  font-size: clamp(14px, 0.98vw, 16px) !important;
  font-style: normal !important;
  line-height: 1.45 !important;
}

@media (max-width: 980px) {
  .why-crew-main {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "photos"
      "copy" !important;
  }

  .team-photo img {
    min-height: 420px !important;
  }
}

@media (max-width: 640px) {
  .why-crew.section {
    padding-block: 58px !important;
  }

  .why-crew-main {
    width: min(100% - 36px, 1200px) !important;
    gap: 20px !important;
  }

  .team-photo img {
    min-height: 310px !important;
  }

  .why-crew-copy {
    padding: 28px 22px !important;
    border-radius: 16px !important;
  }

  .why-crew-copy h2 {
    font-size: clamp(32px, 10vw, 42px) !important;
    line-height: 1.03 !important;
  }

  .crew-proof-list article {
    grid-template-columns: 34px minmax(0, 1fr) !important;
    gap: 12px !important;
  }

  figure.owner-photo {
    --owner-photo-size: 86px;
  }
}

/* About photo framing: show the full horizontal install image. */
.crew-photo-stack {
  align-self: center !important;
}

.team-photo {
  aspect-ratio: 1535 / 1025 !important;
}

.team-photo img {
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 1535 / 1025 !important;
  object-fit: contain !important;
  object-position: center center !important;
}

@media (max-width: 980px) {
  .team-photo img {
    min-height: 0 !important;
  }
}

@media (max-width: 640px) {
  .team-photo img {
    min-height: 0 !important;
  }
}

/* About Lucid proportion fix: keep the current photo framing, compact the content. */
.why-crew-main {
  width: min(1240px, calc(100% - 48px)) !important;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.94fr) !important;
  gap: clamp(30px, 3.8vw, 52px) !important;
  align-items: center !important;
}

.why-crew-copy {
  align-self: center !important;
  justify-content: center !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.why-crew-copy .eyebrow {
  margin-bottom: 9px !important;
}

.why-crew-copy h2 {
  max-width: 500px !important;
  margin-bottom: 12px !important;
  font-size: clamp(34px, 3vw, 44px) !important;
  line-height: 1.03 !important;
}

.why-crew-copy > p:not(.eyebrow) {
  max-width: 510px !important;
  font-size: clamp(14px, 0.94vw, 16px) !important;
  line-height: 1.42 !important;
}

.crew-proof-list {
  max-width: 520px !important;
  margin-top: 14px !important;
}

.crew-proof-list article {
  grid-template-columns: 34px minmax(0, 1fr) !important;
  gap: 14px !important;
  padding: 7px 0 !important;
}

.crew-proof-list span {
  font-size: 11px !important;
  line-height: 1.25 !important;
}

.crew-proof-list h3 {
  margin-bottom: 2px !important;
  font-size: clamp(14px, 0.96vw, 16px) !important;
  line-height: 1.15 !important;
}

.crew-proof-list p {
  max-width: 440px !important;
  font-size: clamp(12px, 0.82vw, 14px) !important;
  line-height: 1.3 !important;
}

figure.owner-photo {
  --owner-photo-size: clamp(92px, 7vw, 105px);
  max-width: 520px !important;
  margin-top: 14px !important;
  gap: 16px !important;
}

figure.owner-photo figcaption span {
  margin-bottom: 4px !important;
}

figure.owner-photo figcaption p {
  max-width: 32ch !important;
  font-size: clamp(12px, 0.86vw, 14px) !important;
  line-height: 1.32 !important;
}

@media (max-width: 980px) {
  .why-crew-main {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "photos"
      "copy" !important;
    gap: 26px !important;
  }

  .why-crew-copy {
    width: 100% !important;
  }
}

@media (max-width: 640px) {
  .why-crew-main {
    width: min(100% - 36px, 1240px) !important;
  }

  .why-crew-copy h2 {
    font-size: clamp(31px, 9.5vw, 40px) !important;
  }

  .crew-proof-list article {
    grid-template-columns: 30px minmax(0, 1fr) !important;
    gap: 11px !important;
  }

  figure.owner-photo {
    --owner-photo-size: 88px;
  }
}

/* Transformations: equal west-to-east project row. */
.before-after .project-grid {
  width: min(1240px, 100%) !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(18px, 2vw, 28px) !important;
  align-items: start !important;
  margin-top: 34px !important;
}

.before-after .project-card,
.before-after .project-card-featured,
.before-after .project-card:not(.project-card-featured) {
  grid-column: auto !important;
  min-width: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.before-after .project-card .reveal-frame,
.before-after .project-card-featured .reveal-frame,
.before-after .project-card:not(.project-card-featured) .reveal-frame {
  width: 100% !important;
  aspect-ratio: 16 / 10 !important;
  height: auto !important;
  border-radius: 14px !important;
  background: #0c0b0a !important;
  overflow: hidden !important;
}

.before-after .project-card .reveal-frame img,
.before-after .project-card-featured .reveal-frame img,
.before-after .project-card:not(.project-card-featured) .reveal-frame img {
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  object-fit: cover !important;
  object-position: center center !important;
}

.before-after .project-card .reveal-before,
.before-after .project-card .reveal-after,
.before-after .project-card-featured .reveal-before,
.before-after .project-card-featured .reveal-after,
.before-after .project-card:not(.project-card-featured) .reveal-before,
.before-after .project-card:not(.project-card-featured) .reveal-after {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
}

.before-after .project-card .project-caption,
.before-after .project-card-featured .project-caption,
.before-after .project-card:not(.project-card-featured) .project-caption {
  max-width: none !important;
  margin-top: 14px !important;
  padding-top: 0 !important;
}

.before-after .project-caption-top {
  align-items: flex-start !important;
  gap: 12px !important;
}

.before-after .project-card h3 {
  margin: 9px 0 6px !important;
  font-size: clamp(22px, 1.95vw, 28px) !important;
  line-height: 1.05 !important;
}

.before-after .project-card p {
  max-width: 36ch !important;
  font-size: 14px !important;
  line-height: 1.45 !important;
}

.before-after .project-details {
  display: none !important;
}

@media (max-width: 900px) {
  .before-after .project-grid {
    grid-template-columns: 1fr !important;
    width: min(680px, 100%) !important;
  }
}

/* About Lucid: premium brand statement layout. */
.why-crew-main {
  width: min(1240px, calc(100% - 48px)) !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr) !important;
  grid-template-areas: "photos copy" !important;
  gap: clamp(34px, 4.5vw, 64px) !important;
  align-items: center !important;
}

.why-crew-copy {
  display: block !important;
  align-self: center !important;
  width: 100% !important;
  max-width: 560px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.why-crew-copy .eyebrow {
  margin: 0 0 18px !important;
  color: var(--primary) !important;
}

.why-crew-copy h2 {
  display: grid !important;
  gap: 4px !important;
  max-width: 560px !important;
  margin: 0 !important;
  color: var(--foreground) !important;

  font-size: clamp(50px, 5.1vw, 72px) !important;

  letter-spacing: 0 !important;
  line-height: 0.9 !important;
  text-transform: uppercase !important;
}

.why-crew-copy h2 span {
  display: block !important;
}

.why-crew-copy h2 span:last-child {
  color: var(--primary) !important;
}

.why-crew-copy > p:not(.eyebrow) {
  display: none !important;
}

.crew-proof-list {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 0 !important;
  max-width: 560px !important;
  margin: clamp(34px, 4vw, 48px) 0 0 !important;
}

.crew-proof-list article {
  display: block !important;
  min-width: 0 !important;
  padding: 0 clamp(16px, 2vw, 24px) !important;
  border: 0 !important;
  border-right: 1px solid rgba(216, 161, 94, 0.16) !important;
  background: transparent !important;
  box-shadow: none !important;
}

.crew-proof-list article:first-child {
  padding-left: 0 !important;
}

.crew-proof-list article:last-child {
  padding-right: 0 !important;
  border-right: 0 !important;
  border-bottom: 0 !important;
}

.crew-proof-list span {
  display: none !important;
}

.crew-proof-list h3 {
  margin: 0 0 10px !important;
  color: var(--foreground) !important;

  font-size: clamp(13px, 1vw, 15px) !important;

  letter-spacing: 0.12em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

.crew-proof-list p {
  max-width: 15ch !important;
  margin: 0 !important;
  color: rgba(245, 239, 228, 0.66) !important;
  font-size: clamp(13px, 0.95vw, 15px) !important;

  letter-spacing: 0 !important;
  line-height: 1.35 !important;
}

figure.owner-photo {
  --owner-photo-size: clamp(86px, 7.4vw, 104px);
  display: grid !important;
  grid-template-columns: var(--owner-photo-size) minmax(0, 1fr) !important;
  gap: 18px !important;
  align-items: center !important;
  width: 100% !important;
  max-width: 500px !important;
  margin: clamp(34px, 4vw, 48px) 0 0 !important;
  padding: clamp(16px, 2vw, 20px) !important;
  border: 1px solid rgba(216, 161, 94, 0.14) !important;
  border-radius: 18px !important;
  background: rgba(31, 28, 24, 0.68) !important;
  box-shadow: inset 0 1px 0 rgba(255, 247, 234, 0.035) !important;
  backdrop-filter: none !important;
}

figure.owner-photo img {
  width: var(--owner-photo-size) !important;
  height: var(--owner-photo-size) !important;
  min-width: var(--owner-photo-size) !important;
  object-fit: cover !important;
  object-position: center 32% !important;
  border: 1px solid rgba(216, 161, 94, 0.24) !important;
  border-radius: 50% !important;
}

figure.owner-photo figcaption {
  display: block !important;
  max-width: none !important;
  color: rgba(245, 239, 228, 0.68) !important;

  text-align: left !important;
  text-transform: none !important;
}

figure.owner-photo figcaption strong {
  display: block !important;
  margin: 0 0 5px !important;
  color: var(--foreground) !important;

  font-size: 16px !important;

  letter-spacing: 0.12em !important;
  line-height: 1 !important;
}

figure.owner-photo figcaption span {
  display: block !important;
  margin: 0 0 10px !important;
  color: var(--primary) !important;
  font-size: 11px !important;

  letter-spacing: 0.1em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

figure.owner-photo figcaption p {
  display: block !important;
  max-width: 24ch !important;
  margin: 0 !important;
  color: rgba(245, 239, 228, 0.82) !important;

  font-size: clamp(14px, 1vw, 16px) !important;
  font-style: normal !important;

  line-height: 1.35 !important;
}

@media (max-width: 980px) {
  .why-crew-main {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "photos"
      "copy" !important;
    gap: 34px !important;
  }

  .why-crew-copy {
    max-width: none !important;
  }
}

@media (max-width: 640px) {
  .why-crew-main {
    width: min(100% - 36px, 1240px) !important;
  }

  .why-crew-copy h2 {
    font-size: clamp(40px, 13vw, 56px) !important;
  }

  .crew-proof-list {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    margin-top: 30px !important;
  }

  .crew-proof-list article,
  .crew-proof-list article:first-child,
  .crew-proof-list article:last-child {
    padding: 16px 0 !important;
    border-right: 0 !important;
    border-top: 1px solid rgba(216, 161, 94, 0.14) !important;
  }

  .crew-proof-list article:last-child {
    border-bottom: 1px solid rgba(216, 161, 94, 0.14) !important;
  }

  .crew-proof-list p {
    max-width: 28ch !important;
  }

  figure.owner-photo {
    --owner-photo-size: 88px;
    margin-top: 30px !important;
  }
}

/* CTA shape lock: match the reference rounded rectangle without changing size or design. */
.hero-actions .primary,
.primary,
.secondary,
.small-cta,
.section-cta,
.wizard-nav button#nextStep,
.wizard-nav button#nextStep:disabled,
#generateAiPreview,
#generateAiPreview:disabled,
.lead-form button:not(:disabled),
.step-actions button:not(:disabled),
.wizard-nav button#nextStep:not(:disabled),
.custom-style-link,
#generateAiPreview:not(:disabled),
#revealPreviewToggle,
.reveal-preview button,
#openCustomBuilder,
#saveCustomDesign,
.intro-send .send-button,
.mobile-cta a,
.services.section .service-card .service-cta {
  border-radius: clamp(20px, 1.9vw, 24px) !important;
}

.header .small-cta,
.site-header .primary,
.nav .primary,
.navbar .primary {
  border-radius: clamp(15px, 1.35vw, 18px) !important;
}

.intro-send .send-button {
  border-radius: 14px !important;
}

@media (max-width: 900px) {
  .hero-actions .primary,
  .primary,
  .secondary,
  .small-cta,
  .section-cta,
  .wizard-nav button#nextStep,
  .wizard-nav button#nextStep:disabled,
  #generateAiPreview,
  #generateAiPreview:disabled,
  .lead-form button:not(:disabled),
  .step-actions button:not(:disabled),
  .wizard-nav button#nextStep:not(:disabled),
  .custom-style-link,
  #generateAiPreview:not(:disabled),
  #revealPreviewToggle,
  .reveal-preview button,
  #openCustomBuilder,
  #saveCustomDesign,
  .mobile-cta a,
  .services.section .service-card .service-cta {
    border-radius: clamp(17px, 3vw, 20px) !important;
  }
}

/* Hero CTA geometry only: same size/design, tighter reference-style corners. */
.hero-actions {
  border-radius: 18px !important;
}

.hero-actions .primary {
  --cta-radius: 18px !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  clip-path: none !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
  background-clip: padding-box, border-box !important;
}

.hero-actions .primary::before,
.hero-actions .primary::after {
  border-radius: 18px !important;
  clip-path: none !important;
  -webkit-mask-image: none !important;
  mask-image: none !important;
}

@media (max-width: 900px) {
  .hero-actions {
    border-radius: 16px !important;
  }

  .hero-actions .primary {
    --cta-radius: 16px !important;
    border-radius: 16px !important;
  }

  .hero-actions .primary::before,
  .hero-actions .primary::after {
    border-radius: 16px !important;
  }
}

/* A compact home navigation placed directly over the garage photograph. */
.header.home-header {
  position: absolute;
  inset: 0 0 auto;
  isolation: isolate;
  height: auto !important;
  min-height: 108px;
  padding: 22px clamp(24px, 4vw, 78px) !important;
  gap: 24px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none;
}

.home-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(22px, 3vw, 44px);
  margin-left: auto;
}

.home-header .nav {
  display: flex !important;
  flex: 0 0 auto !important;
  justify-content: flex-end !important;
  gap: clamp(20px, 2.5vw, 36px) !important;
  font-size: 15px !important;
}

.home-header .nav a,
.home-header .home-estimate-link {
  padding-block: 12px;
  color: #f7f3ed;
  white-space: nowrap;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.home-header .home-estimate-link {
  font-size: 15px;

}

.home-header + main > .hero {
  min-height: 100svh !important;
  padding-top: clamp(152px, 18vh, 200px) !important;
  padding-bottom: clamp(70px, 9vh, 112px) !important;
}

@media (max-width: 620px) {
  .header.home-header {
    min-height: 110px;
    padding: 18px 20px !important;
    align-items: flex-start;
    gap: 16px !important;
  }

  .home-header-actions {
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
  }

  .home-header .nav {
    gap: 18px !important;
    font-size: 14px !important;
  }

  .home-header .nav a {
    padding-block: 6px;
  }

  .home-header .home-estimate-link {
    padding-block: 6px;
    font-size: 14px;
  }
}

/* A clear Utah service message above the floor designer action. */
#home .hero-content .eyebrow {
  margin: 0 auto 22px;
  padding: 0;
  color: #eee5d8 !important;
  font-size: 14px !important;

  letter-spacing: 0.14em !important;
  line-height: 1.4;
  background: none;
  border: 0;
}

@media (max-width: 620px) {
  #home .hero-content .eyebrow { margin-bottom: 18px; }
}

/* Shared typography: one family and three weights throughout the UI. */
:root {
  --font-sans: "Manrope", Arial, sans-serif;
  --weight-body: 400;
  --weight-heading: 500;
  --weight-action: 600;
}
body {
  font-family: var(--font-sans);
  font-weight: var(--weight-body);
}
button, input, select, textarea, optgroup, option {
  font-family: inherit;
  font-weight: var(--weight-body);
}
h1, h2, h3, h4, h5, h6,
nav, .nav, .home-estimate-link, .small-phone {
  font-weight: var(--weight-heading);
}
button, [role="button"], input[type="submit"], input[type="button"],
.primary, .secondary, .small-cta, .section-cta, .service-cta,
.custom-style-link, .mobile-cta a,
.eyebrow, label, legend, strong, b {
  font-weight: var(--weight-action);
}

/* A compact hero lets the floor photograph lead. */
.home-header .brand img.brand-logo-full {
  width: clamp(140px, 11.2vw, 164px) !important;
  filter: none !important;
}
.home-header > .brand { transform: translateX(-12px); }
@media (max-width: 620px) {
  .home-header .brand img.brand-logo-full { width: 104px !important; }
}
@media (max-width: 360px) {
  .header.home-header { padding-inline: 16px !important; gap: 12px !important; }
  .home-header .brand img.brand-logo-full { width: 100px !important; }
  .home-header .nav { gap: 12px !important; font-size: 13px !important; }
}

#home .hero-content h1 {
  font-size: 56px !important;
  line-height: 1.15 !important;
  letter-spacing: normal !important;
  max-width: 100% !important;
}
#home .hero-content .eyebrow {
  font-size: 13px !important;
  margin-bottom: 18px;
}
#home .hero-actions { margin-top: 28px !important; }
#home .hero-actions .primary {
  font-size: 15px !important;
  letter-spacing: 0.04em !important;
  line-height: 1.3 !important;
}
@media (max-width: 620px) {
  #home .hero-content h1 { font-size: clamp(32px, 8.7vw, 36px) !important; }
  #home .hero-actions { margin-top: 24px !important; }
  #home .hero-actions .primary { font-size: 14px !important; }
}
/* Homepage: quiet controls and a centered, compact message. */

/* Homepage hero and floating navigation. */
#home .hero-shade::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 360px 210px at 110px 65px,
    rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.55) 30%, transparent 100%);
  pointer-events: none;
}
@media (max-width: 620px) {
  #home .hero-shade::before {
    background: radial-gradient(ellipse 200px 145px at 50px 45px,
      rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.55) 30%, transparent 100%);
  }
}
.home-header + main > #home {
  padding-block: 140px !important;
}
#home .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center !important;
  transform: translateY(-5svh) !important;
}
#home .hero-content .eyebrow {
  margin: 0 0 16px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 100%;
  font-size: 12px !important;
  font-weight: 500;
  letter-spacing: 0.12em !important;
  line-height: 1.4;
}
#home .hero-content .eyebrow::before,
#home .hero-content .eyebrow::after {
  content: "";
  flex: 0 0 clamp(20px, 4vw, 52px);
  height: 1px;
  background: rgba(238, 231, 219, 0.55);
}
#home .hero-content h1 {
  margin: 0 !important;
  font-size: 60px !important;
  font-weight: 600;
  letter-spacing: -0.025em !important;
  line-height: 1.1 !important;
}
#home .hero-content > .hero-finishes {
  margin: 18px 0 0 !important;
  font-size: 13px !important;
  font-weight: 500;
  line-height: 1.4 !important;
  letter-spacing: 0.16em;
  color: #eee5d8 !important;
}
#home .hero-actions {
  margin: 28px 0 0 !important;
  padding: 0 !important;
  width: auto !important;
}
#home .hero-actions .primary {
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 20px !important;
  width: 250px !important;
  max-width: 100% !important;
  height: 56px !important;
  min-height: 56px !important;
  padding: 0 22px !important;
  border: 1px solid rgba(238, 231, 219, 0.65) !important;
  border-radius: 7px !important;
  background:
    linear-gradient(180deg, rgba(238, 231, 219, 0.08), rgba(12, 14, 12, 0.3)),
    url("assets/cta-reference-epoxy.png") center / cover no-repeat,
    #20221f !important;
  background-blend-mode: normal !important;
  color: #eee7db !important;
  font-size: 14px !important;
  font-weight: 600;
  line-height: 1.2 !important;
  letter-spacing: 0.025em !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35) !important;
  box-shadow: inset 0 1px 0 rgba(238, 231, 219, 0.12) !important;
  filter: none !important;
  transform: none !important;
  transition: border-color 160ms ease, filter 160ms ease;
}
#home .hero-actions .primary::before,
#home .hero-actions .primary::after { content: none !important; display: none !important; }
#home .hero-actions .primary span { font-size: 20px; line-height: 1; }
#home .hero-actions .primary:hover {
  border-color: #eee7db !important;
  filter: brightness(1.12) !important;
}
.home-header-actions {
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
.home-header .nav { gap: 24px !important; }
.home-header .nav a { text-shadow: none; }
.home-call, .home-menu-toggle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid #eee7db;
  border-radius: 7px;
  background: transparent;
  color: #eee7db;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 160ms ease;
}
.home-call svg, .text-us svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.home-call:hover, .home-menu-toggle:hover { background: rgba(238,231,219,0.1); }
.home-menu-toggle { display: none; border-color: transparent; padding-inline: 8px; }
.home-header a:focus-visible, .home-menu-toggle:focus-visible,
#home .hero-actions .primary:focus-visible, .text-us:focus-visible {
  outline: 2px solid #fff8ed;
  outline-offset: 5px;
}
.text-us {
  position: fixed;
  z-index: 40;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 110px;
  height: 44px;
  border: 1px solid rgba(238,231,219,0.3);
  border-radius: 24px;
  background: #20221f;
  color: #eee7db;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 160ms ease;
}
.text-us:hover { background: #333630; }
.text-us[hidden], body:has(dialog[open]) .text-us { display: none; }
@media (max-width: 1000px) {
  .home-menu-toggle { display: inline-flex; }
  .home-header-actions { gap: 12px; }
  .home-header .nav {
    display: none !important;
    position: absolute;
    top: calc(100% - 8px);
    right: max(20px, env(safe-area-inset-right));
    min-width: 220px;
    padding: 12px;
    border-radius: 7px;
    background: #191b18;
    flex-direction: column;
    gap: 0 !important;
  }
  .home-header .nav.is-open { display: flex !important; }
  .home-header .nav a { padding: 12px 14px; min-height: 44px; }
}
@media (max-width: 700px) {
  .text-us { bottom: calc(var(--mobile-action-clearance, 96px) + 16px); }
  .mobile-cta { bottom: max(12px, env(safe-area-inset-bottom)); }
}
@media (max-width: 620px) {
  .header.home-header {
    align-items: center;
    padding-top: max(18px, env(safe-area-inset-top)) !important;
    gap: 12px !important;
  }
  .home-header-actions { gap: 6px; }
  .home-call { font-size: 12px; padding-inline: 10px; gap: 7px; }
  .home-menu-toggle { font-size: 13px; }
  .home-header + main > #home { padding-block: 120px !important; }
  #home .hero-content { transform: translateY(-4svh) !important; }
  #home .hero-content h1 { font-size: clamp(32px, 8.7vw, 38px) !important; }
  #home .hero-content .eyebrow { font-size: 11px !important; }
  .home-header > .brand { transform: translateX(-6px); }
  #home .hero-content .eyebrow { gap: 8px; }
  #home .hero-content .eyebrow::before,
  #home .hero-content .eyebrow::after { flex-basis: 16px; }
  #home .hero-content > .hero-finishes { font-size: 12px !important; }
}

/* A subdued transition from the garage photograph to the page. */
.trust-bar {
  background: #1d1e1b !important;
  color: #c4bfb4 !important;
  border-top: 1px solid rgba(218, 209, 194, 0.1) !important;
  border-bottom: 1px solid rgba(218, 209, 194, 0.08) !important;
}
.trust-bar span {
  color: #c4bfb4 !important;
  min-height: 72px !important;
  font-size: 13px !important;
  letter-spacing: 0.025em !important;
  border-color: rgba(218, 209, 194, 0.1) !important;
}
.trust-bar span::before {
  color: #aaa08e !important;
  border-color: rgba(218, 209, 194, 0.2) !important;
  background: transparent !important;
}
@media (max-width: 620px) {
  .trust-bar span { min-height: 58px !important; }
}

/* Full-width service area with live site typography over a text-free photograph. */
#service-area.service-area {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  min-height: 0;
  margin: 0;
  padding: 0 !important;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  text-align: center;
}
#service-area .service-area-copy {
  display: grid;
  place-items: center;
  width: 100%;
  max-width: none;
  height: 520px;
  padding: 32px 24px;
  background:
    linear-gradient(180deg, rgba(7, 9, 9, 0.18), rgba(7, 9, 9, 0.42) 52%, rgba(7, 9, 9, 0.24)),
    url("assets/optimized/service-area-garage-textless.jpg") center center / cover no-repeat;
}
#service-area .eyebrow {
  margin: 0 !important;
  padding: 28px 24px;
  color: #cd814d !important;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
#service-area h2 {
  margin: 0 !important;
  max-width: none;
  color: #fff !important;
  font-size: clamp(42px, 4.2vw, 60px) !important;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
@media (max-width: 620px) {
  #service-area .service-area-copy {
    height: clamp(360px, 60svh, 420px);
    min-height: 360px;
  }
  #service-area h2 { font-size: clamp(32px, 8.7vw, 38px) !important; }
}

/* Compact calls to action below the hero, with crisp but softened corners. */
main > section:not(#home) :is(.primary, .secondary, .service-cta, #nextStep,
  #generateAiPreview, #revealPreviewToggle, #openCustomBuilder, #saveCustomDesign,
  .step-actions button, .reveal-preview button) {
  width: fit-content !important;
  max-width: 100% !important;
  min-width: 0 !important;
  height: auto !important;
  min-height: 44px !important;
  padding: 10px 24px !important;
  border-radius: 5px !important;
  font-size: 12px !important;
  line-height: 1.3 !important;
  letter-spacing: 0.025em !important;
}
#estimateForm > .primary {
  justify-self: center;
  align-self: center;
}

/* Step 3 is an illustration: edge-to-edge garage photo and a small static label. */
.intro-visual.intro-send {
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
}
.intro-send .send-graphic {
  border: 0;
  border-radius: inherit;
  box-shadow: none;
}
.intro-send .send-button {
  width: 116px !important;
  max-width: calc(100% - 24px) !important;
  min-height: 30px !important;
  height: 30px !important;
  padding: 6px 12px !important;
  border-radius: 4px !important;
  font-size: 9px !important;
  line-height: 1.2 !important;
}
@media (max-width: 620px) {
  main > #styles:not(#home) .visualize-style {
    padding-inline: 20px !important;
  }
  .mobile-cta a {
    min-height: 44px !important;
    padding: 10px 12px !important;
    border-radius: 5px !important;
  }
}

/* Simple linked service cards: photograph and service name only. */
#services .service-card {
  height: auto !important;
  min-height: 0 !important;
  grid-template-rows: auto auto !important;
}
#services .service-card::after {
  background: none !important;
}
#services .service-card-copy {
  padding: 24px 28px !important;
  pointer-events: none;
}
#services .service-card h3 {
  max-width: none !important;
  margin: 0 !important;
  font-size: clamp(24px, 2.5vw, 32px) !important;
  line-height: 1.15 !important;
}
#services .service-card:focus-within {
  outline: 2px solid var(--foreground);
  outline-offset: 4px;
}
#why-us .why-crew-copy h2 {
  line-height: 1.05 !important;
}

/* Step labels sit above the preview cards. */
.intro-step-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.intro-step-group > .intro-step {
  flex: 1;
}
.intro-step-label {
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

/* Keep the first designer step focused on its Next action. */
#studio .wizard-nav {
  min-height: 44px;
  height: auto;
  padding: 0;
  margin-top: 20px;
  border: 0;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
  justify-content: flex-end;
}
#studio #prevStep { margin-right: auto; }
#studio #prevStep[hidden] { display: none !important; }

/* Discreet contact options share one safe-area-aware position. */
.floating-contact {
  position: fixed;
  z-index: 40;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  gap: 8px;
}
.floating-contact .text-us { position: static; }
.floating-contact[hidden], body:has(dialog[open]) .floating-contact { display: none; }
@media (max-width: 700px) {
  .floating-contact { bottom: calc(var(--mobile-action-clearance, 96px) + 16px); }
}


/* The preview steps introduce the designer in one continuous section. */
#studio .studio-header h2 {
  font-size: clamp(28px, 3vw, 40px) !important;
}
#studio > .intro-grid {
  margin: 0 auto clamp(40px, 5vw, 64px);
}
#studio .intro-step {
  background: #201e1a;
  border-color: rgba(218, 209, 194, 0.14);
  padding: clamp(12px, 1.2vw, 18px);
  gap: 12px;
}
#studio .intro-step h3 { color: var(--foreground); }
#studio .intro-step p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}


/* A continuous transition from finished projects into the designer. */
#transformations.before-after { padding-bottom: clamp(28px, 2.5vw, 40px) !important; }
#studio.studio { padding-top: clamp(28px, 2.5vw, 40px) !important; }


/* Shared heading accents use the exact taupe sampled from the official logo. */
:root {
  --brand-accent: #918477;
  --primary: var(--brand-accent);
}
body .section .eyebrow.section-label,
body #service-area .eyebrow.section-label,
body #home .hero-content .eyebrow.section-label {
  display: block;
  max-width: 100%;
  color: var(--brand-accent) !important;
  font-family: var(--font-sans);
  font-size: 14px !important;
  font-weight: 300 !important;
  line-height: 1.5 !important;
  letter-spacing: 0.38em !important;
  text-transform: uppercase;
  text-align: center;
}
body .section .eyebrow.section-label::before,
body .section .eyebrow.section-label::after,
body #home .hero-content .eyebrow::before,
body #home .hero-content .eyebrow::after {
  content: none !important;
  display: none !important;
}
body .why-crew-copy .eyebrow.section-label,
body .estimate-panel .eyebrow.section-label,
body #studio .wizard-step .eyebrow.section-label { text-align: left; }
.intro-step-label { color: var(--brand-accent); }
@media (max-width: 620px) {
  body .section .eyebrow.section-label,
  body #service-area .eyebrow.section-label,
  body #home .hero-content .eyebrow.section-label {
    font-size: 12px !important;
    letter-spacing: 0.24em !important;
  }
}
