/* ============================================
   Penghui China Wood — Premium Design System
   Light theme · European luxury B2B/B2C
   ============================================ */

@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap");

/* ── CSS Variables ───────────────────────── */
:root {
  --c-bg: #fafaf8;
  --c-surface: #ffffff;
  --c-border: #e8e4de;
  --c-border-soft: #f0ece7;
  --c-text: #1a1814;
  --c-text-2: #5a5650;
  --c-text-3: #9a9590;
  --c-wood: #8b6a3e;
  --c-wood-light: #c4a882;
  --c-wood-pale: #f5ede0;
  --c-accent: #2c3e2d;
  --c-accent-2: #4a6741;
  --c-charcoal: #2a2825;
  --c-gold: #c9a84c;
  --c-gold-light: #f0dfa8;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm:
    0 1px 3px rgba(26, 24, 20, 0.06), 0 1px 2px rgba(26, 24, 20, 0.04);
  --shadow-md:
    0 4px 16px rgba(26, 24, 20, 0.08), 0 2px 4px rgba(26, 24, 20, 0.04);
  --shadow-lg:
    0 12px 40px rgba(26, 24, 20, 0.1), 0 4px 12px rgba(26, 24, 20, 0.05);
  --shadow-xl:
    0 24px 64px rgba(26, 24, 20, 0.12), 0 8px 24px rgba(26, 24, 20, 0.06);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-mono: "DM Mono", monospace;

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
input,
textarea,
select {
  font-family: inherit;
}
ul {
  list-style: none;
}

/* ── Typography ──────────────────────────── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.15;
}
.section-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-wood);
}
.body-lg {
  font-size: 1.125rem;
  line-height: 1.7;
  font-weight: 300;
  color: var(--c-text-2);
}
.body-md {
  font-size: 0.975rem;
  line-height: 1.65;
  color: var(--c-text-2);
}
.body-sm {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--c-text-3);
}

/* ── Layout ──────────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
.container--wide {
  max-width: 1440px;
}
.container--narrow {
  max-width: 860px;
}

.section {
  padding: 96px 0;
}
.section--sm {
  padding: 64px 0;
}
.section--lg {
  padding: 128px 0;
}

/* ── Navigation ──────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--c-border-soft);
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(250, 250, 248, 0.98);
  box-shadow: var(--shadow-sm);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo-mark {
  width: 36px;
  height: 36px;
  background: var(--c-charcoal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-wood-light);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--c-charcoal);
}
.nav__logo-sub {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-text-3);
  line-height: 1;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav__link {
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--c-text-2);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}
.nav__link:hover {
  color: var(--c-text);
  background: var(--c-wood-pale);
}
.nav__link--active {
  color: var(--c-text);
  font-weight: 500;
}
.nav__link--active::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  background: var(--c-wood);
  border-radius: 1px;
}
.nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__badge {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--c-wood-pale);
  color: var(--c-wood);
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 500;
}
.nav__menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav__menu-btn:hover {
  background: var(--c-wood-pale);
}
.nav__menu-btn svg {
  width: 20px;
  height: 20px;
}

.nav__dropdown {
  position: relative;
}
.nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
  border-radius: var(--radius-sm);
  padding: 8px 14px;
}
.nav__dropdown-toggle:hover,
.nav__dropdown-toggle.open {
  background: var(--c-wood-pale);
}
.nav__dropdown-toggle .dropdown-chevron {
  display: inline-block;
  transition: transform 0.25s ease;
}
.nav__dropdown-toggle.open .dropdown-chevron {
  transform: rotate(180deg);
}
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  display: none;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(42, 34, 21, 0.08);
  box-shadow: 0 18px 40px rgba(38, 32, 24, 0.14);
  border-radius: 18px;
  overflow: hidden;
  z-index: 10;
}
.nav__dropdown:hover .nav__dropdown-menu {
  display: flex;
}
.nav__dropdown-menu .nav__link {
  padding: 12px 18px;
  color: var(--c-text);
  font-weight: 400;
}
.nav__dropdown-menu .nav__link:hover {
  background: var(--c-wood-pale);
}

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(250, 250, 248, 0.98);
  padding: 96px 24px 24px;
  z-index: 1001;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 28px 60px rgba(14, 21, 28, 0.24);
  backdrop-filter: blur(24px);
  overflow-y: auto;
}
.nav__mobile.open {
  display: flex;
}
.nav__mobile-header {
  position: absolute;
  top: 18px;
  right: 18px;
  display: flex;
  justify-content: flex-end;
  width: calc(100% - 36px);
  border-bottom: none;
  padding-bottom: 0;
}
.nav__mobile-brand {
  display: none;
}
.nav__mobile-close {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: none;
  background: rgba(42, 34, 21, 0.08);
  color: var(--c-text);
  cursor: pointer;
  font-size: 1.1rem;
}
.nav__mobile-dropdown-toggle {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: none;
  background: transparent;
  color: var(--c-text-2);
  cursor: pointer;
  padding: 14px 16px;
  border-radius: 14px;
  transition: var(--transition);
}
.nav__mobile-dropdown-toggle:hover {
  background: rgba(38, 32, 24, 0.04);
  color: var(--c-text);
}
.nav__mobile-dropdown {
  display: none;
  flex-direction: column;
  gap: 6px;
  margin-left: 8px;
  padding-left: 8px;
  border-left: 1px solid rgba(40, 34, 24, 0.12);
}
.nav__mobile-dropdown.open {
  display: flex;
}
.nav__mobile-sublink {
  padding-left: 18px;
  color: var(--c-text-2);
}
.nav__mobile-sublink:hover {
  color: var(--c-text);
  background: rgba(38, 32, 24, 0.04);
}
.nav__mobile .nav__link,
.nav__mobile .nav__mobile-dropdown-toggle {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  color: var(--c-text-2);
}
.nav__mobile .nav__link:hover {
  background: rgba(38, 32, 24, 0.04);
  color: var(--c-text);
}
.nav__mobile-cta {
  padding-top: 8px;
}
.nav__mobile-cta .btn {
  justify-content: center;
}

/* ── Buttons ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--c-charcoal);
  color: white;
  border: 1px solid var(--c-charcoal);
}
.btn--primary:hover {
  background: #3a3835;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--wood {
  background: var(--c-wood);
  color: white;
  border: 1px solid var(--c-wood);
}
.btn--wood:hover {
  background: #7a5c34;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(139, 106, 62, 0.25);
}
.btn--outline {
  background: transparent;
  color: var(--c-text);
  border: 1px solid var(--c-border);
}
.btn--outline:hover {
  border-color: var(--c-text);
  background: var(--c-wood-pale);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--c-text-2);
  border: none;
  padding: 10px 16px;
}
.btn--ghost:hover {
  color: var(--c-text);
  background: var(--c-wood-pale);
}
.btn--sm {
  padding: 9px 18px;
  font-size: 0.8rem;
}
.btn--lg {
  padding: 18px 36px;
  font-size: 0.95rem;
}
.btn--whatsapp {
  background: #25d366;
  color: white;
  border: 1px solid #25d366;
}
.btn--whatsapp:hover {
  background: #1da853;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}

/* ── Cards ───────────────────────────────── */
.card {
  background: var(--c-surface);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-slow);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-border);
}

