/* =====================================================================
   OAK & BAYOU — Premium Flooring | Design System
   Palette: warm charcoal · cream · rich copper · natural wood
   Type: Fraunces (display) · Inter (UI/body)
   ===================================================================== */

/* ----------  Tokens  ---------- */
:root {
  /* Surfaces */
  --charcoal:    #16120E;
  --charcoal-2:  #1F1812;
  --charcoal-3:  #2A2119;
  --ink:         #251F19;
  --cream:       #FAF6EF;
  --cream-2:     #F3EADC;
  --sand:        #EADBC7;

  /* Accent */
  --copper:      #BE6A38;
  --copper-2:    #D8884E;
  --copper-deep: #9C5126;
  --wood:        #8A6A48;

  /* Text */
  --muted:       #6E655B;
  --muted-2:     #9A9087;
  --on-dark:     #EDE6DB;
  --on-dark-mut: #B0A89C;

  /* Lines */
  --line:        rgba(37, 31, 25, 0.12);
  --line-2:      rgba(37, 31, 25, 0.07);
  --line-dark:   rgba(255, 255, 255, 0.14);

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1240px;
  --container-narrow: 920px;
  --gutter: clamp(20px, 5vw, 56px);
  --section-y: clamp(72px, 11vw, 160px);
  --radius-s: 10px;
  --radius:   16px;
  --radius-l: 26px;

  /* Shadow */
  --shadow-sm: 0 2px 14px rgba(22, 18, 14, 0.06);
  --shadow:    0 22px 60px -28px rgba(22, 18, 14, 0.40);
  --shadow-lg: 0 50px 110px -40px rgba(22, 18, 14, 0.55);

  /* Motion */
  --ease:     cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 0.25s;
  --t:      0.45s;
  --t-slow: 0.8s;
}

/* ----------  Reset / Base  ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
input, textarea, select { font: inherit; color: inherit; }

::selection { background: var(--copper); color: #fff; }

/* ----------  Typography  ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.07;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-optical-sizing: auto;
}

.display {
  font-size: clamp(2.9rem, 6.4vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2.5rem, 5.2vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1.04; }
h3 { font-size: clamp(1.3rem, 2.1vw, 1.7rem); line-height: 1.18; letter-spacing: -0.01em; }
h4 { font-size: 1.18rem; line-height: 1.3; letter-spacing: -0.005em; }

p { color: var(--muted); }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.32rem); line-height: 1.62; color: var(--muted); }

em, .italic { font-style: italic; }
strong { font-weight: 600; color: var(--ink); }

.accent { color: var(--copper); }
.serif-accent { font-family: var(--font-display); font-style: italic; font-weight: 400; }

/* Eyebrow / overline */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper-deep);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--copper);
  display: inline-block;
}
.eyebrow.center::before { display: none; }
.eyebrow.on-dark { color: var(--copper-2); }

/* ----------  Layout  ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container.narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--section-y); }
.section.tight { padding-block: clamp(56px, 8vw, 110px); }

.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 68px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1.1rem; }
.section-head p { margin-top: 1.1rem; }

.bg-cream-2 { background: var(--cream-2); }
.bg-dark { background: var(--charcoal); color: var(--on-dark); }
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 { color: var(--on-dark); }
.bg-dark p { color: var(--on-dark-mut); }

.grid { display: grid; gap: clamp(20px, 2.4vw, 34px); }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 100px);
  align-items: center;
}
/* grid items must be allowed to shrink — scrolling rows inside them
   otherwise inflate the track and overflow the viewport on mobile */
.split > *, .media-row > *, .contact-grid > * { min-width: 0; }

/* ----------  Buttons  ---------- */
.btn {
  --bg: var(--copper);
  --fg: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.95em 1.7em;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--fg);
  background: var(--bg);
  border-radius: 100px;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
  box-shadow: 0 10px 26px -12px rgba(158, 81, 38, 0.7);
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--copper-deep);
  transform: translateY(101%);
  transition: transform var(--t) var(--ease-out);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(158, 81, 38, 0.75); }
.btn:hover::after { transform: translateY(0); }
.btn .arrow { transition: transform var(--t-fast) var(--ease); }
.btn:hover .arrow { transform: translate(3px, -3px); }

.btn--ghost {
  --bg: transparent;
  --fg: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn--ghost::after { background: var(--ink); }
.btn--ghost:hover { color: var(--cream); box-shadow: inset 0 0 0 1.5px var(--ink); }

.btn--light {
  --bg: var(--cream);
  --fg: var(--ink);
  box-shadow: 0 14px 30px -16px rgba(0,0,0,0.5);
}
.btn--light::after { background: #fff; }
.btn--light:hover { color: var(--ink); }

.btn--outline-light {
  --bg: transparent;
  --fg: var(--on-dark);
  box-shadow: inset 0 0 0 1.5px var(--line-dark);
}
.btn--outline-light::after { background: var(--cream); }
.btn--outline-light:hover { color: var(--ink); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* Text link with underline sweep */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
  width: fit-content;
}
.link-arrow::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 1.5px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) var(--ease-out);
}
.link-arrow:hover::after { transform: scaleX(1); }
.link-arrow .arrow { color: var(--copper); transition: transform var(--t-fast) var(--ease); }
.link-arrow:hover .arrow { transform: translateX(4px); }
.on-dark .link-arrow, .link-arrow.on-dark { color: var(--on-dark); }

