/* ============================================
   WOOD & INTERIORS — Premium Design System
   Scandinavian Luxury Aesthetics
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Poppins:wght@300;400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --soft-white: #F8F6F2;
  --oak-beige: #E7DFCF;
  --wood-brown: #A67B5B;
  --charcoal: #2E2E2E;
  --scandi-grey: #8C8C8C;
  --accent-gold: #C6A769;
  --deep-wood: #7A5C42;
  --cream: #FAF8F4;
  --light-border: #E0D8CC;
  --shadow-warm: rgba(166, 123, 91, 0.12);
  --shadow-deep: rgba(46, 46, 46, 0.15);
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', sans-serif;
  --navbar-h: 130px;
  --max-w: 1320px;
  --radius: 6px;
  --radius-lg: 12px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

html { overflow-x: hidden; width: 100%; }
body {
  font-family: var(--font-body);
  background-color: var(--soft-white);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
  padding-top: var(--navbar-h);
  margin: 0;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--charcoal);
  line-height: 1.25;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

/* ── AOS Safety Fallback ──────────────────────
   Prevent content staying invisible if AOS is
   slow to init or fails on mobile             */
[data-aos] {
  transition-duration: 400ms !important;
}
/* After 1.5s, force all AOS elements visible regardless */
@keyframes aosFailsafe {
  to { opacity: 1 !important; transform: none !important; }
}
[data-aos]:not(.aos-animate) {
  animation: aosFailsafe 0s 1.5s forwards;
}

/* ── Image loading placeholder ── */
.carousel-card-img,
.fcard-img,
.product-img-wrap,
.cat-img-wrap {
  background: var(--oak-beige);
}
.carousel-card-img img,
.fcard-img img {
  background: var(--oak-beige);
}


/* ============================================
   PRELOADER
   ============================================ */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.loaded { opacity: 0; visibility: hidden; }

.preloader-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--soft-white);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: logoReveal 1.2s ease forwards;
  opacity: 0;
}

.preloader-logo span { color: var(--accent-gold); }

.preloader-tagline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--scandi-grey);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 0.5rem;
  opacity: 0;
  animation: logoReveal 1.2s 0.3s ease forwards;
}

.preloader-bar {
  width: 200px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

.preloader-bar::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-gold);
  animation: barLoad 2s ease forwards;
}

@keyframes logoReveal {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes barLoad {
  from { left: -100%; }
  to { left: 0; }
}

/* ============================================
   NAVBAR
   ============================================ */
/* ══════════════════════════════════════════
   TWO-ROW HEADER
   Row 1 (dark): Logo | Phone | Search bar
   Row 2 (slightly lighter): Nav links
   ══════════════════════════════════════════ */

#mainNav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: auto;
  background: #2c1f1a;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s;
}
#mainNav.nav-hidden {
  transform: translateY(-100%);
  box-shadow: none;
}

/* Top bar — logo, phone, search */
.nav-top-bar {
  background: #2c1f1a;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0 2rem;
  height: 78px;
}
.nav-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Brand */
.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-brand .brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}
.nav-brand .brand-name span { color: var(--accent-gold); }
.nav-brand .brand-tag {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 3px;
}

/* Phone block */
.nav-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.nav-phone-label {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.nav-phone-num {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.03em;
}
.nav-phone-num:hover { color: var(--accent-gold); }

/* Search bar */
.nav-search-wrap {
  flex: 1;
  max-width: 620px;
  position: relative;
}
.nav-search-wrap input {
  width: 100%;
  height: 46px;
  border-radius: 100px;
  border: none;
  padding: 0 52px 0 22px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--charcoal);
  background: #fff;
  outline: none;
  box-sizing: border-box;
  transition: box-shadow 0.2s;
}
.nav-search-wrap input:focus {
  box-shadow: 0 0 0 3px rgba(198,167,105,0.35);
}
.nav-search-wrap input::placeholder { color: #aaa; }
.nav-search-btn {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--accent-gold);
  font-size: 1.1rem;
  padding: 0;
  display: flex;
  align-items: center;
}

/* Nav right — WA + hamburger */
.nav-top-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Bottom bar — navigation links */
.nav-bottom-bar {
  background: #3a2820;
  height: 52px;
  padding: 0 2rem;
}
.nav-bottom-inner {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link-item {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  padding: 0 1rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.nav-link-item:hover,
.nav-link-item.active {
  color: var(--accent-gold);
  border-bottom-color: var(--accent-gold);
  background: rgba(255,255,255,0.05);
}
.nav-link-item i { font-size: 0.6rem; transition: transform 0.3s; }
.nav-item:hover .nav-link-item i { transform: rotate(180deg); }

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 600px;
  background: #fff;
  border: 1px solid var(--light-border);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 20px 60px var(--shadow-deep);
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  transform: translateX(-50%) translateY(8px);
}

.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.mega-cat-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}

.mega-cat-item:hover { background: var(--oak-beige); }

.mega-cat-icon {
  width: 44px;
  height: 44px;
  background: var(--oak-beige);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--wood-brown);
  flex-shrink: 0;
  transition: var(--transition);
}
.mega-cat-item:hover .mega-cat-icon { background: var(--accent-gold); color: #fff; }

.mega-cat-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--charcoal);
  display: block;
  letter-spacing: 0.02em;
}
.mega-cat-count {
  font-size: 0.7rem;
  color: var(--scandi-grey);
}