/* Product card */
.product-card {
  cursor: pointer;
}
.product-card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--c-wood-pale);
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-card__img img {
  transform: scale(1.05);
}
.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-wood);
}
.product-card__body {
  padding: 20px 24px 24px;
}
.product-card__category {
  color: var(--c-text-3);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.product-card__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--c-text);
  margin-bottom: 6px;
}
.product-card__desc {
  font-size: 0.825rem;
  color: var(--c-text-3);
  line-height: 1.5;
  margin-bottom: 16px;
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-card__price {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--c-text);
  font-weight: 500;
}
.product-card__price span {
  color: var(--c-text-3);
  font-size: 0.75rem;
  font-weight: 400;
}

/* ── Hero ────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-charcoal);
  padding-top: 72px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1542621334-a254cf47733d?w=1800&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}
.hero__texture {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(42, 40, 37, 0.95) 0%,
    rgba(42, 40, 37, 0.7) 50%,
    rgba(42, 40, 37, 0.5) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.hero__eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--c-wood-light);
}
.hero__eyebrow-text {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-wood-light);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #f5ede0;
  margin-bottom: 28px;
}
.hero__title em {
  font-style: italic;
  color: var(--c-wood-light);
}
.hero__subtitle {
  font-size: 1.05rem;
  color: rgba(245, 237, 224, 0.65);
  line-height: 1.7;
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 48px;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__stats {
  position: absolute;
  bottom: 48px;
  right: 0;
  display: flex;
  gap: 1px;
  z-index: 1;
}
.hero__stat {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  padding: 24px 32px;
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--c-wood-light);
  line-height: 1;
  margin-bottom: 6px;
}
.hero__stat-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 237, 224, 0.45);
}
.hero__scroll {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero__scroll span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 237, 224, 0.35);
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(245, 237, 224, 0.3), transparent);
}
@keyframes scrollBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

/* ── Section Headers ─────────────────────── */
.section-header {
  margin-bottom: 56px;
}
.section-header--center {
  text-align: center;
}
.section-header__eyebrow {
  margin-bottom: 16px;
}
.section-header__title {
  margin-bottom: 18px;
}
.section-header__body {
  max-width: 560px;
}
.section-header--center .section-header__body {
  margin: 0 auto;
}
.section-header__divider {
  width: 48px;
  height: 2px;
  background: var(--c-wood);
  border-radius: 1px;
  margin-top: 20px;
}
.section-header--center .section-header__divider {
  margin: 20px auto 0;
}