/* ----------  Header / Nav  ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 130; /* stays above the mobile drawer so the close (X) and logo remain visible */
  transition: background var(--t) var(--ease), box-shadow var(--t) var(--ease), backdrop-filter var(--t) var(--ease);
}
/* When the drawer is open, keep the logo legible on the dark overlay */
body.menu-open .logo { color: #fff; }
body.menu-open .logo__text .amp { color: var(--copper-2); }
body.menu-open .header.scrolled { background: transparent; backdrop-filter: none; box-shadow: none; }
.header__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: padding var(--t) var(--ease);
}
.header.scrolled {
  background: rgba(250, 246, 239, 0.82);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  box-shadow: 0 1px 0 var(--line), 0 10px 30px -22px rgba(0,0,0,0.4);
}
.header.scrolled .header__inner { padding-block: 12px; }

/* Logo */
.logo { display: inline-flex; align-items: center; gap: 11px; color: #fff; }
.logo__mark { width: 38px; height: 38px; flex: none; }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__text .lead-name {
  font-family: var(--font-display);
  font-size: 1.34rem;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.logo__text .sub-name {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--copper-2);
  margin-top: 4px;
}
/* color states */
.header .logo { color: #fff; }
.header.scrolled .logo, .header.solid .logo { color: var(--ink); }

/* Nav links */
.nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 38px); }
.nav__links { display: flex; align-items: center; gap: clamp(16px, 2vw, 32px); }
.nav__links a {
  position: relative;
  font-size: 0.93rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  padding-block: 6px;
  transition: color var(--t-fast) var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) var(--ease-out);
}
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); }
.header.scrolled .nav__links a, .header.solid .nav__links a { color: var(--ink); }
.nav__links a.active { color: #fff; }
.header.scrolled .nav__links a.active, .header.solid .nav__links a.active { color: var(--copper-deep); }

.nav__cta { display: flex; align-items: center; gap: 18px; }
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.92);
  transition: color var(--t-fast) var(--ease);
}
.nav__phone svg { width: 16px; height: 16px; color: var(--copper-2); }
.header.scrolled .nav__phone, .header.solid .nav__phone { color: var(--ink); }
.header.scrolled .nav__phone svg, .header.solid .nav__phone svg { color: var(--copper); }

/* Burger */
.burger {
  display: none;
  width: 44px; height: 44px;
  position: relative;
  z-index: 120;
}
.burger span {
  position: absolute;
  left: 11px;
  width: 22px; height: 1.6px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--t-fast) var(--ease), opacity var(--t-fast) var(--ease), background var(--t-fast);
}
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 23px; }
.burger span:nth-child(3) { top: 29px; }
.header.scrolled .burger span, .header.solid .burger span { background: var(--ink); }
body.menu-open .burger span { background: #fff; }
body.menu-open .burger span:nth-child(1) { top: 23px; transform: rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { top: 23px; transform: rotate(-45deg); }

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 110;
  background: var(--charcoal);
  color: var(--on-dark);
  padding: 120px var(--gutter) 48px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform var(--t) var(--ease-out), opacity var(--t), visibility var(--t);
}
body.menu-open .drawer { transform: translateY(0); opacity: 1; visibility: visible; }
.drawer a.drawer__link {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 3rem);
  line-height: 1.25;
  color: var(--on-dark);
  border-bottom: 1px solid var(--line-dark);
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.drawer a.drawer__link:hover { color: var(--copper-2); padding-left: 10px; }
.drawer__foot { margin-top: auto; display: flex; flex-direction: column; gap: 18px; padding-top: 28px; }
.drawer__foot .btn { width: fit-content; }
.drawer__phone { font-size: 1.4rem; font-family: var(--font-display); color: var(--copper-2); }

/* ----------  Hero  ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}
.hero__media { position: absolute; inset: -8% 0 0 0; z-index: 0; will-change: transform; }
.hero__media img { width: 100%; height: 116%; object-fit: cover; }
.hero::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(13,10,8,0.42) 0%, rgba(13,10,8,0.04) 30%, rgba(13,10,8,0.18) 60%, rgba(13,10,8,0.86) 100%),
    linear-gradient(90deg, rgba(13,10,8,0.5) 0%, rgba(13,10,8,0) 55%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding: 0 var(--gutter) clamp(64px, 9vw, 120px);
}
.hero__content { max-width: 880px; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.9rem, 6.6vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.028em;
  margin-block: 1.4rem 1.3rem;
}
.hero h1 em { color: var(--copper-2); font-style: italic; }
.hero .eyebrow { color: #fff; }
.hero .eyebrow::before { background: var(--copper-2); }
.hero p { color: rgba(255,255,255,0.88); max-width: 560px; font-size: 1.18rem; }
.hero .btn-row { margin-top: 2.2rem; }

.hero__meta {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.16);
  margin-top: clamp(40px, 6vw, 72px);
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 6vw, 80px);
}
.hero__meta .stat__num { color: #fff; }
.hero__meta .stat__label { color: rgba(255,255,255,0.7); }

.scroll-cue {
  position: absolute;
  bottom: 30px; right: var(--gutter);
  z-index: 2;
  display: flex; align-items: center; gap: 10px;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.scroll-cue__line { width: 1px; height: 44px; background: rgba(255,255,255,0.4); position: relative; overflow: hidden; }
.scroll-cue__line::after {
  content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%;
  background: var(--copper-2); animation: scrollPulse 2s var(--ease) infinite;
}
@keyframes scrollPulse { 0% { top: -50%; } 60%,100% { top: 100%; } }

/* Sub-hero (inner pages) */
.subhero {
  position: relative;
  padding: clamp(150px, 18vw, 230px) 0 clamp(60px, 8vw, 110px);
  color: #fff;
  overflow: hidden;
}
.subhero__media { position: absolute; inset: 0; z-index: 0; }
.subhero__media img { width: 100%; height: 100%; object-fit: cover; }
.subhero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(15,11,8,0.7) 0%, rgba(15,11,8,0.45) 50%, rgba(15,11,8,0.78) 100%);
}
.subhero__inner { position: relative; z-index: 2; max-width: 820px; }
.subhero h1 { color: #fff; margin-block: 1.1rem 1rem; font-size: clamp(2.6rem, 6vw, 4.6rem); }
.subhero .eyebrow { color: #fff; }
.subhero .eyebrow::before { background: var(--copper-2); }
.subhero p { color: rgba(255,255,255,0.85); max-width: 600px; font-size: 1.15rem; }
.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.7); display: flex; gap: 8px; align-items: center; }
.breadcrumb a:hover { color: var(--copper-2); }

