/* ── CSS VARIABLES ── */
:root {
  --wood: #8B5E3C;
  --wood-dark: #6B4428;
  --beige: #F5F0E8;
  --beige-mid: #E6DDD0;
  --white: #FFFFFF;
  --olive: #8B5E3C;
  --text: #181818;
  --muted: #8B5E3C;
  --border: #D8D0C4;

  /* New black-accent system */
  --black: #0A0A0A;
  --black-rich: #111111;
  --black-soft: #1A1A1A;
  --black-mid: #242424;
  --black-muted: #2E2E2E;
  --black-border: #333333;
  --charcoal: #3A3A3A;
  --offwhite-dark: #F0EBE3;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --fw-base: 500; /* increased from normal 400 by ~25% */
  --fw-strong: 700; /* headings / emphasis */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --space-xs: 8px; --space-sm: 16px; --space-md: 32px;
  --space-lg: 64px; --space-xl: 96px; --space-2xl: 140px;
  --max-w: 1200px; --radius: 3px;

  /* Topstrip height variable for offset calculations */
  --topstrip-h: 32px;
  --nav-h: 72px;
  --total-header: calc(var(--topstrip-h) + var(--nav-h));
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--text);
  font-weight: var(--fw-base);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  opacity: 0;
  animation: fadeIn 0.8s var(--ease) forwards;
}

@keyframes fadeIn { to { opacity: 1; } }

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--sans); cursor: pointer; border: none; background: none; }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }

.label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wood);
  margin-bottom: var(--space-sm);
  display: inline-block;
}

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.text-center { text-align: center; }

/* ═══════════════════════════════════════
   TOP CONTACT STRIP
═══════════════════════════════════════ */
.top-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--topstrip-h);
  background: var(--black);
  border-bottom: 1px solid var(--black-border);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.top-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 16px;
}
.top-strip-left {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(245,240,232,0.55);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.top-strip-left i {
  color: var(--wood);
  font-size: 0.65rem;
}
.top-strip-center {
  display: flex;
  align-items: center;
  gap: 24px;
  flex: 1;
  justify-content: center;
}
.top-strip-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(245,240,232,0.9);
  letter-spacing: 0.04em;
  transition: color 0.2s;
  white-space: nowrap;
}
.top-strip-phone i {
  color: var(--wood);
  font-size: 0.68rem;
}
.top-strip-phone:hover { color: var(--beige); }
.top-strip-divider {
  width: 1px;
  height: 14px;
  background: var(--black-border);
}
.top-strip-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.top-strip-social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.top-strip-social a {
  color: rgba(245,240,232,0.45);
  font-size: 0.75rem;
  transition: color 0.2s;
}
.top-strip-social a:hover { color: var(--beige); }
.top-strip-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wood);
  background: rgba(139,94,60,0.12);
  border: 1px solid rgba(139,94,60,0.25);
  padding: 3px 10px;
  border-radius: 2px;
  white-space: nowrap;
}

/* ═══════════════════════════════════════
   NAVBAR — improved separation + black accents
═══════════════════════════════════════ */
nav {
  position: fixed;
  top: var(--topstrip-h);
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0 var(--space-lg);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 4px 24px rgba(0,0,0,0.07);
  transition: border-color 0.3s, box-shadow 0.3s, height 0.3s, background 0.3s;
}
nav.scrolled {
  height: 62px;
  border-color: rgba(0,0,0,0.12);
  box-shadow: 0 2px 32px rgba(0,0,0,0.12), 0 1px 0 rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.99);
}

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-icon { color: var(--wood); font-size: 1.15rem; line-height: 1; }
.nav-logo-wordmark { display: flex; align-items: center; gap: 5px; }
.nav-logo-mark {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1;
}
.nav-logo-mark em { font-style: normal; color: var(--wood); }
.nav-logo-mark img {
  height: 48px;
  width: auto;
  display: block;
  margin: 0;
  object-fit: contain;
  border-radius: 8px;
}
.nav-logo-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--wood); margin-bottom: 2px; }
.nav-logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.nav-logo-sub {
  display: block;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1;
  margin-top: 0;
}
.nav-logo-tagline {
  display: block;
  font-size: 0.48rem;
  color: var(--wood-dark);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-top: 5px;
}

