/* ===================================================
   Liberty Wholesale Cabinetry — Master Stylesheet
   cabinetsupplynyc.com
   =================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Noto+Serif+SC:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
  /* Brand Colors */
  --espresso:     #1A110A;
  --walnut:       #2C1D12;
  --wood-dark:    #3D2B1F;
  --wood-mid:     #7A5C3E;
  --wood-warm:    #A07550;
  --gold:         #C4A35A;
  --gold-light:   #D4B878;
  --gold-muted:   #9E7E44;

  /* Neutral Tones */
  --ivory:        #F5F0E8;
  --ivory-warm:   #FAF7F2;
  --stone:        #EDE5D8;
  --taupe:        #C8B89A;
  --charcoal:     #2A2520;
  --smoke:        #4A4440;
  --ash:          #7A7270;

  /* UI */
  --bg-dark:      #0E0B08;
  --bg-section:   #FAF7F2;
  --border:       #E2D9CC;
  --border-dark:  #3A2E24;
  --shadow:       rgba(26,17,10,0.12);
  --shadow-hover: rgba(26,17,10,0.22);

  /* Typography */
  --font-serif:   'Cormorant Garamond', 'Noto Serif SC', Georgia, serif;
  --font-sans:    'Inter', 'PingFang SC', -apple-system, sans-serif;
  --font-zh:      'Noto Serif SC', 'PingFang SC', 'Microsoft YaHei', serif;

  /* Spacing */
  --section-py:   100px;
  --section-py-sm: 64px;
  --container:    1280px;

  /* Transitions */
  --ease:         cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:     cubic-bezier(0, 0, 0.2, 1);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--ivory-warm);
  color: var(--espresso);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease), opacity 0.3s var(--ease);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul, ol { list-style: none; }

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--gold);
  color: var(--espresso);
  padding: 8px 16px;
  font-weight: 600;
  border-radius: 0 0 4px 4px;
}
.skip-link:focus { top: 0; }

/* ===================================================
   CONTAINER & LAYOUT
   =================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

.section-py {
  padding: var(--section-py) 0;
}

.section-py-sm {
  padding: var(--section-py-sm) 0;
}

/* ===================================================
   TYPOGRAPHY
   =================================================== */
.display-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.body-lg {
  font-size: 1.125rem;
  line-height: 1.75;
  font-weight: 300;
}

.body-md {
  font-size: 1rem;
  line-height: 1.7;
}

/* --- Serif font class for headings --- */
h1, h2, h3, .serif { font-family: var(--font-serif); }

/* ===================================================
   BUTTONS
   =================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
  min-height: 52px;
}

.btn-primary {
  background: var(--gold);
  color: var(--espresso);
  border: 2px solid var(--gold);
}
.btn-primary:hover {
  background: var(--espresso);
  color: var(--gold);
  border-color: var(--espresso);
}

.btn-outline {
  background: transparent;
  color: var(--ivory);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: var(--ivory);
  color: var(--espresso);
  border-color: var(--ivory);
}

.btn-outline-dark {
  background: transparent;
  color: var(--espresso);
  border: 2px solid var(--espresso);
}
.btn-outline-dark:hover {
  background: var(--espresso);
  color: var(--ivory);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-ghost:hover {
  background: var(--gold);
  color: var(--espresso);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.72rem;
  min-height: 44px;
}

/* ===================================================
   TOP BAR
   =================================================== */
.top-bar {
  background: var(--espresso);
  color: rgba(245,240,232,0.7);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-dark);
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-bar a {
  color: rgba(245,240,232,0.65);
  transition: color 0.25s;
}
.top-bar a:hover { color: var(--gold); }

.top-bar-divider {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.15);
}

/* ===================================================
   HEADER / NAV
   =================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--walnut);
  border-bottom: 1px solid var(--border-dark);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.scrolled {
  background: rgba(26, 17, 10, 0.97);
  box-shadow: 0 4px 40px rgba(0,0,0,0.3);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

/* Logo */
.site-logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex-shrink: 0;
}

