/* ===================================================
   S1F1RB1 CONSTRUCTION — styles.css
   Deep Onyx · Brushed Gold · Cormorant + Inter
   =================================================== */

/* ── TOKENS ── */
:root {
  --onyx:       #0a0a0a;
  --onyx-2:     #111111;
  --charcoal:   #1c1c1c;
  --charcoal-2: #2a2a2a;
  --gold:       #c9a96e;
  --gold-light: #dfc090;
  --gold-dark:  #a8843a;
  --gold-glow:  rgba(201,169,110,0.18);
  --warm-white: #f8f7f5;
  --muted:      rgba(248,247,245,0.55);
  --ff-d: 'Cormorant Garamond', Georgia, serif;
  --ff-b: 'Inter', system-ui, sans-serif;
  --nav-h: 72px;
  --ease-out: cubic-bezier(0.22,1,0.36,1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--onyx);
  color: var(--warm-white);
  font-family: var(--ff-b);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── CUSTOM CURSOR ── */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: transform 0.12s var(--ease-out), opacity 0.2s;
  mix-blend-mode: difference;
}
.cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 10000;
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%,-50%);
}
@media (pointer: coarse) { .cursor, .cursor-dot { display: none; } body { cursor: auto; } }

/* ── TYPOGRAPHY HELPERS ── */
.sec-label {
  font-family: var(--ff-b);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3rem;
}
.light-label { color: var(--onyx) !important; }
.light-label span { color: var(--charcoal-2) !important; }

em { font-style: italic; color: var(--gold); }

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: var(--gold);
  color: var(--onyx);
  font-family: var(--ff-b);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-ghost-dk {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  background: transparent;
  color: var(--warm-white);
  font-family: var(--ff-b);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(248,247,245,0.25);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost-dk:hover { border-color: var(--gold); color: var(--gold); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem;
  transition: background 0.4s, backdrop-filter 0.4s, box-shadow 0.4s;
}
#nav.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(201,169,110,0.15);
}

.logo {
  font-family: var(--ff-d);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--warm-white);
}
.logo sup { font-size: 0.6em; color: var(--gold); }

.nav-center {
  display: flex; gap: 2.5rem;
}
.nav-center a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248,247,245,0.75);
  transition: color 0.2s;
}
.nav-center a:hover { color: var(--gold); }

.nav-right { display: flex; align-items: center; gap: 1.5rem; }

.nav-phone {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: rgba(248,247,245,0.6);
  transition: color 0.2s;
}
.nav-phone:hover { color: var(--gold); }

.nav-cta {
  padding: 0.5rem 1.4rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--gold); color: var(--onyx); }