/* ----------  Stats  ---------- */
.stats-row { display: flex; flex-wrap: wrap; gap: clamp(28px, 5vw, 72px); }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  display: flex;
  align-items: baseline;
}
.stat__num .suffix { color: var(--copper); font-size: 0.6em; margin-left: 2px; }
.stat__label { margin-top: 0.6rem; font-size: 0.9rem; color: var(--muted); letter-spacing: 0.01em; }

/* ----------  Marquee (trust)  ---------- */
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding-block: 22px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track { display: flex; gap: 64px; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-size: 1.15rem; color: var(--muted);
  white-space: nowrap;
}
.marquee__item svg { width: 18px; height: 18px; color: var(--copper); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ----------  Service Cards  ---------- */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 1.8vw, 28px); }

.svc-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--charcoal);
  min-height: 420px;
  isolation: isolate;
  box-shadow: var(--shadow-sm);
}
.svc-card__img { position: absolute; inset: 0; z-index: -2; }
.svc-card__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}
.svc-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(15,11,8,0.05) 0%, rgba(15,11,8,0.25) 45%, rgba(15,11,8,0.92) 100%);
  transition: background var(--t) var(--ease);
}
.svc-card:hover .svc-card__img img { transform: scale(1.07); }
.svc-card:hover::after { background: linear-gradient(180deg, rgba(15,11,8,0.1) 0%, rgba(120,60,28,0.32) 45%, rgba(12,9,7,0.94) 100%); }
.svc-card__body {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: #fff;
}
.svc-card__num {
  position: absolute; top: 24px; left: 28px;
  font-family: var(--font-display);
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
}
.svc-card__icon {
  position: absolute; top: 22px; right: 24px;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
  transition: background var(--t-fast), transform var(--t-fast) var(--ease);
}
.svc-card__icon svg { width: 20px; height: 20px; color: #fff; }
.svc-card:hover .svc-card__icon { background: var(--copper); transform: rotate(-45deg); }
.svc-card h3 { color: #fff; margin-bottom: 0.5rem; }
.svc-card p {
  color: rgba(255,255,255,0.82);
  font-size: 0.96rem;
  max-height: 0; opacity: 0;
  overflow: hidden;
  transition: max-height var(--t) var(--ease), opacity var(--t), margin var(--t);
}
.svc-card:hover p { max-height: 120px; opacity: 1; margin-top: 4px; }
.svc-card__tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--copper-2); margin-bottom: 12px;
}
.svc-card--lg { min-height: 540px; }