.logo-main {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.1;
}

.logo-sub {
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
  margin-top: 2px;
}

/* Main Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 10px;
  height: 72px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.8);
  white-space: nowrap;
  transition: color 0.25s;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }

.nav-link svg {
  width: 10px;
  height: 10px;
  opacity: 0.6;
  transition: transform 0.25s;
}
.nav-item:hover .nav-link svg { transform: rotate(180deg); opacity: 1; }

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--walnut);
  border: 1px solid var(--border-dark);
  border-top: 2px solid var(--gold);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s var(--ease);
  z-index: 100;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.75);
  transition: color 0.2s, padding-left 0.2s;
}
.nav-dropdown a:hover {
  color: var(--gold);
  padding-left: 28px;
  background: rgba(196,163,90,0.06);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 6px 12px;
  border: 1px solid rgba(196,163,90,0.35);
  border-radius: 2px;
}

.lang-btn {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: rgba(245,240,232,0.55);
  padding: 2px 6px;
  transition: color 0.2s;
  text-transform: uppercase;
}
.lang-btn.active, .lang-btn:hover { color: var(--gold); }

.lang-divider {
  color: rgba(196,163,90,0.35);
  font-size: 0.65rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ivory);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: min(380px, 100vw);
  height: 100vh;
  background: var(--walnut);
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  overflow-y: auto;
  padding: 80px 32px 40px;
  border-left: 1px solid var(--border-dark);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1999;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-overlay.open { opacity: 1; }

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ivory);
  font-size: 1.5rem;
}

.mobile-nav-link {
  display: block;
  padding: 14px 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.8);
  border-bottom: 1px solid var(--border-dark);
  transition: color 0.2s;
}
.mobile-nav-link:hover { color: var(--gold); }

.mobile-nav-sub {
  padding: 6px 0 6px 16px;
}
.mobile-nav-sub a {
  display: block;
  padding: 8px 0;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.55);
}
.mobile-nav-sub a:hover { color: var(--gold); }

/* ===================================================
   HERO SECTION
   =================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  max-height: 900px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--espresso);
}

.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  transform: scale(1.05);
  transition: transform 8s var(--ease-out);
}
.hero-bg.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14,11,8,0.75) 0%,
    rgba(26,17,10,0.5) 50%,
    rgba(14,11,8,0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 0 80px;
  max-width: 720px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.hero-eyebrow-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
}

.hero-eyebrow-text {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--ivory);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(245,240,232,0.8);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero-scroll-text {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.45);
  writing-mode: vertical-rl;
}

.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(196,163,90,0.8), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ===================================================
   BRAND STATS BAR
   =================================================== */
.stats-bar {
  background: var(--espresso);
  border-bottom: 1px solid var(--border-dark);
  padding: 32px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 24px;
  border-right: 1px solid var(--border-dark);
  text-align: center;
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.5);
}

/* ===================================================
   BRAND INTRO
   =================================================== */
.brand-intro {
  background: var(--ivory-warm);
  padding: var(--section-py) 0;
}

.brand-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.brand-intro-label {
  margin-bottom: 20px;
}

.brand-intro-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--espresso);
  margin-bottom: 24px;
}

.brand-intro-title em {
  font-style: italic;
  color: var(--gold-muted);
}

.brand-intro-body {
  font-size: 1rem;
  font-weight: 300;
  color: var(--smoke);
  line-height: 1.8;
  margin-bottom: 40px;
}

.brand-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.brand-value {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--stone);
  border-left: 3px solid var(--gold);
}

.brand-value-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--gold);
}

.brand-value-text {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--espresso);
  line-height: 1.4;
}

/* Brand Intro Right Image */
.brand-intro-media {
  position: relative;
}

.brand-intro-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.brand-intro-accent {
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 140px;
  height: 140px;
  border: 2px solid var(--gold);
  opacity: 0.3;
  pointer-events: none;
}

/* ===================================================
   PRODUCT COLLECTIONS
   =================================================== */
.collections {
  background: var(--bg-dark);
  padding: var(--section-py) 0;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 40px;
}