.burger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
}
.burger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--warm-white);
  transition: transform 0.25s, opacity 0.25s;
}
.burger.open span:first-child { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:last-child  { transform: translateY(-6.5px) rotate(-45deg); }

/* ── HERO ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-img-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.hero-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
#hero.loaded .hero-img-wrap img { transform: scale(1); }

.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.55) 40%, rgba(0,0,0,0.1) 100%),
    linear-gradient(to right, rgba(0,0,0,0.65) 0%, transparent 65%);
}

.hero-body {
  position: relative; z-index: 2;
  padding: 0 5vw 0 6vw;
  max-width: 900px;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 1.5rem;
  margin-bottom: 1.25rem;
}
.hero-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-est {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: rgba(248,247,245,0.45);
  text-transform: uppercase;
}

.hero-h1 {
  font-family: var(--ff-d);
  font-weight: 300;
  line-height: 1.0;
  display: flex; flex-direction: column;
  margin-bottom: 2rem;
}
.hl {
  display: block;
  font-size: clamp(3rem, 8vw, 7.5rem);
  overflow: hidden;
  white-space: nowrap;
}
.hl-1 { color: var(--warm-white); }
.hl-2 { color: var(--gold); font-style: italic; font-size: clamp(3.5rem, 10vw, 9.5rem); }
.hl-3 { color: var(--warm-white); }

.hero-foot {
  display: flex; align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(248,247,245,0.7);
  max-width: 380px;
}

/* Hero stats */
.hero-stats {
  position: relative; z-index: 2;
  display: flex; align-items: center;
  padding: 1.5rem 6vw;
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(201,169,110,0.2);
}
.hs {
  flex: 1;
  padding: 0.5rem 1.5rem;
  display: flex; flex-direction: column; align-items: center;
}
.hs-n {
  font-family: var(--ff-d);
  font-size: clamp(1.6rem, 2.5vw, 2.6rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: inline;
}
.hs-s {
  font-family: var(--ff-d);
  font-size: 1.3rem;
  color: var(--gold);
}
.hs-str {
  font-family: var(--ff-d);
  font-size: clamp(0.9rem, 1.2vw, 1.2rem);
  color: var(--gold);
  font-weight: 300;
  line-height: 1.2;
  text-align: center;
}
.hs p {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.25rem;
  text-align: center;
}
.hs-div {
  width: 1px; height: 40px;
  background: rgba(201,169,110,0.2);
  flex-shrink: 0;
}

/* Scroll indicator */
.scroll-ind {
  position: absolute;
  bottom: 7.5rem; left: 6vw;
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.si-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: si-pulse 2s ease-in-out infinite;
}
@keyframes si-pulse {
  0%,100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ── WORK / PORTFOLIO ── */
#work {
  padding: 8rem 5vw;
  background: var(--onyx-2);
}
.work-intro {
  max-width: 720px;
  margin-bottom: 4rem;
}
.work-intro p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 4rem;
}

.wc {
  position: relative;
  overflow: hidden;
  height: 320px;
}
.wc-large {
  grid-column: 1 / 3;
  height: 520px;
}
.wc-wide {
  grid-column: 1 / 4;
  height: 360px;
}

.wc-img {
  position: absolute; inset: 0;
}
.wc-img--photo img {
  transition: transform 0.7s var(--ease-out);
}
.wc:hover .wc-img--photo img { transform: scale(1.06); }

.wc-img--photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}

/* gradient placeholder cards */
.wc-grad { position: absolute; inset: 0; }
.wc-grad--concrete {
  background: linear-gradient(135deg, #1a1a1a 0%, #2e2e2e 40%, #1f1f1f 100%);
}
.wc-grad--concrete::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(80,80,80,0.3) 0%, transparent 70%);
}
.wc-grad--excavation {
  background: linear-gradient(135deg, #1a1510 0%, #2e2415 40%, #1a1208 100%);
}
.wc-grad--excavation::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(120,90,30,0.25) 0%, transparent 70%);
}
.wc-grad--drywall {
  background: linear-gradient(135deg, #141618 0%, #22262a 40%, #181c1f 100%);
}
.wc-grad--drywall::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(60,70,80,0.3) 0%, transparent 70%);
}
.wc-grad--demolition {
  background: linear-gradient(135deg, #0e0e0e 0%, #1a1a1a 40%, #0c0c0c 100%);
}
.wc-grad--demolition::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 40% 70%, rgba(100,40,10,0.2) 0%, transparent 70%);
}

.wc-meta {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 1.75rem 2rem;
  display: flex; flex-direction: column; gap: 0.3rem;
}
.wc-meta .wc-cat {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.wc-meta h3 {
  font-family: var(--ff-d);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.2;
}
.wc-meta .wc-loc {
  font-size: 0.7rem;
  color: rgba(248,247,245,0.5);
}

.wc-label-static {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 1.5rem 1.75rem;
  display: flex; flex-direction: column; gap: 0.25rem;
  border-top: 1px solid rgba(201,169,110,0.18);
}
.wc-label-static .wc-cat {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.wc-label-static h3 {
  font-family: var(--ff-d);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.2;
}
.wc-label-static .wc-loc {
  font-size: 0.65rem;
  color: rgba(248,247,245,0.45);
}

.work-cta-row {
  display: flex; align-items: center; gap: 2rem;
  border-top: 1px solid rgba(201,169,110,0.15);
  padding-top: 3rem;
}
.work-cta-row p {
  font-family: var(--ff-d);
  font-size: 1.4rem;
  color: var(--muted);
  font-weight: 300;
}

/* ── MARQUEE ── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(201,169,110,0.15);
  border-bottom: 1px solid rgba(201,169,110,0.15);
  background: var(--charcoal);
  padding: 1rem 0;
}
.marquee-track {
  display: flex; gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248,247,245,0.45);
}
.marquee-track .dot { color: var(--gold); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SERVICES ── */
#services {
  padding: 8rem 5vw;
  background: var(--onyx);
}
.svc-wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
  align-items: start;
}
.svc-hdr {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.svc-h2 {
  font-family: var(--ff-d);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--warm-white);
  margin-bottom: 1.5rem;
}
.svc-hdr > p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 340px;
}

