:root {
  color-scheme: dark;
  --black: #0B0B0B;
  --panel: #141414;
  --panel-soft: #1b1b1b;
  --gold: #D4A64A;
  --gold-soft: rgba(212, 166, 74, 0.16);
  --white: #FFFFFF;
  --muted: #A5A5A5;
  --line: rgba(255, 255, 255, 0.1);
  --shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  --radius: 14px;
  --card-radius: 8px;
  --max: 1280px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background: var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

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

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

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  transform: translateY(-160%);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: #000;
  background: var(--gold);
  font-weight: 700;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  min-height: 84px;
  padding: 1rem clamp(1rem, 4vw, 3.5rem);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.4rem;
  background: rgba(11, 11, 11, 0.56);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
  transition: min-height 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(11, 11, 11, 0.82);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.78rem;
  min-width: 12rem;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #000;
  background: linear-gradient(135deg, #f0d184, var(--gold));
  font-weight: 800;
}

.brand strong,
.brand small,
.footer-brand strong,
.footer-brand small {
  display: block;
  line-height: 1;
}

.brand small,
.footer-brand small {
  margin-top: 0.22rem;
  color: var(--muted);
  font-size: 0.75rem;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(0.8rem, 2vw, 1.8rem);
}

.nav-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
  font-weight: 600;
  transition: color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--gold);
}

.menu-toggle {
  display: none;
}

.nav-cta,
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 1rem 1.7rem;
  font-weight: 650;
  line-height: 1.1;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button-primary,
.nav-cta {
  color: #000;
  background: var(--gold);
}

.button-primary:hover,
.button-primary:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 166, 74, 0.3);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(212, 166, 74, 0.58);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: clamp(6rem, 10vh, 9rem) clamp(1rem, 5vw, 4rem) clamp(2rem, 5vh, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(2rem, 6vh, 4.5rem);
  overflow: hidden;
}

.hero-bg,
.hero-sheen {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image:
    linear-gradient(90deg, rgba(11, 11, 11, 0.94) 0%, rgba(11, 11, 11, 0.68) 48%, rgba(11, 11, 11, 0.16) 100%),
    linear-gradient(0deg, rgba(11, 11, 11, 0.86), rgba(11, 11, 11, 0.04)),
    url("hero-workshop.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  animation: cinematicDrift 18s ease-in-out infinite alternate;
}

.hero-sheen {
  background:
    radial-gradient(circle at 72% 20%, rgba(212, 166, 74, 0.18), transparent 34%),
    linear-gradient(120deg, transparent 0 40%, rgba(255, 255, 255, 0.06) 48%, transparent 56% 100%);
  opacity: 0.7;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(940px, 100%);
  flex: 0 0 auto;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Montserrat, Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 14ch;
  font-size: 4.55rem;
  line-height: 1.1;
  font-weight: 700;
}

h2 {
  max-width: 14ch;
  font-size: 3.15rem;
  line-height: 1.12;
  font-weight: 700;
}

h3 {
  font-size: 1.22rem;
  line-height: 1.22;
  font-weight: 700;
}

p {
  color: var(--muted);
}

.hero-copy {
  max-width: 650px;
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.18rem;
}

.hero-actions,
.contact-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-actions {
  margin-top: 2rem;
}

.hero-stats {
  position: relative;
  z-index: 3;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--card-radius);
  overflow: hidden;
  background: rgba(20, 20, 20, 0.62);
  backdrop-filter: blur(18px);
}

.hero-stats article {
  min-height: 118px;
  padding: 1.3rem;
  display: grid;
  align-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stats article:last-child {
  border-right: 0;
}

.hero-stats strong {
  color: var(--gold);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 2.15rem;
  line-height: 1;
}

.hero-stats span {
  margin-top: 0.38rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 600;
}

.section {
  padding: 120px clamp(1rem, 5vw, 4rem);
}

.section-inner {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 3rem;
}

.section-heading.wide {
  max-width: 980px;
}

.section-heading p {
  max-width: 620px;
  font-size: 1.02rem;
}

.craft-section,
.process-section,
.contact-section {
  background: var(--black);
}

.craft-grid,
.quote-layout,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: start;
}

