/* ============================================
   DECK&CO CUSTOM HOMEPAGE — DESIGN SYSTEM
   Aesthetic: Editorial Luxury + E-Commerce
   ============================================ */

:root {
  /* Brand Colors */
  --forest: #3A4E39;
  --forest-light: #4A6349;
  --forest-dark: #2C3B2B;
  --warm-white: #FFFEFB;
  --sand: #D8C3A5;
  --sand-light: #E8D9C3;
  --sand-pale: #F5F0EB;
  --charcoal: #1A1A1A;
  --charcoal-soft: #3D3D3D;
  --muted: #7A7A7A;
  --border: #E5E0DA;
  --card-bg: #FAFAF8;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Outfit', -apple-system, sans-serif;

  /* Spacing */
  --section-pad: clamp(60px, 8vw, 120px);
  --section-pad-sm: clamp(40px, 5vw, 80px);
  --container: 1380px;
  --container-narrow: 960px;
  --gap: clamp(16px, 2vw, 32px);

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- RESET & BASE ---- */
.deckco-homepage *, .deckco-homepage *::before, .deckco-homepage *::after { box-sizing: border-box; margin: 0; padding: 0; }

.deckco-homepage {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--warm-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ---- UTILITY ---- */
.deckco-homepage .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 48px);
}

.deckco-homepage .container--narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 48px);
}

.deckco-homepage .eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.deckco-homepage .eyebrow--light { color: var(--sand-light); }
.deckco-homepage .eyebrow--sand { color: var(--sand); }

.deckco-homepage .section-heading {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.15;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

.deckco-homepage .section-heading--white { color: #fff; }

.deckco-homepage .thin-rule {
  width: 48px;
  height: 1px;
  background: var(--sand);
  border: none;
  margin: 24px 0;
}

/* Scroll Reveal */
.deckco-homepage .reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.deckco-homepage .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* ---- GRAIN OVERLAY ---- */
.deckco-homepage::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */

.deckco-homepage .topbar {
  background: var(--forest);
  padding: 8px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.03em;
}

.deckco-homepage .topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.deckco-homepage .topbar a {
  color: rgba(255,255,255,0.8);
  transition: color 0.3s var(--ease);
}

.deckco-homepage .topbar a:hover { color: #fff; }

.deckco-homepage .topbar__links {
  display: flex;
  gap: 24px;
  list-style: none;
}

/* wp_nav_menu outputs <ul><li><a> — style the menu items */
.deckco-homepage .topbar__links .menu-item { list-style: none; }

.deckco-homepage .topbar__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.deckco-homepage .topbar__phone {
  font-weight: 500;
  color: #fff;
}

/* Main Header */
.deckco-homepage .header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease);
}

.deckco-homepage .header.scrolled {
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.deckco-homepage .header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.deckco-homepage .header__logo {
  display: flex;
  align-items: center;
  gap: 2px;
}

.deckco-homepage .header__logo-text {
  font-family: var(--font-body);
  font-size: 26px;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}

.deckco-homepage .header__logo-text span {
  font-weight: 400;
  color: var(--forest);
}

.deckco-homepage .header__nav {
  display: flex;
  gap: 32px;
  list-style: none;
}

/* wp_nav_menu outputs <ul class="header__nav"><li class="menu-item"><a> */
.deckco-homepage .header__nav .menu-item { list-style: none; }

.deckco-homepage .header__nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}

.deckco-homepage .header__nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--forest);
  transition: width 0.4s var(--ease-out);
}

.deckco-homepage .header__nav a:hover { color: var(--forest); }
.deckco-homepage .header__nav a:hover::after { width: 100%; }

.deckco-homepage .header__actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.deckco-homepage .header__icon {
  width: 22px;
  height: 22px;
  color: var(--charcoal);
  transition: color 0.3s var(--ease);
  display: inline-flex;
}

.deckco-homepage .header__icon:hover { color: var(--forest); }