/* ── Category Grid ───────────────────────── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.category-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/5;
}
.category-card:first-child {
  grid-row: span 2;
  aspect-ratio: auto;
}
.category-card__img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.category-card:hover .category-card__img {
  transform: scale(1.06);
}
.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(26, 24, 20, 0.75) 0%,
    rgba(26, 24, 20, 0.1) 60%
  );
  transition: var(--transition);
}
.category-card:hover .category-card__overlay {
  background: linear-gradient(
    to top,
    rgba(26, 24, 20, 0.85) 0%,
    rgba(26, 24, 20, 0.2) 60%
  );
}
.category-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
}
.category-card__tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-wood-light);
  margin-bottom: 8px;
}
.category-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: white;
  margin-bottom: 6px;
}
.category-card__count {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ── Products Grid ───────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ── B2B B2C Split ───────────────────────── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.split-panel {
  padding: 64px 56px;
  position: relative;
  overflow: hidden;
}
.split-panel--dark {
  background: var(--c-charcoal);
  color: white;
}
.split-panel--light {
  background: var(--c-wood-pale);
  color: var(--c-text);
}
.split-panel__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
  font-weight: 500;
}
.split-panel--dark .split-panel__tag {
  background: rgba(255, 255, 255, 0.1);
  color: var(--c-wood-light);
}
.split-panel--light .split-panel__tag {
  background: white;
  color: var(--c-wood);
}
.split-panel__title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 18px;
}
.split-panel--dark .split-panel__title {
  color: #f5ede0;
}
.split-panel__body {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 300;
}
.split-panel--dark .split-panel__body {
  color: rgba(245, 237, 224, 0.6);
}
.split-panel--light .split-panel__body {
  color: var(--c-text-2);
}
.split-panel__features {
  margin-bottom: 36px;
}
.split-panel__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.875rem;
}
.split-panel--dark .split-panel__feature {
  color: rgba(245, 237, 224, 0.7);
}
.split-panel--light .split-panel__feature {
  color: var(--c-text-2);
}
.split-panel__feature-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}
.split-panel--dark .split-panel__feature-dot {
  background: var(--c-wood-light);
}
.split-panel--light .split-panel__feature-dot {
  background: var(--c-wood);
}
.split-panel__bg-num {
  position: absolute;
  bottom: -20px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 12rem;
  font-weight: 300;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.split-panel--dark .split-panel__bg-num {
  color: rgba(255, 255, 255, 0.03);
}
.split-panel--light .split-panel__bg-num {
  color: rgba(139, 106, 62, 0.07);
}

/* ── Why Choose ──────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.why-item {
  padding: 36px;
  background: var(--c-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border-soft);
}
.why-item__icon {
  width: 48px;
  height: 48px;
  background: var(--c-wood-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--c-wood);
}
.why-item__icon svg {
  width: 24px;
  height: 24px;
}
.why-item__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--c-text);
}
.why-item__body {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--c-text-2);
}

/* ── Trust Bar ───────────────────────────── */
.trust-bar {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border-soft);
  border-bottom: 1px solid var(--c-border-soft);
  padding: 32px 0;
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 40px;
  border-right: 1px solid var(--c-border-soft);
}
.trust-item:last-child {
  border-right: none;
}
.trust-item__icon {
  color: var(--c-wood);
}
.trust-item__icon svg {
  width: 22px;
  height: 22px;
}
.trust-item__text {
  font-size: 0.825rem;
  color: var(--c-text-2);
}
.trust-item__text strong {
  display: block;
  font-weight: 600;
  color: var(--c-text);
  font-size: 0.875rem;
}

