/*
Theme Name: Geometry Impression
Theme URI: http://geoformjoinery.com
Description: Bespoke cabinetry — Black Lacquer / Champagne Gold / Pure Ivory
Version: 1.3
Author: Geometry Impression
Text Domain: geometry-impression
*/
/* =====================================================

   GEOMETRY IMPRESSION — ULTRA LUXURY EDITION
   Palette: Black Lacquer / Champagne Gold / Pure Ivory
   ===================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* ── Blacks & Darks — Deep Olive Umber (from reference) ── */
  --black:       #1e1c14;   /* hero base — deep olive brown like image 2 */
  --onyx:        #232019;   /* primary darkest */
  --charcoal:    #2d2a1f;   /* primary dark panels */
  --mink:        #38352a;   /* secondary panels */
  --umber:       #464234;   /* accent surfaces */

  /* ── Golds ── */
  --gold:        #c9a84c;   /* primary champagne gold */
  --gold-light:  #e8cc7a;   /* hover / highlight gold */
  --gold-pale:   #f0dfa0;   /* very light accent */
  --gold-dim:    #8a6e30;   /* subdued gold for labels */
  --gold-line:   rgba(201,168,76,.18); /* border / divider tint */

  /* ── Ivories & Whites ── */
  --ivory:       #faf6ee;   /* primary text on dark */
  --ivory-dim:   #e8e2d6;   /* secondary text */
  --cream:       #f2ead8;   /* light section bg tint */
  --off-white:   #ede6d8;   /* alternate light bg */
  --parchment:   #e6dcc8;   /* deep light bg */

  /* ── Greys ── */
  --warm-grey:   #b0a898;
  --mid-grey:    #8a8070;
  --dim-grey:    #5e5850;

  /* Typography */
  --display: 'Cormorant Garamond', Georgia, serif;
  --body:    'Montserrat', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --section-pad: clamp(80px, 11vw, 130px);
  --wrap-width:  1300px;
  --wrap-pad:    clamp(22px, 5vw, 64px);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--black);
  color: var(--ivory);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

.wrap {
  max-width: var(--wrap-width);
  margin: 0 auto;
  padding: 0 var(--wrap-pad);
}

/* ── EYEBROW ── */
.eyebrow {
  display: inline-block;
  font-family: var(--body);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

/* ── SECTION HEAD ── */
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(44px, 6vw, 72px);
}
.section-head h2 {
  font-family: var(--display);
  font-size: clamp(34px, 4.8vw, 58px);
  font-weight: 500;
  line-height: 1.12;
  margin-bottom: 18px;
  letter-spacing: -.01em;
}
.section-sub {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--warm-grey);
}

/* ==================== UTIL BAR ==================== */
.util-bar {
  background: var(--black);
  border-bottom: 1px solid var(--gold-line);
  padding: 11px var(--wrap-pad);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 44px);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mid-grey);
  position: relative;
  z-index: 200;
}
.util-bar a { color: var(--warm-grey); transition: color .2s; }
.util-bar a:hover { color: var(--gold-light); }
.util-bar a.accent { color: var(--gold); }

/* ==================== SITE HEADER ==================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 150;
  background: rgba(30,28,20,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gold-line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 160px;
}
.nav-right { justify-content: flex-end; }
.nav-center { text-align: center; }

.logo {
  font-family: var(--display);
  font-size: 23px;
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: .05em;
}
.logo em { font-style: italic; color: var(--gold); }

.menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--warm-grey);
  font-family: var(--body);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  transition: color .2s;
}
.menu-btn:hover { color: var(--gold-light); }
.menu-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}
.menu-icon span {
  display: block;
  height: 1px;
  background: currentColor;
  transition: .2s;
}

.contact-pill {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 10px 22px;
  transition: background .2s, transform .15s;
}
.contact-pill:hover { background: var(--gold-light); transform: translateY(-1px); }

.nav-icon {
  color: var(--warm-grey);
  transition: color .2s;
  display: flex;
  align-items: center;
}
.nav-icon:hover { color: var(--gold-light); }
.nav-icon svg { width: 20px; height: 20px; }

/* ==================== MENU PANEL ==================== */
.menu-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.72);
  z-index: 300;
  opacity: 0; pointer-events: none;
  transition: opacity .35s;
}
.menu-overlay.open { opacity: 1; pointer-events: all; }