.nav-links { display: flex; align-items: center; gap: 38px; list-style: none; }
.nav-links a {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.04em;
  position: relative;
  transition: color 0.25s;
}
.nav-links a.active { color: var(--black); font-weight: 600; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--black);
  transition: width 0.3s var(--ease);
  border-radius: 1px;
}
.nav-links a:hover { color: var(--black); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-phone {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--black);
  border: 1.5px solid var(--black);
  border-radius: 2px;
  letter-spacing: 0.02em;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}
.nav-phone i { color: var(--wood); font-size: 0.75rem; }
.nav-phone:hover {
  background: var(--black-soft);
  border-color: var(--wood);
  transform: translateY(-1px);
}
.nav-ham {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  z-index: 950;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 4px;
  background: #fff;
  transition: background 0.2s;
}

.nav-ham:hover {
  background: var(--beige);
}

/* Stronger hamburger lines */
.nav-ham span {
  display: block;
  width: 26px;
  height: 3px;              /* increased thickness */
  background: #111;         /* darker color */
  border-radius: 3px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Animation */
.nav-ham.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-ham.open span:nth-child(2) {
  opacity: 0;
}

.nav-ham.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}
/* ─ Mobile nav – slides in from right ─ */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 850;
  padding: calc(var(--topstrip-h) + var(--nav-h) + 24px) var(--space-lg) var(--space-lg);
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.38s var(--ease);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-size: 1.6rem;
  font-family: var(--serif);
  font-weight: 500;
  color: rgba(245,240,232,0.85);
  border-bottom: 1px solid rgba(240,235,227,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav a:hover {
  color: var(--beige);
  padding-left: 8px;
}
.mobile-nav a:last-child { border-bottom: none; }
/* WhatsApp mobile CTA at bottom */
.mobile-nav::after {
  content: 'Call: +91 9579591874';
  display: block;
  margin-top: auto;
  padding-top: 32px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(245,240,232,0.3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ─ Page body offset for top-strip + nav ─ */
body > nav { top: var(--topstrip-h); }

/* ─ Scroll offset for anchor links ─ */
[id] { scroll-margin-top: calc(var(--topstrip-h) + var(--nav-h) + 16px); }

/* ═══════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  padding-top: var(--total-header);
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px var(--space-lg) 40px;
  background: var(--beige);
  background-image: url('assets/images/chair1 (1).PNG');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  z-index: 2;
  padding-left: max(var(--space-lg), calc((100vw - var(--max-w)) / 2 + var(--space-lg)));
}
.hero-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(245, 240, 232, 0.99);
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 768px) {
  .hero-left::before {
    background: rgba(245, 240, 232, 0.00);
  }
}
@media (max-width: 480px) {
  .hero-left::before {
    background: rgba(245, 240, 232, 0.48);
  }
}
.hero-left > * { position: relative; z-index: 1; }
.hero-right { position: relative; overflow: hidden; }
.hero-right img { position: absolute; inset: 0; transition: transform 12s var(--ease); transform: scale(1.04); }
.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--beige) 0%, transparent 15%);
  z-index: 1;
  pointer-events: none;
}
.hero-right:hover img { transform: scale(1.0); }
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4.8vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: var(--space-md);
}
.hero-h1 em { font-style: italic; color: var(--wood); }
.hero-sub {
  font-size: 1.02rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 490px;
  margin-bottom: var(--space-md);
}
.hero-actions { display: flex; align-items: center; gap: var(--space-md); margin-bottom: var(--space-lg); flex-wrap: wrap; }

/* ─ Buttons ─ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 34px;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}
.btn-primary:hover {
  background: var(--black-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
.btn-ghost {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.25s, border-color 0.25s;
  border-bottom: 1.5px solid rgba(0,0,0,0.2);
  padding-bottom: 2px;
}
.btn-ghost:hover { color: var(--black); border-bottom-color: var(--black); }
.btn-ghost i { font-size: 0.72rem; transition: transform 0.25s; }
.btn-ghost:hover i { transform: translateX(4px); }

.hero-highlights {
  font-size: 0.77rem;
  color: var(--muted);
  margin-bottom: var(--space-lg);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.7;
}
.hero-trust {
  display: flex;
  gap: var(--space-md);
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: var(--space-md);
  padding-bottom: 16px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  font-size: 0.78rem;
  color: var(--black);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.hero-trust-item i { color: var(--wood); font-size: 1rem; }
.hero-trust-item span { font-size: 0.68rem; color: var(--muted); font-weight: 400; }

/* ═══════════════════════════════════════
   TRUST STRIP
═══════════════════════════════════════ */
.trust-strip {
  background: var(--black);
  padding: 20px 0;
  border-top: 2px solid var(--wood-dark);
  border-bottom: 1px solid var(--black-border);
  position: relative;
  z-index: 10;
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: var(--space-md);
}
.trust-inner span {
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.85);
}
.trust-dot { color: var(--wood); font-size: 0.3rem; opacity: 0.7; }

/* ═══════════════════════════════════════
   SECTIONS
═══════════════════════════════════════ */
section { padding: var(--space-2xl) 0; }
.bg-white { background: var(--white); }
.bg-beige { background: var(--beige); }
.bg-dark {
  background: var(--black);
  color: var(--beige);
  position: relative;
}
.bg-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(139,94,60,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.bg-dark .label { color: rgba(245,240,232,0.5); }
.bg-dark h2 { color: var(--white); }
.bg-dark p { color: rgba(230,221,208,0.85); }

h2 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 3.6vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}
h1, h2, h3, h4 { font-weight: var(--fw-strong); }
h2 { font-weight: clamp(500, 3vw, 700); }
h2 em { font-style: italic; color: var(--wood); }
.bg-dark h2 em { color: var(--beige); }
.section-desc {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: var(--space-xl);
}
.bg-dark .section-desc { color: rgba(245,240,232,0.75); }

/* ═══════════════════════════════════════
   GRID LAYOUTS
═══════════════════════════════════════ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-sm); }

/* ═══════════════════════════════════════
   PRODUCT CARDS
═══════════════════════════════════════ */
.pcard {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.35s, transform 0.25s;
  border: 1px solid var(--border);
}
.pcard:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.14);
  transform: translateY(-4px);
  border-color: rgba(0,0,0,0.12);
}
.pcard-img { height: 280px; overflow: hidden; position: relative; }
.pcard-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.pcard:hover .pcard-img img { transform: scale(1.06); }
.pcard-body { padding: 24px; border-top: 2px solid transparent; transition: border-color 0.3s; }
.pcard:hover .pcard-body { border-top-color: var(--black); }
.pcard-cat { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--wood); margin-bottom: 8px; font-weight: 600; }
.pcard-name { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; margin-bottom: 10px; color: var(--text); }
.pcard-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.pcard-arrow {
  width: 34px; height: 34px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
  color: var(--muted);
  transition: all 0.25s;
}
.pcard:hover .pcard-arrow { background: var(--black); border-color: var(--black); color: var(--white); }
.pcard-foot { display: flex; justify-content: flex-end; }

