/* ============================================================
   Cabinet Central Austin - Homepage Concept
   Design language: Industrial Edge (type/spacing/motion only)
   Palette: Cabinet Central Austin's real brand colors
   gold #daa14c (their --g-main), bronze #c3935b, deep gold
   #ac7a3f (theirs), slate #30373e (their heading color)
   ============================================================ */

:root {
  /* Backgrounds: their slate #30373e, deepened within family */
  --slate:        #30373e;
  --slate-deep:   #262c33;
  --slate-black:  #1b2026;
  --concrete:     #edeae3;
  --paper:        #f7f5f0;

  /* Accent: their gold family */
  --gold:         #daa14c;
  --gold-deep:    #ac7a3f;
  --gold-ink:     #8a6132;   /* their gold darkened for small text on light */
  --bronze:       #c3935b;
  --gold-muted:   rgba(218, 161, 76, 0.16);

  /* Text */
  --text-dark:    #22282e;
  --text-body:    #454c53;
  --text-muted:   #6d747b;
  --text-light:   rgba(255, 255, 255, 0.85);
  --text-light-muted: rgba(255, 255, 255, 0.58);

  /* Type */
  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body:    'Barlow', 'Helvetica Neue', sans-serif;

  /* Layout */
  --gutter: clamp(1.5rem, 4vw, 3rem);
  --nav-height: 76px;
  --radius: 3px;

  /* Motion: quick and mechanical */
  --ease-mech: cubic-bezier(0.4, 0, 0.6, 1);
  --ease-out:  cubic-bezier(0.22, 0.9, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-body);
  background: var(--slate-deep);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(90%, 1180px); margin-inline: auto; }

::selection { background: var(--gold); color: var(--slate-black); }

/* ---------- Type ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
h1.display { font-size: clamp(3.4rem, 9vw, 7.2rem); color: #ffffff; }
h2.display { font-size: clamp(2.4rem, 5.4vw, 4.2rem); color: var(--text-dark); }
.section--dark h2.display, .section--black h2.display { color: #ffffff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.65rem;
  font-size: 0.74rem; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: 1.1rem;
}
.eyebrow::before { content: ""; width: 30px; height: 2px; background: var(--gold); }
.section--dark .eyebrow, .section--black .eyebrow { color: var(--gold); }

.section-sub { max-width: 56ch; font-size: clamp(0.98rem, 1.3vw, 1.08rem); }

/* ---------- Buttons: sharp industrial plate + icon chip ---------- */
.btn {
  display: inline-flex; align-items: stretch;
  font-family: var(--font-body); font-size: 0.86rem; font-weight: 500;
  letter-spacing: 0.09em; text-transform: uppercase;
  text-decoration: none; border-radius: var(--radius);
  overflow: hidden; white-space: nowrap;
  transition: transform 0.3s var(--ease-mech), box-shadow 0.3s var(--ease-mech);
}
.btn:hover { transform: translateY(-2px); }
.btn__label { display: inline-flex; align-items: center; padding: 0.9rem 1.5rem; }
.btn__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; border-left: 1px solid rgba(0, 0, 0, 0.18);
}
.btn__icon svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease-mech); }
.btn:hover .btn__icon svg { transform: translateX(3px); }

