/* ============================================================
   GO4WOOD — Premium Industrial Luxury
   V7.1 — Reference-matched rebuild
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Playfair+Display:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&family=Barlow+Condensed:wght@700;800;900&display=swap');

:root {
  --black:       #080808;
  --charcoal:    #111111;
  --dark:        #181818;
  --card:        #1e1e1e;
  --border:      #2a2a2a;
  --steel:       #3a3a3a;
  --steel-light: #6b7280;
  --white:       #f5f5f5;
  --white-dim:   rgba(245,245,245,0.7);
  --gold:        #c9a84c;
  --gold-light:  #e8c96e;
  --gold-dim:    rgba(201,168,76,0.15);
  --timber:      #8b5a2b;
  --timber-light:#b07840;
  --blue:        #1f5fae;
  --font-display:'Bebas Neue', 'Barlow Condensed', Impact, sans-serif;
  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Inter', system-ui, sans-serif;
  --font-mono:   'Courier New', monospace;
  --transition:  0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-gold: 0 0 40px rgba(201,168,76,0.3);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

.label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.gold-line {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 12px auto 16px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3%;
  height: 76px;
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: var(--transition);
  gap: 24px;
}
.nav.scrolled {
  height: 60px;
  background: rgba(8,8,8,0.99);
  box-shadow: 0 4px 30px rgba(0,0,0,0.8);
}
.nav-logos {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}
.nav.scrolled .nav-logo { height: 50px; }
/* Go4Wood — white elements on dark + gold glow
   (the PNG carries its own white glow, so CSS adds gold ambience only) */
img[src*="logo1"] {
  filter:
    drop-shadow(0 0 12px rgba(201,168,76,0.55))
    drop-shadow(0 2px 8px rgba(0,0,0,0.8));
  transition: filter var(--transition);
}
img[src*="logo1"]:hover {
  filter:
    drop-shadow(0 0 18px rgba(201,168,76,0.8))
    drop-shadow(0 2px 8px rgba(0,0,0,0.8));
}
/* logo2 removed */
img[src*="logo2"] {
  filter:
    drop-shadow(0 0 14px rgba(255,110,0,0.7))
    drop-shadow(0 0 6px rgba(255,200,80,0.5))
    drop-shadow(0 0 3px rgba(255,255,255,0.4))
    drop-shadow(0 2px 8px rgba(0,0,0,0.9));
  transition: filter var(--transition);
}
img[src*="logo2"]:hover {
  filter:
    drop-shadow(0 0 20px rgba(255,110,0,0.9))
    drop-shadow(0 0 9px rgba(255,200,80,0.7))
    drop-shadow(0 0 5px rgba(255,255,255,0.5))
    drop-shadow(0 2px 8px rgba(0,0,0,0.9));
}
.nav-divider-v {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  opacity: 0.6;
}
.nav-center {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-center a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.75);
  position: relative;
  white-space: nowrap;
  transition: color var(--transition);
}
.nav-center a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-center a:hover,
.nav-center a.active { color: var(--gold); }
.nav-center a:hover::after,
.nav-center a.active::after { width: 100%; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white-dim);
  white-space: nowrap;
  transition: color var(--transition);
}
.nav-phone:hover { color: var(--gold); }
.nav-phone svg { color: var(--gold); flex-shrink: 0; }
.btn-nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  white-space: nowrap;
  transition: var(--transition);
}
.btn-nav-cta:hover {
  background: var(--gold-light);
  box-shadow: var(--shadow-gold);
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0;
  background: rgba(8,8,8,0.99);
  border-bottom: 1px solid var(--border);
  padding: 20px 5%;
  z-index: 999;
  flex-direction: column;
  gap: 16px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:hover { color: var(--gold); }

/* ============================================================
   HERO — Reference-matched split design
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

/* Split backgrounds */
.hero-bg-left {
  position: absolute;
  top: 0; left: 0;
  width: 50%; height: 100%;
  background:
    repeating-linear-gradient(
      88deg,
      transparent 0px, transparent 3px,
      rgba(0,0,0,0.08) 3px, rgba(0,0,0,0.08) 4px
    ),
    repeating-linear-gradient(
      178deg,
      transparent 0px, transparent 18px,
      rgba(139,90,43,0.04) 18px, rgba(139,90,43,0.04) 19px
    ),
    linear-gradient(152deg,
      #3a1e06 0%, #6b3a14 12%, #a06020 24%,
      #c8842e 34%, #b07030 44%, #8a4e1c 54%,
      #6b3410 64%, #3e1c08 76%, #5a2e10 88%, #3a1800 100%
    );
}
.hero-bg-left::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,8,8,0.15) 0%, rgba(8,8,8,0.5) 100%);
}
.hero-bg-right {
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background:
    repeating-linear-gradient(
      168deg,
      transparent 0px, transparent 2px,
      rgba(255,255,255,0.02) 2px, rgba(255,255,255,0.02) 3px
    ),
    repeating-linear-gradient(
      78deg,
      transparent 0px, transparent 12px,
      rgba(0,0,0,0.06) 12px, rgba(0,0,0,0.06) 13px
    ),
    linear-gradient(165deg,
      #1a1a1a 0%, #2a2a2a 18%, #383838 30%,
      #444444 42%, #303030 54%, #222222 66%,
      #2e2e2e 78%, #1c1c1c 88%, #141414 100%
    );
}
.hero-bg-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to left, rgba(8,8,8,0.15) 0%, rgba(8,8,8,0.5) 100%);
}
/* Dark vignette at bottom for text readability */
.hero-vignette {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.5) 60%, transparent 100%);
  z-index: 2;
}