/* ── Products Pagination ── */
.products-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 2.5rem 0 1rem;
  flex-wrap: wrap;
}

.pag-nums {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.pag-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 14px;
  border-radius: var(--radius);
  border: 1.5px solid var(--light-border);
  background: #fff;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.pag-btn:hover:not(:disabled) {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(198,167,105,0.06);
}
.pag-btn.active {
  background: var(--charcoal);
  color: #fff;
  border-color: var(--charcoal);
  font-weight: 700;
}
.pag-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.pag-num { width: 40px; padding: 0; justify-content: center; }
.pag-ellipsis {
  width: 32px;
  text-align: center;
  color: var(--scandi-grey);
  font-size: 0.85rem;
}
@media (max-width: 480px) {
  .pag-prev span, .pag-next span { display: none; }
  .pag-btn { height: 38px; padding: 0 10px; font-size: 0.8rem; }
  .pag-num { width: 38px; }
}


/* Gallery Stats Grid */
.gallery-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.gallery-stat-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1.1;
}
.gallery-stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.4rem;
}
@media (max-width: 600px) {
  .gallery-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .gallery-stat-num { font-size: 2.2rem; }
}

.why-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (max-width: 768px) {
  .why-strip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }
}


.nav-search-icon-mobile {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}
.nav-search-icon-mobile:hover { background: rgba(255,255,255,0.22); }


.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.nav-icon-btn:hover { background: rgba(255,255,255,0.1); color: var(--accent-gold); }

.btn-wa {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.55rem 1rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-wa:hover { background: #1ebe5d; color: #fff; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(37,211,102,0.35); }
.btn-wa i { font-size: 0.9rem; }

/* Mobile Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Slide Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(360px, 100vw);
  height: 100vh;
  background: var(--charcoal);
  z-index: 999;
  transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow-y: auto;
  padding: 6rem 2rem 2rem;
}
.mobile-menu.open { right: 0; }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.mobile-overlay.open { opacity: 1; visibility: visible; }

.mobile-nav-link {
  display: block;
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  letter-spacing: 0.03em;
  transition: var(--transition);
}
.mobile-nav-link:hover { color: var(--accent-gold); padding-left: 0.5rem; }

.mobile-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  padding: 0.85rem;
  border-radius: 8px;
  margin-top: 2rem;
  font-size: 0.9rem;
}

/* ============================================
   SECTION UTILITIES
   ============================================ */
section:not(#hero) { padding: 6rem 0; }

.section-header { margin-bottom: 3.5rem; text-align: center; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-gold);
  background: rgba(198,167,105,0.1);
  border: 1px solid rgba(198,167,105,0.25);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.section-title {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title .gold { color: var(--accent-gold); }
.section-title em { font-style: italic; }

.section-subtitle {
  font-size: 0.95rem;
  color: var(--scandi-grey);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

/* Divider Line */
.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), var(--wood-brown));
  margin: 1.25rem auto;
  border-radius: 2px;
}
.gold-line.left { margin: 1.25rem 0; }

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary-wood {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--charcoal);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  border: 2px solid var(--charcoal);
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary-wood:hover {
  background: transparent;
  color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--shadow-deep);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--accent-gold);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  border: 2px solid var(--accent-gold);
  cursor: pointer;
  transition: var(--transition);
}
.btn-gold:hover { background: var(--deep-wood); border-color: var(--deep-wood); color: #fff; transform: translateY(-2px); }

.btn-outline-wood {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--charcoal);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  border: 2px solid var(--charcoal);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-wood:hover { background: var(--charcoal); color: #fff; transform: translateY(-2px); }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-white:hover { background: #fff; color: var(--charcoal); }

.btn-wa-full {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-wa-full:hover { background: #1ebe5d; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.35); }

/* ============================================
   HERO SECTION
   ============================================ */
/* ══════════════════════════════════════════
   PROMOTIONAL BANNER HERO
   ══════════════════════════════════════════ */


/* ── Hero full-bleed override ── */
#hero {
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  background: var(--charcoal);
  overflow: hidden;
}
#hero .promo-grid {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Overall grid: 60% left + 40% right */
.promo-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  height: 540px;
  gap: 3px;
  background: #111;
  width: 100%;
  max-width: 100%;
}

/* ── Main left banner ── */
.promo-main {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  background: #1a1008;
}
.promo-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.promo-main:hover .promo-bg-img { transform: scale(1.05); }

.promo-main-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    120deg,
    rgba(26,10,8,0.82) 0%,
    rgba(44,31,26,0.65) 55%,
    rgba(166,123,91,0.25) 100%
  );
}

.promo-main-content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column;
  justify-content: center;
  padding: 48px 52px;
  gap: 16px;
}

.promo-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 600;
}

.promo-main-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
}
.promo-main-title em {
  font-style: italic;
  color: var(--accent-gold);
  text-transform: none;
  font-weight: 700;
}

/* Offer dashed box */
.promo-offer-box {
  border: 1.5px dashed rgba(198,167,105,0.6);
  border-radius: 6px;
  padding: 10px 18px;
  display: inline-flex;
  flex-direction: column;
  align-self: flex-start;
  gap: 2px;
  background: rgba(198,167,105,0.08);
}
.promo-offer-top {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  text-transform: uppercase;
  display: flex; align-items: center; gap: 6px;
}
.promo-offer-mid {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.06em;
}
.promo-offer-btm {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.6);
}