.btn--gold { background: var(--gold); color: var(--slate-black); }
.btn--gold:hover { background: #e2ad5e; box-shadow: 0 10px 26px rgba(218, 161, 76, 0.28); }
.btn--ghost { border: 1px solid rgba(255, 255, 255, 0.28); color: #ffffff; }
.btn--ghost .btn__icon { border-left-color: rgba(255, 255, 255, 0.28); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--dark { background: var(--slate); color: #ffffff; }
.btn--dark:hover { background: var(--slate-black); box-shadow: 0 10px 26px rgba(48, 55, 62, 0.3); }
.btn--dark .btn__icon { border-left-color: rgba(255, 255, 255, 0.18); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 120;
  height: var(--nav-height);
  display: flex; align-items: center;
  transition: background 0.35s var(--ease-mech), box-shadow 0.35s var(--ease-mech);
  background: linear-gradient(to bottom, rgba(27, 32, 38, 0.85), rgba(27, 32, 38, 0));
}
.nav.is-solid {
  background: rgba(27, 32, 38, 0.97);
  box-shadow: 0 1px 0 rgba(218, 161, 76, 0.25);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.nav__logo img { height: 46px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 1.9rem; list-style: none; }
.nav__links a {
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-light); text-decoration: none;
  padding: 0.4rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.25s var(--ease-mech), border-color 0.25s var(--ease-mech);
}
.nav__links a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.nav__phone {
  font-size: 0.86rem; font-weight: 500; letter-spacing: 0.06em;
  color: var(--gold); text-decoration: none;
}
.nav__phone:hover { color: #e2ad5e; }
.nav__cta { display: inline-flex; }
.nav__cta .btn__label { padding: 0.65rem 1.1rem; }
.nav__cta .btn__icon { width: 36px; }

/* Burger */
.burger {
  display: none; position: relative; z-index: 200;
  width: 46px; height: 46px; border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius); background: transparent; cursor: pointer;
}
.burger span {
  position: absolute; left: 12px; right: 12px; height: 2px;
  background: #ffffff; transition: transform 0.3s var(--ease-mech), opacity 0.3s;
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 28px; }
.burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 150;
  background: var(--slate-black);
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-height) + 1rem) var(--gutter) 3rem;
  opacity: 0; visibility: hidden; transform: translateY(-14px);
  transition: opacity 0.35s var(--ease-mech), transform 0.35s var(--ease-mech), visibility 0.35s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu a.mobile-menu__link {
  font-family: var(--font-display); font-size: clamp(2.2rem, 9vw, 3.4rem);
  text-transform: uppercase; color: #ffffff; text-decoration: none;
  padding-block: 0.55rem; line-height: 1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex; align-items: baseline; gap: 1rem;
}
.mobile-menu a.mobile-menu__link:hover { color: var(--gold); }
.mobile-menu a .idx { font-size: 0.9rem; font-family: var(--font-body); color: var(--gold); letter-spacing: 0.15em; }
.mobile-menu__foot { margin-top: 2.2rem; display: grid; gap: 0.9rem; }
.mobile-menu__foot a { color: var(--text-light); text-decoration: none; font-size: 1rem; padding-block: 0.65rem; }
.mobile-menu__foot a strong { color: var(--gold); font-weight: 500; }

/* ---------- Hero: split composition ---------- */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  background:
    linear-gradient(rgba(48, 55, 62, 0), rgba(48, 55, 62, 0)),
    repeating-linear-gradient(to right, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 120px),
    repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 120px),
    var(--slate);
}
.hero__copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-height) + 3rem) clamp(1.5rem, 5vw, 5rem) 3.5rem var(--gutter);
}
.hero__copy > * { max-width: 34rem; }
.hero .eyebrow { color: var(--gold); }
.hero h1 .accent { color: var(--gold); }
.hero__sub { margin-top: 1.5rem; font-size: clamp(1rem, 1.4vw, 1.14rem); color: var(--text-light); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2.4rem; list-style: none; }
.hero__chips li {
  font-size: 0.74rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-light);
  border: 1px solid rgba(218, 161, 76, 0.45);
  border-radius: var(--radius);
  padding: 0.45rem 0.8rem;
}
.hero__media { position: relative; overflow: hidden; clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%); }
.hero__media img {
  position: absolute; inset: -6% 0; width: 100%; height: 112%;
  object-fit: cover;
}
.hero__plate {
  position: absolute; left: 0; bottom: clamp(1.5rem, 5vh, 3.5rem); z-index: 2;
  background: var(--gold); color: var(--slate-black);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 0.85rem 1.3rem 0.85rem 1.1rem;
  font-size: 0.76rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(27, 32, 38, 0.35);
}
.hero__plate strong { display: block; font-family: var(--font-display); font-size: 1.35rem; letter-spacing: 0.06em; font-weight: 400; }

/* ---------- Spec strip ---------- */
.spec-strip { background: var(--gold); color: var(--slate-black); }
.spec-strip__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; padding-block: 1.15rem;
}
.spec-strip__item {
  display: flex; align-items: center; gap: 0.8rem;
  padding-inline: 1.2rem;
  border-left: 1px solid rgba(27, 32, 38, 0.22);
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  line-height: 1.35;
}
.spec-strip__item:first-child { border-left: none; }
.spec-strip__item .num { font-family: var(--font-display); font-size: 1.7rem; line-height: 1; opacity: 0.55; }