.menu-panel {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: min(400px, 90vw);
  background: var(--charcoal);
  border-right: 1px solid var(--gold-line);
  z-index: 400;
  padding: 52px 44px;
  transform: translateX(-100%);
  transition: transform .42s cubic-bezier(.25,.46,.45,.94);
  overflow-y: auto;
}
.menu-panel.open { transform: translateX(0); }

.menu-panel-close {
  background: none;
  border: none;
  color: var(--mid-grey);
  font-family: var(--body);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  margin-bottom: 52px;
  display: block;
  transition: color .2s;
}
.menu-panel-close:hover { color: var(--ivory); }

.menu-section { margin-bottom: 36px; }
.menu-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gold-line);
}
.menu-links { display: flex; flex-direction: column; gap: 2px; }
.menu-links a {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
  color: var(--ivory-dim);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: color .2s, padding-left .25s;
  letter-spacing: .01em;
}
.menu-links a:hover { color: var(--gold-light); padding-left: 8px; }

.menu-secondary {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--gold-line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.menu-secondary a {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mid-grey);
  transition: color .2s;
}
.menu-secondary a:hover { color: var(--gold-light); }

/* ==================== ① HERO ==================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--onyx);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 78% 48%, rgba(201,168,76,.05) 0%, transparent 65%),
    linear-gradient(160deg, #1e1c14 0%, #2a2619 45%, #1e1c14 75%, #252216 100%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(30,28,20,.82) 40%, rgba(30,28,20,.08) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
  padding: var(--wrap-pad);
  padding-top: 80px;
  padding-bottom: 80px;
  margin-left: max(var(--wrap-pad), calc((100vw - var(--wrap-width)) / 2 + var(--wrap-pad)));
}
.hero-eyebrow {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: block;
}
.hero-content h1 {
  font-family: var(--display);
  font-size: clamp(46px, 6.5vw, 86px);
  font-weight: 500;
  line-height: 1.06;
  color: var(--ivory);
  margin-bottom: 32px;
  letter-spacing: -.02em;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 300;
  line-height: 1.9;
  color: rgba(250,246,238,.65);
  max-width: 520px;
  margin-bottom: 48px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.btn-solid {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 17px 38px;
  transition: background .2s, transform .2s;
}
.btn-solid:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-outline {
  display: inline-block;
  border: 1px solid rgba(201,168,76,.45);
  color: var(--ivory-dim);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 17px 38px;
  transition: border-color .2s, color .2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }

/* ==================== SPEC STRIP ==================== */
.spec-strip {
  background: linear-gradient(90deg, #a07820 0%, var(--gold) 40%, #c9a84c 60%, #a87e28 100%);
  padding: 0;
}
.spec-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.spec-item {
  padding: 24px 16px;
  border-right: 1px solid rgba(30,28,20,.15);
}
.spec-item:last-child { border-right: none; }
.spec-n {
  font-family: var(--display);
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 600;
  color: var(--black);
  line-height: 1;
  margin-bottom: 5px;
}
.spec-l {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(30,28,20,.55);
}

/* ==================== STATEMENT ==================== */
.statement {
  background: var(--cream);
  color: var(--charcoal);
  padding: var(--section-pad) var(--wrap-pad);
  position: relative;
}
/* subtle texture line at top */
.statement::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,.3), transparent);
}
.statement .wrap {
  max-width: 880px;
  text-align: center;
}
.dim-line {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 28px;
  display: block;
}
.statement h2 {
  font-family: var(--display);
  font-size: clamp(36px, 5.2vw, 66px);
  font-weight: 500;
  line-height: 1.08;
  color: var(--charcoal);
  margin-bottom: 36px;
  letter-spacing: -.02em;
}
.statement p {
  font-size: clamp(13.5px, 1.3vw, 15px);
  font-weight: 300;
  line-height: 1.95;
  color: var(--dim-grey);
  max-width: 700px;
  margin: 0 auto;
}