.section-header-left .section-subtitle {
  margin-bottom: 16px;
}

.section-header-left .section-title {
  color: var(--ivory);
}

.section-header-right {
  flex-shrink: 0;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.collection-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.collection-card:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}

.collection-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.collection-card:hover .collection-card-img {
  transform: scale(1.06);
}

.collection-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,11,8,0.85) 0%, rgba(14,11,8,0.1) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: background 0.4s;
}

.collection-card:hover .collection-card-overlay {
  background: linear-gradient(to top, rgba(14,11,8,0.92) 0%, rgba(14,11,8,0.3) 70%, transparent 100%);
}

.collection-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.collection-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: 10px;
}

.collection-desc {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.65);
  line-height: 1.5;
  margin-bottom: 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s, opacity 0.4s;
  opacity: 0;
}

.collection-card:hover .collection-desc {
  max-height: 80px;
  opacity: 1;
}

.collection-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.collection-link::after {
  content: '→';
  transition: transform 0.25s;
}
.collection-card:hover .collection-link::after {
  transform: translateX(5px);
}

/* ===================================================
   FINISHES / SWATCHES
   =================================================== */
.finishes {
  background: var(--ivory-warm);
  padding: var(--section-py) 0;
}

.finishes-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.finishes-intro .section-subtitle { margin-bottom: 16px; }

.finishes-intro .section-title {
  color: var(--espresso);
  margin-bottom: 24px;
}

.finishes-intro-body {
  font-size: 0.95rem;
  color: var(--smoke);
  line-height: 1.8;
  margin-bottom: 32px;
}

.swatches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.swatch-card {
  cursor: pointer;
  transition: transform 0.3s var(--ease);
}
.swatch-card:hover { transform: translateY(-4px); }

.swatch-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: box-shadow 0.3s;
}
.swatch-card:hover .swatch-img {
  box-shadow: 0 12px 40px var(--shadow-hover);
}

.swatch-name {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--espresso);
  padding: 10px 4px 4px;
}

.swatch-type {
  font-size: 0.65rem;
  color: var(--ash);
  letter-spacing: 0.05em;
  padding: 0 4px;
}

/* ===================================================
   WHY CHOOSE US
   =================================================== */
.why-choose {
  background: var(--walnut);
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.why-choose::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196,163,90,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.why-choose .section-subtitle { margin-bottom: 16px; }
.why-choose .section-title { color: var(--ivory); margin-bottom: 0; }

.why-header {
  text-align: center;
  margin-bottom: 64px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.why-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dark);
  padding: 40px 36px;
  transition: background 0.3s, border-color 0.3s;
}
.why-card:hover {
  background: rgba(196,163,90,0.05);
  border-color: rgba(196,163,90,0.25);
}

.why-card-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 24px;
}

.why-card-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(196,163,90,0.15);
  line-height: 1;
  margin-bottom: 16px;
}

.why-card-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 12px;
  line-height: 1.3;
}

.why-card-body {
  font-size: 0.87rem;
  color: rgba(245,240,232,0.55);
  line-height: 1.7;
}

/* ===================================================
   INSPIRATION GALLERY
   =================================================== */
.inspiration-section {
  background: var(--bg-dark);
  padding: var(--section-py) 0;
}

.inspiration-section .section-title { color: var(--ivory); }

.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, 280px);
  gap: 3px;
  margin-top: 48px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}

.gallery-item:nth-child(1) {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.gallery-item:hover img { transform: scale(1.07); }

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(14,11,8,0.8));
  color: var(--ivory);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.35s;
}
.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery-caption-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.3;
}