/* ---------- Sections ---------- */
.section { padding-block: clamp(3.5rem, 7vw, 6rem); }
/* Sections with horizontal (X-offset) reveals: keep pre-animation
   transforms from widening documentElement.scrollWidth on mobile.
   None of these contain sticky elements. */
#about, #craft, #contact { overflow-x: clip; }
.section--light { background: var(--concrete); }
.section--paper { background: var(--paper); }
.section--dark { background: var(--slate); color: var(--text-light); }
.section--black { background: var(--slate-black); color: var(--text-light); }
.section--dark .section-sub, .section--black .section-sub { color: var(--text-light-muted); }

.section-head { margin-bottom: clamp(2.2rem, 5vw, 3.6rem); }
.section-head--split {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 1.5rem;
}

/* ---------- Intro ---------- */
.intro__grid {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 6vw, 5rem); align-items: start;
}
.intro__body p + p { margin-top: 1.1rem; }
.intro__body .lead { font-size: 1.12rem; font-weight: 500; color: var(--text-dark); }
.intro__facts { margin-top: 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(48, 55, 62, 0.14); border: 1px solid rgba(48, 55, 62, 0.14); border-radius: var(--radius); overflow: hidden; }
.intro__facts div { background: var(--paper); padding: 1.1rem 1.2rem; }
.intro__facts strong { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; letter-spacing: 0.04em; color: var(--slate); }
.intro__facts span { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }

/* ---------- Finish library (signature) ---------- */
.finishes { position: relative; }
.finishes__grid {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: clamp(2rem, 5vw, 4.5rem); align-items: stretch;
}
.finish-list { list-style: none; counter-reset: fin; }
.finish-list button {
  counter-increment: fin;
  display: flex; align-items: baseline; gap: 1.1rem; width: 100%;
  background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--font-display); font-size: clamp(1.6rem, 2.6vw, 2.3rem);
  letter-spacing: 0.03em; text-transform: uppercase; line-height: 1.12;
  color: var(--text-light-muted);
  padding: 0.42rem 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  transition: color 0.25s var(--ease-mech), background 0.25s var(--ease-mech), transform 0.25s var(--ease-mech);
}
.finish-list button::before {
  content: counter(fin, decimal-leading-zero);
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.18em; color: var(--gold); opacity: 0.75;
}
.finish-list button:hover { color: #ffffff; transform: translateX(6px); }
.finish-list button.is-active { color: var(--gold); background: rgba(218, 161, 76, 0.07); }
.finish-view {
  position: sticky; top: calc(var(--nav-height) + 1.5rem);
  align-self: start;
  background: var(--slate-deep);
  border: 1px solid rgba(218, 161, 76, 0.28);
  border-radius: var(--radius); overflow: hidden;
}
.finish-view__img { position: relative; aspect-ratio: 4 / 5; overflow: hidden; background: var(--slate-black); }
.finish-view__img img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: opacity 0.3s var(--ease-mech);
}
.finish-view__meta { padding: 1.3rem 1.4rem 1.5rem; border-top: 2px solid var(--gold); }
.finish-view__meta h3 {
  font-family: var(--font-display); font-weight: 400; font-size: 1.7rem;
  letter-spacing: 0.04em; text-transform: uppercase; color: #ffffff;
}
.finish-view__meta p { margin-top: 0.4rem; font-size: 0.95rem; color: var(--text-light-muted); }
.finishes__note { margin-top: 2.4rem; font-size: 0.95rem; color: var(--text-light-muted); max-width: 60ch; }
.finishes__note strong { color: var(--gold); font-weight: 500; }

/* Mobile finish rail */
.finish-rail { display: none; }

/* ---------- Work grid ---------- */
.work__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.9rem, 2vw, 1.4rem);
}
.work-card {
  position: relative; overflow: hidden; border-radius: var(--radius);
  aspect-ratio: 4 / 5;
}
.work-card:nth-child(3n + 2) { transform: translateY(clamp(1.2rem, 3vw, 2.6rem)); }
.work-card img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.work-card:hover img { transform: scale(1.05); }
.work-card figcaption {
  position: absolute; left: 0.9rem; bottom: 0.9rem; z-index: 2;
  background: rgba(27, 32, 38, 0.82); color: #ffffff;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 0.45rem 0.8rem; border-radius: var(--radius);
  border-left: 2px solid var(--gold);
}
.work__foot { margin-top: clamp(2.4rem, 5vw, 3.6rem); display: flex; justify-content: center; }