/* ── SPLIT TEXT ROW ── */
.hero-split-text {
  position: absolute;
  top: 50%;
  left: 0; right: 0;
  transform: translateY(-58%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  gap: 0;
}
.hero-text-left {
  flex: 1;
  text-align: right;
  padding-right: 80px;
}
.hero-text-right {
  flex: 1;
  text-align: left;
  padding-left: 80px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7.5vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  display: block;
}
/* Wood-textured left text */
.hero-headline.wood-text {
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image:
    repeating-linear-gradient(
      89deg,
      transparent 0px, transparent 3px,
      rgba(0,0,0,0.12) 3px, rgba(0,0,0,0.12) 4px
    ),
    linear-gradient(148deg,
      #4a2008 0%, #8a4820 18%, #c07828 34%,
      #e8aa48 48%, #d09030 60%, #a06020 74%,
      #6a3010 88%, #3c1806 100%
    );
  background-size: cover;
  filter: brightness(1.15) contrast(1.05);
  text-shadow: none;
}
/* Steel-textured right text */
.hero-headline.steel-text {
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image:
    repeating-linear-gradient(
      168deg,
      transparent 0px, transparent 2px,
      rgba(255,255,255,0.06) 2px, rgba(255,255,255,0.06) 3px
    ),
    linear-gradient(158deg,
      #888888 0%, #aaaaaa 14%, #cccccc 28%,
      #e8e8e8 42%, #c4c4c4 56%, #9a9a9a 70%,
      #787878 84%, #909090 100%
    );
  background-size: cover;
  filter: brightness(1.1) contrast(1.05) saturate(0);
  text-shadow: none;
}

/* ── CENTRE DIVIDER — glowing chevron ── */
.hero-divider {
  position: relative;
  z-index: 6;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 0;
}
.hero-chevron {
  position: relative;
  width: 0;
  height: 0;
}
.hero-chevron-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  top: -200px;
  bottom: -200px;
  background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, transparent);
  box-shadow: 0 0 12px var(--gold), 0 0 40px rgba(201,168,76,0.6), 0 0 80px rgba(201,168,76,0.2);
  animation: dividerPulse 2.5s ease-in-out infinite;
}
@keyframes dividerPulse {
  0%, 100% { box-shadow: 0 0 8px var(--gold), 0 0 30px rgba(201,168,76,0.5); opacity: 0.8; }
  50% { box-shadow: 0 0 20px var(--gold), 0 0 60px rgba(201,168,76,0.8), 0 0 100px rgba(201,168,76,0.3); opacity: 1; }
}
/* Chevron ">" shape using clip-path */
.hero-chevron-arrow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 100px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  clip-path: polygon(0 0, 60% 50%, 0 100%, 20% 100%, 80% 50%, 20% 0);
  filter: drop-shadow(0 0 16px var(--gold)) drop-shadow(0 0 40px rgba(201,168,76,0.8));
  animation: chevronPulse 2s ease-in-out infinite;
  z-index: 7;
}
@keyframes chevronPulse {
  0%, 100% { filter: drop-shadow(0 0 12px var(--gold)) drop-shadow(0 0 30px rgba(201,168,76,0.7)); transform: translate(-50%, -50%) scale(1); }
  50% { filter: drop-shadow(0 0 24px var(--gold-light)) drop-shadow(0 0 60px rgba(232,201,110,0.9)); transform: translate(-50%, -50%) scale(1.05); }
}
/* Spark canvas */
.hero-spark-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 6;
  pointer-events: none;
}