/* ═══════════════════════════════════════
   ABOUT PREVIEW
═══════════════════════════════════════ */
.about-images { display: grid; grid-template-columns: 1.2fr 1fr; gap: 12px; position: relative; }
.about-img-main { grid-row: 1 / 3; height: 500px; border-radius: var(--radius); overflow: hidden; }
.about-img-sm { aspect-ratio: 23 / 40; height: auto; border-radius: var(--radius); overflow: hidden; }
.about-img-main img, .about-img-sm img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.about-img-main:hover img, .about-img-sm:hover img { transform: scale(1.04); }
.about-stat {
  background: var(--black);
  color: var(--white);
  padding: var(--space-md);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 3px solid var(--wood);
}
.about-stat-num { font-family: var(--serif); font-size: 2.5rem; line-height: 1; margin-bottom: 8px; color: var(--wood); }

/* ═══════════════════════════════════════
   WOOD TYPES CARDS
═══════════════════════════════════════ */
.wood-card {
  background: var(--white);
  padding: var(--space-md);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: box-shadow 0.3s, transform 0.25s, border-color 0.25s, background 0.3s;
}
.wood-card:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
  border-color: var(--black);
  background: var(--offwhite-dark);
}
.wood-icon {
  width: 100%;
  height: 180px;
  border-radius: 0;
  background: var(--beige);
  margin: 0 0 var(--space-md) 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wood);
  font-size: 1.6rem;
  overflow: hidden;
  border: none;
  transition: transform 0.3s, opacity 0.3s;
}
.wood-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--ease);
}
.wood-card:hover .wood-icon img {
  transform: scale(1.08);
}
.wood-name { font-family: var(--serif); font-size: 1.3rem; font-weight: 500; margin-bottom: 10px; color: var(--text); }
.wood-desc { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* Dark background variant for wood cards */
.bg-dark .wood-card { border-color: var(--black-border); background: var(--offwhite-dark); }
.bg-dark .wood-card:hover { background: var(--beige); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.bg-dark .wood-name { color: var(--text); }
.bg-dark .wood-desc { color: rgba(24,24,24,0.75); }
.bg-dark .wood-icon { background: var(--white); color: var(--wood); border: none; }

/* ═══════════════════════════════════════
   PROCESS STEPS
═══════════════════════════════════════ */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-md); }
.process-step {
  position: relative;
  padding: var(--space-md);
  background: var(--beige);
  border-radius: var(--radius);
  border-top: 3px solid var(--black);
  transition: box-shadow 0.3s, transform 0.25s;
}
.process-step:hover { box-shadow: 0 12px 36px rgba(0,0,0,0.09); transform: translateY(-3px); }
.process-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  color: var(--black);
  opacity: 0.07;
  position: absolute;
  top: 12px;
  right: 20px;
  line-height: 1;
}
.process-icon { color: var(--black); font-size: 1.3rem; margin-bottom: 14px; }
.process-title { font-weight: 700; font-size: 1.05rem; margin-bottom: 12px; margin-top: 8px; color: var(--text); }
.process-desc { font-size: 0.95rem; color: var(--muted); line-height: 1.65; }