/* Price block */
.promo-main-discount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 4px;
}
.promo-upto {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.promo-pct {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--accent-gold);
  line-height: 1;
}
.promo-off {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* CTA pill */
.promo-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: var(--accent-gold);
  color: #1a1008;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 10px 22px;
  border-radius: 100px;
  text-transform: uppercase;
  transition: background 0.25s, gap 0.25s;
}
.promo-main:hover .promo-cta-btn {
  background: #d4b57a;
  gap: 12px;
}

/* ── Right 2×2 grid ── */
.promo-grid-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
}

.promo-mini {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
}
.promo-mini-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.promo-mini:hover .promo-mini-img { transform: scale(1.08); }

.promo-mini-overlay {
  position: absolute; inset: 0;
  transition: opacity 0.3s;
}
/* Each mini panel has a distinct warm overlay tint */
.promo-mini-1 .promo-mini-overlay { background: linear-gradient(145deg, rgba(44,31,26,0.72) 0%, rgba(166,123,91,0.4) 100%); }
.promo-mini-2 .promo-mini-overlay { background: linear-gradient(145deg, rgba(26,16,8,0.75) 0%, rgba(198,167,105,0.35) 100%); }
.promo-mini-3 .promo-mini-overlay { background: linear-gradient(145deg, rgba(44,31,26,0.78) 0%, rgba(100,60,30,0.45) 100%); }
.promo-mini-4 .promo-mini-overlay { background: linear-gradient(145deg, rgba(20,14,8,0.78) 0%, rgba(198,167,105,0.38) 100%); }
.promo-mini:hover .promo-mini-overlay { opacity: 0.85; }

.promo-mini-content {
  position: relative; z-index: 2;
  height: 100%;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 16px 18px;
}

.promo-mini-tag {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 4px;
  margin-bottom: 7px;
  align-self: flex-start;
  background: var(--accent-gold);
  color: #1a1008;
}
.promo-mini-tag.new-tag    { background: #4fc3f7; color: #fff; }
.promo-mini-tag.deal-tag   { background: #fff; color: var(--charcoal); }
.promo-mini-tag.offer-tag  { background: var(--wood-brown); color: #fff; }

.promo-mini-title {
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 1.6vw, 1.2rem);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.15;
}
.promo-mini-title em {
  font-style: italic;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: none;
  font-size: 0.9em;
}

/* Responsive */
@media (max-width: 900px) {
  .promo-grid { grid-template-columns: 1fr; height: auto; }
  .promo-main { min-height: 340px; }
  .promo-main-content { padding: 36px 28px; }
  .promo-grid-right { grid-template-columns: 1fr 1fr; height: 280px; }
}
@media (max-width: 500px) {
  .promo-grid-right { height: 220px; }
  .promo-mini-content { padding: 10px 12px; }
  .promo-mini-title { font-size: 0.85rem; }
}

/* ============================================
   SECTION UTILITIES
   ============================================ */
section:not(#hero) { padding: 6rem 0; }

.section-header { margin-bottom: 3.5rem; text-align: center; }

.section-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-gold);
  background: rgba(198,167,105,0.1);
  border: 1px solid rgba(198,167,105,0.25);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.section-title {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title .gold { color: var(--accent-gold); }
.section-title em { font-style: italic; }

.section-subtitle {
  font-size: 0.95rem;
  color: var(--scandi-grey);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

/* Divider Line */
.gold-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), var(--wood-brown));
  margin: 1.25rem auto;
  border-radius: 2px;
}
.gold-line.left { margin: 1.25rem 0; }

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary-wood {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--charcoal);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  border: 2px solid var(--charcoal);
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary-wood:hover {
  background: transparent;
  color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--shadow-deep);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--accent-gold);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  border: 2px solid var(--accent-gold);
  cursor: pointer;
  transition: var(--transition);
}
.btn-gold:hover { background: var(--deep-wood); border-color: var(--deep-wood); color: #fff; transform: translateY(-2px); }

.btn-outline-wood {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--charcoal);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  border: 2px solid var(--charcoal);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-wood:hover { background: var(--charcoal); color: #fff; transform: translateY(-2px); }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-white:hover { background: #fff; color: var(--charcoal); }

.btn-wa-full {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-wa-full:hover { background: #1ebe5d; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.35); }

/* ============================================
   HERO SECTION
   ============================================ */
/* ============================================
   CATEGORIES SECTION
   ============================================ */
#categories { background: var(--cream); }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.cat-card {
  background: var(--soft-white);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  position: relative;
}

.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px var(--shadow-warm);
  border-color: var(--accent-gold);
}

.cat-img-wrap {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.cat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.cat-card:hover .cat-img-wrap img { transform: scale(1.08); }

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(46,46,46,0.6) 0%, transparent 60%);
  transition: var(--transition);
}
.cat-card:hover .cat-overlay { background: linear-gradient(to top, rgba(166,123,91,0.7) 0%, transparent 60%); }

.cat-body { padding: 1.25rem 1rem 1.5rem; }

.cat-icon {
  width: 44px;
  height: 44px;
  background: var(--oak-beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wood-brown);
  font-size: 1.1rem;
  margin: -2rem auto 0.85rem;
  position: relative;
  z-index: 1;
  border: 3px solid var(--soft-white);
  transition: var(--transition);
}
.cat-card:hover .cat-icon { background: var(--accent-gold); color: #fff; }

.cat-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
}
.cat-count {
  font-size: 0.72rem;
  color: var(--scandi-grey);
  letter-spacing: 0.08em;
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
/* ── Dual Carousel: New Arrivals + Trending ── */
#featured-products {
  padding: 60px 0 20px !important;
  background: #f5f3ef;
}

.dual-carousel-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.dual-carousel-divider {
  width: 1px;
  background: #ddd;
  margin: 48px 40px 0;
  align-self: stretch;
}

.carousel-block { min-width: 0; }

.carousel-block-header {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 24px;
}

.carousel-block-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0;
}