.deckco-homepage .header__cart {
  position: relative;
}

.deckco-homepage .header__cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile menu toggle */
.deckco-homepage .header__menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.deckco-homepage .header__menu-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s var(--ease);
}

/* Mobile Menu Overlay */
.deckco-homepage .mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--warm-white);
  padding: 80px 24px 24px;
  overflow-y: auto;
}

.deckco-homepage .mobile-menu.active { display: block; }

.deckco-homepage .mobile-menu__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--charcoal);
}

.deckco-homepage .mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.deckco-homepage .mobile-menu .menu-item a {
  display: block;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border);
}

/* ========================================
   HERO
   ======================================== */

.deckco-homepage .hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--forest-dark);
}

.deckco-homepage .hero__bg {
  position: absolute;
  inset: 0;
}

.deckco-homepage .hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.3) 40px,
    rgba(255,255,255,0.3) 41px
  );
}

.deckco-homepage .hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}

.deckco-homepage .hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 32px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
}

.deckco-homepage .hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6FCF7C;
  animation: deckco-pulse-dot 2s ease-in-out infinite;
}

@keyframes deckco-pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.deckco-homepage .hero__title {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.deckco-homepage .hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--sand-light);
}

.deckco-homepage .hero__subtitle {
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 40px;
}

.deckco-homepage .hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */
.deckco-homepage .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  transition: all 0.4s var(--ease);
}

.deckco-homepage .btn--primary {
  background: #fff;
  color: var(--forest);
}

.deckco-homepage .btn--primary:hover {
  background: var(--sand-light);
  color: var(--forest-dark);
}

.deckco-homepage .btn--outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
}

.deckco-homepage .btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

.deckco-homepage .btn--dark {
  background: var(--forest);
  color: #fff;
}

.deckco-homepage .btn--dark:hover {
  background: var(--forest-dark);
}

.deckco-homepage .btn--sand {
  background: var(--sand);
  color: var(--forest-dark);
}

.deckco-homepage .btn--sand:hover {
  background: var(--sand-light);
}

.deckco-homepage .btn__arrow {
  transition: transform 0.3s var(--ease);
}

.deckco-homepage .btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* Scroll indicator */
.deckco-homepage .hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.deckco-homepage .hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: deckco-scroll-line 2s ease-in-out infinite;
}

@keyframes deckco-scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.01% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ========================================
   TRUST STRIP
   ======================================== */

.deckco-homepage .trust-strip {
  background: var(--warm-white);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.deckco-homepage .trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.deckco-homepage .trust-strip__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 16px;
  position: relative;
}

.deckco-homepage .trust-strip__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border);
}

.deckco-homepage .trust-strip__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--forest);
}

.deckco-homepage .trust-strip__text {
  font-size: 13px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.3;
}

.deckco-homepage .trust-strip__text small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
}

/* ========================================
   COLLECTIONS GRID
   ======================================== */

.deckco-homepage .collections {
  padding: var(--section-pad) 0;
}

.deckco-homepage .collections__header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.deckco-homepage .collections__header .eyebrow {
  margin-bottom: 16px;
}

.deckco-homepage .collections__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 380px 380px;
  gap: var(--gap);
}

.deckco-homepage .collection-card {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
  background: var(--sand-pale);
}

.deckco-homepage .collection-card--tall {
  grid-row: span 2;
}

.deckco-homepage .collection-card__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.8s var(--ease-out);
}

.deckco-homepage .collection-card:hover .collection-card__image {
  transform: scale(1.04);
}

.deckco-homepage .collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.05) 60%);
  transition: background 0.5s var(--ease);
}

.deckco-homepage .collection-card:hover .collection-card__overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 60%);
}

.deckco-homepage .collection-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 2;
}

.deckco-homepage .collection-card__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  color: #fff;
  margin-bottom: 4px;
}

.deckco-homepage .collection-card__count {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}

.deckco-homepage .collection-card__arrow {
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.4s var(--ease-out);
}