/* ═══════════════════════════════════════
   CUSTOMIZATION LIST
═══════════════════════════════════════ */
.check-list { list-style: none; margin-bottom: var(--space-lg); }
.check-list li {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 14px;
  font-size: 1.02rem;
  color: var(--text);
  font-weight: 500;
}
.check-list li i {
  color: var(--white);
  font-size: 0.75rem;
  background: var(--black);
  border: 1px solid var(--black);
  border-radius: 50%;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cust-img { height: 620px; border-radius: var(--radius); overflow: hidden; }
.cust-img img { width: 100%; height: 100%; object-fit: cover; }

/* ═══════════════════════════════════════
   TRUST FEATURES
═══════════════════════════════════════ */
.trust-feat { text-align: center; padding: var(--space-md); }
.trust-feat-icon { font-size: 2rem; color: var(--beige); margin-bottom: 16px; display: block; }
.trust-feat-title { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; color: var(--white); margin-bottom: 8px; line-height: 1.3; }
.trust-feat-sub { font-size: 0.88rem; color: rgba(230,221,208,0.7); line-height: 1.5; }

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testi-card {
  background: var(--white);
  padding: var(--space-lg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex; flex-direction: column; height: 100%;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s, transform 0.25s, border-color 0.3s;
  border-top: 3px solid var(--black);
}
.testi-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  transform: translateY(-3px);
  border-top-color: var(--wood);
}
.testi-quote {
  font-family: var(--serif); font-size: 1.2rem; line-height: 1.65;
  color: var(--text); margin-bottom: var(--space-md); flex-grow: 1;
  font-style: italic;
}
.testi-quote::before {
  content: '\201C';
  color: var(--black);
  font-size: 2rem;
  line-height: 0;
  vertical-align: -0.45em;
  margin-right: 4px;
  opacity: 0.25;
}
.testi-author { font-size: 0.88rem; font-weight: 700; color: var(--black); text-transform: uppercase; letter-spacing: 0.08em; }

/* ═══════════════════════════════════════
   IMAGE ASPECT RATIOS
═══════════════════════════════════════ */
.portrait-9-16 { aspect-ratio: 9 / 16; }
.portrait-3-4 { aspect-ratio: 3 / 4; }
.portrait-4-5 { aspect-ratio: 4 / 5; }
.landscape-16-9 { aspect-ratio: 16 / 9; }
.landscape-3-2 { aspect-ratio: 3 / 2; }
.square-1-1 { aspect-ratio: 1 / 1; }

/* ═══════════════════════════════════════
   GALLERY GRID
═══════════════════════════════════════ */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-md); }
.gallery-item { aspect-ratio: 3 / 4; height: auto; border-radius: var(--radius); overflow: hidden; cursor: pointer; position: relative; }
.gallery-item[data-category="sofa"] { grid-column: 1 / -1; aspect-ratio: 16 / 7; }
@media (max-width: 768px) { .gallery-item[data-category="sofa"] { aspect-ratio: 16 / 9; } }
.gallery-item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.55) 100%);
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-item:hover::after { opacity: 1; }
/* Overlay hover indicator */
.gallery-item::before {
  content: '\f002';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  color: #fff;
  font-size: 1.1rem;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s, transform 0.4s;
}
.gallery-item:hover::before { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ═══════════════════════════════════════
   FILTER TABS
═══════════════════════════════════════ */
.filter-tabs { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: var(--space-xl); }
.filter-btn {
  padding: 9px 22px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--charcoal);
  border: 1.5px solid var(--border);
  border-radius: 40px;
  transition: all 0.3s;
  letter-spacing: 0.04em;
}
.filter-btn:hover { border-color: var(--black); color: var(--black); }
.filter-btn.active { background: var(--black); color: var(--white); border-color: var(--black); }