/* ----------  Duo panels (Inside & Out)  ---------- */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2vw, 28px); }
.duo__panel {
  position: relative;
  border-radius: var(--radius-l);
  overflow: hidden;
  min-height: 540px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  isolation: isolate;
  box-shadow: var(--shadow-sm);
}
.duo__panel img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}
.duo__panel::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(15,11,8,0.05) 0%, rgba(15,11,8,0.32) 42%, rgba(11,8,6,0.9) 100%);
  transition: background var(--t) var(--ease);
}
.duo__panel:hover img { transform: scale(1.05); }
.duo__panel:hover::after { background: linear-gradient(180deg, rgba(15,11,8,0.1) 0%, rgba(120,60,28,0.35) 42%, rgba(10,7,5,0.92) 100%); }
.duo__body { padding: clamp(28px, 3vw, 46px); }
.duo__panel .eyebrow { color: var(--copper-2); margin-bottom: 0.9rem; }
.duo__panel .eyebrow::before { background: var(--copper-2); }
.duo__panel h3 { color: #fff; font-size: clamp(1.9rem, 3vw, 2.7rem); margin-bottom: 0.6rem; letter-spacing: -0.02em; }
.duo__panel p { color: rgba(255,255,255,0.86); margin-bottom: 1.3rem; max-width: 44ch; }

/* ----------  Feature / Showcase band  ---------- */
.feature {
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: 640px;
  display: flex;
  align-items: center;
}
.feature__media { position: absolute; inset: 0; z-index: 0; will-change: transform; }
.feature__media img { width: 100%; height: 100%; object-fit: cover; }
.feature::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(13,10,7,0.86) 0%, rgba(13,10,7,0.55) 45%, rgba(13,10,7,0.12) 100%);
}
.feature__inner { position: relative; z-index: 2; max-width: 560px; }
.feature h2 { color: #fff; }
.feature p { color: rgba(255,255,255,0.85); }

/* media + text rows (services) */
.media-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 90px); align-items: center; }
.media-row--rev .media-row__media { order: 2; }
.media-row__media {
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}
.media-row__media img { width: 100%; aspect-ratio: 4/3.2; object-fit: cover; transition: transform 1s var(--ease-out); }
.media-row__media:hover img { transform: scale(1.05); }
.media-row__badge {
  position: absolute; top: 20px; left: 20px;
  background: rgba(250,246,239,0.92);
  backdrop-filter: blur(6px);
  color: var(--ink);
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 100px;
}
.feature-list { display: grid; gap: 14px; margin-top: 1.8rem; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--muted); font-size: 0.98rem; }
.feature-list .tick {
  flex: none; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(190,106,56,0.14); color: var(--copper);
  display: grid; place-items: center; margin-top: 1px;
}
.feature-list .tick svg { width: 12px; height: 12px; }
.on-dark .feature-list li { color: var(--on-dark-mut); }

/* ----------  Process steps  ---------- */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2vw, 30px); }
.step { position: relative; padding-top: 30px; }
.step::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1.5px;
  background: var(--line);
}
.step::after {
  content: ""; position: absolute; top: 0; left: 0; height: 1.5px; width: 0;
  background: var(--copper);
  transition: width 1s var(--ease-out);
}
.step.in-view::after { width: 46px; }
.step__num {
  font-family: var(--font-display);
  font-size: 0.9rem; color: var(--copper); font-weight: 500;
  letter-spacing: 0.05em; margin-bottom: 14px;
}
.step h4 { margin-bottom: 8px; }
.step p { font-size: 0.95rem; }
.on-dark .step::before { background: var(--line-dark); }

/* ----------  Value / Why cards  ---------- */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 30px); }
.value-card {
  padding: clamp(26px, 3vw, 40px);
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid var(--line);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t);
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.value-card__icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: linear-gradient(135deg, var(--copper), var(--copper-deep));
  display: grid; place-items: center; margin-bottom: 22px;
  box-shadow: 0 12px 24px -12px rgba(158,81,38,0.7);
}
.value-card__icon svg { width: 26px; height: 26px; color: #fff; }
.value-card h4 { margin-bottom: 10px; }
.value-card p { font-size: 0.96rem; }
.bg-dark .value-card { background: var(--charcoal-2); border-color: var(--line-dark); }

/* ----------  Gallery  ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.filter-btn {
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 0.88rem; font-weight: 500;
  color: var(--muted);
  border: 1px solid var(--line);
  transition: all var(--t-fast) var(--ease);
}
.filter-btn:hover { color: var(--ink); border-color: var(--ink); }
.filter-btn.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.masonry { columns: 3; column-gap: clamp(14px, 1.6vw, 24px); }
.masonry .tile { break-inside: avoid; margin-bottom: clamp(14px, 1.6vw, 24px); }
.tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  display: block;
  background: var(--charcoal-2);
}
.tile img { width: 100%; height: auto; object-fit: cover; transition: transform 0.9s var(--ease-out); }
.tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13,10,7,0.8));
  opacity: 0; transition: opacity var(--t) var(--ease);
}
.tile__cap {
  position: absolute; left: 20px; bottom: 18px; z-index: 2;
  color: #fff; opacity: 0; transform: translateY(8px);
  transition: opacity var(--t) var(--ease), transform var(--t) var(--ease);
}
.tile__cap .t { font-family: var(--font-display); font-size: 1.15rem; }
.tile__cap .c { font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--copper-2); }
.tile:hover img { transform: scale(1.06); }
.tile:hover::after { opacity: 1; }
.tile:hover .tile__cap { opacity: 1; transform: translateY(0); }
/* touch devices get no hover — captions stay visible, zoom bubble is noise */
@media (hover: none) {
  .tile::after { opacity: 1; background: linear-gradient(180deg, transparent 55%, rgba(13,10,7,0.72)); }
  .tile__cap { opacity: 1; transform: none; left: 14px; bottom: 12px; }
  .tile__cap .t { font-size: 0.98rem; }
  .tile__cap .c { font-size: 0.66rem; }
  .tile__zoom { display: none; }
}
.tile__zoom {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.16); backdrop-filter: blur(6px);
  display: grid; place-items: center; color: #fff;
  opacity: 0; transform: scale(0.8);
  transition: all var(--t) var(--ease);
}
.tile:hover .tile__zoom { opacity: 1; transform: scale(1); }
.tile.hide { display: none; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10,8,6,0.94);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  padding: 5vw;
  opacity: 0; visibility: hidden;
  transition: opacity var(--t), visibility var(--t);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 100%; max-height: 86vh; border-radius: 10px; box-shadow: var(--shadow-lg); transform: scale(0.96); transition: transform var(--t) var(--ease-out); }