.carousel-view-all {
  font-size: 0.8rem;
  color: var(--scandi-grey);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.carousel-view-all:hover { color: var(--wood-brown); }

.carousel-outer {
  position: relative;
  display: flex;
  align-items: center;
}

.carousel-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius);
}

.carousel-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}

.carousel-card {
  flex: 0 0 50%;
  padding: 0 8px;
  box-sizing: border-box;
}

.carousel-card-inner {
  background: #fff;
  border: 1px solid #e8e3db;
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.carousel-card-inner:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}

.carousel-card-img {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f8f6f2;
}
.carousel-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.carousel-card-inner:hover .carousel-card-img img { transform: scale(1.06); }

.carousel-badges {
  position: absolute;
  top: 10px; left: 10px;
  display: flex; flex-direction: column; gap: 5px;
}
.carousel-badge {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.carousel-badge.new-badge  { background: #4fc3f7; color: #fff; }
.carousel-badge.sale-badge { background: #f48fb1; color: #fff; }
.carousel-badge.hot-badge  { background: var(--accent-gold); color: #fff; }

.carousel-card-body { padding: 12px 14px 16px; }

.carousel-card-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.carousel-card-price { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.price-original { font-size: 0.78rem; color: #aaa; text-decoration: line-through; }
.price-sale { font-size: 0.9rem; font-weight: 700; color: var(--wood-brown); }

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 0.75rem;
  color: var(--charcoal);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.carousel-arrow:hover { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }
.carousel-prev { left: -18px; }
.carousel-next { right: -18px; }
.carousel-arrow:disabled { opacity: 0.35; pointer-events: none; }

.carousel-dots { display: flex; justify-content: center; gap: 7px; margin-top: 18px; }
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ccc; border: none; cursor: pointer; padding: 0;
  transition: background 0.25s, transform 0.25s;
}
.carousel-dot.active { background: var(--accent-gold); transform: scale(1.3); }

@media (max-width: 900px) {
  .dual-carousel-wrap { grid-template-columns: 1fr; }
  .dual-carousel-divider { width: 100%; height: 1px; margin: 36px 0; align-self: auto; }
}
@media (max-width: 480px) {
  .carousel-card { flex: 0 0 100%; padding: 0; }
}

/* ── Full-width Product Row Carousels ── */
#best-sellers {
  padding: 10px 0 70px !important;
  background: #f5f3ef;
}

.full-carousel-block {
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid #e5e0d8;
}
.full-carousel-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.full-carousel-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 22px;
}
.full-carousel-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
  margin: 0 0 4px;
}
.full-carousel-sub {
  font-size: 0.82rem;
  color: var(--scandi-grey);
  margin: 0;
}
.full-carousel-viewall {
  font-size: 0.8rem;
  color: var(--wood-brown);
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  transition: gap 0.2s, color 0.2s;
  flex-shrink: 0;
  margin-bottom: 2px;
}
.full-carousel-viewall:hover { color: var(--charcoal); gap: 10px; }

.full-carousel-outer {
  position: relative;
  display: flex;
  align-items: center;
}
.full-carousel-viewport {
  flex: 1;
  overflow: hidden;
}
.full-carousel-track {
  display: flex;
  transition: transform 0.42s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}

/* Each card = 25% = 4 visible */
.fcard {
  flex: 0 0 25%;
  padding: 0 8px;
  box-sizing: border-box;
}
.fcard-inner {
  background: #fff;
  border: 1px solid #e8e3db;
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  cursor: pointer;
}
.fcard-inner:hover {
  box-shadow: 0 10px 36px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.fcard-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f8f6f2;
}
.fcard-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.fcard-inner:hover .fcard-img img { transform: scale(1.07); }

.fcard-badges {
  position: absolute;
  top: 10px; left: 10px;
  display: flex; gap: 5px;
}
.fcard-badge {
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.fcard-badge.instock  { background: #4caf7d; color: #fff; }
.fcard-badge.mto      { background: #e8a838; color: #fff; }
.fcard-badge.featured { background: var(--charcoal); color: #fff; }

.fcard-body { padding: 12px 14px 16px; }
.fcard-cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wood-brown);
  margin-bottom: 5px;
}
.fcard-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.4em;
}
.fcard-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fcard-price-orig { font-size: 0.75rem; color: #bbb; text-decoration: line-through; }
.fcard-price-sale { font-size: 0.92rem; font-weight: 700; color: var(--wood-brown); }
.fcard-delivery {
  margin-top: 6px;
  font-size: 0.72rem;
  color: var(--scandi-grey);
  display: flex;
  align-items: center;
  gap: 5px;
}
.fcard-delivery i { color: var(--accent-gold); font-size: 0.7rem; }

/* Full carousel arrows */
.fcarousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 0.8rem;
  color: var(--charcoal);
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.2s;
}
.fcarousel-arrow:hover {
  background: var(--charcoal); color: #fff;
  border-color: var(--charcoal);
  transform: translateY(-50%) scale(1.08);
}
.fcarousel-arrow.fcarousel-prev { left: -20px; }
.fcarousel-arrow.fcarousel-next { right: -20px; }
.fcarousel-arrow:disabled { opacity: 0.3; pointer-events: none; }

/* Full carousel dots */
.fcarousel-dots {
  display: flex; justify-content: center; gap: 7px; margin-top: 16px;
}
.fcarousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ccc; border: none; cursor: pointer; padding: 0;
  transition: background 0.25s, transform 0.25s;
}
.fcarousel-dot.active { background: var(--accent-gold); transform: scale(1.3); }

@media (max-width: 1024px) { .fcard { flex: 0 0 33.333%; } }
@media (max-width: 768px)  { .fcard { flex: 0 0 50%; } }
@media (max-width: 480px)  { .fcard { flex: 0 0 100%; padding: 0; } }


.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-card {
  background: var(--cream);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px var(--shadow-warm);
  border-color: rgba(198,167,105,0.3);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--oak-beige);
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.08); }