.craft-copy {
  max-width: 680px;
  font-size: 1.06rem;
}

.quality-row,
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
  margin-top: 1.4rem;
}

.quality-row span,
.trust-strip span {
  border: 1px solid rgba(212, 166, 74, 0.24);
  border-radius: 999px;
  padding: 0.62rem 0.9rem;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(212, 166, 74, 0.08);
  font-size: 0.88rem;
  font-weight: 600;
}

.services-section,
.reviews-section,
.quote-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 42%),
    var(--panel);
}

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

.service-card {
  min-height: 430px;
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: end;
  gap: 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--card-radius);
  padding: 1.35rem;
  background: var(--panel-soft);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.18);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card::before,
.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
}

.service-card::before {
  background-image:
    linear-gradient(0deg, rgba(11, 11, 11, 0.98) 0%, rgba(11, 11, 11, 0.78) 46%, rgba(11, 11, 11, 0.2) 100%),
    var(--service-image, url("hero-workshop.jpg"));
  background-size: cover;
  transition: transform 400ms ease;
}

.service-card::after {
  background: radial-gradient(circle at 70% 10%, rgba(212, 166, 74, 0.2), transparent 32%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(212, 166, 74, 0.32);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.service-card:hover::before,
.service-card:focus-within::before {
  transform: scale(1.06);
}

.service-card:hover::after,
.service-card:focus-within::after {
  opacity: 1;
}

.service-auto { --service-image: url("project-wheel.jpg"); }
.service-industrial { --service-image: url("project-guards.jpg"); }
.service-architectural { --service-image: url("project-gates.jpg"); }
.service-custom { --service-image: url("finish-comparison.jpg"); }

.service-auto::before { background-position: 52% 52%; }
.service-industrial::before { background-position: 52% 54%; }
.service-architectural::before { background-position: 68% 52%; }
.service-custom::before { background-position: 68% 50%; }

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #000;
  background: var(--gold);
  font-weight: 700;
  transition: transform 220ms ease;
}

.service-card:hover .service-icon,
.service-card:focus-within .service-icon {
  transform: rotate(-4deg) scale(1.04);
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.service-card a,
.text-link {
  width: fit-content;
  color: var(--gold);
  font-weight: 700;
}

.projects-section {
  background: var(--black);
}

.masonry-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, minmax(260px, 1fr));
  gap: 1rem;
}

.project-tile {
  min-height: 320px;
}

.tile-large {
  grid-row: span 2;
}

.project-open {
  width: 100%;
  height: 100%;
  min-height: inherit;
  position: relative;
  overflow: hidden;
  display: block;
  border: 0;
  border-radius: var(--card-radius);
  padding: 0;
  color: var(--white);
  text-align: left;
  background: var(--panel);
  cursor: pointer;
}

.project-image {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(0deg, rgba(11, 11, 11, 0.84) 0%, rgba(11, 11, 11, 0.28) 52%, rgba(11, 11, 11, 0.04) 100%),
    var(--project-image, url("hero-workshop.jpg"));
  background-size: cover;
  transition: transform 500ms ease;
}

.project-one {
  --project-image: url("project-gates.jpg");
  background-position: 62% 52%;
}

.project-two {
  --project-image: url("project-wheel.jpg");
  background-position: 52% 50%;
}

.project-three {
  --project-image: url("project-guards.jpg");
  background-position: 52% 54%;
}

.project-open:hover .project-image,
.project-open:focus-visible .project-image {
  transform: scale(1.05);
}

.project-content {
  position: absolute;
  left: 1.3rem;
  right: 1.3rem;
  bottom: 1.3rem;
  display: grid;
  gap: 0.34rem;
}

.project-content small {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.project-content strong {
  font-family: Montserrat, Inter, sans-serif;
  font-size: 1.55rem;
  line-height: 1.15;
}

.project-content span {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.76);
}

.before-after {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 1rem;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--card-radius);
  padding: 1rem;
  background: var(--panel);
}

.comparison {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  border-radius: var(--card-radius);
  background: #242424;
}

.comparison-base,
.comparison-after {
  position: absolute;
  inset: 0;
  background-image: url("finish-comparison.jpg");
  background-size: cover;
}