/* ==================== FEAT BLOCK (Expert Engineering) ==================== */
.feat-block {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
}
.feat-bg-placeholder {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 50%, rgba(201,168,76,.05) 0%, transparent 65%),
    linear-gradient(160deg, #232019 0%, #38352a 45%, #2a2620 100%);
}
.feat-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,28,20,.5);
}
/* gold hairline accent at top */
.feat-block::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  z-index: 3;
}
.feat-inner {
  position: relative;
  z-index: 2;
}
.feat-inner.center {
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
}
.feat-eyebrow {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  display: block;
}
.feat-inner h3 {
  font-family: var(--display);
  font-size: clamp(32px, 4.8vw, 56px);
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 6px;
  line-height: 1.12;
  letter-spacing: -.01em;
}
.feat-subtitle-cn {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .26em;
  color: rgba(201,168,76,.55);
  margin-top: 0;
  margin-bottom: 32px;
  text-align: center;
  display: block;
}
.feat-inner p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.95;
  color: rgba(250,246,238,.68);
  max-width: 640px;
  margin: 0 auto;
}
.feat-stats {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 6vw, 88px);
  margin-top: 56px;
  flex-wrap: wrap;
  padding-top: 48px;
  border-top: 1px solid var(--gold-line);
}
.feat-stat { text-align: center; }
.fs-n {
  font-family: var(--display);
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}
.fs-l {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(250,246,238,.4);
}
.feat-btn {
  display: inline-block;
  margin-top: 52px;
  border: 1px solid rgba(201,168,76,.45);
  color: var(--ivory-dim);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 17px 44px;
  transition: border-color .25s, color .25s, background .25s;
}
.feat-btn:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
}

/* ==================== SOURCE FACTORY BADGE ==================== */
.factory-badge-section {
  background: var(--charcoal);
  padding: clamp(28px, 4vw, 52px) 0;
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  overflow: hidden;
}
.factory-badge-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  width: 100%;
}
.badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 7px;
  flex: 1;
  min-width: 0;
  padding: 10px clamp(8px, 1.5vw, 24px);
}
.badge-label {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.badge-value {
  font-family: var(--display);
  font-size: clamp(14px, 1.7vw, 21px);
  font-weight: 500;
  color: var(--ivory);
  line-height: 1.2;
  word-break: break-word;
}
.badge-divider {
  flex-shrink: 0;
  width: 1px;
  height: 48px;
  background: var(--gold-line);
}

@media (max-width: 700px) {
  .factory-badge-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    flex-wrap: unset;
  }
  .badge-divider { display: none; }
  .badge-item {
    padding: 20px 14px;
    border-bottom: 1px solid var(--gold-line);
  }
  .badge-item:nth-child(odd) { border-right: 1px solid var(--gold-line); }
  .badge-item:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 360px) {
  .factory-badge-inner { grid-template-columns: 1fr; }
  .badge-item:nth-child(odd) { border-right: none; }
  .badge-item { border-bottom: 1px solid var(--gold-line); }
  .badge-item:last-child { border-bottom: none; }
}

/* ==================== PROCESS SECTION ==================== */
.process-section {
  background: var(--off-white);
  color: var(--charcoal);
  padding: var(--section-pad) 0;
  position: relative;
}
.process-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,.25), transparent);
}
.process-section .section-head h2 { color: var(--charcoal); }
.process-section .section-sub { color: var(--dim-grey); }
.process-section .eyebrow { color: var(--gold-dim); }

.process-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: clamp(80px, 10vw, 110px);
  color: var(--gold-dim);
  opacity: .7;
  flex-shrink: 0;
  width: clamp(28px, 3vw, 44px);
}
.process-arrow svg {
  width: clamp(20px, 2.5vw, 32px);
  height: auto;
}
.process-card {
  background: var(--white);
  border: 1px solid #ddd6c8;
  padding: clamp(24px, 3.2vw, 44px) clamp(18px, 2.2vw, 30px);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow .3s, transform .3s, border-color .3s;
  height: 100%;
}
.process-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,.1);
  transform: translateY(-5px);
  border-color: rgba(201,168,76,.35);
}
.process-icon {
  aspect-ratio: 1/1;
  background: var(--off-white);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--mid-grey);
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid #e0d9cf;
}
.process-step {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 10px;
}
.process-card h4 {
  font-family: var(--display);
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 14px;
  line-height: 1.2;
}
.process-card p {
  font-size: 12.5px;
  font-weight: 300;
  color: var(--dim-grey);
  line-height: 1.8;
  flex: 1;
}
.process-foot {
  text-align: center;
  margin-top: clamp(40px, 5vw, 60px);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mid-grey);
}