.deckco-homepage .collection-card:hover .collection-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ========================================
   EDITORIAL — THE KING OF WOODS
   ======================================== */

.deckco-homepage .editorial {
  padding: var(--section-pad) 0;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}

.deckco-homepage .editorial::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.04);
  pointer-events: none;
}

.deckco-homepage .editorial__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.deckco-homepage .editorial__image-frame {
  position: relative;
  aspect-ratio: 4/5;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 3px;
  overflow: hidden;
}

.deckco-homepage .editorial__image-frame::after {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px;
  pointer-events: none;
}

.deckco-homepage .editorial__image-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.deckco-homepage .editorial__text .eyebrow {
  color: var(--sand);
  margin-bottom: 20px;
}

.deckco-homepage .editorial__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 24px;
}

.deckco-homepage .editorial__title em {
  font-style: italic;
  color: var(--sand-light);
}

.deckco-homepage .editorial__body {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.deckco-homepage .editorial__features {
  list-style: none;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.deckco-homepage .editorial__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 400;
}

.deckco-homepage .editorial__features li::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--sand);
  flex-shrink: 0;
}

.deckco-homepage .editorial__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand);
  margin-top: 8px;
  transition: gap 0.3s var(--ease);
}

.deckco-homepage .editorial__link:hover {
  gap: 14px;
}

/* ========================================
   FEATURED PRODUCTS
   ======================================== */

.deckco-homepage .dc-products {
  padding: var(--section-pad) 0;
  background: var(--warm-white);
}

.deckco-homepage .dc-products__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(40px, 5vw, 56px);
}

.deckco-homepage .dc-products__header-left .eyebrow {
  margin-bottom: 12px;
}

.deckco-homepage .dc-products__view-all {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--forest);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s var(--ease);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--forest);
}

.deckco-homepage .dc-products__view-all:hover { gap: 14px; }

.deckco-homepage .dc-products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

/* Product Card */
.deckco-homepage .product-card {
  position: relative;
  cursor: pointer;
}

.deckco-homepage .product-card a {
  text-decoration: none;
  color: inherit;
}

.deckco-homepage .product-card__image-wrap {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--card-bg);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}

.deckco-homepage .product-card:hover .product-card__image-wrap {
  border-color: var(--border);
}

.deckco-homepage .product-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.6s var(--ease-out);
}

.deckco-homepage .product-card:hover .product-card__image {
  transform: scale(1.05);
}

.deckco-homepage .product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--forest);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}

.deckco-homepage .product-card__badge--new {
  background: var(--sand);
  color: var(--forest-dark);
}

.deckco-homepage .product-card__quick-add {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: var(--forest);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 12px;
  border-radius: 2px;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s var(--ease);
}

.deckco-homepage .product-card:hover .product-card__quick-add {
  opacity: 1;
  transform: translateY(0);
}

.deckco-homepage .product-card__info {
  padding: 0 4px;
}

.deckco-homepage .product-card__collection {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.deckco-homepage .product-card__title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.4;
  margin-bottom: 8px;
}

.deckco-homepage .product-card__price {
  font-size: 15px;
  font-weight: 600;
  color: var(--forest);
}

.deckco-homepage .product-card__price del {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  margin-left: 8px;
}

.deckco-homepage .product-card__price ins {
  text-decoration: none;
}

/* ========================================
   BRAND STORY / SPLIT SECTION
   ======================================== */

.deckco-homepage .brand-story {
  padding: var(--section-pad) 0;
  background: var(--sand-pale);
  position: relative;
}

.deckco-homepage .brand-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.deckco-homepage .brand-story__text .eyebrow {
  margin-bottom: 20px;
}

.deckco-homepage .brand-story__quote {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 300;
  line-height: 1.3;
  color: var(--charcoal);
  margin-bottom: 24px;
  font-style: italic;
}

.deckco-homepage .brand-story__body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--charcoal-soft);
  margin-bottom: 32px;
}