.comparison-base {
  background-position: 12% 52%;
  filter: grayscale(1) brightness(0.48) contrast(1.12);
}

.comparison-after {
  width: 52%;
  background-position: 78% 70%;
  box-shadow: 8px 0 0 rgba(212, 166, 74, 0.86);
}

.comparison input {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  width: calc(100% - 2rem);
  accent-color: var(--gold);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--card-radius);
  background: rgba(255, 255, 255, 0.1);
}

.process-grid article {
  min-height: 260px;
  padding: 1.4rem;
  background: var(--panel);
}

.process-grid span {
  color: var(--gold);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
}

.process-grid strong {
  display: block;
  margin-top: 1.2rem;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 1.1rem;
}

.trust-strip {
  margin-bottom: 1.2rem;
}

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

.testimonial-card {
  margin: 0;
  min-height: 320px;
  display: grid;
  align-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--card-radius);
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.04);
}

.avatar {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(212, 166, 74, 0.34);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(212, 166, 74, 0.08);
  font-weight: 700;
}

.stars {
  color: var(--gold);
  font-size: 0.92rem;
}

.testimonial-card blockquote {
  margin: 0;
  color: var(--white);
  font-size: 1.15rem;
  line-height: 1.48;
}

.testimonial-card figcaption {
  color: var(--muted);
  font-weight: 600;
}

.quote-layout {
  align-items: stretch;
}

.quote-intro {
  position: sticky;
  top: 110px;
  align-self: start;
}

.quote-form,
.contact-card,
.hours-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--card-radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.quote-form {
  padding: clamp(1rem, 3vw, 2rem);
}

.progress {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.progress span {
  min-height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--card-radius);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.progress span.is-active {
  color: #000;
  border-color: transparent;
  background: var(--gold);
}

.form-step {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-step.is-active {
  display: block;
  animation: stepFade 220ms ease both;
}

legend {
  margin-bottom: 1rem;
  color: var(--white);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
}

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

label {
  display: grid;
  gap: 0.42rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 600;
}

input,
textarea,
select {
  width: 100%;
  min-width: 0;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--card-radius);
  padding: 0.85rem 1rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(212, 166, 74, 0.22);
  border-color: rgba(212, 166, 74, 0.7);
}

.upload-box {
  min-height: 220px;
  place-items: center;
  border: 1px dashed rgba(212, 166, 74, 0.4);
  border-radius: var(--card-radius);
  padding: 2rem;
  text-align: center;
  background: rgba(212, 166, 74, 0.06);
}

.upload-box input {
  max-width: 340px;
}

.upload-box span {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
}

.upload-box small {
  max-width: 420px;
  color: var(--muted);
}

.review-panel {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--card-radius);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
}

.form-actions {
  margin-top: 1.5rem;
  justify-content: space-between;
}

.submit-button {
  display: none;
}

.quote-form.is-final .submit-button {
  display: inline-flex;
}

.quote-form.is-final [data-next-step] {
  display: none;
}

.quote-form.is-submitted {
  animation: formGlow 900ms ease both;
}

.form-status {
  margin: 1rem 0 0;
  color: var(--gold);
  font-weight: 700;
}

.contact-card,
.hours-card {
  padding: clamp(1.2rem, 3vw, 2rem);
}

.contact-call {
  display: block;
  margin: 0.8rem 0 1rem;
  color: var(--gold);
  font-family: Montserrat, Inter, sans-serif;
  font-size: 2.75rem;
  line-height: 1;
  font-weight: 700;
}

.contact-card h2 {
  max-width: 12ch;
  font-size: 2.35rem;
}

.hours-card h2,
.lightbox-panel h2 {
  max-width: none;
  font-size: 1.45rem;
}

address {
  color: var(--muted);
  font-style: normal;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1rem;
}

th,
td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.8rem 0;
  text-align: left;
}

th {
  color: var(--white);
}

td {
  color: var(--muted);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 90px clamp(1rem, 5vw, 4rem) 1.2rem;
  background: #060606;
}

.footer-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(6, 6, 6, 0.94), rgba(6, 6, 6, 0.78)),
    url("hero-workshop.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0.34;
}

.footer-inner,
.footer-bottom {
  position: relative;
  z-index: 1;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
}