.svc-list { display: flex; flex-direction: column; }

.si {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  align-items: start;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(248,247,245,0.06);
  transition: background 0.2s;
}
.si:first-child { border-top: 1px solid rgba(248,247,245,0.06); }
.si:hover { background: rgba(201,169,110,0.03); }
.si:hover .si-arr { color: var(--gold); transform: translateX(4px); }

.si-n {
  font-family: var(--ff-d);
  font-size: 1rem;
  color: var(--gold);
  font-weight: 300;
  padding-top: 0.2rem;
}
.si-body h3 {
  font-family: var(--ff-d);
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--warm-white);
  margin-bottom: 0.4rem;
  line-height: 1.25;
}
.si-body p {
  font-size: 0.83rem;
  line-height: 1.7;
  color: var(--muted);
}
.si-arr {
  font-size: 1.1rem;
  color: rgba(248,247,245,0.2);
  padding-top: 0.25rem;
  transition: color 0.2s, transform 0.2s;
}

/* ── ABOUT ── */
#about {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.about-img-wrap {
  position: absolute; inset: 0; z-index: 0;
}
.about-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.6) 55%, rgba(0,0,0,0.15) 100%),
    linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
}
.about-body {
  position: relative; z-index: 2;
  display: flex; align-items: center;
  padding: 8rem 6vw;
  width: 100%;
}
.about-text {
  max-width: 620px;
}
.ey-light {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.about-h2 {
  font-family: var(--ff-d);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--warm-white);
  margin-bottom: 2rem;
}
.about-cols {
  columns: 2; column-gap: 2rem;
  margin-bottom: 2.5rem;
}
.about-cols p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(248,247,245,0.72);
  break-inside: avoid;
  margin-bottom: 1rem;
}
.about-stats {
  display: flex; gap: 2.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.ast span {
  font-family: var(--ff-d);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  display: block;
}
.ast p {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: rgba(248,247,245,0.5);
  margin-top: 0.1rem;
}

/* ── TESTIMONIALS ── */
#testimonials {
  padding: 8rem 5vw;
  background: var(--warm-white);
  color: var(--onyx);
}
.testi-intro { margin-bottom: 4rem; }
.testi-h2 {
  font-family: var(--ff-d);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--onyx);
}
.testi-h2 em { color: var(--gold-dark); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.tc {
  background: #f0eeeb;
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
}
.tc-dark {
  background: var(--onyx);
  color: var(--warm-white);
}
.tc-dark blockquote { color: rgba(248,247,245,0.8); }
.tc-dark .tc-auth strong { color: var(--warm-white); }
.tc-dark .tc-auth span { color: rgba(248,247,245,0.45); }
.tc-dark .tc-av { background: var(--gold); color: var(--onyx); }
.tc-stars { color: var(--gold-dark); font-size: 0.85rem; letter-spacing: 2px; }
blockquote {
  font-family: var(--ff-d);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(10,10,10,0.75);
  flex: 1;
}
.tc-auth { display: flex; align-items: center; gap: 0.85rem; }
.tc-av {
  width: 38px; height: 38px;
  background: var(--charcoal);
  color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.tc-auth strong { display: block; font-size: 0.8rem; font-weight: 600; }
.tc-auth span { font-size: 0.7rem; color: rgba(10,10,10,0.45); }

/* ── ESTIMATOR ── */
#estimate {
  padding: 8rem 5vw;
  background: var(--charcoal);
}
.est-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.est-h2 {
  font-family: var(--ff-d);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--warm-white);
  margin-bottom: 1.25rem;
}
.est-left > p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 380px;
}
.est-checks {
  list-style: none;
  margin-bottom: 2.5rem;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.est-checks li {
  font-size: 0.82rem;
  color: rgba(248,247,245,0.65);
  display: flex; align-items: center; gap: 0.75rem;
}
.est-checks li span {
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
}
.est-phone-cta {
  display: inline-flex; flex-direction: column;
  gap: 0.1rem;
  border-top: 1px solid rgba(201,169,110,0.2);
  padding-top: 1.5rem;
}
.epc-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.epc-num {
  font-family: var(--ff-d);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.est-phone-cta:hover .epc-num { color: var(--gold-light); }

.est-card {
  background: var(--onyx-2);
  border: 1px solid rgba(201,169,110,0.15);
  padding: 2.5rem;
}
.est-prog-row {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 2rem;
}
.ep-track {
  flex: 1; height: 2px;
  background: rgba(248,247,245,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.ep-fill {
  height: 100%;
  background: var(--gold);
  width: 25%;
  transition: width 0.4s var(--ease-out);
}
#epLabel {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.est-step { display: none; }
.est-step.active { display: block; }
.est-step h3 {
  font-family: var(--ff-d);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--warm-white);
  margin-bottom: 1.5rem;
}
.est-step input[type="text"],
.est-step input[type="email"],
.est-step input[type="tel"],
.est-step textarea {
  width: 100%;
  background: rgba(248,247,245,0.05);
  border: 1px solid rgba(248,247,245,0.12);
  color: var(--warm-white);
  font-family: var(--ff-b);
  font-size: 0.88rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 0.75rem;
}
.est-step input:focus,
.est-step textarea:focus { border-color: var(--gold); }
.est-step textarea { resize: vertical; min-height: 80px; }

.opts { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.cols2 { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.opt {
  padding: 0.75rem 1rem;
  background: rgba(248,247,245,0.05);
  border: 1px solid rgba(248,247,245,0.1);
  color: rgba(248,247,245,0.7);
  font-family: var(--ff-b);
  font-size: 0.8rem;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  text-align: left;
}
.opt strong { display: block; font-weight: 600; color: var(--warm-white); margin-bottom: 0.15rem; }
.opt em { font-style: normal; font-size: 0.7rem; color: var(--muted); }
.opt:hover, .opt.selected {
  border-color: var(--gold);
  background: rgba(201,169,110,0.1);
  color: var(--warm-white);
}

.est-step-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 1.5rem;
  gap: 0.75rem;
}

.result-blk {
  background: rgba(201,169,110,0.08);
  border: 1px solid rgba(201,169,110,0.25);
  padding: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}
.result-blk p:first-child {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.result-blk strong {
  font-family: var(--ff-d);
  font-size: 2rem;
  font-weight: 300;
  color: var(--warm-white);
}
.result-blk small {
  display: block;
  font-size: 0.68rem;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* ── CONTACT ── */
#contact {
  padding: 8rem 5vw;
  background: var(--onyx);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.contact-h2 {
  font-family: var(--ff-d);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--warm-white);
  margin-bottom: 1.5rem;
}
.contact-L > p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 2.5rem;
}
.contact-detail {
  display: flex; flex-direction: column; gap: 1.2rem;
  margin-bottom: 2.5rem;
}
.contact-detail a, .contact-detail span {
  font-size: 0.88rem;
  color: rgba(248,247,245,0.6);
  transition: color 0.2s;
  display: block;
}
.contact-detail a:hover { color: var(--gold); }
.contact-detail strong {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.contact-form .full { grid-column: 1 / -1; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: rgba(248,247,245,0.04);
  border: 1px solid rgba(248,247,245,0.1);
  color: var(--warm-white);
  font-family: var(--ff-b);
  font-size: 0.85rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form select option { background: var(--charcoal); }
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form button[type="submit"] {
  grid-column: 1 / -1;
  padding: 1rem 2rem;
  background: var(--gold);
  color: var(--onyx);
  font-family: var(--ff-b);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.contact-form button[type="submit"]:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ── FOOTER ── */
footer {
  background: #050505;
  border-top: 1px solid rgba(201,169,110,0.15);
  padding: 4rem 5vw 2rem;
}
.ft-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(248,247,245,0.06);
  margin-bottom: 2rem;
}
.ft-brand .logo {
  font-size: 1.6rem;
  display: inline-block;
  margin-bottom: 1rem;
}
.ft-brand p {
  font-size: 0.78rem;
  line-height: 1.75;
  color: rgba(248,247,245,0.4);
  max-width: 260px;
}
.ft-col h4 {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.ft-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.ft-col li a {
  font-size: 0.8rem;
  color: rgba(248,247,245,0.4);
  transition: color 0.2s;
}
.ft-col li a:hover { color: var(--gold); }
.ft-certs { display: flex; flex-direction: column; gap: 0.5rem; }
.ft-certs span {
  font-size: 0.72rem;
  color: rgba(248,247,245,0.35);
  display: flex; align-items: center; gap: 0.5rem;
}
.ft-certs span::before {
  content: '✓';
  color: var(--gold);
  font-size: 0.65rem;
}
.ft-bot {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.ft-bot p {
  font-size: 0.72rem;
  color: rgba(248,247,245,0.25);
}
.ft-bot a { color: rgba(248,247,245,0.35); transition: color 0.2s; }
.ft-bot a:hover { color: var(--gold); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .svc-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .svc-hdr { position: static; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .wc-large { grid-column: 1 / -1; }
  .wc-wide  { grid-column: 1 / -1; }
  .est-layout { grid-template-columns: 1fr; gap: 3rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .ft-top { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; max-width: 520px; }
}

@media (max-width: 768px) {
  #nav { padding: 0 1.5rem; }
  .nav-center {
    display: none;
    position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: var(--onyx);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 2.5rem; z-index: 999;
  }
  .nav-center.open { display: flex; }
  .nav-center a { font-size: 1.2rem; }
  .nav-phone { display: none; }
  .burger { display: flex; }

  .hl { font-size: clamp(2.4rem, 10vw, 4.5rem); white-space: normal; }
  .hl-2 { font-size: clamp(2.8rem, 12vw, 5.5rem); }
  .hero-foot { flex-direction: column; align-items: flex-start; }

  .hero-stats { flex-wrap: wrap; padding: 1rem 1.5rem; }
  .hs { flex: 0 0 45%; }
  .hs-div { display: none; }

  .work-grid { grid-template-columns: 1fr; }
  .wc, .wc-large, .wc-wide { height: 280px; grid-column: auto; }
  .work-intro { display: none; }

  .about-cols { columns: 1; }

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

  .ft-top { grid-template-columns: 1fr; gap: 2rem; }

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

  section, #work, #services, #estimate, #contact, #testimonials {
    padding: 5rem 1.5rem;
  }
}

/* ── CONTACT (actual HTML classes) ── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}
.ey-gold {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.contact-sub {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 2.5rem;
}
.cinfo { display: flex; flex-direction: column; gap: 1.25rem; }
.ci {
  display: flex; flex-direction: column; gap: 0.15rem;
  transition: color 0.2s;
}
.ci span {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.ci strong, .ci a {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(248,247,245,0.7);
  text-decoration: none;
  transition: color 0.2s;
}
.ci a:hover { color: var(--gold); }

/* shared form elements */
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.fg { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 0.75rem; }
.fg label {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(248,247,245,0.45);
}
.fg input, .fg select, .fg textarea {
  width: 100%;
  background: rgba(248,247,245,0.04);
  border: 1px solid rgba(248,247,245,0.1);
  color: var(--warm-white);
  font-family: var(--ff-b);
  font-size: 0.88rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold); }
.fg select option { background: var(--charcoal); }
.fg textarea { resize: vertical; }

.btn-full { width: 100%; justify-content: center; padding: 1rem 2rem; }
#contactForm button[type="submit"],
#estForm button[type="submit"] {
  margin-top: 0.5rem;
}

/* ── ESTIMATOR (actual HTML classes) ── */
.est-nav {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 1.5rem;
  gap: 0.75rem;
}
.btn-back, .btn-next {
  padding: 0.75rem 1.5rem;
  font-family: var(--ff-b);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.btn-back {
  background: transparent;
  color: rgba(248,247,245,0.5);
  border: 1px solid rgba(248,247,245,0.15);
}
.btn-back:hover { border-color: var(--gold); color: var(--gold); }
.btn-next {
  background: var(--gold);
  color: var(--onyx);
}
.btn-next:hover { background: var(--gold-light); }
.btn-next:disabled { opacity: 0.35; cursor: not-allowed; }

/* result step */
.rb-check {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.rb-lbl {
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.rb-range {
  font-family: var(--ff-d);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--warm-white);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}
.rb-note {
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.rb-acts {
  display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center;
}

@media (max-width: 768px) {
  .contact-split { grid-template-columns: 1fr; gap: 3rem; }
  .frow { grid-template-columns: 1fr; }
}