.gallery-caption-tag {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

/* ===================================================
   SERVE / TARGET AUDIENCE
   =================================================== */
.serve-section {
  background: var(--stone);
  padding: var(--section-py) 0;
}

.serve-section .section-title {
  color: var(--espresso);
  margin-bottom: 0;
}

.serve-header {
  text-align: center;
  margin-bottom: 60px;
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.serve-card {
  background: var(--ivory-warm);
  padding: 40px 32px;
  text-align: center;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
}
.serve-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.serve-icon {
  width: 52px;
  height: 52px;
  color: var(--gold);
  margin: 0 auto 20px;
}

.serve-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 12px;
}

.serve-body {
  font-size: 0.87rem;
  color: var(--smoke);
  line-height: 1.7;
}

/* ===================================================
   GEO / LOCAL SERVICE
   =================================================== */
.geo-section {
  background: var(--espresso);
  padding: var(--section-py-sm) 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.geo-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.geo-left .section-subtitle { margin-bottom: 16px; }
.geo-left .section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--ivory);
  margin-bottom: 20px;
}

.geo-body {
  font-size: 0.95rem;
  color: rgba(245,240,232,0.6);
  line-height: 1.8;
  margin-bottom: 32px;
}

.geo-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.geo-tag {
  padding: 7px 16px;
  border: 1px solid rgba(196,163,90,0.3);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: all 0.25s;
}
.geo-tag:hover {
  background: var(--gold);
  color: var(--espresso);
  border-color: var(--gold);
}

.geo-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.geo-stat {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dark);
  padding: 24px;
  text-align: center;
}

.geo-stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 6px;
}

.geo-stat-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.45);
  line-height: 1.5;
}

/* ===================================================
   CTA SECTION
   =================================================== */
.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: var(--charcoal);
}

.cta-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.25;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,11,8,0.85), rgba(44,29,18,0.7));
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.15;
  margin-bottom: 20px;
}

.cta-title em { font-style: italic; color: var(--gold-light); }

.cta-body {
  font-size: 1rem;
  color: rgba(245,240,232,0.7);
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===================================================
   FOOTER
   =================================================== */
.site-footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo-main {
  font-size: 1.2rem;
  display: block;
  margin-bottom: 4px;
}

.footer-brand .logo-sub {
  display: block;
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.45);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 280px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: rgba(245,240,232,0.55);
  margin-bottom: 10px;
  transition: color 0.25s;
}
.footer-contact a:hover { color: var(--gold); }

.footer-heading {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.5);
  transition: color 0.25s, padding-left 0.2s;
}
.footer-links a:hover {
  color: var(--ivory);
  padding-left: 4px;
}

.footer-newsletter p {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.5);
  margin-bottom: 16px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 0;
}

.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-dark);
  border-right: none;
  color: var(--ivory);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  outline: none;
}
.newsletter-input::placeholder { color: rgba(245,240,232,0.3); }
.newsletter-input:focus { border-color: var(--gold); }

.newsletter-btn {
  padding: 12px 20px;
  background: var(--gold);
  color: var(--espresso);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--gold);
  transition: all 0.25s;
}
.newsletter-btn:hover {
  background: var(--espresso);
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.72rem;
  color: rgba(245,240,232,0.3);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.72rem;
  color: rgba(245,240,232,0.35);
  transition: color 0.25s;
}
.footer-legal a:hover { color: var(--gold); }

/* ===================================================
   PAGE HERO (inner pages)
   =================================================== */
.page-hero {
  position: relative;
  padding: 100px 0 80px;
  background: var(--walnut);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,11,8,0.6) 0%, transparent 100%);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.page-hero-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-hero-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.15;
  margin-bottom: 20px;
}

.page-hero p {
  font-size: 1rem;
  color: rgba(245,240,232,0.7);
  line-height: 1.7;
}

/* Breadcrumb */
.breadcrumb {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 0.7rem;
}
.breadcrumb a {
  color: rgba(245,240,232,0.45);
  font-weight: 500;
  letter-spacing: 0.05em;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep {
  color: rgba(245,240,232,0.25);
  font-size: 0.65rem;
}
.breadcrumb-current {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ===================================================
   PRODUCTS PAGE
   =================================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding: var(--section-py) 0;
}

.product-card {
  background: var(--ivory-warm);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px var(--shadow-hover);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-img { transform: scale(1.06); }

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--espresso);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
}

.product-info {
  padding: 24px;
}