/* ==================== CATEGORY SECTION ==================== */
.category-section {
  background: var(--mink);
  padding: var(--section-pad) 0;
}
.category-section .section-head h2 { color: var(--ivory); }
.category-section .section-sub { color: var(--warm-grey); }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.cat-grid-8 { grid-template-columns: repeat(4, 1fr); }
.cat-grid-8 .cat-card { aspect-ratio: 2/3; }

a.cat-card { display: block; text-decoration: none; }

.cat-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  background: var(--umber);
  transition: opacity .25s;
}
.cat-card:hover { opacity: .85; }
.cat-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, #3d3528, #2d2318 55%, #1e1710);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(201,168,76,.28);
}
.cat-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(30,28,20,.96) 0%, transparent 100%);
  padding: 52px 18px 20px;
  font-family: var(--display);
  font-size: clamp(14px, 1.6vw, 19px);
  font-weight: 500;
  color: var(--ivory);
  line-height: 1.2;
}
.cat-sub {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--gold);
  margin-top: 5px;
}

/* ==================== MATERIALS SECTION ==================== */
.materials-section {
  background: var(--parchment);
  color: var(--charcoal);
  padding: var(--section-pad) 0;
}
.materials-section .section-head h2 { color: var(--charcoal); }
.materials-section .section-sub { color: var(--dim-grey); }
.materials-section .eyebrow { color: var(--gold-dim); }

.material-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.8vw, 22px);
  max-width: 1200px;
  margin: 0 auto;
}
.material-card {
  display: block;
  background: var(--white);
  border: 1px solid #ddd6c8;
  overflow: hidden;
  transition: box-shadow .3s, transform .3s, border-color .3s;
  cursor: pointer;
}
.material-card:hover {
  box-shadow: 0 20px 56px rgba(0,0,0,.12);
  transform: translateY(-5px);
  border-color: rgba(201,168,76,.4);
}
.material-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #ece4d4, #ddd5c3 50%, #e8dece);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(90,80,60,.3);
}
.material-body { padding: 20px 22px 26px; }
.material-name {
  font-family: var(--display);
  font-size: clamp(16px, 1.5vw, 21px);
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 7px;
  letter-spacing: .01em;
}
.material-desc {
  font-size: 11.5px;
  font-weight: 300;
  color: var(--mid-grey);
  line-height: 1.65;
}

/* ==================== PROJECTS SECTION ==================== */
.projects-section {
  background: var(--umber);
  padding: var(--section-pad) 0;
}
.projects-section .section-head h2 { color: var(--ivory); }
.projects-section .section-sub { color: var(--warm-grey); }
.projects-section .eyebrow { color: var(--gold); }

.projects-section .cat-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
}
.projects-section .cat-card { aspect-ratio: 16/9; }

/* ==================== TWO PATHS ==================== */
.paths-section {
  background: var(--charcoal);
  padding: var(--section-pad) 0;
  position: relative;
}
.paths-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.paths-section .section-head h2 { color: var(--ivory); }
.paths-section .eyebrow { color: var(--gold); }

.two-paths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.path-card {
  background: var(--mink);
  border: 1px solid var(--gold-line);
  padding: clamp(40px, 5vw, 68px);
  transition: border-color .3s, background .3s;
}
.path-card:hover {
  border-color: rgba(201,168,76,.4);
  background: var(--umber);
}
.path-num {
  display: block;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 18px;
}
.path-card h3 {
  font-family: var(--display);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 20px;
  line-height: 1.12;
}
.path-card p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(250,246,238,.55);
  margin-bottom: 30px;
}
.text-btn {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color .2s;
}
.text-btn:hover { color: var(--gold-light); }