.product-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: var(--charcoal);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  z-index: 1;
}
.product-badge.in-stock { background: var(--deep-wood); }
.product-badge.made-order { background: var(--accent-gold); }
.product-badge.featured { background: var(--wood-brown); }

.product-actions {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 2;
  padding: 0 1rem;
}
.product-card:hover .product-actions { opacity: 1; transform: translateY(0); }

.product-action-btn {
  flex: 1;
  padding: 0.55rem 0.75rem;
  border: none;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  white-space: nowrap;
}
.btn-qv { background: var(--charcoal); color: #fff; }
.btn-qv:hover { background: var(--deep-wood); }
.btn-wa-card { background: #25D366; color: #fff; }
.btn-wa-card:hover { background: #1ebe5d; }

.product-body { padding: 1.25rem; }

.product-cat {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.4rem;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
  line-height: 1.35;
}

.product-sku {
  font-size: 0.65rem;
  color: var(--scandi-grey);
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}
.product-tag {
  font-size: 0.65rem;
  padding: 0.2rem 0.6rem;
  background: var(--oak-beige);
  color: var(--charcoal);
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px solid var(--light-border);
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
}

.product-delivery {
  font-size: 0.65rem;
  color: var(--scandi-grey);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.product-delivery i { color: var(--wood-brown); }

/* ============================================
   PROJECTS SECTION
   ============================================ */
#projects { background: var(--charcoal); }
#projects .section-title { color: #fff; }
#projects .section-subtitle { color: rgba(255,255,255,0.55); }
#projects .section-eyebrow { color: var(--accent-gold); background: rgba(198,167,105,0.1); }

.projects-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 1.25rem;
}

.project-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
}
.project-card.large { grid-row: span 2; }

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.project-card:hover img { transform: scale(1.08); }

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(46,46,46,0.9) 0%, transparent 60%);
  transition: var(--transition);
}
.project-card:hover .project-overlay { background: linear-gradient(to top, rgba(166,123,91,0.85) 0%, rgba(46,46,46,0.2) 100%); }

.project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  transform: translateY(10px);
  transition: var(--transition);
}
.project-card:hover .project-info { transform: translateY(0); }

.project-category {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.4rem;
}

.project-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}
.project-card.large .project-name { font-size: 1.5rem; }

/* ============================================
   PROCESS TIMELINE
   ============================================ */
#process { background: var(--cream); }

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, var(--oak-beige), var(--accent-gold), var(--oak-beige));
}

.process-step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
}

.process-num {
  width: 72px;
  height: 72px;
  background: var(--soft-white);
  border: 2px solid var(--oak-beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  transition: var(--transition);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--scandi-grey);
}

.process-step:hover .process-num {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(198,167,105,0.35);
}

.process-icon {
  position: absolute;
  bottom: -6px;
  right: -2px;
  width: 24px;
  height: 24px;
  background: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: #fff;
}

.process-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.process-desc {
  font-size: 0.8rem;
  color: var(--scandi-grey);
  line-height: 1.6;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
#testimonials { background: var(--soft-white); }

.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.testimonial-slide {
  min-width: 100%;
}

.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem;
  background: var(--cream);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 8rem;
  color: var(--accent-gold);
  opacity: 0.15;
  position: absolute;
  top: 1rem;
  left: 2rem;
  line-height: 1;
}

.testimonial-stars { color: var(--accent-gold); font-size: 1rem; margin-bottom: 1.5rem; }

.testimonial-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.75;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 1rem; }

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--oak-beige);
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
  text-align: left;
}
.testimonial-location {
  font-size: 0.75rem;
  color: var(--scandi-grey);
  text-align: left;
}
.testimonial-project {
  font-size: 0.7rem;
  color: var(--accent-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-align: left;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--light-border);
  background: var(--cream);
  color: var(--charcoal);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn:hover { background: var(--accent-gold); border-color: var(--accent-gold); color: #fff; }

.slider-dots { display: flex; gap: 0.5rem; }
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--light-border);
  cursor: pointer;
  transition: var(--transition);
}
.slider-dot.active { background: var(--accent-gold); width: 24px; border-radius: 4px; }

/* ============================================
   FAQ SECTION
   ============================================ */
#faq { background: var(--cream); }

.faq-container { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: rgba(198,167,105,0.4); }
.faq-item.active { border-color: var(--accent-gold); box-shadow: 0 4px 20px var(--shadow-warm); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: var(--soft-white);
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--charcoal);
  transition: var(--transition);
  gap: 1rem;
}
.faq-item.active .faq-question { background: var(--cream); color: var(--wood-brown); }