/* ═══════════════════════════════════════
   LIGHTBOX
═══════════════════════════════════════ */
.lightbox { position: fixed; inset: 0; background: rgba(5,5,5,0.97); z-index: 1000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.lightbox.active { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 90vw; max-height: 90vh; width: auto; height: auto; object-fit: contain; border-radius: 2px; }
.lb-close, .lb-prev, .lb-next { position: absolute; color: var(--beige); font-size: 1.5rem; cursor: pointer; background: rgba(240,235,227,0.07); border: 1px solid rgba(240,235,227,0.12); padding: 14px; border-radius: 50%; transition: background 0.3s, color 0.3s; }
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--beige); border-color: var(--beige); }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

/* ═══════════════════════════════════════
   PAGE HEROES
═══════════════════════════════════════ */
.page-hero {
  background: var(--black);
  padding: calc(var(--total-header) + var(--space-xl)) 0 var(--space-lg);
  text-align: center;
  border-bottom: 1px solid var(--black-border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(139,94,60,0.12) 0%, transparent 65%);
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 4.8vw, 5rem);
  font-weight: 400;
  margin-bottom: var(--space-sm);
  color: var(--white);
  letter-spacing: -0.02em;
  position: relative;
}
.page-hero h1 em { font-style: italic; color: var(--beige); }
.page-hero p {
  font-size: 1.05rem;
  color: rgba(230,221,208,0.75);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
  position: relative;
}

/* ═══════════════════════════════════════
   ABOUT PAGE
═══════════════════════════════════════ */
.founder-card { text-align: center; }
.founder-img {
  height: 420px;
  background: var(--beige-mid);
  margin-bottom: var(--space-md);
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid transparent;
  transition: border-color 0.3s;
}
.founder-card:hover .founder-img { border-color: var(--black); }
.founder-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.6s var(--ease); }
.founder-card:hover .founder-img img { transform: scale(1.04); }
.founder-name { font-family: var(--serif); font-size: 1.6rem; margin-bottom: 6px; color: var(--text); }
.founder-role { font-size: 0.82rem; color: var(--wood); text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600; }

/* ═══════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════ */
.contact-info { margin-bottom: var(--space-xl); }
.c-row { display: flex; gap: 18px; margin-bottom: 26px; }
.c-icon {
  width: 50px; height: 50px;
  border: 1.5px solid var(--black-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  flex-shrink: 0;
  background: var(--black);
}
.c-text h4 { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 5px; font-weight: 600; }
.c-text p {
  font-size: 1.05rem;
  color: var(--text);
  font-weight: 500;
}

/* Contact Form */
.contact-form {
  background: var(--white);
  padding: var(--space-lg);
  border: 1px solid var(--border);
  border-top: 3px solid var(--black);
  border-radius: var(--radius);
  box-shadow: 0 16px 56px rgba(0,0,0,0.07);
}
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 700; margin-bottom: 8px; color: var(--text); letter-spacing: 0.02em; }
.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 1rem;
  background: var(--beige);
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  color: var(--text);
}
.form-control:focus {
  outline: none;
  border-color: var(--black);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}
