:root {
  --black: #090909;
  --charcoal: #1a1a1a;
  --panel: #111111;
  --panel-2: #181818;
  --gold: #c8a45a;
  --gold-bright: #e0b85f;
  --silver: #b7b7b7;
  --muted: #8f8f8f;
  --line: rgba(200, 164, 90, 0.3);
  --white: #f7f2e8;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 18%, rgba(200, 164, 90, 0.11), transparent 28rem),
    linear-gradient(180deg, #080808 0%, #121212 34%, #070707 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image: url("assets/mane-logo-lockup.webp");
  background-position: center top;
  background-size: 1300px auto;
  opacity: 0.06;
  filter: grayscale(0.2);
}

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

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

.hidden {
  display: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 16px clamp(18px, 5vw, 58px);
  background: rgba(7, 7, 7, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
}

.brand img {
  display: block;
  width: clamp(150px, 18vw, 235px);
  height: auto;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  color: #f4ead7;
  font-size: 0.86rem;
  font-weight: 800;
}

.nav a {
  opacity: 0.92;
}

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

.nav-quote {
  color: var(--gold-bright);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 6px;
  font-size: 0.93rem;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button {
  min-width: 190px;
}

.button.gold,
.header-call.primary {
  letter-spacing: 0;
}

.header-call {
  border: 1px solid var(--line);
  color: var(--gold-bright);
}

.header-call.primary {
  color: #120d05;
  background: linear-gradient(135deg, #e5bc62, #b8872c);
  border-color: transparent;
}

.button:hover,
.header-call:hover {
  transform: translateY(-1px);
}

.button.gold {
  color: #120d05;
  background: linear-gradient(135deg, #e5bc62, #b8872c);
  box-shadow: 0 18px 40px rgba(200, 164, 90, 0.18);
}

.button.outline {
  border: 1px solid var(--line);
  color: var(--gold-bright);
  background: rgba(10, 10, 10, 0.45);
}

.button.full {
  width: 100%;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border-bottom: 1px solid rgba(200, 164, 90, 0.16);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.92) 0%, rgba(8, 8, 8, 0.62) 48%, rgba(8, 8, 8, 0.9) 100%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.86) 92%),
    url("assets/job1/prepped-garage-wide.webp");
  background-position: center center, center center, center 36%;
  background-size: cover, cover, cover;
  opacity: 0.88;
}

.floor-sheen {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background:
    linear-gradient(110deg, transparent 0 20%, rgba(255, 255, 255, 0.08) 23%, transparent 34%),
    repeating-linear-gradient(92deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 8px);
  transform: perspective(520px) rotateX(58deg);
  transform-origin: bottom;
  opacity: 0.7;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
  gap: clamp(30px, 5vw, 76px);
  align-items: start;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 36px 0 30px;
}

.hero-copy {
  max-width: 720px;
  min-width: 0;
  padding-top: 18px;
}

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

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

.hero-copy h1 {
  max-width: 820px;
  margin-bottom: 16px;
  color: #fff7e7;
  font-size: clamp(2.65rem, 5.2vw, 5rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-logo {
  display: block;
  width: min(340px, 62%);
  height: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 16px 34px rgba(0, 0, 0, 0.55));
}

.page-title {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.tagline {
  color: var(--gold-bright);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 900;
}

.hero-lede {
  max-width: 620px;
  color: #fff8e8;
  font-size: clamp(1.08rem, 1.8vw, 1.38rem);
  line-height: 1.35;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 10px 16px;
  max-width: 760px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: #efe6d5;
  font-size: 0.95rem;
  line-height: 1.35;
}

.trust-list li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.trust-list li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(200, 164, 90, 0.48);
  border-radius: 50%;
  color: var(--gold-bright);
  font-size: 0.82rem;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.estimate-panel {
  position: relative;
  z-index: 6;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(13, 13, 13, 0.94), rgba(20, 20, 20, 0.9));
  box-shadow: var(--shadow);
}

.estimate-panel form,
.footer-lead form {
  padding: 24px;
}

.form-step {
  margin: 0 0 12px;
  color: var(--gold-bright);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.panel-head h2,
.calculator h3,
.footer-lead h2,
.section-title h2,
.area-copy h2,
.why-box h3,
.guarantee h2 {
  color: var(--gold-bright);
  text-transform: uppercase;
  font-size: 1.25rem;
  line-height: 1.1;
}

.panel-head p,
.form-note,
.section-title p,
.area-copy p,
.why-box p,
.guarantee p {
  color: #ddd4c4;
  line-height: 1.45;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field-grid > *,
.choice-grid > *,
.size-presets > * {
  min-width: 0;
}

.estimate-panel .field-grid {
  grid-template-columns: 1fr 1fr;
}

label,
legend {
  display: grid;
  gap: 7px;
  color: #f7f2e8;
  font-size: 0.76rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  color: #f7f2e8;
  background: linear-gradient(180deg, #1e1e1e, #141414);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 4px;
  padding: 0 12px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 164, 90, 0.14);
}

.calculator {
  display: grid;
  gap: 14px;
  margin: 16px 0;
  padding-top: 16px;
  border-top: 1px solid rgba(200, 164, 90, 0.22);
}

.calculator h3 {
  margin-bottom: 0;
}

.range-label span {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.range-help {
  color: #cfc8b8;
  font-size: 0.78rem;
  line-height: 1.35;
}

.size-presets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.size-presets button,
.choice-grid button {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 4px;
  color: #f4ead7;
  background: #171717;
  font-size: 0.75rem;
  font-weight: 850;
  cursor: pointer;
}

.size-presets button:hover,
.size-presets button.active,
.choice-grid button:hover,
.choice-grid button.active {
  border-color: var(--gold);
  color: var(--gold-bright);
  background: rgba(200, 164, 90, 0.1);
}

.choice-field {
  display: grid;
  gap: 8px;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

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

.system-grid button {
  display: grid;
  justify-items: start;
  gap: 2px;
  min-height: 52px;
  padding: 8px 10px;
  text-align: left;
}

.system-grid span {
  color: #cfc8b8;
  font-size: 0.72rem;
  font-weight: 700;
}

input[type="range"] {
  accent-color: var(--gold);
  padding: 0;
  min-height: 44px;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

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

.segmented label {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  color: #ddd4c4;
  background: #171717;
  cursor: pointer;
}

.segmented input {
  position: absolute;
  width: 1px;
  height: 1px;
  min-height: 0;
  margin: 0;
  opacity: 0;
  overflow: hidden;
  clip-path: inset(50%);
  pointer-events: none;
}

.segmented label:has(input:checked) {
  color: var(--gold-bright);
  border-color: var(--gold);
  background: rgba(200, 164, 90, 0.1);
}

.range-output {
  display: grid;
  justify-items: center;
  gap: 5px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: linear-gradient(145deg, #191919, #101010);
  text-align: center;
}

.range-output span {
  color: var(--silver);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.range-output strong {
  color: var(--gold-bright);
  font-size: 1.78rem;
}

.range-output small {
  color: #cfc8b8;
}

.optional {
  color: #bcb3a3;
  font-size: 0.72rem;
  font-weight: 700;
}

.consent-note {
  margin: 10px 0 0;
  color: #bcb3a3;
  font-size: 0.72rem;
  line-height: 1.45;
}

.consent-note a,
.form-note a {
  color: var(--gold-bright);
  text-decoration: underline;
}

.form-note.error {
  color: #ffd0c7;
}

button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.quote-form-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: 34px;
  align-items: start;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(200, 164, 90, 0.28);
  border-radius: 6px;
  background: rgba(10, 10, 10, 0.88);
  box-shadow: var(--shadow);
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  color: #120d05;
  background: var(--gold-bright);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  width: min(1180px, calc(100% - 40px));
  margin: 24px auto 0;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(200, 164, 90, 0.2);
  background: rgba(8, 8, 8, 0.82);
  box-shadow: var(--shadow);
}

.proof-strip div {
  display: grid;
  gap: 7px;
  min-height: 104px;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
}

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

.proof-strip strong {
  color: var(--gold-bright);
  text-transform: uppercase;
  font-size: 0.8rem;
}

.proof-strip span {
  color: #d9d3c5;
  line-height: 1.35;
  font-size: 0.82rem;
}

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

.section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(200, 164, 90, 0.22);
  padding-bottom: 18px;
}

.section-title h2 {
  margin-bottom: 0;
}

.section-title p {
  max-width: 540px;
  margin-bottom: 0;
}

.seo-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 28px;
  align-items: start;
}

.seo-intro h2 {
  color: #fff7e7;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
}

.seo-intro p {
  max-width: 760px;
  color: #ddd4c4;
  font-size: 1.05rem;
  line-height: 1.5;
}

.seo-links {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(200, 164, 90, 0.24);
  border-radius: 8px;
  background: rgba(10, 10, 10, 0.72);
}

.seo-links a {
  display: block;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: var(--gold-bright);
  font-weight: 850;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.seo-links a:hover {
  border-color: var(--gold);
}

.conversion-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 28px;
  align-items: center;
  padding-top: 64px;
}

.conversion-band h2 {
  color: #fff7e7;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.02;
}

.conversion-band p {
  color: #ddd4c4;
  font-size: 1.08rem;
  line-height: 1.5;
  max-width: 640px;
}

.conversion-points {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(200, 164, 90, 0.24);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(24, 24, 24, 0.92), rgba(10, 10, 10, 0.88));
}

.conversion-points span {
  padding: 12px 14px;
  border-left: 3px solid var(--gold);
  color: #f7f2e8;
  background: rgba(255, 255, 255, 0.04);
  font-weight: 850;
}

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

.step-grid article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(24, 24, 24, 0.9), rgba(10, 10, 10, 0.88));
}

.step-grid strong {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 50%;
  color: #111;
  background: var(--gold-bright);
  font-weight: 950;
}

.step-grid h3 {
  color: #fff7e7;
  text-transform: uppercase;
  font-size: 1rem;
}

.step-grid p {
  color: #d8d0bf;
  line-height: 1.45;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.service-grid,
.project-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 18px;
}

.service-grid article,
.project-grid article,
.guarantee,
.faq-list details,
.why-box,
.footer-lead form,
address {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(24, 24, 24, 0.9), rgba(10, 10, 10, 0.88));
}

.service-grid article {
  padding: 24px;
}

.icon {
  color: var(--gold-bright);
  font-size: 2rem;
}

.service-grid h3,
.project-grid h3 {
  color: #fff7e7;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.service-grid p,
.service-grid li,
.project-grid p {
  color: #d8d0bf;
  line-height: 1.45;
}

.service-grid a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--gold-bright);
  font-size: 0.88rem;
  font-weight: 900;
}

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

.service-grid li::before {
  content: "✓";
  color: var(--gold-bright);
  margin-right: 8px;
}

.project-grid article {
  overflow: hidden;
}

.real-gallery article {
  display: grid;
  align-content: start;
  align-self: start;
}

.real-gallery img,
.real-gallery video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  background: #111;
}

.real-gallery .featured-project {
  grid-column: span 2;
}

.real-gallery .featured-project img {
  aspect-ratio: 16 / 9;
}

.real-gallery .portrait-card img {
  aspect-ratio: 3 / 4;
}

.real-gallery .wide-card img {
  aspect-ratio: 16 / 9;
}

.real-gallery .grinding-card img {
  object-position: center 42%;
}

.real-gallery .crack-card img {
  object-position: center 52%;
}

.real-gallery .texture-card img {
  object-position: center 56%;
}

.real-gallery .finished-card img {
  object-position: center 58%;
}

.project-photo {
  min-height: 185px;
  background:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.45) 100%),
    repeating-linear-gradient(100deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 11px),
    linear-gradient(135deg, #3d3d3d, #141414);
}