.lightbox.open img { transform: scale(1); }
.lightbox__close, .lightbox__nav {
  position: absolute; color: #fff;
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
  transition: background var(--t-fast);
}
.lightbox__close:hover, .lightbox__nav:hover { background: var(--copper); }
.lightbox__close { top: 4vw; right: 4vw; }
.lightbox__nav.prev { left: 3vw; top: 50%; transform: translateY(-50%); }
.lightbox__nav.next { right: 3vw; top: 50%; transform: translateY(-50%); }

/* ----------  Testimonials  ---------- */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 28px); }
.tst {
  padding: clamp(28px, 3vw, 40px);
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 18px;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.tst:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.tst__stars { display: flex; gap: 3px; color: var(--copper); }
.tst__stars svg { width: 17px; height: 17px; }
.tst__quote { font-family: var(--font-display); font-size: 1.18rem; line-height: 1.45; color: var(--ink); font-weight: 400; letter-spacing: -0.01em; }
.tst__person { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.tst__avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--copper), var(--copper-deep));
  display: grid; place-items: center;
  color: #fff; font-weight: 600; font-size: 1rem;
  flex: none;
}
.tst__name { font-weight: 600; color: var(--ink); font-size: 0.95rem; }
.tst__role { font-size: 0.84rem; color: var(--muted-2); }
.bg-dark .tst { background: var(--charcoal-2); border-color: var(--line-dark); }
.bg-dark .tst__quote { color: var(--on-dark); }
.bg-dark .tst__name { color: var(--on-dark); }

/* ----------  Service areas  ---------- */
.area-tags { display: flex; flex-wrap: wrap; gap: 12px; }
.area-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 20px; border-radius: 100px;
  border: 1px solid var(--line-dark);
  font-size: 0.92rem; color: var(--on-dark);
  transition: all var(--t-fast) var(--ease);
}
.area-tag svg { width: 14px; height: 14px; color: var(--copper-2); }
.area-tag:hover { background: var(--copper); border-color: var(--copper); color: #fff; transform: translateY(-2px); }
.area-tag:hover svg { color: #fff; }

/* ----------  CTA band  ---------- */
.cta-band {
  position: relative; overflow: hidden; color: #fff;
  border-radius: clamp(20px, 3vw, 36px);
}
.cta-band__media { position: absolute; inset: 0; z-index: 0; }
.cta-band__media img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(120deg, rgba(20,14,9,0.92), rgba(120,58,26,0.6));
}
.cta-band__inner { position: relative; z-index: 2; padding: clamp(54px, 8vw, 100px) var(--gutter); text-align: center; max-width: 760px; margin-inline: auto; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.88); margin: 1.1rem auto 2rem; max-width: 540px; }

/* ----------  Contact  ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.form-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em; margin-bottom: 8px; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  color: var(--ink);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--copper);
  box-shadow: 0 0 0 4px rgba(190,106,56,0.12);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success {
  display: none;
  padding: 18px; border-radius: var(--radius-s);
  background: rgba(190,106,56,0.1);
  border: 1px solid rgba(190,106,56,0.3);
  color: var(--copper-deep); font-weight: 500;
  align-items: center; gap: 12px;
}
.form-success.show { display: flex; }

.contact-info { display: grid; gap: 14px; }
.info-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 22px; border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: border-color var(--t-fast), transform var(--t-fast) var(--ease);
}
.info-item:hover { border-color: var(--copper); transform: translateX(4px); }
.info-item__icon {
  flex: none; width: 46px; height: 46px; border-radius: 12px;
  background: rgba(190,106,56,0.12); color: var(--copper);
  display: grid; place-items: center;
}
.info-item__icon svg { width: 20px; height: 20px; }
.info-item h4 { font-family: var(--font-sans); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted-2); font-weight: 600; margin-bottom: 4px; }
.info-item p, .info-item a { color: var(--ink); font-weight: 500; font-size: 1.02rem; }
.info-item a:hover { color: var(--copper); }

/* ----------  FAQ  ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 26px 0;
  font-family: var(--font-display); font-size: clamp(1.1rem, 1.8vw, 1.35rem); color: var(--ink);
}
.faq-q__icon { flex: none; width: 28px; height: 28px; position: relative; }
.faq-q__icon::before, .faq-q__icon::after {
  content: ""; position: absolute; background: var(--copper);
  top: 50%; left: 50%; transition: transform var(--t) var(--ease);
}
.faq-q__icon::before { width: 14px; height: 1.6px; transform: translate(-50%, -50%); }
.faq-q__icon::after { width: 1.6px; height: 14px; transform: translate(-50%, -50%); }
.faq-item.open .faq-q__icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--t) var(--ease); }
.faq-a__inner { padding-bottom: 26px; color: var(--muted); max-width: 92%; }

/* ----------  Footer  ---------- */
.footer { background: var(--charcoal); color: var(--on-dark-mut); padding-top: clamp(60px, 8vw, 100px); }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: clamp(30px, 4vw, 56px); padding-bottom: 56px; border-bottom: 1px solid var(--line-dark); }
.footer .logo { color: #fff; margin-bottom: 20px; }
.footer__about p { color: var(--on-dark-mut); font-size: 0.96rem; max-width: 320px; }
.footer__social { display: flex; gap: 12px; margin-top: 22px; }
.footer__social a {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line-dark); display: grid; place-items: center;
  color: var(--on-dark); transition: all var(--t-fast) var(--ease);
}
.footer__social a:hover { background: var(--copper); border-color: var(--copper); transform: translateY(-3px); }
.footer__social svg { width: 17px; height: 17px; }
.footer__col h5 { font-family: var(--font-sans); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--on-dark-mut); margin-bottom: 20px; font-weight: 600; }
.footer__col ul { display: grid; gap: 12px; }
.footer__col a { color: var(--on-dark); font-size: 0.95rem; transition: color var(--t-fast); }
.footer__col a:hover { color: var(--copper-2); }
.footer__cta h4 { color: #fff; margin-bottom: 14px; font-family: var(--font-display); }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center;
  padding-block: 28px; font-size: 0.85rem; color: var(--on-dark-mut);
}
.footer__bottom a:hover { color: var(--copper-2); }
.footer__legal { display: flex; gap: 22px; flex-wrap: wrap; }

