/* ============================================================
   LUX TRIM — DESIGN SYSTEM
   luxmillwork.com | Santa Rosa Beach, FL
============================================================ */

/* === DESIGN TOKENS === */
:root {
  --obsidian: #18181a;
  --charcoal: #2a2a2c;
  --graphite: #484848;
  --stone: #6e6b65;
  --sand: #9e9a92;
  --mist: #c6c2bb;
  --linen: #e8e3db;
  --cream: #f5f1eb;
  --white: #ffffff;
  --gold: #b8965c;
  --gold-light: #d4af7a;
  --gold-pale: #eddfc8;
  --gold-dark: #8a6e3e;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --nav-h: 80px;
  --max-w: 1340px;
  --pad-x: clamp(1.25rem, 5vw, 4rem);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);

  --shadow-sm: 0 1px 4px rgba(0,0,0,.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.14);
  --shadow-gold: 0 4px 28px rgba(184,150,92,.30);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.4rem, 6vw, 5.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h5 { font-size: 1.1rem; }
p { font-size: clamp(0.95rem, 1.5vw, 1.05rem); color: var(--stone); line-height: 1.75; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.lead {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--stone);
  line-height: 1.7;
  font-style: italic;
}

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.section { padding: clamp(4rem, 8vw, 9rem) 0; }
.section--dark { background: var(--charcoal); color: var(--cream); }
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--cream); }
.section--dark p { color: var(--mist); }
.section--obsidian { background: var(--obsidian); }
.section--cream { background: var(--cream); }
.section--linen { background: var(--linen); }
.section--white { background: var(--white); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 3vw, 3rem); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 3rem); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.25rem, 2.5vw, 2.5rem); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all var(--ease) 0.28s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border: 1.5px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  box-shadow: var(--shadow-gold);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
}
.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(245,241,235,0.4);
}
.btn-outline-light:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-gold-outline:hover {
  background: var(--gold);
  color: var(--white);
}
.btn-lg { padding: 1.1rem 2.8rem; font-size: 0.8rem; }
.btn-sm { padding: 0.65rem 1.5rem; font-size: 0.7rem; }

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: all var(--ease) 0.35s;
}
.nav--transparent { background: transparent; }
.nav--solid {
  background: rgba(24,24,26,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}
.nav__logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav__logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
}
.nav__logo-tag {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-top: 1px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,241,235,0.8);
  transition: color var(--ease) 0.2s;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--ease) 0.3s;
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }
.nav__cta { margin-left: 1rem; }
.nav__dropdown { position: relative; }
.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%);
  background: var(--obsidian);
  border: 1px solid rgba(184,150,92,0.2);
  min-width: 200px;
  padding: 0.5rem 0;
  box-shadow: var(--shadow-lg);
}
.nav__dropdown:hover .nav__dropdown-menu { display: block; }
.nav__dropdown-menu a {
  display: block;
  padding: 0.7rem 1.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mist);
  transition: color var(--ease) 0.2s;
}
.nav__dropdown-menu a:hover { color: var(--gold); }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--ease) 0.3s;
}
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--obsidian);
  z-index: 999;
  padding: calc(var(--nav-h) + 2rem) var(--pad-x) 2rem;
  flex-direction: column;
  gap: 0;
}
.nav__mobile.is-open { display: flex; }
.nav__mobile-link {
  display: block;
  padding: 1.2rem 0;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--cream);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: color var(--ease) 0.2s;
}
.nav__mobile-link:hover { color: var(--gold); }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--obsidian);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    #18181a 0%,
    #1e1c1a 40%,
    #22201c 70%,
    #1a1a18 100%
  );
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(184,150,92,.08) 0%, transparent 65%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: calc(var(--nav-h) + 3rem) var(--pad-x) 5rem;
  width: 100%;
}
.hero__kicker {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero__kicker-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero__kicker-text {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.5vw, 7rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 14ch;
  margin-bottom: 1.8rem;
}
.hero__headline em {
  font-style: italic;
  color: var(--gold-light);
}
.hero__sub {
  font-family: var(--font-accent);
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(198,194,187,.85);
  line-height: 1.75;
  max-width: 52ch;
  margin-bottom: 3rem;
  font-style: italic;
}
.hero__actions { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity var(--ease) 0.2s;
}
.hero__scroll:hover { opacity: 1; }
.hero__scroll-text { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sand); }
.hero__scroll-bar {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollBar 1.8s ease-in-out infinite;
}
@keyframes scrollBar {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* === LOCATION STRIP === */
.location-strip {
  background: var(--charcoal);
  padding: 0.9rem var(--pad-x);
  border-bottom: 1px solid rgba(184,150,92,0.2);
}
.location-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.location-strip__label { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.location-strip__cities { font-size: 0.72rem; letter-spacing: 0.1em; color: var(--sand); }
.location-strip__dot { color: var(--gold); opacity: 0.5; }

/* === SECTION HEADER === */
.section-header { margin-bottom: clamp(3rem, 5vw, 5rem); }
.section-header--center { text-align: center; }
.section-header--center .section-header__desc { margin-left: auto; margin-right: auto; }
.section-header__title { margin-bottom: 1.2rem; }
.section-header__desc { max-width: 55ch; color: var(--stone); font-size: 1.05rem; line-height: 1.8; }

/* === SERVICES TRIPTYCH === */
.services-trio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.service-card {
  padding: clamp(2.5rem, 5vw, 4.5rem) clamp(2rem, 4vw, 3.5rem);
  border-right: 1px solid rgba(255,255,255,.06);
  transition: background var(--ease) 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card:last-child { border-right: none; }
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease) 0.4s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card__num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(184,150,92,.12);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color var(--ease) 0.3s;
}
.service-card:hover .service-card__num { color: rgba(184,150,92,.25); }
.service-card__icon { width: 40px; height: 40px; margin-bottom: 1.5rem; }
.service-card__icon svg { width: 100%; height: 100%; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: 1rem;
}
.service-card__desc { font-size: 0.9rem; color: var(--sand); line-height: 1.8; margin-bottom: 1.8rem; }
.service-card__link { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); font-weight: 600; display: inline-flex; align-items: center; gap: 0.5rem; transition: gap var(--ease) 0.2s; }
.service-card__link:hover { gap: 0.9rem; }