.faq-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--oak-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--charcoal);
  transition: var(--transition);
}
.faq-item.active .faq-icon { background: var(--accent-gold); color: #fff; transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer { max-height: 300px; }

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.88rem;
  color: var(--scandi-grey);
  line-height: 1.8;
}

/* ============================================
   CTA SECTION
   ============================================ */
#cta-section {
  background: linear-gradient(135deg, var(--charcoal) 0%, #1a1a1a 100%);
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

#cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(198,167,105,0.08) 0%, transparent 70%);
}

#cta-section .section-title { color: #fff; }
#cta-section .section-subtitle { color: rgba(255,255,255,0.6); }

.cta-actions { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #1a1a1a;
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .brand-name {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
.footer-brand .brand-name span { color: var(--accent-gold); }

.footer-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--scandi-grey);
  margin-bottom: 1.5rem;
}

.footer-about {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}

.footer-socials { display: flex; gap: 0.75rem; }
.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-icon:hover { background: var(--accent-gold); border-color: var(--accent-gold); color: #fff; transform: translateY(-3px); }

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
  position: relative;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 1px;
  background: var(--accent-gold);
}

.footer-links li { margin-bottom: 0.65rem; }
.footer-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-links a:hover { color: var(--accent-gold); padding-left: 4px; }
.footer-links a::before { content: '—'; font-size: 0.65rem; opacity: 0; transition: var(--transition); }
.footer-links a:hover::before { opacity: 1; }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-contact .contact-icon {
  width: 32px;
  height: 32px;
  background: rgba(198,167,105,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: var(--accent-gold); }

/* ============================================
   QUICK VIEW MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { opacity: 1; visibility: visible; }

.quick-view-modal {
  background: var(--cream);
  border-radius: var(--radius-lg);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}
.modal-overlay.open .quick-view-modal { transform: scale(1) translateY(0); }

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--charcoal);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  z-index: 1;
  transition: var(--transition);
}
.modal-close:hover { background: var(--accent-gold); }

.modal-body { display: grid; grid-template-columns: 1.2fr 1fr; gap: 0; }

.modal-img-col {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}
.modal-img-col img { width: 100%; height: 100%; object-fit: cover; }

.modal-info-col { padding: 2.5rem; }

.modal-category { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-gold); margin-bottom: 0.5rem; }

.modal-title { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.5rem; line-height: 1.3; }

.modal-sku { font-size: 0.72rem; color: var(--scandi-grey); margin-bottom: 1rem; }

.modal-price { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 700; color: var(--charcoal); margin-bottom: 1rem; }

.modal-desc { font-size: 0.85rem; color: var(--scandi-grey); line-height: 1.75; margin-bottom: 1.5rem; }

.modal-specs { margin-bottom: 1.5rem; }
.modal-specs-title { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 0.75rem; }
.modal-spec-row { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid var(--light-border); font-size: 0.8rem; }
.modal-spec-row .spec-key { color: var(--scandi-grey); }
.modal-spec-row .spec-val { font-weight: 500; color: var(--charcoal); }

.modal-actions { display: flex; flex-direction: column; gap: 0.75rem; }

/* ============================================
   LIGHTBOX
   ============================================ */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
#lightbox.open { opacity: 1; visibility: visible; }

#lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--accent-gold); border-color: var(--accent-gold); }

/* ============================================
   PRODUCT FILTER PAGE
   ============================================ */
.page-hero {
  height: 320px;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}

.page-hero-content { position: relative; z-index: 1; }
.page-hero-title { font-family: var(--font-heading); font-size: 3rem; font-weight: 700; color: #fff; margin-bottom: 0.5rem; }
.page-hero-breadcrumb { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.page-hero-breadcrumb a { color: var(--accent-gold); }
.page-hero-breadcrumb span { margin: 0 0.5rem; }

/* Filter Sidebar */
.products-layout { display: grid; grid-template-columns: 280px 1fr; gap: 2.5rem; padding: 3rem 0; }

.filter-sidebar { position: sticky; top: 1rem; align-self: start; }

/* ── Mobile Filter Drawer ── */
.filter-mobile-bar {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--light-border);
}
.filter-open-btn {
  display: flex; align-items: center; gap: 8px;
  background: var(--charcoal); color: #fff;
  border: none; border-radius: var(--radius);
  padding: 10px 18px; font-family: var(--font-body);
  font-size: 0.85rem; font-weight: 600; cursor: pointer;
  transition: background 0.2s;
}
.filter-open-btn:hover { background: var(--wood-brown); }
.filter-open-btn i { font-size: 0.9rem; }
.filter-result-count-mobile {
  font-size: 0.82rem; color: var(--scandi-grey);
}

/* Drawer overlay */
.filter-drawer-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.filter-drawer-overlay.open { opacity: 1; pointer-events: all; }

@media (max-width: 992px) {
  .filter-drawer-overlay { display: block; }
}

/* Drawer panel */
.filter-drawer {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: min(320px, 88vw);
  background: var(--soft-white);
  z-index: 1201;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow-y: auto;
  padding: 0;
}
.filter-drawer.open { transform: translateX(0); }

.filter-drawer-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  background: var(--charcoal);
  position: sticky; top: 0; z-index: 1;
}
.filter-drawer-header h3 {
  font-family: var(--font-heading);
  color: #fff; font-size: 1.05rem; margin: 0;
}
.filter-drawer-close {
  background: none; border: none; color: rgba(255,255,255,0.7);
  font-size: 1.2rem; cursor: pointer; padding: 4px;
  transition: color 0.2s;
}
.filter-drawer-close:hover { color: #fff; }

.filter-drawer-body { padding: 16px; }

.filter-drawer-footer {
  padding: 14px 16px;
  border-top: 1px solid var(--light-border);
  display: flex; gap: 10px;
  position: sticky; bottom: 0;
  background: var(--soft-white);
}
.filter-apply-btn {
  flex: 1; background: var(--accent-gold); color: var(--charcoal);
  border: none; border-radius: var(--radius); padding: 12px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.88rem;
  cursor: pointer; transition: background 0.2s;
}
.filter-apply-btn:hover { background: #d4b57a; }
.filter-clear-btn {
  background: var(--oak-beige); color: var(--charcoal);
  border: none; border-radius: var(--radius); padding: 12px 18px;
  font-family: var(--font-body); font-size: 0.85rem;
  cursor: pointer; transition: background 0.2s;
}

.filter-card {
  background: var(--cream);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.25rem;
}

.filter-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--light-border);
}

.filter-search-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--soft-white);
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  padding: 0.65rem 1rem;
  margin-bottom: 1rem;
}
.filter-search-box input {
  background: none;
  border: none;
  outline: none;
  font-size: 0.85rem;
  color: var(--charcoal);
  width: 100%;
  font-family: var(--font-body);
}
.filter-search-box i { color: var(--scandi-grey); }