.form-control::placeholder { color: #999; }
textarea.form-control { resize: vertical; min-height: 130px; }

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-head {
  width: 100%;
  text-align: left;
  padding: 26px 0;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-head:hover { color: var(--black); }
.faq-icon { font-size: 1rem; color: var(--black); transition: transform 0.3s; flex-shrink: 0; }
.faq-body { height: 0; overflow: hidden; transition: height 0.35s var(--ease); }
.faq-content { padding-bottom: 26px; font-size: 1rem; line-height: 1.7; color: var(--muted); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-item.open .faq-head { color: var(--black); }

/* ═══════════════════════════════════════
   FOOTER — premium dark
═══════════════════════════════════════ */
footer {
  background: var(--black);
  color: var(--white);
  padding: var(--space-xl) 0 var(--space-md);
  border-top: 3px solid var(--wood-dark);
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}
.foot-brand h3 {
  font-family: var(--serif);
  font-size: 1.9rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.foot-brand h3 img { height: 56px; width: auto; object-fit: contain; display: block; margin: 0; filter: brightness(1.1); border-radius: 8px; }
.foot-brand h3 em { color: var(--wood); font-style: normal; }
.foot-brand p { font-size: 0.92rem; color: rgba(245,240,232,0.45); line-height: 1.7; max-width: 300px; margin-bottom: 26px; }
.foot-socials { display: flex; gap: 12px; }
.foot-socials a {
  width: 38px; height: 38px;
  border: 1px solid var(--black-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(245,240,232,0.4);
  transition: all 0.3s;
}
.foot-socials a:hover { background: var(--beige); border-color: var(--beige); color: var(--black); }
.foot-col h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(245,240,232,0.9);
  margin-bottom: 22px;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
}
.foot-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--wood);
}
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 14px; }
.foot-col a { font-size: 0.92rem; color: rgba(245,240,232,0.4); transition: color 0.25s; }
.foot-col a:hover { color: rgba(245,240,232,0.9); }
.foot-bottom {
  border-top: 1px solid var(--black-border);
  padding-top: var(--space-md);
  text-align: center;
  font-size: 0.82rem;
  color: rgba(245,240,232,0.25);
}

/* ═══════════════════════════════════════
   FLOATING ACTION BUTTONS
═══════════════════════════════════════ */
.float-actions {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 880;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.float-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.32);
  transition: transform 0.22s var(--ease), box-shadow 0.22s;
  border: none; text-decoration: none;
}
.float-btn:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(0,0,0,0.42); }
/* WhatsApp Official Green */
.float-wa {
  background: #25D366;
}

/* Phone Call Natural Blue */
/* Phone Call Natural Blue */
.float-call {
  background: #007BFF;
  border: 2px solid rgba(255,255,255,0.2);
}
/* Catalog Floating Button */
.float-catalog {
  background: var(--wood);
}