/* ----------  Catalog: collection cards  ---------- */
.collection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2vw, 28px); }
/* homepage variant: on phones the six collections become one swipeable rail */
@media (max-width: 700px) {
  .collection-grid--carousel {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-inline: calc(-1 * var(--gutter));
    padding: 4px var(--gutter) 8px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 calc(var(--gutter) / 2), #000 calc(100% - var(--gutter) / 2), transparent);
    mask-image: linear-gradient(90deg, transparent, #000 calc(var(--gutter) / 2), #000 calc(100% - var(--gutter) / 2), transparent);
  }
  .collection-grid--carousel::-webkit-scrollbar { display: none; }
  .collection-grid--carousel .p-card { flex: none; width: min(76vw, 300px); scroll-snap-align: start; }
  .collection-grid--carousel .p-card__media { aspect-ratio: 4/3; }
}
.p-card {
  display: flex; flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line-2);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.p-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.p-card__media { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--cream-2); }
.p-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease-out); }
.p-card__media picture { display: block; width: 100%; height: 100%; }
.p-card:hover .p-card__media img { transform: scale(1.05); }
.p-card__chip {
  position: absolute; top: 14px; left: 14px;
  padding: 5px 12px; border-radius: 100px;
  background: rgba(250,246,239,0.92); color: var(--ink);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
}
.p-card__body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.p-card__body h3 { font-size: 1.35rem; }
.p-card__body > p { font-size: 0.95rem; }
.p-card__meta {
  margin-top: auto; padding-top: 14px;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  border-top: 1px solid var(--line-2);
  font-size: 0.85rem; color: var(--muted-2);
}
.p-card.hide, .finish.hide { display: none; }

/* Placeholder media (assets pending from client) */
.ph-media {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  width: 100%; height: 100%; min-height: 240px;
  background: repeating-linear-gradient(115deg, var(--cream-2) 0 34px, #EFE4D2 34px 68px);
  color: var(--muted); text-align: center;
  font-size: 0.82rem; letter-spacing: 0.06em;
  padding: 24px;
}
.ph-media svg { width: 30px; height: 30px; opacity: 0.55; }

/* ----------  Catalog: finishes  ---------- */
.finish-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(14px, 1.6vw, 24px); }
.finish { display: block; border-radius: var(--radius-s); overflow: hidden; background: #fff; border: 1px solid var(--line-2); transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease); }
a.finish:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.finish__media { aspect-ratio: 1/1; overflow: hidden; }
.finish__media picture { display: block; width: 100%; height: 100%; }
.finish__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-out); }
a.finish:hover .finish__media img { transform: scale(1.06); }
.finish__body { padding: 12px 14px 14px; display: flex; flex-direction: column; gap: 2px; }
.finish__body strong { font-size: 0.95rem; color: var(--ink); font-weight: 600; }
.finish__body span { font-size: 0.8rem; color: var(--muted-2); }

/* ----------  Chips (filters, use-cases, applications)  ---------- */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
@media (max-width: 700px) {
  /* one scrolling row on mobile — no cramped wrapping, edges fade to hint at more */
  .chip-row, .filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    margin-inline: calc(-1 * var(--gutter));
    padding-inline: var(--gutter);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 var(--gutter), #000 calc(100% - var(--gutter)), transparent);
    mask-image: linear-gradient(90deg, transparent, #000 var(--gutter), #000 calc(100% - var(--gutter)), transparent);
  }
  .chip-row::-webkit-scrollbar, .filter-bar::-webkit-scrollbar { display: none; }
  .chip-row .chip, .filter-bar .filter-btn { flex: none; scroll-snap-align: start; white-space: nowrap; }
}
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: 100px;
  font-size: 0.88rem; font-weight: 500; color: var(--muted);
  border: 1px solid var(--line);
  background: none;
  transition: all var(--t-fast) var(--ease);
}
button.chip:hover, a.chip:hover { color: var(--ink); border-color: var(--ink); }
.chip.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.chip--static { cursor: default; color: var(--ink); background: rgba(190,106,56,0.07); border-color: rgba(190,106,56,0.25); }