.deckco-homepage .brand-story__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.deckco-homepage .brand-story__stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 4px;
}

.deckco-homepage .brand-story__stat-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.deckco-homepage .brand-story__image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 3px;
  overflow: hidden;
}

.deckco-homepage .brand-story__image-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* ========================================
   VALUE PROPOSITIONS
   ======================================== */

.deckco-homepage .values {
  padding: var(--section-pad) 0;
  background: var(--warm-white);
}

.deckco-homepage .values__header {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 72px);
}

.deckco-homepage .values__header .eyebrow { margin-bottom: 16px; }

.deckco-homepage .values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.deckco-homepage .value-card {
  text-align: center;
  padding: 0 16px;
}

.deckco-homepage .value-card__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 20px;
  color: var(--forest);
}

.deckco-homepage .value-card__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 12px;
}

.deckco-homepage .value-card__body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

/* ========================================
   NEWSLETTER
   ======================================== */

.deckco-homepage .newsletter {
  padding: var(--section-pad-sm) 0;
  background: var(--forest);
  position: relative;
  overflow: hidden;
}

.deckco-homepage .newsletter::before {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.03);
  pointer-events: none;
}

.deckco-homepage .newsletter__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 48px;
}

.deckco-homepage .newsletter__text {
  flex: 1;
}

.deckco-homepage .newsletter__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  color: #fff;
  margin-bottom: 8px;
}

.deckco-homepage .newsletter__subtitle {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}

.deckco-homepage .newsletter__form {
  display: flex;
  gap: 12px;
  flex: 1;
  max-width: 480px;
}

.deckco-homepage .newsletter__input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s var(--ease);
}

.deckco-homepage .newsletter__input::placeholder {
  color: rgba(255,255,255,0.4);
}

.deckco-homepage .newsletter__input:focus {
  border-color: var(--sand);
}

.deckco-homepage .newsletter__submit {
  padding: 14px 28px;
  background: var(--sand);
  color: var(--forest-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.3s var(--ease);
  white-space: nowrap;
}

.deckco-homepage .newsletter__submit:hover {
  background: var(--sand-light);
}

/* ========================================
   FOOTER
   ======================================== */

.deckco-homepage .dc-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}

.deckco-homepage .dc-footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.deckco-homepage .dc-footer__brand-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
  max-width: 280px;
}

.deckco-homepage .dc-footer__heading {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
}

.deckco-homepage .dc-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* wp_nav_menu outputs <ul><li><a> inside footer columns */
.deckco-homepage .dc-footer__links .menu-item { list-style: none; }

.deckco-homepage .dc-footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s var(--ease);
}

.deckco-homepage .dc-footer__links a:hover { color: var(--sand); }

.deckco-homepage .dc-footer__contact-item {
  font-size: 14px;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.5);
}

.deckco-homepage .dc-footer__contact-item strong {
  color: rgba(255,255,255,0.7);
}

.deckco-homepage .dc-footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.deckco-homepage .dc-footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.3s var(--ease);
}

.deckco-homepage .dc-footer__social a:hover {
  border-color: var(--sand);
  color: var(--sand);
}

.deckco-homepage .dc-footer__social svg {
  width: 16px;
  height: 16px;
}

.deckco-homepage .dc-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.deckco-homepage .dc-footer__payments {
  display: flex;
  gap: 12px;
  align-items: center;
}

.deckco-homepage .dc-footer__payments .pay-icon {
  width: 48px;
  height: auto;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}

/* ========================================
   BRANDS STRIP
   ======================================== */

.deckco-homepage .brands {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.deckco-homepage .brands__label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.deckco-homepage .brands__row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
  flex-wrap: wrap;
}

.deckco-homepage .brands__item {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  color: var(--charcoal);
  opacity: 0.4;
  letter-spacing: 0.02em;
  transition: opacity 0.3s var(--ease);
  white-space: nowrap;
}

.deckco-homepage .brands__item:hover {
  opacity: 0.8;
}