/* ── HERO BOTTOM — "BUILT TOGETHER" + copy + buttons ── */
.hero-bottom {
  position: relative;
  z-index: 8;
  text-align: center;
  padding: 0 24px 60px;
  width: 100%;
}
.hero-together-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.5s;
}
.hero-together-line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.hero-together-line.right { background: linear-gradient(to left, transparent, var(--gold)); }
.hero-together-text {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  letter-spacing: 0.25em;
  color: var(--white);
}
.hero-sub {
  font-size: clamp(0.85rem, 1.6vw, 1rem);
  color: var(--white-dim);
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.7;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.7s;
}
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease forwards 0.9s;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '→';
  font-size: 1rem;
}
.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  border: 1px solid rgba(245,245,245,0.35);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
}
.btn-outline::after { content: '→'; font-size: 1rem; }
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(245,245,245,0.06);
}

/* ── HERO left/right text animation ── */
.hero-text-left { opacity: 0; animation: slideRight 1s ease forwards 0.1s; }
.hero-text-right { opacity: 0; animation: slideLeft 1s ease forwards 0.1s; }
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideLeft {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ============================================================
   SERVICES STRIP — Reference style: icon left + text
   ============================================================ */
.services-strip {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1400px;
  margin: 0 auto;
}
.strip-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 32px 28px;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
  cursor: default;
}
.strip-item:last-child { border-right: none; }
.strip-item:hover { background: rgba(201,168,76,0.04); }
.strip-icon-wrap {
  flex-shrink: 0;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.strip-icon-wrap svg {
  width: 42px; height: 42px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.strip-text {}
.strip-title {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.strip-desc {
  font-size: 0.8rem;
  color: var(--white-dim);
  line-height: 1.5;
}

/* ============================================================
   FEATURED PROJECTS (homepage section)
   ============================================================ */
.featured-projects {
  padding: 0;
}
.featured-head {
  text-align: center;
  padding: 56px 6% 36px;
  position: relative;
}
.featured-head::before,
.featured-head::after {
  content: '';
  position: absolute;
  top: 50%; top: calc(56px + 22px);
  width: 80px; height: 1px;
  background: var(--gold);
}
.featured-head::before { right: calc(50% + 110px); }
.featured-head::after  { left:  calc(50% + 110px); }
.featured-head h2 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white-dim);
  font-weight: 400;
}
.projects-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.proj-thumb {
  position: relative;
  aspect-ratio: 3/2.2;
  overflow: hidden;
  cursor: pointer;
}
.proj-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.proj-thumb:hover img { transform: scale(1.08); }
.proj-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 20px;
  transition: background var(--transition);
}
.proj-thumb:hover .proj-thumb-overlay { background: rgba(8,8,8,0.55); }
.proj-thumb-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}
.proj-thumb-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition) 0.05s;
}
.proj-thumb:hover .proj-thumb-label,
.proj-thumb:hover .proj-thumb-name {
  opacity: 1;
  transform: translateY(0);
}
.projects-row-cta {
  text-align: center;
  padding: 36px;
  border-top: 1px solid var(--border);
}
.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 36px;
  border: 1px solid var(--border);
  color: var(--white-dim);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
}
.btn-view-all::after { content: '→'; }
.btn-view-all:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}

/* ============================================================
   SECTION SCAFFOLDING
   ============================================================ */