/* ==================== CONTACT SECTION ==================== */
.contact-section {
  background: var(--cream);
  color: var(--charcoal);
  padding: var(--section-pad) 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(44px, 7vw, 90px);
  align-items: start;
}
.contact-grid h2 {
  font-family: var(--display);
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 20px;
  line-height: 1.12;
  letter-spacing: -.01em;
}
.contact-grid p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--dim-grey);
  margin-bottom: 30px;
}
.wa-link {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dim);
  border-bottom: 1px solid var(--gold-dim);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.wa-link:hover { color: var(--gold); border-color: var(--gold); }

.minimal-form { display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mid-grey);
}
.field input, .field select {
  background: var(--white);
  border: 1px solid #ddd6c8;
  color: var(--charcoal);
  font-family: var(--body);
  font-size: 13px;
  font-weight: 300;
  padding: 13px 16px;
  outline: none;
  transition: border-color .2s;
  border-radius: 0;
  -webkit-appearance: none;
}
.field input:focus, .field select:focus { border-color: var(--gold); }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.submit-btn {
  background: var(--charcoal);
  color: var(--ivory);
  font-family: var(--body);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  border: none;
  padding: 17px 24px;
  cursor: pointer;
  transition: background .2s;
}
.submit-btn:hover { background: var(--gold); color: var(--black); }
.form-note {
  font-size: 11px;
  font-weight: 300;
  color: var(--mid-grey);
  line-height: 1.65;
}

/* ==================== TRUST BAR ==================== */
.trust-bar {
  background: var(--black);
  border-top: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  padding: 22px 0;
  overflow: hidden;
}
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
}
.trust-item {
  font-family: var(--display);
  font-size: clamp(11px, 1.2vw, 16px);
  font-weight: 400;
  color: rgba(250,246,238,.22);
  letter-spacing: .1em;
  padding: 0 clamp(10px, 2vw, 30px);
  border-right: 1px solid var(--gold-line);
  white-space: nowrap;
  transition: color .25s;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { color: var(--gold); }

/* ==================== FOOTER ==================== */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--gold-line);
  padding: 48px 0;
}
.foot-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.foot-brand {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: .05em;
}
.foot-links {
  display: flex;
  gap: clamp(16px, 2.5vw, 36px);
  flex-wrap: wrap;
  justify-content: center;
}
.foot-links a {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mid-grey);
  transition: color .2s;
}
.foot-links a:hover { color: var(--gold-light); }
.foot-wa {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color .2s;
}
.foot-wa:hover { color: var(--gold-light); }

/* ==================== FLOATING WA ==================== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
  transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 36px rgba(0,0,0,.45); }
.wa-float svg { width: 26px; height: 26px; color: white; }

/* ==================== LIGHTBOX ==================== */
.lb {
  position: fixed; inset: 0;
  z-index: 900;
  background: rgba(30,28,20,.97);
  display: none;
  align-items: center;
  justify-content: center;
}
.lb.open { display: flex; }
.lb-stage {
  position: relative;
  max-width: 1100px;
  width: 90vw;
  display: flex;
  gap: 40px;
  align-items: center;
}
.lb-close {
  position: absolute;
  top: -52px; right: 0;
  background: none;
  border: none;
  color: var(--mid-grey);
  font-family: var(--body);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s;
}
.lb-close:hover { color: var(--ivory); }
.lb-nav {
  background: none;
  border: 1px solid rgba(201,168,76,.3);
  color: var(--ivory);
  font-size: 32px;
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color .2s;
}
.lb-nav:hover { border-color: var(--gold); }
.lb-img { flex: 1; aspect-ratio: 16/10; background: var(--mink); }
.lb-info { max-width: 280px; }
.lb-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.lb-info h3 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 10px;
}
.lb-meta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--mid-grey);
  margin-bottom: 14px;
}
.lb-info p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(250,246,238,.58);
  line-height: 1.8;
}
.lb-count {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--gold-dim);
  margin-top: 22px;
}

/* ==================== SAVINGS FLOAT ==================== */
.savings-float {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--charcoal);
  border: 1px solid var(--gold);
  box-shadow: 0 4px 24px rgba(0,0,0,.4), 0 0 0 4px rgba(201,168,76,.08);
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  padding: 8px 4px;
  line-height: 1;
  gap: 2px;
}
.savings-float:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 36px rgba(0,0,0,.45), 0 0 0 6px rgba(201,168,76,.14);
  border-color: var(--gold-light);
}
.savings-float .sf-amount {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 600;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}
.savings-float .sf-label {
  font-family: var(--body);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(250,246,238,.55);
  display: block;
  line-height: 1.3;
}
.savings-float .sf-off {
  font-family: var(--body);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  line-height: 1;
}