/* === PRODUCT GRID === */
.product-card {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  cursor: pointer;
  display: block;
}
.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.1) 55%, transparent 100%);
  transition: opacity var(--ease) 0.35s;
}
.product-card:hover::after { opacity: 0.85; }
.product-card__img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform var(--ease) 0.7s;
}
.product-card:hover .product-card__img { transform: scale(1.05); }
.product-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 2rem 2rem 2.2rem;
  transform: translateY(2rem);
  transition: transform var(--ease) 0.35s;
}
.product-card:hover .product-card__body { transform: translateY(0); }
.product-card__cat { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.product-card__name { font-family: var(--font-display); font-size: 1.6rem; color: var(--white); margin-bottom: 0.8rem; }
.product-card__desc { font-size: 0.85rem; color: rgba(198,194,187,.8); line-height: 1.65; opacity: 0; transition: opacity var(--ease) 0.35s 0.05s; }
.product-card:hover .product-card__desc { opacity: 1; }
.product-card__img-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--stone);
  text-transform: uppercase;
}

/* Product placeholder backgrounds */
.product-card--doors .product-card__img-placeholder {
  background: linear-gradient(145deg, #2e2a26 0%, #1a1814 100%);
}
.product-card--flooring .product-card__img-placeholder {
  background: linear-gradient(145deg, #2a2820 0%, #1c1a16 100%);
}
.product-card--trim .product-card__img-placeholder {
  background: linear-gradient(145deg, #28262a 0%, #1a1820 100%);
}
.product-card--tile .product-card__img-placeholder {
  background: linear-gradient(145deg, #2c2926 0%, #201d1a 100%);
}

/* === STAT BAR === */
.stat-bar {
  background: var(--gold);
  padding: clamp(2.5rem, 4vw, 3.5rem) var(--pad-x);
}
.stat-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item__num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-item__label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,.75); font-weight: 500; }

/* === SOURCING STORY === */
.sourcing { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.sourcing__visual {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.sourcing__visual-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1e1c18 0%, #2c2820 40%, #1a1814 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sourcing__visual-accent {
  width: 60%;
  aspect-ratio: 1;
  border: 1px solid rgba(184,150,92,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.sourcing__visual-accent::before {
  content: '';
  position: absolute;
  inset: 15%;
  border: 1px solid rgba(184,150,92,0.15);
  border-radius: 50%;
}
.sourcing__visual-text {
  text-align: center;
}
.sourcing__visual-text h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold-light);
  font-style: italic;
}
.sourcing__visual-text p {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 0.4rem;
}
.sourcing__content {
  padding: clamp(3rem, 6vw, 6rem) clamp(2.5rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}
.sourcing__list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.8rem; }
.sourcing__item { display: flex; gap: 1.2rem; align-items: flex-start; }
.sourcing__item-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sourcing__item-icon svg { width: 16px; height: 16px; stroke: var(--gold-dark); fill: none; stroke-width: 2; }
.sourcing__item-title { font-weight: 600; color: var(--charcoal); font-size: 0.95rem; margin-bottom: 0.25rem; }
.sourcing__item-desc { font-size: 0.875rem; color: var(--stone); line-height: 1.7; }

/* === TESTIMONIALS === */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-top: 2px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--ease) 0.3s, transform var(--ease) 0.3s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.testimonial-card__stars { display: flex; gap: 3px; margin-bottom: 1.2rem; }
.testimonial-card__stars span { color: var(--gold); font-size: 0.9rem; }
.testimonial-card__quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.testimonial-card__author { display: flex; align-items: center; gap: 0.8rem; }
.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--linen);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
}
.testimonial-card__name { font-weight: 600; font-size: 0.9rem; color: var(--charcoal); }
.testimonial-card__loc { font-size: 0.75rem; color: var(--sand); }