/* ---------- Process rail ---------- */
.process__rail {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 3vw, 2.5rem);
  position: relative;
}
.process__rail::before {
  content: ""; position: absolute; top: 2.6rem; left: 0; right: 0; height: 1px;
  background: repeating-linear-gradient(to right, rgba(218, 161, 76, 0.55) 0 14px, transparent 14px 22px);
}
.step { position: relative; padding-top: 5.4rem; }
.step__num {
  position: absolute; top: 0; left: 0;
  font-family: var(--font-display); font-size: 5rem; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--gold);
}
.step h3 {
  font-family: var(--font-display); font-weight: 400; font-size: 1.65rem;
  letter-spacing: 0.04em; text-transform: uppercase; color: #ffffff;
  margin-bottom: 0.5rem;
}
.step p { font-size: 0.98rem; color: var(--text-light-muted); max-width: 34ch; }
.process__chips { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: clamp(2.2rem, 4vw, 3rem); list-style: none; }
.process__chips li {
  font-size: 0.74rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(218, 161, 76, 0.45); border-radius: var(--radius);
  padding: 0.45rem 0.8rem;
}

/* ---------- Craft 50/50 ---------- */
.craft__grid {
  display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.craft__media { position: relative; }
.craft__media img { border-radius: var(--radius); aspect-ratio: 4 / 4.6; object-fit: cover; width: 100%; }
.craft__media::after {
  content: ""; position: absolute; inset: auto -12px -12px auto; width: 46%; height: 46%;
  border-right: 3px solid var(--gold); border-bottom: 3px solid var(--gold);
  border-radius: 0 0 var(--radius) 0;
}
.craft-list { list-style: none; margin-top: 1.6rem; display: grid; gap: 0; }
.craft-list li {
  display: flex; gap: 0.9rem; align-items: baseline;
  padding: 0.72rem 0.2rem;
  border-bottom: 1px solid rgba(48, 55, 62, 0.14);
  font-size: 0.99rem; color: var(--text-body);
}
.craft-list li::before {
  content: ""; flex: 0 0 10px; width: 10px; height: 10px; align-self: center;
  background: linear-gradient(135deg, var(--gold), var(--bronze));
  border-radius: 2px;
}
.craft__extra { margin-top: 1.4rem; font-size: 0.98rem; }
.craft__extra strong { color: var(--text-dark); font-weight: 500; }

/* ---------- CTA ---------- */
.cta { position: relative; overflow: hidden; }
.cta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 90% at 85% 15%, rgba(218, 161, 76, 0.18), transparent 60%),
    radial-gradient(45% 70% at 8% 90%, rgba(195, 147, 91, 0.12), transparent 60%);
  pointer-events: none;
}
.cta__inner { position: relative; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.cta__ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
.cta__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(218, 161, 76, 0.3);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 3vw, 2rem);
}
.cta__card h3 {
  font-family: var(--font-display); font-weight: 400; font-size: 1.5rem;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.9rem;
}
.cta__card p { color: var(--text-light); font-size: 1rem; }
.cta__card a { color: #ffffff; text-decoration: none; border-bottom: 1px solid rgba(218, 161, 76, 0.5); }
.cta__card a:hover { color: var(--gold); }
.cta__card .row { display: flex; gap: 0.8rem; align-items: baseline; padding-block: 0.55rem; }
.cta__card .row + .row { border-top: 1px solid rgba(255, 255, 255, 0.08); }
.cta__card .label {
  flex: 0 0 84px; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-light-muted);
}

/* ---------- Footer ---------- */
.footer { background: var(--slate-black); color: var(--text-light-muted); padding-block: clamp(2.5rem, 5vw, 3.5rem) 1.8rem; }
.footer__grid {
  display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.8rem, 4vw, 3rem); align-items: start;
  padding-bottom: 2rem; border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__brand img.logo { height: 58px; width: auto; }