.footer-story p {
  max-width: 420px;
}

.footer-inner h2 {
  font-size: 0.96rem;
  margin-bottom: 1rem;
}

.footer-inner ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.footer-inner li {
  margin-bottom: 0.5rem;
}

.footer-inner a:hover,
.footer-inner a:focus-visible {
  color: var(--gold);
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-size: 0.86rem;
}

.sticky-leads {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: flex;
  gap: 0.5rem;
}

.sticky-leads a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding: 0.8rem 1rem;
  color: #000;
  background: var(--gold);
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.32);
}

.sticky-leads a:last-child {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(20, 20, 20, 0.9);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.82);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-panel {
  width: min(980px, 100%);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--card-radius);
  padding: 1rem;
  background: var(--panel);
}

.lightbox-image {
  min-height: 440px;
  border-radius: var(--card-radius);
  background-image: url("hero-workshop.jpg");
  background-size: cover;
  background-position: center;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  min-height: 44px;
  border: 0;
  border-radius: 12px;
  padding: 0 0.9rem;
  color: #000;
  background: var(--gold);
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes cinematicDrift {
  from { transform: scale(1.03) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1.2%, -0.8%, 0); }
}

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

@keyframes formGlow {
  0% { box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26); }
  45% { box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26), 0 0 0 4px rgba(212, 166, 74, 0.22); }
  100% { box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26); }
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--white);
  }

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

  body.menu-open .nav-links {
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    background: rgba(20, 20, 20, 0.96);
    backdrop-filter: blur(18px);
  }

  body.menu-open .nav-links a {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  h1 {
    font-size: 3.8rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .service-grid,
  .process-grid,
  .testimonial-grid,
  .footer-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: 78px;
  }

  .site-header {
    min-height: 70px;
    padding: 0.8rem 1rem;
  }

  .brand {
    min-width: 0;
  }

  .hero {
    min-height: auto;
    padding: 6.5rem 1rem 2rem;
    gap: 2rem;
  }

  h1 {
    font-size: 2.9rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-copy {
    font-size: 1.04rem;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .hero-stats article {
    min-height: 96px;
    padding: 1.1rem;
  }

  .hero-stats article:nth-child(2n) {
    border-right: 0;
  }

  .hero-stats article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .section {
    padding: 84px 1rem;
  }

  .craft-grid,
  .quote-layout,
  .contact-grid,
  .before-after,
  .lightbox-panel {
    grid-template-columns: 1fr;
  }

  .quote-intro {
    position: static;
  }

  .masonry-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .tile-large {
    grid-row: auto;
  }

  .project-tile {
    min-height: 380px;
  }

  .comparison {
    min-height: 280px;
  }

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

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

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .sticky-leads {
    right: 0;
    bottom: 0;
    left: 0;
    padding: 0.7rem;
    background: rgba(11, 11, 11, 0.9);
    backdrop-filter: blur(14px);
  }

  .sticky-leads a {
    width: 100%;
  }

  .site-footer {
    padding-bottom: 6rem;
  }
}

@media (max-width: 560px) {
  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 10px;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .brand small {
    font-size: 0.7rem;
  }

  h1 {
    font-size: 2.06rem;
  }

  h2 {
    font-size: 1.82rem;
  }

  .contact-card h2 {
    max-width: none;
    font-size: 1.82rem;
  }

  .hero-stats strong,
  .contact-call {
    font-size: 1.82rem;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .hero-actions,
  .contact-actions,
  .form-actions {
    display: grid;
  }

  .hero-stats span {
    font-size: 0.82rem;
  }

  .hero-stats article:nth-child(n + 3) {
    border-bottom: 0;
  }

  .service-grid,
  .process-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .testimonial-card {
    min-height: 300px;
  }

  .project-tile {
    min-height: 320px;
  }

  .project-content {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .progress span {
    font-size: 0.76rem;
  }

  th,
  td {
    display: block;
    padding: 0.55rem 0;
  }

  td {
    padding-top: 0;
  }

  .lightbox-panel {
    max-height: calc(100svh - 2rem);
    overflow-y: auto;
  }

  .lightbox-image {
    min-height: 240px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