/* === INSPIRATION GRID === */
.inspiration-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, 280px);
  gap: 6px;
}
.insp-item { position: relative; overflow: hidden; cursor: pointer; }
.insp-item--main { grid-row: 1 / 3; }
.insp-item__bg {
  width: 100%;
  height: 100%;
  transition: transform var(--ease) 0.6s;
}
.insp-item:hover .insp-item__bg { transform: scale(1.04); }
.insp-item__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--ease) 0.35s;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}
.insp-item:hover .insp-item__overlay { opacity: 1; }
.insp-item__label { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); font-weight: 500; }

/* Placeholder backgrounds for inspiration items */
.insp-item:nth-child(1) .insp-item__bg { background: linear-gradient(145deg, #2a2620 0%, #1e1c18 100%); height: 100%; }
.insp-item:nth-child(2) .insp-item__bg { background: linear-gradient(145deg, #241e1c 0%, #1a1614 100%); height: 100%; }
.insp-item:nth-child(3) .insp-item__bg { background: linear-gradient(145deg, #221e1a 0%, #181410 100%); height: 100%; }
.insp-item:nth-child(4) .insp-item__bg { background: linear-gradient(145deg, #262220 0%, #1c1816 100%); height: 100%; }
.insp-item:nth-child(5) .insp-item__bg { background: linear-gradient(145deg, #201e1a 0%, #161412 100%); height: 100%; }

/* === BLOG PREVIEW === */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.blog-card { background: var(--white); overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow var(--ease) 0.3s, transform var(--ease) 0.3s; }
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.blog-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform var(--ease) 0.5s;
}
.blog-card__img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--stone);
  text-transform: uppercase;
}
.blog-card:nth-child(1) .blog-card__img-placeholder { background: linear-gradient(145deg, #2a2820 0%, #1c1a14 100%); }
.blog-card:nth-child(2) .blog-card__img-placeholder { background: linear-gradient(145deg, #26222a 0%, #1c1820 100%); }
.blog-card:nth-child(3) .blog-card__img-placeholder { background: linear-gradient(145deg, #282420 0%, #1e1a16 100%); }
.blog-card__body { padding: 1.8rem 1.6rem; }
.blog-card__cat { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 0.6rem; }
.blog-card__title { font-family: var(--font-display); font-size: 1.15rem; color: var(--charcoal); line-height: 1.35; margin-bottom: 0.8rem; }
.blog-card__excerpt { font-size: 0.875rem; color: var(--stone); line-height: 1.7; margin-bottom: 1.2rem; }
.blog-card__meta { display: flex; align-items: center; gap: 0.8rem; font-size: 0.72rem; color: var(--sand); }
.blog-card__meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--mist); }

/* === CTA BANNER === */
.cta-banner {
  background: var(--obsidian);
  padding: clamp(5rem, 8vw, 8rem) var(--pad-x);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184,150,92,.08) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner__content { position: relative; z-index: 1; }
.cta-banner__title { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 4rem); color: var(--white); margin-bottom: 1.2rem; }
.cta-banner__sub { font-family: var(--font-accent); font-style: italic; font-size: 1.2rem; color: var(--sand); margin-bottom: 2.8rem; max-width: 50ch; margin-left: auto; margin-right: auto; }
.cta-banner__actions { display: flex; align-items: center; justify-content: center; gap: 1.2rem; flex-wrap: wrap; }

/* === FOOTER === */
.footer { background: #111113; color: var(--mist); }
.footer__top {
  padding: clamp(4rem, 7vw, 7rem) var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer__brand { padding-right: 2rem; }
.footer__logo-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 0.3rem;
}
.footer__logo-tag { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 1.5rem; }
.footer__brand-desc { font-size: 0.875rem; line-height: 1.75; color: var(--stone); margin-bottom: 1.8rem; }
.footer__contact a { display: block; font-size: 0.875rem; color: var(--mist); margin-bottom: 0.4rem; transition: color var(--ease) 0.2s; }
.footer__contact a:hover { color: var(--gold); }
.footer__col-title { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 1.5rem; }
.footer__col a { display: block; font-size: 0.875rem; color: var(--stone); margin-bottom: 0.7rem; transition: color var(--ease) 0.2s; }
.footer__col a:hover { color: var(--cream); }
.footer__service-area { font-size: 0.8rem; color: var(--graphite); line-height: 1.8; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 1.5rem var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.footer__copy { font-size: 0.75rem; color: var(--graphite); }
.footer__badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  color: var(--graphite);
}
.footer__badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); opacity: 0.6; }

/* === BREADCRUMB === */
.breadcrumb {
  padding: calc(var(--nav-h) + 1.5rem) var(--pad-x) 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.breadcrumb a { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--stone); transition: color var(--ease) 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb__sep { font-size: 0.6rem; color: var(--mist); }
.breadcrumb__current { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: var(--charcoal);
  padding: calc(var(--nav-h) + 4rem) var(--pad-x) 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(184,150,92,.06) 0%, transparent 60%);
}
.page-hero__inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }
.page-hero__title { color: var(--white); margin-bottom: 1.2rem; }
.page-hero__sub { font-family: var(--font-accent); font-style: italic; font-size: 1.2rem; color: var(--sand); max-width: 55ch; line-height: 1.7; }

/* === PRODUCT PAGE === */
.product-detail { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 5rem; align-items: start; }
.product-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.product-gallery__main {
  grid-column: 1 / -1;
  aspect-ratio: 16/10;
  background: linear-gradient(145deg, #2a2620 0%, #1e1c18 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; letter-spacing: 0.15em; color: var(--stone); text-transform: uppercase;
}
.product-gallery__thumb {
  aspect-ratio: 4/3;
  background: linear-gradient(145deg, #242220 0%, #1a1816 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; letter-spacing: 0.1em; color: var(--graphite); text-transform: uppercase;
  cursor: pointer;
}
.product-specs { margin: 2.5rem 0; }
.product-specs__row { display: flex; padding: 0.9rem 0; border-bottom: 1px solid var(--linen); }
.product-specs__label { width: 45%; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; color: var(--charcoal); text-transform: uppercase; font-size: 0.72rem; }
.product-specs__value { font-size: 0.875rem; color: var(--stone); }
.product-features { display: flex; flex-direction: column; gap: 0.8rem; margin: 2rem 0; }
.product-feature { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: var(--stone); }
.product-feature::before { content: ''; display: block; width: 18px; height: 1px; background: var(--gold); flex-shrink: 0; }

/* === FORM === */
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; color: var(--charcoal); margin-bottom: 0.5rem; }
.form-control {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1px solid var(--linen);
  background: var(--white);
  font-size: 0.925rem;
  color: var(--charcoal);
  transition: border-color var(--ease) 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-control:focus { border-color: var(--gold); }
.form-control::placeholder { color: var(--sand); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }

/* === MAP PLACEHOLDER === */
.map-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(145deg, #1e1c18 0%, #2a2620 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
}
.map-placeholder__icon { font-size: 2rem; opacity: 0.4; }
.map-placeholder__text { font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--stone); }

/* === ABOUT === */
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 6vw, 7rem); align-items: center; }
.about-story__visual {
  position: relative;
}
.about-story__img-wrap {
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, #2a2620 0%, #1e1c18 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; letter-spacing: 0.15em; color: var(--stone); text-transform: uppercase;
}
.about-story__img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 55%;
  aspect-ratio: 1;
  background: var(--gold-pale);
  border: 8px solid var(--cream);
  z-index: -1;
}
.about-values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.about-value { text-align: center; padding: 2.5rem 1.5rem; background: var(--white); box-shadow: var(--shadow-sm); }
.about-value__icon { width: 48px; height: 48px; margin: 0 auto 1.2rem; }
.about-value__icon svg { width: 100%; height: 100%; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.about-value__title { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 0.6rem; }
.about-value__desc { font-size: 0.875rem; line-height: 1.7; color: var(--stone); }

/* === GALLERY PAGE === */
.gallery-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.gallery-filter__btn {
  padding: 0.5rem 1.3rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1.5px solid var(--linen);
  color: var(--stone);
  background: transparent;
  cursor: pointer;
  transition: all var(--ease) 0.2s;
}
.gallery-filter__btn:hover,
.gallery-filter__btn.is-active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
}
.gallery-masonry {
  columns: 3;
  column-gap: 8px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item__img {
  width: 100%;
  display: block;
  transition: transform var(--ease) 0.5s;
}
.gallery-item:hover .gallery-item__img { transform: scale(1.04); }
.gallery-item__placeholder {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--graphite);
  text-transform: uppercase;
}

/* === UTILITY === */
.divider { width: 40px; height: 1px; background: var(--gold); margin: 1.5rem 0; }
.divider--center { margin: 1.5rem auto; }
.mt-sm { margin-top: 1rem; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 3rem; }
.mb-sm { margin-bottom: 1rem; }
.mb-md { margin-bottom: 2rem; }
.mb-lg { margin-bottom: 3rem; }
.gold-text { color: var(--gold); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* === ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.is-visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stat-bar__inner { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .services-trio { grid-template-columns: 1fr; }
  .service-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  .service-card:last-child { border-bottom: none; }
  .sourcing { grid-template-columns: 1fr; }
  .sourcing__visual { min-height: 300px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .inspiration-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .insp-item--main { grid-column: 1 / -1; grid-row: auto; }
  .about-story { grid-template-columns: 1fr; }
  .about-story__img-accent { display: none; }
  .about-values { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr; }
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stat-bar__inner { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .inspiration-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .cta-banner__actions { flex-direction: column; align-items: center; }
}