/* ── Shipping ────────────────────────────── */
.shipping-section {
  background: var(--c-charcoal);
}
.shipping-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.shipping-content .section-header__title {
  color: #f5ede0;
}
.shipping-content .section-header__eyebrow .section-label {
  color: var(--c-wood-light);
}
.shipping-content .section-header__body {
  color: rgba(245, 237, 224, 0.6);
}
.shipping-content .section-header__divider {
  background: var(--c-wood-light);
}
.shipping-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.shipping-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.shipping-point__num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--c-wood-light);
  font-weight: 500;
  padding-top: 2px;
  flex-shrink: 0;
}
.shipping-point__title {
  font-size: 0.9rem;
  font-weight: 500;
  color: #f5ede0;
  margin-bottom: 4px;
}
.shipping-point__body {
  font-size: 0.825rem;
  color: rgba(245, 237, 224, 0.5);
  line-height: 1.55;
}
.shipping-map {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.shipping-map__placeholder {
  text-align: center;
  color: rgba(245, 237, 224, 0.2);
}
.shipping-map__placeholder svg {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
}
.shipping-map__placeholder p {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.shipping-map__dots {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* ── Testimonials ────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  padding: 36px;
  background: var(--c-surface);
  border-radius: var(--radius-md);
  border: 1px solid var(--c-border-soft);
}
.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.testimonial-card__star {
  color: var(--c-gold);
  font-size: 0.875rem;
}
.testimonial-card__text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.6;
  color: var(--c-text);
  margin-bottom: 24px;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--c-wood-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-wood);
}
.testimonial-card__name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--c-text);
}
.testimonial-card__company {
  font-size: 0.775rem;
  color: var(--c-text-3);
}

/* ── CTA Banner ──────────────────────────── */
.cta-banner {
  background: var(--c-wood-pale);
  border-radius: var(--radius-xl);
  padding: 80px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(139, 106, 62, 0.12) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.cta-banner__title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.1;
  color: var(--c-charcoal);
  max-width: 480px;
}
.cta-banner__title em {
  font-style: italic;
  color: var(--c-wood);
}
.cta-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  flex-shrink: 0;
}