.product-category {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.product-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--espresso);
  margin-bottom: 10px;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--smoke);
  line-height: 1.6;
  margin-bottom: 20px;
}

.product-specs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.product-spec-tag {
  padding: 4px 10px;
  background: var(--stone);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wood-mid);
}

/* ===================================================
   INSPIRATION / GALLERY
   =================================================== */
.gallery-masonry {
  columns: 3;
  column-gap: 20px;
  padding: var(--section-py) 0;
}

.gallery-masonry-item {
  break-inside: avoid;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gallery-masonry-img {
  width: 100%;
  display: block;
  transition: transform 0.6s var(--ease);
}
.gallery-masonry-item:hover .gallery-masonry-img { transform: scale(1.04); }

.gallery-masonry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,11,8,0);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: background 0.35s;
}
.gallery-masonry-item:hover .gallery-masonry-overlay {
  background: rgba(14,11,8,0.6);
}

.gallery-masonry-tag {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s 0.1s;
}
.gallery-masonry-item:hover .gallery-masonry-tag {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,6,4,0.95);
  z-index: 5000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(245,240,232,0.6);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
}
.lightbox-close:hover { color: var(--gold); }

/* ===================================================
   ABOUT PAGE
   =================================================== */
.about-mission {
  background: var(--ivory-warm);
  padding: var(--section-py) 0;
}

.about-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-values {
  background: var(--walnut);
  padding: var(--section-py) 0;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.about-value-card {
  background: rgba(255,255,255,0.03);
  padding: 40px 28px;
  border: 1px solid var(--border-dark);
  text-align: center;
}

.about-value-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(196,163,90,0.2);
  line-height: 1;
  margin-bottom: 16px;
}

.about-value-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 12px;
}

.about-value-body {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.5);
  line-height: 1.6;
}

/* ===================================================
   FORMS
   =================================================== */
.form-section {
  background: var(--ivory-warm);
  padding: var(--section-py) 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.form-wrap {
  background: #fff;
  padding: 48px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 80px var(--shadow);
}

.form-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 0.85rem;
  color: var(--ash);
  margin-bottom: 32px;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--espresso);
  margin-bottom: 8px;
}

.form-label .required { color: var(--gold); margin-left: 3px; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--ivory-warm);
  border: 1px solid var(--border);
  color: var(--espresso);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  border-radius: 0;
  min-height: 48px;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  background: #fff;
}

.form-textarea { resize: vertical; min-height: 120px; }

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A07550' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--gold);
  cursor: pointer;
}

.checkbox-label {
  font-size: 0.82rem;
  color: var(--smoke);
  line-height: 1.5;
  cursor: pointer;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--espresso);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid var(--espresso);
  transition: all 0.3s var(--ease);
  min-height: 56px;
}
.form-submit:hover {
  background: var(--gold);
  color: var(--espresso);
  border-color: var(--gold);
}

/* ===================================================
   DEALER LOGIN
   =================================================== */
.dealer-login-page {
  min-height: calc(100vh - 120px);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.login-left {
  position: relative;
  overflow: hidden;
  background: var(--walnut);
}

.login-left-img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}

.login-left-content {
  position: relative;
  z-index: 2;
  padding: 80px 60px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-left-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.2;
  margin-bottom: 20px;
}

.login-perks {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.login-perk {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.login-perk-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.login-perk-text {
  font-size: 0.87rem;
  color: rgba(245,240,232,0.7);
  line-height: 1.5;
}

.login-right {
  background: var(--ivory-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
}

.login-box {
  width: 100%;
  max-width: 440px;
}

.login-box-logo {
  margin-bottom: 40px;
}

.login-box-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 8px;
}

.login-box-sub {
  font-size: 0.87rem;
  color: var(--ash);
  margin-bottom: 32px;
}

.login-extras {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.forgot-link {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 600;
}
.forgot-link:hover { color: var(--espresso); }

.login-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 28px 0;
}
.login-divider span {
  font-size: 0.72rem;
  color: var(--taupe);
  white-space: nowrap;
}
.login-divider-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ===================================================
   CONTACT PAGE
   =================================================== */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.contact-info-card {
  background: var(--espresso);
  padding: 36px 28px;
  text-align: center;
  border-bottom: 3px solid var(--gold);
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin: 0 auto 16px;
}

.contact-info-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.45);
  margin-bottom: 8px;
}