/* ========================================
   NEW ARRIVALS ALT BACKGROUND
   ======================================== */

.deckco-homepage .dc-products--alt {
  background: var(--sand-pale);
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.deckco-homepage .testimonials {
  padding: var(--section-pad) 0;
  background: var(--warm-white);
}

.deckco-homepage .testimonials__header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.deckco-homepage .testimonials__header .eyebrow {
  margin-bottom: 16px;
}

.deckco-homepage .testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
}

.deckco-homepage .testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.deckco-homepage .testimonial-card__stars {
  color: var(--sand);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.deckco-homepage .testimonial-card__text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--charcoal-soft);
  flex: 1;
  margin-bottom: 28px;
}

.deckco-homepage .testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.deckco-homepage .testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--forest);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}

.deckco-homepage .testimonial-card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
}

.deckco-homepage .testimonial-card__location {
  font-size: 12px;
  color: var(--muted);
}

/* ========================================
   BLOG TEASERS
   ======================================== */

.deckco-homepage .blog-teasers {
  padding: var(--section-pad) 0;
  background: var(--sand-pale);
}

.deckco-homepage .blog-teasers__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: clamp(40px, 5vw, 56px);
}

.deckco-homepage .blog-teasers__header-left .eyebrow {
  margin-bottom: 12px;
}

.deckco-homepage .blog-teasers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.deckco-homepage .blog-card {
  background: #fff;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease);
}

.deckco-homepage .blog-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.deckco-homepage .blog-card a {
  text-decoration: none;
  color: inherit;
}

.deckco-homepage .blog-card__image-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.deckco-homepage .blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.deckco-homepage .blog-card:hover .blog-card__image {
  transform: scale(1.04);
}

.deckco-homepage .blog-card__content {
  padding: 24px;
}

.deckco-homepage .blog-card__category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 8px;
}

.deckco-homepage .blog-card__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.deckco-homepage .blog-card__excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 16px;
}

.deckco-homepage .blog-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--forest);
  letter-spacing: 0.03em;
  transition: letter-spacing 0.3s var(--ease);
}