/* ==================== CATEGORY CARD CN SUBTITLE ==================== */
.feat-subtitle-cn {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .26em;
  color: rgba(201,168,76,.52);
  margin-top: 0;
  margin-bottom: 32px;
  text-align: center;
  display: block;
}

/* ==================== 8-CARD CATEGORY GRID ==================== */
.cat-grid-8 { grid-template-columns: repeat(4, 1fr); }
.cat-grid-8 .cat-card { aspect-ratio: 2/3; }
a.cat-card { display: block; text-decoration: none; }

/* ==================== REVEAL ANIMATION ==================== */
.rv {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .75s ease, transform .75s ease;
}
.rv.visible { opacity: 1; transform: translateY(0); }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .process-flow { grid-template-columns: 1fr 1fr; }
  .process-arrow { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .two-paths { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --section-pad: clamp(60px, 12vw, 88px); }
  .spec-row { grid-template-columns: repeat(2, 1fr); }
  .spec-item { border-right: none; border-bottom: 1px solid rgba(30,28,20,.12); }
  .process-flow { grid-template-columns: 1fr 1fr; gap: clamp(12px, 2vw, 18px); }
  .process-arrow { display: none; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid-8 { grid-template-columns: repeat(2, 1fr); }
  .cat-grid-8 .cat-card { aspect-ratio: 3/4; }
  .material-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-section .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .util-bar { justify-content: center; flex-wrap: wrap; gap: 10px; }
  .hero-content { margin-left: 0; }
  .trust-row { flex-wrap: wrap; justify-content: center; gap: 4px 0; }
  .trust-item { border-right: 1px solid var(--gold-line); font-size: 11px; padding: 4px clamp(8px,2vw,16px); }
}
@media (max-width: 480px) {
  .process-flow { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-grid-8 { grid-template-columns: repeat(2, 1fr); }
  .material-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .projects-section .cat-grid { grid-template-columns: 1fr; }
  .foot-grid { flex-direction: column; align-items: center; text-align: center; }
}
@media (max-width: 360px) {
  .savings-float { width: 60px; height: 60px; bottom: 88px; right: 18px; }
  .savings-float .sf-amount { font-size: 13px; }
}
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  * { transition-duration: .01ms !important; }
}

/* ── Utility stubs (formerly from external style.css) ── */
.section { padding: var(--section-pad) 0; }
.rv.in { opacity: 1; transform: none; }
.lb-prev { left: -56px; }
.lb-next { right: -56px; }


/* ============================================================
   ELEMENTOR FULL-WIDTH FIX — stretch sections to viewport edges
   ============================================================ */
.elementor-top-section > .elementor-container {
  max-width: 100% !important;
}
.elementor-section-wrap .elementor-top-section > .elementor-container {
  max-width: 100% !important;
}
/* Remove column/widget padding that causes squeezing */
.elementor-column-gap-no > .elementor-column > .elementor-element-populated {
  padding: 0 !important;
}
.elementor-widget-wrap {
  padding: 0 !important;
}
/* Canvas template — ensure body has no constraints */
body.elementor-template-canvas {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* ============================================================
   FULL-HEIGHT HERO + ARCHIVE HEADERS
   ============================================================ */
/* Homepage Hero — 100vh full screen */
.elementor-section-height-fit_to_screen.elementor-section-content-middle {
  min-height: 100vh !important;
}
@media (max-width: 768px) {
  .elementor-section-height-fit_to_screen.elementor-section-content-middle {
    min-height: 80vh !important;
  }
}
/* Ensure inner content is vertically centered */
.elementor-section-height-fit_to_screen > .elementor-container {
  display: flex;
  align-items: center;
  min-height: 100vh;
}
/* Background image cover + center */
.elementor-section[data-settings*="background_background"] {
  background-size: cover !important;
  background-position: center center !important;
}