.filter-option {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 0;
  cursor: pointer;
  font-size: 0.82rem;
  color: var(--charcoal);
  transition: var(--transition);
}
.filter-option:hover { color: var(--wood-brown); }

.filter-option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border: 2px solid var(--light-border);
  border-radius: 3px;
  accent-color: var(--accent-gold);
  cursor: pointer;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--oak-beige);
  color: var(--charcoal);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.filter-chip.active, .filter-chip:hover { background: var(--accent-gold); color: #fff; border-color: var(--accent-gold); }

.products-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--light-border);
}

.products-count { font-size: 0.82rem; color: var(--scandi-grey); }
.products-count strong { color: var(--charcoal); }

.sort-select {
  background: var(--cream);
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-family: var(--font-body);
  color: var(--charcoal);
  outline: none;
  cursor: pointer;
}

/* ============================================
   GALLERY
   ============================================ */
.masonry-grid {
  columns: 4;
  column-gap: 1.25rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
}
.masonry-item:hover img { transform: scale(1.05); }

.masonry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(46,46,46,0.8) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}
.masonry-item:hover .masonry-overlay { opacity: 1; }

.masonry-info .category-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  display: block;
  margin-bottom: 0.2rem;
}
.masonry-info .title-label { font-family: var(--font-heading); font-size: 0.9rem; color: #fff; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 5rem 0;
}

.about-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 280px 180px;
  gap: 1rem;
}
.about-img-main { grid-row: span 2; border-radius: var(--radius-lg); overflow: hidden; }
.about-img-main img, .about-img-sm img { width: 100%; height: 100%; object-fit: cover; }
.about-img-sm { border-radius: var(--radius); overflow: hidden; }

.about-sm-stat {
  background: var(--accent-gold);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 1rem;
}
.about-sm-stat .num { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; line-height: 1; }
.about-sm-stat .label { font-size: 0.72rem; opacity: 0.85; margin-top: 0.25rem; letter-spacing: 0.1em; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

.value-card {
  background: var(--cream);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}
.value-card:hover { border-color: var(--accent-gold); box-shadow: 0 10px 30px var(--shadow-warm); transform: translateY(-4px); }
.value-icon { width: 56px; height: 56px; background: var(--oak-beige); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; font-size: 1.3rem; color: var(--wood-brown); transition: var(--transition); }
.value-card:hover .value-icon { background: var(--accent-gold); color: #fff; }
.value-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.value-text { font-size: 0.82rem; color: var(--scandi-grey); line-height: 1.7; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }

.contact-info-card {
  background: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: rgba(255,255,255,0.8);
}

.contact-info-card .section-title { color: #fff; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(198,167,105,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-detail-label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 0.35rem; }
.contact-detail-value { font-size: 0.9rem; color: rgba(255,255,255,0.85); }

.contact-form-card {
  background: var(--cream);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  padding: 3rem;
}

.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.form-control {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: var(--soft-white);
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--charcoal);
  outline: none;
  transition: var(--transition);
}
.form-control:focus { border-color: var(--accent-gold); box-shadow: 0 0 0 3px rgba(198,167,105,0.12); }
textarea.form-control { resize: vertical; min-height: 140px; }

.form-select {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: var(--soft-white);
  border: 1px solid var(--light-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--charcoal);
  outline: none;
  transition: var(--transition);
  cursor: pointer;
  appearance: none;
}
.form-select:focus { border-color: var(--accent-gold); }

/* ============================================
   SEARCH BAR
   ============================================ */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(248,246,242,0.97);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.search-overlay.open { opacity: 1; visibility: visible; }

.search-box {
  width: min(700px, 90vw);
  position: relative;
}
.search-box input {
  width: 100%;
  padding: 1.5rem 4rem 1.5rem 1.5rem;
  background: var(--cream);
  border: 2px solid var(--accent-gold);
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--charcoal);
  outline: none;
}
.search-close-btn {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.25rem;
  color: var(--scandi-grey);
  cursor: pointer;
}

/* ============================================
   INSTAGRAM / GALLERY STRIP
   ============================================ */
#insta-strip { background: var(--charcoal); padding: 4rem 0; }
#insta-strip .section-title { color: #fff; }

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
  margin-top: 2rem;
}