/* ── Footer ──────────────────────────────── */
.footer {
  background: var(--c-charcoal);
  color: rgba(245, 237, 224, 0.7);
  padding: 80px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #f5ede0;
  margin-bottom: 8px;
}
.footer__brand-sub {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-wood-light);
  margin-bottom: 20px;
}
.footer__brand-body {
  font-size: 0.875rem;
  line-height: 1.65;
  max-width: 280px;
  margin-bottom: 32px;
}
.footer__social {
  display: flex;
  gap: 8px;
}
.footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245, 237, 224, 0.5);
  transition: var(--transition);
}
.footer__social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--c-wood-light);
}
.footer__social-link svg {
  width: 16px;
  height: 16px;
}
.footer__col-title {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 237, 224, 0.35);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__link {
  font-size: 0.875rem;
  transition: var(--transition);
}
.footer__link:hover {
  color: #f5ede0;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}
.footer__copyright {
  font-size: 0.8rem;
}
.footer__cert {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer__cert-badge {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(245, 237, 224, 0.4);
}

/* ── Page Header ─────────────────────────── */
.page-header {
  padding: 140px 0 72px;
  background: var(--c-charcoal);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.08;
}
.page-header__inner {
  position: relative;
  z-index: 1;
}
.page-header__eyebrow {
  margin-bottom: 16px;
}
.page-header__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: #f5ede0;
  margin-bottom: 16px;
}
.page-header__body {
  color: rgba(245, 237, 224, 0.55);
  font-size: 1rem;
  font-weight: 300;
  max-width: 480px;
}

/* ── Filter Bar ──────────────────────────── */
.filter-bar {
  background: var(--c-surface);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-search {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--c-bg);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  transition: var(--transition);
}
.filter-search:focus-within {
  border-color: var(--c-wood);
}
.filter-search input {
  background: none;
  border: none;
  outline: none;
  font-size: 0.875rem;
  color: var(--c-text);
  width: 100%;
}
.filter-search input::placeholder {
  color: var(--c-text-3);
}
.filter-search svg {
  color: var(--c-text-3);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.filter-divider {
  width: 1px;
  height: 32px;
  background: var(--c-border-soft);
}
.filter-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.filter-chip {
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--c-border);
  font-size: 0.8rem;
  color: var(--c-text-2);
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
  font-family: var(--font-body);
}
.filter-chip:hover,
.filter-chip.active {
  background: var(--c-charcoal);
  border-color: var(--c-charcoal);
  color: white;
}
.filter-sort {
  display: flex;
  align-items: center;
  gap: 8px;
}
.filter-sort select {
  appearance: none;
  background: var(--c-bg);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-sm);
  padding: 9px 36px 9px 14px;
  font-size: 0.8rem;
  color: var(--c-text-2);
  cursor: pointer;
  outline: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239A9590' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

/* ── Product Detail ──────────────────────── */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.gallery-main {
  aspect-ratio: 1;
  background: var(--c-wood-pale);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 12px;
  position: relative;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-thumbs {
  display: flex;
  gap: 10px;
}
.gallery-thumb {
  flex: 1;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}
.gallery-thumb.active {
  border-color: var(--c-wood);
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail__name {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.1;
  color: var(--c-text);
  margin-bottom: 12px;
}
.product-detail__price {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--c-wood);
  margin-bottom: 8px;
}
.product-detail__moq {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-3);
  margin-bottom: 24px;
}
.product-detail__desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--c-text-2);
  font-weight: 300;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--c-border-soft);
}
.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}
.spec-item {
  padding: 14px 18px;
  background: var(--c-bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border-soft);
}
.spec-item__label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-3);
  margin-bottom: 4px;
}
.spec-item__value {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-text);
}
.qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.qty-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--c-text-2);
  transition: var(--transition);
  cursor: pointer;
  background: transparent;
  border: none;
}
.qty-btn:hover {
  background: var(--c-wood-pale);
  color: var(--c-text);
}
.qty-input {
  width: 60px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--c-border);
  border-right: 1px solid var(--c-border);
  font-family: var(--font-mono);
  font-size: 0.9rem;
  padding: 8px;
  outline: none;
  background: var(--c-surface);
  color: var(--c-text);
}
.product-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-actions-row {
  display: flex;
  gap: 12px;
}
.product-actions-row .btn {
  flex: 1;
  justify-content: center;
}
.whatsapp-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--c-wood-pale);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(139, 106, 62, 0.15);
  font-size: 0.875rem;
  color: var(--c-text-2);
  cursor: pointer;
  transition: var(--transition);
}
.whatsapp-cta:hover {
  background: #e8f7ec;
  border-color: #25d366;
}
.whatsapp-cta svg {
  color: #25d366;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ── Forms ───────────────────────────────── */
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--c-text);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.form-label span {
  color: var(--c-text-3);
  font-weight: 400;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--c-text);
  background: var(--c-surface);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--c-text-3);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--c-wood);
  box-shadow: 0 0 0 3px rgba(139, 106, 62, 0.1);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239A9590' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ── Dashboard ───────────────────────────── */
.dashboard-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  align-items: start;
  padding: 32px 0 80px;
}
.dashboard-sidebar {
  background: var(--c-surface);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: sticky;
  top: 90px;
}
.dashboard-sidebar__header {
  padding: 28px 24px;
  border-bottom: 1px solid var(--c-border-soft);
}
.dashboard-sidebar__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--c-wood-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--c-wood);
  margin-bottom: 12px;
}
.dashboard-sidebar__name {
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--c-text);
}
.dashboard-sidebar__company {
  font-size: 0.8rem;
  color: var(--c-text-3);
}
.dashboard-nav {
  padding: 12px;
}
.dashboard-nav__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--c-text-2);
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 2px;
}
.dashboard-nav__item:hover {
  background: var(--c-wood-pale);
  color: var(--c-text);
}
.dashboard-nav__item.active {
  background: var(--c-charcoal);
  color: white;
}
.dashboard-nav__item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.dashboard-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.dashboard-widget {
  background: var(--c-surface);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-md);
  padding: 28px;
}
.dashboard-widget__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--c-text);
  margin-bottom: 20px;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.stat-box {
  padding: 20px;
  background: var(--c-bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-border-soft);
}
.stat-box__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--c-text);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-box__label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-3);
}
.inquiry-table {
  width: 100%;
  border-collapse: collapse;
}
.inquiry-table th {
  text-align: left;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-3);
  padding: 0 0 12px;
  border-bottom: 1px solid var(--c-border-soft);
}
.inquiry-table td {
  padding: 14px 0;
  font-size: 0.875rem;
  color: var(--c-text-2);
  border-bottom: 1px solid var(--c-border-soft);
  vertical-align: middle;
}
.inquiry-table tr:last-child td {
  border-bottom: none;
}
.status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.status-badge--pending {
  background: var(--c-gold-light);
  color: #8a6f1e;
}
.status-badge--reviewed {
  background: #d4edda;
  color: #1a6b35;
}
.status-badge--quoted {
  background: var(--c-wood-pale);
  color: var(--c-wood);
}