.deckco-homepage .blog-card__link:hover {
  letter-spacing: 0.06em;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  .deckco-homepage .header__nav { gap: 20px; }
  .deckco-homepage .header__nav a { font-size: 12px; }

  .deckco-homepage .collections__grid {
    grid-template-rows: 300px 300px;
  }

  .deckco-homepage .dc-products__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .deckco-homepage .dc-footer__top {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .deckco-homepage .dc-footer__top > :first-child {
    grid-column: span 3;
  }
}

@media (max-width: 768px) {
  .deckco-homepage {
    --section-pad: clamp(32px, 5vw, 60px);
    --section-pad-sm: clamp(24px, 4vw, 48px);
  }

  .deckco-homepage .topbar { display: none; }

  .deckco-homepage .header__inner { height: 56px; }

  .deckco-homepage .section-heading {
    font-size: clamp(26px, 6vw, 38px);
  }

  /* Testimonials — horizontal scroll */
  .deckco-homepage .testimonials__header {
    margin-bottom: clamp(24px, 4vw, 40px);
  }

  .deckco-homepage .testimonials__grid {
    grid-template-columns: repeat(3, 75vw);
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .deckco-homepage .testimonial-card {
    scroll-snap-align: start;
    padding: 20px;
  }

  .deckco-homepage .testimonial-card__stars { font-size: 14px; margin-bottom: 10px; }

  .deckco-homepage .testimonial-card__text {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .deckco-homepage .testimonial-card__author { padding-top: 12px; }
  .deckco-homepage .testimonial-card__avatar { width: 32px; height: 32px; font-size: 11px; }
  .deckco-homepage .testimonial-card__name { font-size: 13px; }
  .deckco-homepage .testimonial-card__location { font-size: 11px; }

  /* Blog teasers — horizontal card layout */
  .deckco-homepage .blog-teasers__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: clamp(24px, 4vw, 40px);
  }

  .deckco-homepage .blog-teasers__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .deckco-homepage .blog-card {
    display: grid;
    grid-template-columns: 100px 1fr;
  }

  .deckco-homepage .blog-card__image-wrap {
    aspect-ratio: 1/1;
  }

  .deckco-homepage .blog-card__content {
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .deckco-homepage .blog-card__category { margin-bottom: 2px; font-size: 10px; }
  .deckco-homepage .blog-card__title { font-size: 15px; margin-bottom: 4px; }
  .deckco-homepage .blog-card__excerpt { display: none; }
  .deckco-homepage .blog-card__link { font-size: 12px; }

  .deckco-homepage .header__nav { display: none; }
  .deckco-homepage .header__menu-toggle { display: flex; }

  .deckco-homepage .container,
  .deckco-homepage .container--narrow {
    padding: 0 clamp(20px, 6vw, 48px);
  }

  /* Hero */
  .deckco-homepage .hero { min-height: 70vh; }
  .deckco-homepage .hero__content { padding-top: clamp(60px, 10vw, 100px); padding-bottom: clamp(40px, 6vw, 60px); }
  .deckco-homepage .hero__title { font-size: clamp(30px, 8vw, 44px); }
  .deckco-homepage .hero__badge { margin-bottom: 16px; font-size: 10px; padding: 6px 14px; }
  .deckco-homepage .hero__subtitle { margin-bottom: 24px; font-size: 14px; line-height: 1.6; }
  .deckco-homepage .hero__scroll { display: none; }

  .deckco-homepage .btn {
    padding: 12px 24px;
    font-size: 11px;
  }

  /* Trust strip */
  .deckco-homepage .trust-strip { padding: 0; }
  .deckco-homepage .trust-strip__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: var(--border);
  }

  .deckco-homepage .trust-strip__item {
    background: var(--warm-white);
    padding: 16px 14px;
    justify-content: flex-start;
    gap: 10px;
  }

  .deckco-homepage .trust-strip__item::after { display: none; }
  .deckco-homepage .trust-strip__icon { width: 20px; height: 20px; }
  .deckco-homepage .trust-strip__text { font-size: 12px; line-height: 1.3; }
  .deckco-homepage .trust-strip__text small { font-size: 10px; }

  /* Brands strip */
  .deckco-homepage .brands { padding: 20px 0; }
  .deckco-homepage .brands__label { margin-bottom: 12px; font-size: 10px; }
  .deckco-homepage .brands__item { font-size: 16px; }

  /* Collections */
  .deckco-homepage .collections__header { margin-bottom: clamp(24px, 4vw, 40px); }

  .deckco-homepage .collections__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 8px;
  }

  .deckco-homepage .collection-card { min-height: 160px; }
  .deckco-homepage .collection-card--tall { grid-row: auto; min-height: 160px; }
  .deckco-homepage .collection-card:last-child:nth-child(odd) { grid-column: span 2; }
  .deckco-homepage .collection-card__content { padding: 14px; }
  .deckco-homepage .collection-card__title { font-size: 18px; }
  .deckco-homepage .collection-card__count { font-size: 11px; }

  /* Editorial */
  .deckco-homepage .editorial__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .deckco-homepage .editorial__image-frame {
    aspect-ratio: 16/9;
    order: -1;
  }

  .deckco-homepage .editorial__title { margin-bottom: 12px; font-size: clamp(26px, 6vw, 36px); }
  .deckco-homepage .editorial__body { font-size: 14px; margin-bottom: 8px; line-height: 1.7; }
  .deckco-homepage .editorial__features { margin: 16px 0; gap: 6px; }
  .deckco-homepage .editorial__features li { font-size: 12px; }

  /* Products */
  .deckco-homepage .dc-products__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: clamp(24px, 4vw, 40px);
  }

  .deckco-homepage .dc-products__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .deckco-homepage .product-card__image-wrap { margin-bottom: 8px; }
  .deckco-homepage .product-card__image { padding: 10px; }
  .deckco-homepage .product-card__collection { font-size: 9px; margin-bottom: 2px; }
  .deckco-homepage .product-card__title { font-size: 13px; margin-bottom: 4px; line-height: 1.3; }
  .deckco-homepage .product-card__price { font-size: 14px; }
  .deckco-homepage .product-card__price del { font-size: 11px; }
  .deckco-homepage .product-card__badge { font-size: 8px; padding: 3px 7px; top: 6px; left: 6px; }

  /* Brand Story */
  .deckco-homepage .brand-story__inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .deckco-homepage .brand-story__image-wrap {
    aspect-ratio: 16/9;
    order: -1;
  }

  .deckco-homepage .brand-story__quote { font-size: 20px; margin-bottom: 12px; }
  .deckco-homepage .brand-story__body { font-size: 14px; margin-bottom: 20px; line-height: 1.7; }

  .deckco-homepage .brand-story__stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 20px;
  }

  .deckco-homepage .brand-story__stat-number { font-size: 24px; }
  .deckco-homepage .brand-story__stat-label { font-size: 10px; }

  /* Values */
  .deckco-homepage .values__header { margin-bottom: 24px; }

  .deckco-homepage .values__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .deckco-homepage .value-card {
    text-align: left;
    padding: 0;
    display: grid;
    grid-template-columns: 36px 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 2px;
  }

  .deckco-homepage .value-card__icon {
    width: 32px;
    height: 32px;
    margin: 0;
    grid-row: span 2;
    align-self: start;
    margin-top: 2px;
  }

  .deckco-homepage .value-card__title {
    font-size: 18px;
    margin-bottom: 0;
  }

  .deckco-homepage .value-card__body {
    font-size: 13px;
    line-height: 1.5;
  }

  /* Newsletter */
  .deckco-homepage .newsletter__inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .deckco-homepage .newsletter__form {
    width: 100%;
    max-width: 100%;
    flex-direction: column;
  }

  .deckco-homepage .newsletter__title { font-size: 20px; }
  .deckco-homepage .newsletter__subtitle { font-size: 12px; }
  .deckco-homepage .newsletter__input { padding: 12px 16px; font-size: 13px; }
  .deckco-homepage .newsletter__submit { padding: 12px 20px; font-size: 11px; }

  /* Footer */
  .deckco-homepage .dc-footer { padding-top: 40px; }

  .deckco-homepage .dc-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding-bottom: 32px;
  }

  .deckco-homepage .dc-footer__top > :first-child {
    grid-column: span 2;
  }

  .deckco-homepage .dc-footer__brand-text { font-size: 13px; margin-top: 12px; }
  .deckco-homepage .dc-footer__heading { font-size: 11px; margin-bottom: 14px; }
  .deckco-homepage .dc-footer__links a { font-size: 13px; }
  .deckco-homepage .dc-footer__links { gap: 8px; }

  .deckco-homepage .dc-footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    font-size: 12px;
  }

  .deckco-homepage .dc-footer__payments { flex-wrap: wrap; justify-content: center; }
  .deckco-homepage .dc-footer__payments .pay-icon { width: 40px; }
}

@media (max-width: 480px) {
  .deckco-homepage .hero__actions { flex-direction: column; }
  .deckco-homepage .hero__actions .btn { width: 100%; justify-content: center; }

  .deckco-homepage .collections__grid { gap: 6px; }
  .deckco-homepage .collection-card { min-height: 140px; }
  .deckco-homepage .collection-card--tall { min-height: 140px; }
  .deckco-homepage .collection-card__title { font-size: 16px; }
  .deckco-homepage .collection-card__content { padding: 12px; }
}

/* ========================================
   WP ADMIN BAR OFFSET
   ======================================== */
.admin-bar .deckco-homepage .header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .deckco-homepage .header {
    top: 46px;
  }
}