.footer__brand p { margin-top: 0.9rem; font-size: 0.92rem; max-width: 30ch; }
.footer h4 {
  font-size: 0.74rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.9rem;
}
.footer ul { list-style: none; display: grid; gap: 0.1rem; }
.footer a { color: var(--text-light); text-decoration: none; font-size: 0.95rem; display: inline-block; padding-block: 0.65rem; }
.footer a:hover { color: var(--gold); }
.footer address { font-style: normal; font-size: 0.95rem; line-height: 1.7; color: var(--text-light); }
.footer__badge { margin-top: 1.2rem; }
.footer__badge img { height: 54px; width: auto; }
.footer__base {
  display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: space-between;
  padding-top: 1.6rem; font-size: 0.82rem;
}

/* ---------- 404 ---------- */
.error-section {
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  background:
    repeating-linear-gradient(to right, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 120px),
    var(--slate);
  padding-top: var(--nav-height);
}
.error__code {
  font-family: var(--font-display); font-size: clamp(7rem, 22vw, 15rem); line-height: 0.9;
  color: transparent; -webkit-text-stroke: 2px rgba(218, 161, 76, 0.55);
}
.error__title { margin-top: 0.6rem; }
.error__body { margin-top: 1rem; max-width: 46ch; color: var(--text-light-muted); }
.error-section .btn { margin-top: 2rem; }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(30px); }
/* Horizontal reveals hold opacity only at rest; GSAP owns the X offset
   (a resting translateX widens documentElement.scrollWidth on mobile) */
.reveal--left { opacity: 0; }
.reveal--right { opacity: 0; }
.no-js .reveal, .no-js .reveal--left, .no-js .reveal--right { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal--left, .reveal--right { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__phone { display: none; }
  .burger { display: block; }
  .finishes__grid { grid-template-columns: 1fr; }
  .finish-view { display: none; }
  .finish-list { display: none; }
  .finish-rail {
    display: flex; gap: 1rem; overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.6rem;
    /* container is 90% wide below 1311px, so the true side gap is 5vw */
    margin-inline: -5vw;
    padding-inline: 5vw;
  }
  .finish-rail::-webkit-scrollbar { display: none; }
  .finish-rail__card {
    flex: 0 0 min(72vw, 300px); scroll-snap-align: start;
    background: var(--slate-deep); border: 1px solid rgba(218, 161, 76, 0.28);
    border-radius: var(--radius); overflow: hidden;
  }
  .finish-rail__card img { aspect-ratio: 4 / 5; object-fit: cover; width: 100%; }
  .finish-rail__card figcaption { padding: 0.9rem 1rem 1.1rem; border-top: 2px solid var(--gold); }
  .finish-rail__card h3 {
    font-family: var(--font-display); font-weight: 400; font-size: 1.3rem;
    letter-spacing: 0.05em; text-transform: uppercase; color: #ffffff;
  }
  .finish-rail__card p { font-size: 0.86rem; color: var(--text-light-muted); margin-top: 0.3rem; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero__copy { padding: calc(var(--nav-height) + 3.5rem) var(--gutter) 3rem; }
  .hero__media { clip-path: polygon(0 6%, 100% 0, 100% 100%, 0 100%); min-height: 58vw; }
  .hero__media img { position: absolute; }
  .spec-strip__grid { grid-template-columns: 1fr 1fr; row-gap: 1rem; }
  .spec-strip__item:nth-child(3) { border-left: none; }
  .intro__grid { grid-template-columns: 1fr; }
  .work__grid { grid-template-columns: 1fr 1fr; }
  .work-card:nth-child(3n + 2) { transform: none; }
  .work-card:nth-child(2n) { transform: translateY(clamp(1rem, 3vw, 2rem)); }
  .process__rail { grid-template-columns: 1fr; gap: 2rem; }
  .process__rail::before { display: none; }
  .step { padding-top: 0; padding-left: 4.6rem; }
  .step__num { font-size: 3.6rem; }
  .craft__grid { grid-template-columns: 1fr; }
  .cta__inner { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .hero__ctas .btn .btn__label { flex: 1; justify-content: center; }
  .spec-strip__grid { grid-template-columns: 1fr; }
  .spec-strip__item { border-left: none; padding-inline: 0.2rem; }
  .work__grid { grid-template-columns: 1fr; }
  .work-card:nth-child(2n) { transform: none; }
  .work-card { aspect-ratio: 4 / 4.4; }
  .intro__facts { grid-template-columns: 1fr; }
  .cta__ctas .btn { width: 100%; justify-content: center; }
  .cta__ctas .btn .btn__label { flex: 1; justify-content: center; }
}