/* ----------  Spec list  ---------- */
.spec-list { margin-top: 2rem; border-top: 1px solid var(--line); }
.spec-row { display: grid; grid-template-columns: 1fr 1.4fr; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line-2); }
.spec-row dt { font-size: 0.85rem; font-weight: 600; color: var(--muted); letter-spacing: 0.02em; }
.spec-row dd { margin: 0; font-size: 0.95rem; color: var(--ink); }
.spec-row--pending dd { color: var(--muted-2); font-style: italic; }
.pend-chip {
  display: inline-block; vertical-align: 1px; margin-left: 6px;
  font-size: 0.62rem; font-style: normal; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--copper-deep); background: rgba(190,106,56,0.1);
  padding: 2px 8px; border-radius: 100px;
}
.muted-note { font-size: 0.85rem; color: var(--muted-2); margin-top: 1.2rem; max-width: 60ch; }

/* ----------  Product detail  ---------- */
.pd { padding-top: clamp(120px, 14vw, 160px); }
.pd__crumb { color: var(--muted); margin-bottom: clamp(22px, 3vw, 36px); }
.pd__crumb a:hover { color: var(--copper); }
.pd__grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.pd__grid > * { min-width: 0; } /* let the thumb strip scroll instead of widening the track */
.pd__info h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); margin-block: 0.8rem 1rem; }
.pd__info .lead { margin-bottom: 1rem; }
.pd-gallery__main { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--cream-2); box-shadow: var(--shadow-sm); }
/* swipeable snap carousel — thumbs jump to slides, touch swipes between them */
.pd-gallery__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.pd-gallery__track::-webkit-scrollbar { display: none; }
.pd-gallery__track picture { flex: none; width: 100%; scroll-snap-align: start; scroll-snap-stop: always; }
.pd-gallery__track img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pd-gallery__track picture { aspect-ratio: 4/3; }
.pd-gallery__zoom {
  position: absolute; top: 14px; right: 14px;
  width: 42px; height: 42px; border-radius: 50%;
  background: rgba(250,246,239,0.85); color: var(--ink);
  display: grid; place-items: center;
  transition: background var(--t-fast);
}
.pd-gallery__zoom:hover { background: var(--copper); color: #fff; }
.pd-gallery__zoom svg { width: 18px; height: 18px; }
.pd-gallery__thumbs {
  display: flex; gap: 10px; margin-top: 12px;
  overflow-x: auto; padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.pd-gallery__thumbs::-webkit-scrollbar { display: none; }
.pd-thumb {
  flex: none; width: 86px; aspect-ratio: 1/1;
  border-radius: var(--radius-s); overflow: hidden;
  border: 2px solid transparent;
  scroll-snap-align: start;
  padding: 0; background: var(--cream-2);
  transition: border-color var(--t-fast);
}
.pd-thumb picture, .pd-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pd-thumb.active { border-color: var(--copper); }
.pd-thumb:focus-visible { outline: 2px solid var(--copper); outline-offset: 2px; }
.pd-gallery__cap { margin-top: 8px; font-size: 0.84rem; color: var(--muted-2); }

/* ----------  Texture band (full-bleed close-up)  ---------- */
.texture-band { position: relative; overflow: hidden; max-height: 640px; display: flex; align-items: flex-end; }
.texture-band picture { position: absolute; inset: 0; }
.texture-band img { width: 100%; height: 100%; object-fit: cover; }
.texture-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,10,7,0) 30%, rgba(13,10,7,0.72) 100%); }
.texture-band__label { position: relative; z-index: 2; width: 100%; max-width: var(--container); margin-inline: auto; padding: clamp(200px, 30vw, 380px) var(--gutter) clamp(40px, 5vw, 64px); color: #fff; }
.texture-band__label h2 { color: #fff; margin-block: 0.7rem 0.5rem; }
.texture-band__label p { color: rgba(255,255,255,0.85); max-width: 46ch; }

/* ----------  Room application selector  ---------- */
.room-stage { position: relative; border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 16/9; background: var(--cream-2); }
.room-stage picture { position: absolute; inset: 0; opacity: 0; transition: opacity 0.6s var(--ease); }
.room-stage picture.active { opacity: 1; }
.room-stage img { width: 100%; height: 100%; object-fit: cover; }
.room-stage__cap {
  position: absolute; left: 20px; bottom: 18px; z-index: 2;
  padding: 8px 16px; border-radius: 100px;
  background: rgba(22,18,14,0.72); color: #fff;
  font-size: 0.82rem; letter-spacing: 0.04em;
  backdrop-filter: blur(4px);
}

/* ----------  Sticky mobile CTA  ---------- */
.sticky-cta {
  display: none;
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
  background: rgba(250,246,239,0.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}
.sticky-cta .btn { width: 100%; justify-content: center; }

/* ----------  Reveal animations  ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal-stagger.in-view > * { opacity: 1; transform: none; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: 0.40s; }
.reveal-stagger.in-view > *:nth-child(7) { transition-delay: 0.48s; }

.reveal-img { clip-path: inset(0 0 100% 0); transition: clip-path 1.1s var(--ease-out); }
.reveal-img.in-view { clip-path: inset(0 0 0 0); }

/* ----------  Responsive  ---------- */
@media (max-width: 1180px) {
  .nav__phone { display: none; } /* keep the 7-item nav breathing room */
}

@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .masonry { columns: 2; }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .finish-grid { grid-template-columns: repeat(3, 1fr); }
  .pd__grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 860px) {
  .nav__links, .nav__phone { display: none; }
  .burger { display: block; }
  .hero { padding-top: 92px; align-items: flex-end; }
  .split, .media-row, .media-row--rev .media-row__media, .contact-grid { grid-template-columns: 1fr; }
  .media-row--rev .media-row__media { order: 0; }
  .value-grid, .tst-grid, .duo { grid-template-columns: 1fr; }
  .duo__panel { min-height: 0; aspect-ratio: 4/3.4; }
  .feature::after { background: linear-gradient(180deg, rgba(13,10,7,0.3) 0%, rgba(13,10,7,0.85) 100%); }
  .section-head[style*="sticky"] { position: static !important; }
  .texture-band__label { padding-top: clamp(150px, 40vw, 260px); }
}

@media (max-width: 860px) and (pointer: coarse), (max-width: 600px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 74px; }
}

@media (max-width: 600px) {
  .cards-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 26px; }
  .collection-grid { grid-template-columns: 1fr; gap: 16px; }
  .p-card__media { aspect-ratio: 3/2; } /* shorter cards keep the page scannable */
  .p-card__body { padding: 16px 18px 18px; }
  .finish-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .finish__body { padding: 10px 12px 12px; }
  .finish__body strong { font-size: 0.88rem; }
  .finish__body span { font-size: 0.74rem; }
  .spec-row { grid-template-columns: 1fr; gap: 2px; }
  .value-grid[style] { grid-template-columns: 1fr !important; }
  .value-grid { gap: 0; }
  /* value cards flatten into a quiet list on phones — less boxes, less noise */
  .value-card {
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 14px;
    padding: 16px 0;
    background: none;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid var(--line-2);
  }
  .value-card:hover { transform: none; box-shadow: none; }
  .value-card__icon { grid-row: 1 / span 2; width: 40px; height: 40px; border-radius: 11px; margin-bottom: 0; }
  .value-card__icon svg { width: 20px; height: 20px; }
  .value-card h4 { grid-column: 2; margin-bottom: 4px; font-size: 1.05rem; }
  .value-card p { grid-column: 2; font-size: 0.9rem; }
  .bg-dark .value-card { background: none; }
  /* hero: the three-line meta strip duplicates the duo panels below — drop it */
  .hero__meta { display: none; }
  .hero { min-height: 88svh; }
  .marquee { padding-block: 14px; }
  .marquee__item { font-size: 1rem; }
  /* homepage gallery preview: four tiles are plenty on a phone */
  #gallery-preview .masonry .tile:nth-child(n+5) { display: none; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__about, .footer__cta { grid-column: 1 / -1; }
  /* two-column mobile gallery — small tiles read as a gallery, not a feed */
  .masonry { columns: 2; column-gap: 10px; }
  .masonry .tile { margin-bottom: 10px; border-radius: var(--radius-s); }
  .field-row { grid-template-columns: 1fr; }
  .stats-row { gap: 26px 34px; }
  h2 { font-size: clamp(1.75rem, 7vw, 2.4rem); }
  .section-head { margin-bottom: 34px; }
  .hero h1 { font-size: clamp(2.4rem, 10vw, 3.2rem); }
  .hero p { font-size: 1.05rem; }
  .btn-row .btn { width: 100%; justify-content: center; }
  /* Declutter mobile header — CTA lives in the drawer */
  .nav__cta .btn { display: none; }
  .scroll-cue { display: none; }
  .duo__panel { aspect-ratio: 4/4.4; border-radius: var(--radius); }
  .duo__body { padding: 22px 20px; }
  .duo__panel h3 { font-size: 1.7rem; }
  .duo__panel p { font-size: 0.92rem; margin-bottom: 0.9rem; }
  .room-stage { aspect-ratio: 4/3; border-radius: var(--radius); }
  .room-stage__cap { left: 12px; bottom: 10px; font-size: 0.72rem; padding: 6px 12px; }
  .svc-card--lg { min-height: 420px; }
  .pd-thumb { width: 68px; }
  .pd { padding-top: 104px; }
  .cta-band__inner { padding-inline: 22px; }
  .subhero h1 { font-size: clamp(2.2rem, 9.5vw, 2.9rem); }
}

/* ----------  Reduced motion  ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal, .reveal-stagger > *, .reveal-img { opacity: 1 !important; transform: none !important; clip-path: none !important; }
}