/* ── About ───────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 55%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 6px solid var(--c-bg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.about-img-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cert-box {
  padding: 24px 20px;
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-md);
  text-align: center;
  background: var(--c-surface);
}
.cert-box__icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.cert-box__name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--c-text);
  margin-bottom: 4px;
}
.cert-box__body {
  font-size: 0.72rem;
  color: var(--c-text-3);
  line-height: 1.4;
}
.world-map-placeholder {
  background: var(--c-surface);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-lg);
  height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}
.world-map-placeholder svg {
  width: 64px;
  height: 64px;
  color: var(--c-text-3);
}
.world-map-placeholder p {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-text-3);
}

/* ── Contact ─────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.contact-info {
  padding-right: 32px;
}
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--c-border-soft);
}
.contact-method:last-child {
  border-bottom: none;
}
.contact-method__icon {
  width: 44px;
  height: 44px;
  background: var(--c-wood-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-wood);
  flex-shrink: 0;
}
.contact-method__icon svg {
  width: 20px;
  height: 20px;
}
.contact-method__label {
  font-size: 0.75rem;
  color: var(--c-text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  font-family: var(--font-mono);
}
.contact-method__value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-text);
}
.contact-method__sub {
  font-size: 0.825rem;
  color: var(--c-text-3);
}
.contact-form-wrap {
  background: var(--c-surface);
  border: 1px solid var(--c-border-soft);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
}

/* ── Animations ──────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.anim-fade-up {
  animation: fadeUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.anim-fade-up-d1 {
  animation-delay: 0.1s;
}
.anim-fade-up-d2 {
  animation-delay: 0.2s;
}
.anim-fade-up-d3 {
  animation-delay: 0.3s;
}
.anim-fade-up-d4 {
  animation-delay: 0.4s;
}

/* Intersection observer animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ── Utilities ───────────────────────────── */
.text-center {
  text-align: center;
}
.text-wood {
  color: var(--c-wood);
}
.text-charcoal {
  color: var(--c-charcoal);
}
.d-flex {
  display: flex;
}
.align-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.gap-8 {
  gap: 8px;
}
.gap-16 {
  gap: 16px;
}
.gap-24 {
  gap: 24px;
}
.mt-8 {
  margin-top: 8px;
}
.mt-16 {
  margin-top: 16px;
}
.mt-24 {
  margin-top: 24px;
}
.mt-32 {
  margin-top: 32px;
}
.mt-48 {
  margin-top: 48px;
}
.mb-8 {
  margin-bottom: 8px;
}
.mb-16 {
  margin-bottom: 16px;
}
.mb-24 {
  margin-bottom: 24px;
}
.mb-32 {
  margin-bottom: 32px;
}
.mb-48 {
  margin-bottom: 48px;
}
.w-full {
  width: 100%;
}

/* ── Page-specific ───────────────────────── */
.page {
  display: none;
}
.page.active {
  display: block;
}

/* ── Responsive ──────────────────────────── */
@media (max-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .hero__stats {
    position: static;
    margin-top: 64px;
  }
  .hero {
    min-height: auto;
    padding: 140px 0 80px;
  }
}
@media (max-width: 900px) {
  .category-grid {
    grid-template-columns: 1fr 1fr;
  }
  .category-card:first-child {
    grid-column: span 2;
    aspect-ratio: 16/7;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .split-section {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .product-detail-grid {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-img-accent {
    display: none;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .dashboard-layout {
    grid-template-columns: 1fr;
  }
  .nav__links {
    display: none;
  }
  .nav__actions a.btn,
  .nav__actions .nav__badge {
    display: none;
  }
  .nav__menu-btn {
    display: flex;
  }
  .cta-banner {
    flex-direction: column;
    padding: 48px 36px;
  }
  .shipping-grid {
    grid-template-columns: 1fr;
  }
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-row {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .hero__stats {
    flex-direction: column;
  }
  .hero__stat {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .trust-bar__inner {
    flex-direction: column;
  }
  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--c-border-soft);
    width: 100%;
    justify-content: center;
  }
  .trust-item:last-child {
    border-bottom: none;
  }
  .split-panel {
    padding: 40px 28px;
  }
  .contact-form-wrap {
    padding: 32px 24px;
  }
  .cta-banner {
    padding: 40px 28px;
  }
}