.nav-links .btn-catalog {
  background: var(--wood);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s, transform 0.2s;
}
.nav-links .btn-catalog:hover {
  background: var(--wood-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.nav-links .btn-catalog::after {
  display: none;
}



.float-label {
  position: absolute;
  right: 62px;
  white-space: nowrap;
  background: var(--black);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 5px 10px;
  border-radius: 3px;
  pointer-events: none;
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.2s, transform 0.2s;
}
.float-btn:hover .float-label { opacity: 1; transform: translateX(0); }

/* ═══════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .grid-4, .grid-5, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .wrap { padding: 0 40px; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
═══════════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --topstrip-h: 28px;
    --nav-h: 60px;
    --space-2xl: 80px;
    --space-xl: 64px;
    --space-lg: 40px;
    --space-md: 24px;
  }

  /* Top strip mobile — single phone, compact */
  .top-strip-inner { padding: 0 20px; }
  .top-strip-left { display: none; }
  .top-strip-right { display: none; }
  .top-strip-center { gap: 0; justify-content: center; }
  .top-strip-divider { display: none; }
  .top-strip-phone:first-child { display: flex; }
  .top-strip-phone + .top-strip-divider,
  .top-strip-phone + .top-strip-divider + .top-strip-phone { display: none; }
  .top-strip-badge { display: none; }

  /* Nav mobile 
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-logo { gap: 5px; }
  .nav-logo-mark img { height: 36px; }
  .nav-logo-sub { 
    display: block; 
    position: absolute;
    left: 50vw;
    transform: translateX(-50%);
  }
  .nav-phone {
    display: flex;
    font-size: 0.68rem;
    padding: 7px 14px;
    margin-left: auto;
    margin-right: 12px;
    background: var(--black);
    color: var(--white);
    border-radius: 2px;
  }
  .nav-ham { display: flex; }
  .mobile-nav { display: flex; }
*/
/* Nav mobile */
nav { padding: 0 20px; }

.nav-links { display: none; }

.nav-logo {
  gap: 8px;
  display: flex;
  align-items: center;
}

/* Increase logo size */
.nav-logo-mark img {
  height: 48px;   /* change from 36px */
  width: auto;
}

.nav-logo-text { 
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  left: 50vw;
  top: 50%;
  transform: translate(-50%, -50%);
}

.nav-phone {
  display: flex;
  font-size: 0.68rem;
  padding: 7px 14px;
  margin-left: auto;
  margin-right: 12px;
  background: var(--black);
  color: var(--white);
  border-radius: 2px;
}

.nav-ham { display: flex; }

.mobile-nav { display: flex; }
  /* Hero mobile — full-screen premium layout */
  .hero {
    grid-template-columns: 1fr;
    min-height: 98vh;
    height: 98vh;
    padding-top: var(--total-header);
    position: relative;
  }
  
  /* Show furniture image as primary focal point */
  .hero-right {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/hero.webp');
    background-size: cover;
    background-position: center;
  }
  .hero-right img {
    display: none;
  }
  
  /* Subtle overlay for image quality preservation */
  .hero-right::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.25) 50%, rgba(0,0,0,0.55) 100%);
    z-index: 2;
    pointer-events: none;
  }
  
  /* Content positioned at bottom as overlay */
  .hero-left {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 44px 20px 32px;
    background: linear-gradient(180deg, rgba(245,240,232,0) 0%, rgba(245,240,232,0.98) 40%, rgba(245,240,232,0.99) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: auto;
    width: 100%;
  }
  
  /* Remove background image, use overlay gradient */
  .hero-left::before {
    display: none;
  }
  
  .hero-h1 {
    font-size: clamp(2.3rem, 10vw, 3.2rem);
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 600;
    text-align: center;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: #1a1a1a;
  }
  
  .hero-h1 em {
    display: inline;
    margin-top: 0;
    font-style: italic;
    font-weight: 500;
    color: #8B5E3C;
  }
  
  .hero-sub {
    font-size: 0.82rem;
    line-height: 1.6;
    max-width: 100%;
    margin: 0 0 16px 0;
    text-align: left;
    font-weight: 500;
    color: #3a3a3a;
  }
  
  .hero-highlights { display: none; }
  
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 0;
    width: 100%;
  }
  
  .btn-primary {
    justify-content: center;
    padding: 13px 18px;
    font-size: 0.72rem;
    min-height: 46px;
    background: #1a1a1a;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.08em;
    border-radius: 2px;
    width: 100%;
  }
  
  .btn-ghost {
    justify-content: center;
    font-size: 0.72rem;
    padding: 10px 0;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-bottom: 1.5px solid rgba(0,0,0,0.2);
    color: #1a1a1a;
    width: 100%;
  }
  
  .hero-trust {
    display: none;
  }

  /* Trust strip */
  .trust-strip { padding: 16px 0; }
  .trust-inner { gap: 16px; }
  .trust-inner span { font-size: 0.7rem; letter-spacing: 0.08em; }
  .trust-dot:nth-child(4), .trust-dot:nth-child(6) { display: none; }

  /* Section spacing */
  section { padding: var(--space-xl) 0; }
  .wrap { padding: 0 20px; }

  /* Grids to single column */
  .grid-2, .grid-4, .grid-5, .process-grid, .foot-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  /* Keep collections as 2-column grid on mobile */
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .about-images { display: none; }

  /* Product cards compact for mobile 2-col */
  .pcard-img { height: 180px; }
  .pcard-body { padding: 14px 12px; }
  .pcard-cat { font-size: 0.62rem; margin-bottom: 4px; }
  .pcard-name { font-size: 1.05rem; margin-bottom: 0; }
  .pcard-desc { display: none; }
  .pcard-foot { display: none; }

  /* Wood cards mobile */
  .wood-icon { height: 200px; }
  .wood-card { padding: 16px; }
  .wood-name { font-size: 1.15rem; }
  .wood-desc { font-size: 0.85rem; }

  /* Testimonials back to single column on mobile */
  .grid-3:has(.testi-card) {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* Footer */
  footer { padding: 48px 0 24px; }
  .foot-grid { gap: 36px; }
  .foot-col h4 { margin-bottom: 14px; }
  .foot-bottom { font-size: 0.78rem; }

  /* Contact form */
  .contact-form { padding: 24px 20px; }

  /* Page hero */
  .page-hero { padding: calc(var(--total-header) + 40px) 0 var(--space-md); }
  .page-hero h1 { font-size: clamp(2.4rem, 8vw, 3.2rem); }
  .page-hero p { font-size: 0.97rem; }

  /* Float buttons */
  .float-actions { bottom: 20px; right: 16px; gap: 10px; }
  .float-btn { width: 50px; height: 50px; font-size: 1.2rem; }
}