.project-photo.garage { background-color: #494a48; }
.project-photo.patio { background-color: #544d3d; }
.project-photo.shop { background-color: #3d4144; }
.project-photo.commercial { background-color: #4d4d4d; }
.project-photo.upload {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.58)),
    repeating-linear-gradient(100deg, rgba(200, 164, 90, 0.12) 0 2px, transparent 2px 15px),
    linear-gradient(135deg, #262626, #101010);
}

.project-grid h3,
.project-grid p {
  margin: 0;
  padding: 0 16px;
}

.project-grid h3 {
  padding-top: 14px;
}

.project-grid p {
  padding-bottom: 16px;
}

.service-area {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 36px;
  align-items: center;
  margin-top: 78px;
  padding: 66px clamp(20px, 5vw, 58px);
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.88), rgba(8, 8, 8, 0.52)),
    linear-gradient(135deg, #1b1b18, #2c281e 50%, #111);
  border-block: 1px solid rgba(200, 164, 90, 0.2);
}

.area-copy {
  max-width: 700px;
}

.area-copy h2 {
  max-width: 660px;
  color: #fff7e7;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.cities {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, max-content));
  gap: 16px 30px;
  margin-top: 24px;
  color: #f4e7c5;
  font-weight: 800;
}

.cities span::before {
  content: "●";
  color: var(--gold-bright);
  margin-right: 10px;
}

.why-box {
  padding: 28px;
}

.why-box p {
  margin-bottom: 18px;
}

.why-box strong {
  display: block;
  color: #fff7e7;
}

.faq {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 24px;
}

.guarantee {
  padding: 28px;
}

.shield {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  color: #101010;
  background: var(--gold-bright);
  clip-path: polygon(50% 0, 92% 18%, 84% 76%, 50% 100%, 16% 76%, 8% 18%);
  font-size: 2rem;
  font-weight: 950;
}

.faq-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.faq-list details {
  padding: 16px 18px;
}

.faq-list summary {
  color: #fff7e7;
  cursor: pointer;
  font-weight: 850;
}

.faq-list p {
  color: #d8d0bf;
  line-height: 1.45;
  margin: 12px 0 0;
}

.footer-lead {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 520px) 1fr;
  gap: 30px;
  width: min(1240px, calc(100% - 40px));
  margin: 78px auto 0;
  padding: 44px 0;
  border-top: 1px solid rgba(200, 164, 90, 0.23);
}

.footer-brand h2 {
  color: var(--gold);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 0.86;
}

.footer-brand h2 span {
  display: block;
  color: var(--silver);
  font-size: 0.35em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-brand img {
  display: block;
  width: min(360px, 100%);
  height: auto;
  margin-bottom: 18px;
}

address {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 26px;
  font-style: normal;
}

address a,
address span {
  color: #f0e4cc;
  line-height: 1.45;
}

address a:hover {
  color: var(--gold-bright);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(18px, 5vw, 58px);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #9d9484;
  font-size: 0.85rem;
}

.mobile-contact-bar {
  display: none;
}

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-button {
    display: inline-grid;
    gap: 5px;
    justify-self: end;
    width: 44px;
    height: 44px;
    padding: 11px;
    border: 1px solid rgba(200, 164, 90, 0.35);
    border-radius: 6px;
    background: transparent;
  }

  .menu-button span {
    display: block;
    height: 2px;
    background: var(--gold);
  }

  .nav,
  .header-actions {
    display: none;
  }

  .nav.open {
    display: grid;
    grid-column: 1 / -1;
    justify-content: stretch;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 12px;
  }

  .nav.open a {
    padding: 12px 0;
  }

  .hero-inner,
  .service-area,
  .faq,
  .seo-intro,
  .conversion-band,
  .quote-form-section,
  .footer-lead {
    grid-template-columns: 1fr;
  }

  .proof-strip,
  .service-grid,
  .project-grid,
  .step-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .real-gallery .featured-project {
    grid-column: span 2;
  }

  .footer-lead {
    padding-bottom: 20px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 680px) {
  .brand img {
    width: 170px;
  }

  .site-header {
    padding: 12px 16px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    width: calc(100% - 28px);
    padding: 46px 0 40px;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .hero-logo {
    width: min(310px, 86%);
  }

  .hero-actions,
  .section-title,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .proof-strip,
  .service-grid,
  .project-grid,
  .step-grid,
  .field-grid,
  .estimate-panel .field-grid,
  .faq-list,
  .cities,
  .trust-list {
    grid-template-columns: 1fr;
  }

  .real-gallery .featured-project {
    grid-column: span 1;
  }

  .proof-strip {
    margin-top: 18px;
    width: calc(100% - 28px);
  }

  .proof-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  }

  .section,
  .footer-lead {
    width: calc(100% - 28px);
  }

  .estimate-panel form,
  .footer-lead form,
  address,
  .why-box,
  .guarantee {
    padding: 20px;
  }

  .range-output strong {
    font-size: 1.35rem;
  }

  body {
    padding-bottom: 62px;
  }

  .mobile-contact-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    min-height: 58px;
    border-top: 1px solid rgba(200, 164, 90, 0.3);
    background: rgba(7, 7, 7, 0.94);
    backdrop-filter: blur(14px);
  }

  .mobile-contact-bar a {
    display: grid;
    place-items: center;
    color: var(--gold-bright);
    font-weight: 950;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }

  .mobile-contact-bar a:last-child {
    color: #120d05;
    background: linear-gradient(135deg, #e5bc62, #b8872c);
    border-right: 0;
  }
}