.section { padding: 96px 6%; }
.section-alt { background: var(--charcoal); }
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin: 12px 0 20px;
}
.section-header p {
  font-size: 0.95rem;
  color: var(--white-dim);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  max-width: 1200px;
  margin: 0 auto;
}
.about-panel {
  position: relative;
  padding: 64px 52px;
  background: var(--dark);
  overflow: hidden;
}
.about-panel-bg {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-size: cover;
  background-position: center;
  transition: opacity var(--transition);
}
.about-panel:hover .about-panel-bg { opacity: 0.12; }
.about-panel.wood .about-panel-bg {
  background:
    repeating-linear-gradient(88deg, transparent 0px, transparent 3px, rgba(0,0,0,0.12) 3px, rgba(0,0,0,0.12) 4px),
    linear-gradient(150deg, #3a1e06 0%, #7a4018 25%, #c08030 50%, #8a4e1c 75%, #3a1800 100%);
}
.about-panel.steel .about-panel-bg {
  background:
    repeating-linear-gradient(168deg, transparent 0px, transparent 2px, rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 3px),
    linear-gradient(160deg, #0e0e0e 0%, #2a2a2a 30%, #3a3a3a 50%, #222222 70%, #111111 100%);
}
.about-panel::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.about-panel:hover::after { transform: scaleX(1); }
.about-content { position: relative; z-index: 1; }
.about-logo {
  /* fluid: ~120px on desktop, tapering to 76px on phones */
  height: clamp(76px, 9.5vw, 120px);
  width: auto;
  object-fit: contain;
  margin-bottom: 28px;
}
.about-year {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 12px;
}
.about-panel h3 {
  font-family: var(--font-head);
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.2;
}
.about-panel p {
  font-size: 0.88rem;
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 24px;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.about-tag {
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: var(--transition);
}
.about-panel:hover .about-tag { border-color: rgba(201,168,76,0.4); color: var(--gold); }

/* ============================================================
   STATS
   ============================================================ */
.stats-bar {
  padding: 56px 6%;
  background: var(--black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.stat-item { padding: 24px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}
.stat-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-dim);
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  max-width: 1200px;
  margin: 0 auto;
}
.services-col { padding: 52px 44px; background: var(--dark); }
.services-col-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.services-col-logo { height: 46px; width: auto; object-fit: contain; }
.services-col-title { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; }
.services-list { display: flex; flex-direction: column; gap: 2px; }
.service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid transparent;
  border-radius: 2px;
  transition: var(--transition);
}
.service-item:hover { background: rgba(201,168,76,0.05); border-color: rgba(201,168,76,0.2); }
.service-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.service-item span { font-size: 0.85rem; color: var(--white-dim); transition: color var(--transition); }
.service-item:hover span { color: var(--white); }

/* ============================================================
   TRANSITION SECTION
   ============================================================ */
.transition-section {
  position: relative;
  height: 90vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.transition-wood,
.transition-steel {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: clip-path 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.transition-wood { background-image: url('../assets/proj-staircase.jpg'); background-position: center 30%; clip-path: inset(0 50% 0 0); }
.transition-steel { background-image: url('../assets/proj-kitchen-island.jpg'); background-position: center 25%; clip-path: inset(0 0 0 50%); }
.transition-overlay { position: absolute; inset: 0; background: rgba(8,8,8,0.6); }
.transition-content { position: relative; z-index: 5; text-align: center; }
.transition-content h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.t-wood { color: var(--timber-light); display: block; }
.t-arrow { color: var(--gold); display: block; font-size: 2.5rem; margin: 4px 0; }
.t-steel { color: #b0b8c5; display: block; }
.t-together { color: var(--gold); display: block; font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 12px; letter-spacing: 0.2em; }

/* ============================================================
   CATALOG
   ============================================================ */
.catalog-tabs {
  display: flex;
  gap: 0;
  margin: 0 auto 40px;
  max-width: 440px;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.catalog-tab {
  flex: 1;
  padding: 11px 14px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  text-align: center;
  cursor: pointer;
  border-right: 1px solid var(--border);
  transition: var(--transition);
}
.catalog-tab:last-child { border-right: none; }
.catalog-tab.active,
.catalog-tab:hover { background: var(--gold); color: var(--black); }
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}
.catalog-panel { display: none; grid-column: 1/-1; }
.catalog-panel.active { display: contents; }
.product-card { background: var(--dark); overflow: hidden; }
.product-card-img { aspect-ratio: 4/3; overflow: hidden; background: var(--steel); }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.product-card:hover .product-card-img img { transform: scale(1.08); }
.product-card-body { padding: 22px; }
.product-card h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.product-card p { font-size: 0.78rem; color: var(--white-dim); line-height: 1.6; margin-bottom: 16px; }
.btn-quote {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
}
.btn-quote:hover { background: var(--gold); color: var(--black); }

/* ============================================================
   PROJECTS GALLERY
   ============================================================ */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 8px 22px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  cursor: pointer;
  transition: var(--transition);
  background: none;
}
.filter-btn:hover,
.filter-btn.active { border-color: var(--gold); color: var(--gold); background: var(--gold-dim); }
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1400px;
  margin: 0 auto;
}
.project-card { position: relative; aspect-ratio: 4/3; overflow: hidden; cursor: pointer; }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.project-card:hover img { transform: scale(1.1); }
.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background var(--transition);
}
.project-card:hover .project-overlay { background: rgba(8,8,8,0.7); }
.project-overlay .view-btn {
  padding: 9px 26px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  opacity: 0;
  transform: translateY(14px);
  transition: var(--transition);
}
.project-card:hover .view-btn { opacity: 1; transform: translateY(0); }
.project-overlay .proj-label {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white-dim);
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition) 0.05s;
}
.project-card:hover .proj-label { opacity: 1; transform: translateY(0); }

/* ============================================================
   CUSTOM BUILD FORM
   ============================================================ */