.contact-info-value {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--ivory);
  line-height: 1.4;
}

/* ===================================================
   FAQ PAGE
   =================================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--section-py) 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--espresso);
  text-align: left;
  cursor: pointer;
  gap: 20px;
  transition: color 0.25s;
}
.faq-question:hover { color: var(--gold); }

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--gold);
  transition: transform 0.3s, background 0.25s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--espresso);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 0.95rem;
  color: var(--smoke);
  line-height: 1.8;
}

/* ===================================================
   ANIMATIONS
   =================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===================================================
   RESPONSIVE — TABLET (≤ 1024px)
   =================================================== */
@media (max-width: 1024px) {
  :root {
    --section-py: 72px;
    --section-py-sm: 48px;
  }

  .container { padding: 0 28px; }

  .main-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .mobile-overlay { display: block; }

  .header-actions .btn { display: none; }

  .brand-intro-grid,
  .about-mission-grid { grid-template-columns: 1fr; gap: 48px; }

  .brand-intro-media { display: none; }

  .collections-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .collection-card:first-child {
    grid-row: span 1;
    aspect-ratio: 3/4;
  }

  .finishes-layout { grid-template-columns: 1fr; gap: 48px; }
  .swatches-grid { grid-template-columns: repeat(5, 1fr); }

  .why-grid { grid-template-columns: 1fr 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 220px);
  }
  .gallery-item:nth-child(1) { grid-row: span 1; }

  .serve-grid { grid-template-columns: 1fr 1fr; }

  .geo-inner { grid-template-columns: 1fr; gap: 48px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  .form-grid { grid-template-columns: 1fr; gap: 48px; }

  .dealer-login-page { grid-template-columns: 1fr; }
  .login-left { min-height: 340px; }

  .about-values-grid { grid-template-columns: 1fr 1fr; }

  .contact-info-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }

  .hero-content { max-width: 100%; }
}

/* ===================================================
   RESPONSIVE — MOBILE (≤ 768px)
   =================================================== */
@media (max-width: 768px) {
  :root {
    --section-py: 56px;
    --section-py-sm: 40px;
  }

  .container { padding: 0 20px; }

  .top-bar { display: none; }

  .header-inner { height: 64px; }

  .hero { height: 90vh; min-height: 520px; }
  .hero-content { padding-bottom: 60px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-scroll { display: none; }

  .brand-values { grid-template-columns: 1fr; }

  .collections-grid { grid-template-columns: 1fr; }
  .collection-card:first-child { aspect-ratio: 3/4; }
  .collection-desc { max-height: 80px; opacity: 1; }

  .swatches-grid { grid-template-columns: repeat(3, 1fr); }

  .why-grid { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 180px);
  }

  .gallery-masonry { columns: 2; }

  .serve-grid { grid-template-columns: 1fr; }

  .geo-right { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

  .login-right { padding: 40px 24px; }

  .about-values-grid { grid-template-columns: 1fr; }

  .products-grid { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

/* ===================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   =================================================== */
@media (max-width: 480px) {
  .swatches-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 1; }
  .geo-right { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: clamp(2rem, 9vw, 3rem); }
}

/* ===================================================
   UTILITY
   =================================================== */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-ivory { color: var(--ivory); }
.text-espresso { color: var(--espresso); }

.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }

.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }

/* Divider */
.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0 28px;
}

.gold-divider-center {
  margin: 20px auto 28px;
}

/* Background classes */
.bg-dark { background: var(--bg-dark); }
.bg-walnut { background: var(--walnut); }
.bg-ivory { background: var(--ivory-warm); }
.bg-stone { background: var(--stone); }

/* Overflow hidden */
.overflow-hidden { overflow: hidden; }