/* ═══════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤480px)
═══════════════════════════════════════ */
@media (max-width: 480px) {
  /* Enhanced overlay for small screens */
  .hero-right::after {
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.35) 45%, rgba(0,0,0,0.65) 100%);
  }
  
  .hero-left {
    background: linear-gradient(180deg, rgba(245,240,232,0) 0%, rgba(245,240,232,0.99) 35%, rgba(245,240,232,1) 100%);
  }
  
  .hero {
    min-height: 96vh;
    height: 96vh;
  }
  
  .hero-right img {
    object-position: center 20%;
  }
  
  /* Hero fine-tuning for extra-small screens */
  .hero-h1 {
    font-size: clamp(2rem, 9vw, 4rem);
    margin-bottom: 10px;
    line-height: 1.3;
    text-align: center;
    font-weight: 400;
  }
  
  .hero-sub {
    font-size: 0.78rem;
    line-height: 1.55;
    margin: 0 0 14px 0;
  }
  
  .hero-left {
    padding: 28px 18px;
  }
  
  .hero-actions {
    gap: 8px;
  }
  
  .btn-primary {
    padding: 12px 16px;
    font-size: 0.68rem;
    min-height: 44px;
  }
  
  .btn-ghost {
    padding: 8px 0;
    font-size: 0.68rem;
  }
  
  /* Keep 2-column grid on small mobile too */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* Compact top strip */
  .top-strip-phone { font-size: 0.68rem; }
  .top-strip-phone i { font-size: 0.6rem; }

  h2 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .pcard-img { height: 160px; }
  .pcard-body { padding: 10px 10px; }
  .pcard-name { font-size: 0.95rem; }

  .filter-tabs { gap: 8px; }
  .filter-btn { padding: 8px 16px; font-size: 0.78rem; }

  /* Wood cards small mobile */
  .wood-icon { height: 160px; }
  .wood-card { padding: 12px; }
  .wood-name { font-size: 1rem; }
  .wood-desc { font-size: 0.8rem; }

  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}

/* ═══════════════════════════════════════
   CIRCLE CATEGORY GRID
═══════════════════════════════════════ */
.circle-category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
  margin-top: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.circle-category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s var(--ease);
}
.circle-category-item:hover {
  transform: translateY(-5px);
}
.circle-img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 8px solid var(--wood-dark);
  position: relative;
}
.circle-img-wrapper img {
  width: 115.5%;
  height: 115.5%;
  max-width: none;
  margin-top: -7.25%;
  margin-left: -7.25%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.circle-category-item:hover .circle-img-wrapper img {
  transform: scale(1.08);
}
.circle-label {
  font-family: var(--sans);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .circle-category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 16px;
  }
}
@media (max-width: 480px) {
  .circle-category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 10px;
  }
  .circle-label {
    font-size: 0.95rem;
  }
}