.insta-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  border-radius: 4px;
  cursor: pointer;
}
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.insta-item:hover img { transform: scale(1.1); }
.insta-hover {
  position: absolute;
  inset: 0;
  background: rgba(198,167,105,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: #fff;
  font-size: 1.5rem;
}
.insta-item:hover .insta-hover { opacity: 1; }

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb-nav {
  background: var(--cream);
  border-bottom: 1px solid var(--light-border);
  padding: 0.75rem 0;
  font-size: 0.78rem;
  color: var(--scandi-grey);
}
.breadcrumb-nav a { color: var(--charcoal); }
.breadcrumb-nav a:hover { color: var(--accent-gold); }
.breadcrumb-nav span { margin: 0 0.5rem; color: var(--light-border); }

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product-detail-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 4rem; padding: 3rem 0; align-items: start; }

.product-gallery-col { position: sticky; top: 1rem; }

.product-main-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  background: var(--oak-beige);
  cursor: zoom-in;
}
.product-main-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-main-img:hover img { transform: scale(1.05); }

.product-thumbs { display: flex; gap: 0.75rem; }
.product-thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-thumb.active, .product-thumb:hover { border-color: var(--accent-gold); }

.product-info-col .product-cat-label { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-gold); margin-bottom: 0.5rem; }
.product-info-col .product-title { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.5rem; line-height: 1.2; }
.product-info-col .product-sku { font-size: 0.72rem; color: var(--scandi-grey); margin-bottom: 1.25rem; }

.product-rating { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.stars { color: var(--accent-gold); }
.rating-count { font-size: 0.8rem; color: var(--scandi-grey); }

.product-price-wrap {
  background: var(--oak-beige);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}
.product-price-wrap .main-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--charcoal);
}
.product-price-wrap .price-note { font-size: 0.75rem; color: var(--scandi-grey); margin-top: 0.25rem; }

.product-highlights { margin-bottom: 2rem; }
.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--light-border);
  font-size: 0.85rem;
}
.highlight-item i { color: var(--accent-gold); width: 20px; text-align: center; }

.product-enquiry-box {
  background: var(--cream);
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.enquiry-title { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--charcoal); margin-bottom: 1rem; }

.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr:nth-child(even) td { background: var(--cream); }
.specs-table td { padding: 0.75rem 1rem; font-size: 0.82rem; border-bottom: 1px solid var(--light-border); }
.specs-table td:first-child { color: var(--scandi-grey); font-weight: 500; width: 40%; }
.specs-table td:last-child { color: var(--charcoal); font-weight: 500; }

/* ============================================
   LAZY LOAD IMAGES
   ============================================ */
img[data-src] { opacity: 0; transition: opacity 0.4s ease; }
img[data-src].loaded { opacity: 1; }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-gold { color: var(--accent-gold) !important; }
.text-muted-wood { color: var(--scandi-grey) !important; }
.bg-soft { background: var(--soft-white) !important; }
.bg-cream { background: var(--cream) !important; }
.bg-dark-wood { background: var(--charcoal) !important; }
.mt-section { margin-top: 6rem; }
.d-none { display: none; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .insta-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 992px) {
  section:not(#hero) { padding: 4rem 0; }
  .nav-menu, .mega-menu { display: none !important; }
  .nav-bottom-bar { display: none; }
  .hamburger { display: flex !important; }
  .nav-phone { display: none; }
  /* Hide full search bar on mobile — use icon instead */
  .nav-search-wrap { display: none !important; }
  /* Show mobile search icon */
  .nav-search-icon-mobile { display: flex !important; }
  /* Hide WhatsApp button in top nav on mobile */
  .nav-top-right .btn-wa { display: none !important; }
  /* Tighten nav layout on mobile */
  .nav-top-bar { padding: 0 1rem; height: 64px; }
  .nav-top-inner { gap: 0.75rem; }
  .nav-top-right { gap: 0.5rem; }
  .nav-brand .brand-name { font-size: 1.15rem; }
  .nav-brand .brand-tag { display: none; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .projects-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .project-card.large { grid-row: span 1; }
  .process-timeline { grid-template-columns: repeat(3, 1fr); }
  .process-timeline::before { display: none; }
  .products-layout { grid-template-columns: 1fr; }
  .filter-sidebar { display: none; }
  .filter-mobile-bar { display: flex; }
  .contact-layout { grid-template-columns: 1fr; }
  .about-hero-split { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .masonry-grid { columns: 3; }
  .modal-body { grid-template-columns: 1fr; }
  .modal-img-col { border-radius: var(--radius-lg) var(--radius-lg) 0 0; aspect-ratio: 16/9; }
  .product-detail-layout { grid-template-columns: 1fr; }
  .product-gallery-col { position: static; }
}

@media (max-width: 768px) {
  :root { --navbar-h: 64px; }
  .hero-title { font-size: 2.2rem; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .masonry-grid { columns: 2; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-stats { gap: 1.25rem; }
  .values-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .categories-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; }
  .masonry-grid { columns: 1; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-img-main { height: 380px; }
}