.custom-build-hero {
  padding: 148px 6% 72px;
  text-align: center;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.custom-build-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/proj-reception-desk.jpg') center 35%/cover;
  opacity: 0.07;
}
.custom-build-hero-content { position: relative; z-index: 1; }
.custom-build-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  line-height: 1.0;
  margin: 12px 0 20px;
  letter-spacing: 0.05em;
}
.custom-build-hero p { font-size: 1rem; color: var(--white-dim); max-width: 500px; margin: 0 auto; }
.build-form-section { padding: 72px 6%; max-width: 860px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white-dim); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 2px var(--gold-dim); }
.form-group select option { background: var(--dark); }
.form-group textarea { resize: vertical; min-height: 110px; }
.upload-zone {
  border: 2px dashed var(--border);
  border-radius: 2px;
  padding: 36px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
}
.upload-zone:hover { border-color: var(--gold); background: var(--gold-dim); }
.upload-zone input[type="file"] { display: none; }
.upload-icon { font-size: 1.8rem; margin-bottom: 10px; color: var(--white-dim); }
.upload-zone p { font-size: 0.78rem; color: var(--white-dim); line-height: 1.5; }
.upload-zone span { color: var(--gold); }
.form-submit { margin-top: 28px; text-align: center; }
.btn-submit {
  padding: 16px 52px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.btn-submit:hover { background: var(--gold-light); box-shadow: var(--shadow-gold); transform: translateY(-2px); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-card { padding: 52px 44px; background: var(--dark); }
.contact-card-logo { height: 50px; width: auto; object-fit: contain; margin-bottom: 28px; }
.contact-card h3 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 20px; }
.contact-info { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.contact-row { display: flex; align-items: flex-start; gap: 10px; }
.contact-icon { font-size: 1rem; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-detail { font-size: 0.86rem; color: var(--white-dim); }
.contact-btns { display: flex; flex-direction: column; gap: 8px; }
.btn-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
}
.btn-contact.whatsapp:hover { border-color: #25D366; background: rgba(37,211,102,0.08); color: #25D366; }
.btn-contact.email:hover { border-color: var(--gold); background: var(--gold-dim); color: var(--gold); }
.map-placeholder {
  grid-column: 1 / -1;
  height: 260px;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--border);
  border-radius: 2px;
  font-size: 0.8rem;
  color: var(--white-dim);
  text-align: center;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 148px 6% 72px;
  background: var(--charcoal);
  text-align: center;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-size: cover;
  background-position: center;
}
.page-hero.wood-bg::before {
  background:
    repeating-linear-gradient(89deg, transparent 0px, transparent 3px, rgba(0,0,0,0.1) 3px, rgba(0,0,0,0.1) 4px),
    repeating-linear-gradient(179deg, transparent 0px, transparent 20px, rgba(139,90,43,0.05) 20px, rgba(139,90,43,0.05) 21px),
    linear-gradient(148deg, #2e1404 0%, #6b3010 20%, #b07030 38%, #c8882e 50%, #9a5820 64%, #5a2e0e 80%, #2a1006 100%);
}
.page-hero.steel-bg::before {
  background:
    repeating-linear-gradient(168deg, transparent 0px, transparent 2px, rgba(255,255,255,0.025) 2px, rgba(255,255,255,0.025) 3px),
    repeating-linear-gradient(78deg, transparent 0px, transparent 14px, rgba(0,0,0,0.05) 14px, rgba(0,0,0,0.05) 15px),
    linear-gradient(162deg, #0a0a0a 0%, #222222 22%, #363636 40%, #424242 52%, #2e2e2e 66%, #1a1a1a 82%, #0e0e0e 100%);
}
.page-hero.project-bg::before {
  background:
    repeating-linear-gradient(132deg, transparent 0px, transparent 4px, rgba(0,0,0,0.08) 4px, rgba(0,0,0,0.08) 5px),
    repeating-linear-gradient(45deg, transparent 0px, transparent 8px, rgba(201,168,76,0.02) 8px, rgba(201,168,76,0.02) 9px),
    linear-gradient(155deg, #0a0a0a 0%, #1a1410 18%, #2a2018 34%, #3a2c1c 48%, #2e2416 62%, #1c1810 78%, #0e0c08 100%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  margin: 12px 0 20px;
  line-height: 1.0;
  letter-spacing: 0.06em;
}
.page-hero p { font-size: 0.95rem; color: var(--white-dim); max-width: 520px; margin: 0 auto; line-height: 1.7; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  padding: 60px 6% 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand-logos { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.footer-logo { height: 64px; width: auto; object-fit: contain; }
.footer-brand p { font-size: 0.8rem; color: var(--white-dim); line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col li a { font-size: 0.8rem; color: var(--white-dim); transition: color var(--transition); }
.footer-col li a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.72rem; color: var(--white-dim); }
.footer-divider { color: var(--gold); margin: 0 8px; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-left { opacity: 0; transform: translateX(-36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-right { opacity: 0; transform: translateX(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible, .fade-left.visible, .fade-right.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Service example tiles — hover zoom (replaces inline JS handlers) */
.svc-zoom:hover { transform: scale(1.08); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-headline { font-size: clamp(3rem, 6vw, 6rem); }
  .hero-text-left { padding-right: 52px; }
  .hero-text-right { padding-left: 52px; }
}
@media (max-width: 900px) {
  .nav-center { display: none; }
  .nav-right { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo { height: 52px; }
  .about-grid { grid-template-columns: 1fr; }
  .services-cols { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .projects-row { grid-template-columns: repeat(2, 1fr); }
  .hero-text-left { padding-right: 32px; }
  .hero-text-right { padding-left: 32px; }
  .page-hero { padding: 100px 6% 56px; }
}
@media (max-width: 640px) {
  .nav { height: 64px; }
  .nav-logo { height: 46px; }
  .nav-logos { gap: 6px; }
  .nav-divider-v { height: 28px; }
  .nav-mobile { top: 64px; }
  .section { padding: 60px 5%; }
  /* Hero — stack layout on mobile */
  .hero { height: 100svh; min-height: 680px; padding-top: 72px; }
  /* Headline joins the flex flow so it centers between the nav and the
     bottom block and can never overlap it, whatever the screen height */
  .hero-split-text {
    position: relative;
    top: auto; left: auto; right: auto;
    transform: none;
    margin: auto 0;
    width: 100%;
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
  }
  .hero-text-left, .hero-text-right { text-align: center; padding: 0; flex: none; }
  .hero-headline { font-size: clamp(2.6rem, 10vw, 3.2rem); line-height: 1; }
  /* Solid colour fallback so text is always readable on mobile */
  .hero-headline.wood-text {
    background-image: none;
    -webkit-text-fill-color: #d4900a;
    color: #d4900a;
    filter: none;
  }
  .hero-headline.steel-text {
    background-image: none;
    -webkit-text-fill-color: #cccccc;
    color: #cccccc;
    filter: none;
  }
  .hero-divider { display: none; }
  .hero-bottom { padding: 0 20px 48px; }
  .hero-together-text { font-size: 1rem; letter-spacing: 0.18em; }
  .hero-sub { font-size: 0.85rem; }
  .hero-btns { flex-direction: column; align-items: center; gap: 10px; }
  .hero-btns .btn-primary, .hero-btns .btn-outline { width: 100%; max-width: 280px; text-align: center; justify-content: center; }
  /* Grids */
  .strip-inner { grid-template-columns: 1fr; }
  .projects-row { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: 1fr; }
  .about-panel { padding: 44px 24px; }
  .contact-card { padding: 36px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  /* Page heros */
  .page-hero { padding: 90px 6% 48px; }
  .page-hero h1 { font-size: 2.2rem; }
}

/* ============================================================
   GENERATED PRODUCT IMAGERY — CSS Texture System
   ============================================================ */

/* Base placeholder container */
.prod-img {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* ── Wood Textures ── */
.wood-honey {
  background:
    repeating-linear-gradient(89deg, transparent 0, transparent 3px, rgba(0,0,0,0.07) 3px, rgba(0,0,0,0.07) 4px),
    repeating-linear-gradient(2deg,  transparent 0, transparent 18px, rgba(255,255,255,0.05) 18px, rgba(255,255,255,0.05) 19px),
    linear-gradient(152deg, #c49030 0%, #e8c070 20%, #c4912a 40%, #a07828 60%, #c49030 80%, #e8c870 100%);
}
.wood-walnut {
  background:
    repeating-linear-gradient(91deg, transparent 0, transparent 2px, rgba(0,0,0,0.09) 2px, rgba(0,0,0,0.09) 3px),
    repeating-linear-gradient(1deg,  transparent 0, transparent 22px, rgba(255,255,255,0.03) 22px, rgba(255,255,255,0.03) 23px),
    linear-gradient(148deg, #4a2e10 0%, #7a4820 25%, #9a5e28 45%, #7a4820 65%, #4a2e10 85%, #6b3e18 100%);
}
.wood-ebony {
  background:
    repeating-linear-gradient(88deg, transparent 0, transparent 5px, rgba(0,0,0,0.12) 5px, rgba(0,0,0,0.12) 6px),
    repeating-linear-gradient(3deg,  transparent 0, transparent 16px, rgba(255,255,255,0.025) 16px, rgba(255,255,255,0.025) 17px),
    linear-gradient(158deg, #1a0802 0%, #2d1508 20%, #3d2010 40%, #2d1508 65%, #1a0802 85%, #221006 100%);
}
.wood-oak {
  background:
    repeating-linear-gradient(90deg, transparent 0, transparent 4px, rgba(0,0,0,0.05) 4px, rgba(0,0,0,0.05) 5px),
    repeating-linear-gradient(0deg,  transparent 0, transparent 26px, rgba(255,255,255,0.04) 26px, rgba(255,255,255,0.04) 27px),
    linear-gradient(144deg, #b87830 0%, #d8a050 25%, #c48830 50%, #a06020 70%, #c48830 90%, #d8a050 100%);
}

/* ── Steel Textures ── */
.steel-brushed {
  background:
    repeating-linear-gradient(168deg, transparent 0, transparent 6px, rgba(255,255,255,0.025) 6px, rgba(255,255,255,0.025) 7px),
    repeating-linear-gradient(90deg,  transparent 0, transparent 40px, rgba(255,255,255,0.015) 40px, rgba(255,255,255,0.015) 41px),
    linear-gradient(165deg, #2a2a2a 0%, #404040 30%, #505050 50%, #383838 70%, #2a2a2a 100%);
}
.steel-dark {
  background:
    repeating-linear-gradient(140deg, transparent 0, transparent 8px, rgba(255,255,255,0.018) 8px, rgba(255,255,255,0.018) 9px),
    linear-gradient(160deg, #0e0e0e 0%, #1a1a1a 25%, #242424 50%, #181818 75%, #0e0e0e 100%);
}
.steel-industrial {
  background:
    repeating-linear-gradient(132deg, transparent 0, transparent 10px, rgba(255,255,255,0.012) 10px, rgba(255,255,255,0.012) 11px),
    repeating-linear-gradient(45deg,  transparent 0, transparent 30px, rgba(0,0,0,0.08) 30px, rgba(0,0,0,0.08) 31px),
    linear-gradient(155deg, #141414 0%, #202020 30%, #2c2c2c 50%, #1e1e1e 75%, #141414 100%);
}

/* ── Hybrid Textures ── */
.hybrid-warm {
  background:
    repeating-linear-gradient(90deg, transparent 0, transparent 3px, rgba(0,0,0,0.04) 3px, rgba(0,0,0,0.04) 4px),
    linear-gradient(138deg,
      #4a2e10 0%, #7a4820 28%,
      rgba(201,168,76,0.6) 44%, rgba(201,168,76,0.8) 50%, rgba(201,168,76,0.6) 56%,
      #1a1a1a 72%, #242424 100%
    );
}
.hybrid-cool {
  background:
    linear-gradient(142deg,
      #3d2008 0%, #6b3f18 30%,
      rgba(201,168,76,0.5) 44%, rgba(201,168,76,0.7) 50%, rgba(201,168,76,0.5) 56%,
      #111 70%, #1e1e1e 100%
    );
}
.hybrid-premium {
  background:
    repeating-linear-gradient(135deg, transparent 0, transparent 5px, rgba(255,255,255,0.015) 5px, rgba(255,255,255,0.015) 6px),
    linear-gradient(128deg,
      #2a1506 0%, #5a3618 35%,
      #c9a84c 47%, #e8c96e 50%, #c9a84c 53%,
      #161616 65%, #202020 100%
    );
}

/* ── Granite / Stone Textures ── */
.granite-grey {
  background:
    repeating-linear-gradient(37deg, transparent 0, transparent 4px, rgba(255,255,255,0.018) 4px, rgba(255,255,255,0.018) 5px),
    repeating-linear-gradient(127deg, transparent 0, transparent 7px, rgba(0,0,0,0.06) 7px, rgba(0,0,0,0.06) 8px),
    repeating-linear-gradient(74deg, transparent 0, transparent 11px, rgba(255,255,255,0.012) 11px, rgba(255,255,255,0.012) 12px),
    linear-gradient(148deg, #2e2e2e 0%, #3d3d3d 18%, #484848 32%, #3a3a3a 48%, #525252 60%, #3e3e3e 74%, #2c2c2c 88%, #363636 100%);
}
.granite-warm {
  background:
    repeating-linear-gradient(42deg, transparent 0, transparent 5px, rgba(255,255,255,0.014) 5px, rgba(255,255,255,0.014) 6px),
    repeating-linear-gradient(118deg, transparent 0, transparent 9px, rgba(0,0,0,0.07) 9px, rgba(0,0,0,0.07) 10px),
    linear-gradient(155deg, #3a2e28 0%, #4e3e36 20%, #5c4840 36%, #6a5448 52%, #4a3c34 66%, #382c26 80%, #443830 92%, #3c3028 100%);
}
.granite-white {
  background:
    repeating-linear-gradient(55deg, transparent 0, transparent 3px, rgba(0,0,0,0.04) 3px, rgba(0,0,0,0.04) 4px),
    repeating-linear-gradient(145deg, transparent 0, transparent 8px, rgba(0,0,0,0.03) 8px, rgba(0,0,0,0.03) 9px),
    repeating-linear-gradient(95deg, transparent 0, transparent 15px, rgba(100,80,60,0.04) 15px, rgba(100,80,60,0.04) 16px),
    linear-gradient(142deg, #c0bab4 0%, #d4cec8 18%, #c8c2bc 32%, #dedad4 46%, #c4beb8 60%, #d0cac4 74%, #bebab4 88%, #cac6c0 100%);
}

/* ── Joinery Textures ── */
.joinery-natural {
  background:
    repeating-linear-gradient(90deg, transparent 0, transparent 2px, rgba(0,0,0,0.1) 2px, rgba(0,0,0,0.1) 3px),
    repeating-linear-gradient(2deg, transparent 0, transparent 14px, rgba(255,255,255,0.04) 14px, rgba(255,255,255,0.04) 15px),
    linear-gradient(150deg, #8a5a20 0%, #b07830 18%, #c8902a 32%, #a06828 48%, #8a5820 64%, #c08030 76%, #9a6828 88%, #b07030 100%);
}
.joinery-dark {
  background:
    repeating-linear-gradient(88deg, transparent 0, transparent 3px, rgba(0,0,0,0.14) 3px, rgba(0,0,0,0.14) 4px),
    repeating-linear-gradient(178deg, transparent 0, transparent 20px, rgba(255,255,255,0.025) 20px, rgba(255,255,255,0.025) 21px),
    linear-gradient(145deg, #1e0c04 0%, #321408 20%, #482010 38%, #381808 56%, #2a1006 72%, #401c0c 86%, #2e1206 100%);
}

/* ── Corner brackets overlay ── */
.prod-img::before,
.prod-img::after {
  content: '';
  position: absolute;
  width: 22px; height: 22px;
  opacity: 0.35;
  transition: opacity 0.4s;
}
.prod-img::before {
  top: 14px; left: 14px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
}
.prod-img::after {
  bottom: 14px; right: 14px;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
}
.product-card:hover .prod-img::before,
.product-card:hover .prod-img::after { opacity: 0.7; }

/* ── Real photo cards ── */
.prod-img-photo {
  background-size: cover;
  background-position: center;
}
.prod-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0.48) 0%, rgba(0,0,0,0.22) 60%, rgba(0,0,0,0.52) 100%);
  z-index: 1;
}
.prod-img-photo .prod-badge { z-index: 3; }
.prod-img-photo .prod-tag   { z-index: 3; }

/* ── Icon SVG ── */
.prod-icon {
  position: relative;
  z-index: 2;
  margin-bottom: 14px;
  filter: drop-shadow(0 0 14px rgba(201,168,76,0.45));
  transition: filter 0.4s;
}
.product-card:hover .prod-icon { filter: drop-shadow(0 0 22px rgba(201,168,76,0.75)); }
.prod-icon svg {
  width: 64px; height: 64px;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.85;
}

/* ── Label below icon ── */
.prod-tag {
  position: relative;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.65);
  text-align: center;
  padding: 0 16px;
  line-height: 1.6;
}

/* ── Category badge top-right ── */
.prod-badge {
  position: absolute;
  top: 0; right: 0;
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  z-index: 3;
}
.prod-badge.wood    { background: #8b5a2b; color: #f5e8c0; }
.prod-badge.steel   { background: #3a3a3a; color: #d0d0d0; }
.prod-badge.hybrid  { background: var(--gold); color: var(--black); }
.prod-badge.joinery { background: #5a3a18; color: #e8d0a0; }
.prod-badge.granite { background: #484848; color: #e0ddd8; }

/* ── Project card generated visuals ── */
.proj-gen {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.proj-gen-icon {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 20px rgba(201,168,76,0.4));
}
.proj-gen-icon svg {
  width: 80px; height: 80px;
  fill: none;
  stroke: rgba(201,168,76,0.6);
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Responsive grids (replaces hard-coded inline grids — fixes mobile overflow) ── */
html { overflow-x: hidden; }
.rgrid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; max-width: 1200px; margin: 0 auto; }
.rgrid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; max-width: 1200px; margin: 0 auto; }
.rgrid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; max-width: 1200px; margin: 0 auto; }
@media (max-width: 900px) {
  .rgrid-4 { grid-template-columns: repeat(2, 1fr); }
  .rgrid-2 { gap: 36px; }
}
@media (max-width: 640px) {
  .rgrid-2, .rgrid-3, .rgrid-4 { grid-template-columns: 1fr; gap: 24px; }
}
