/* ============================================================
  BLACK WOOD — Home Page Styles
   ============================================================ */

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 1000px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: calc(-1 * var(--navbar-h));
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.4) 55%,
    rgba(0,0,0,0.15) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  padding-top: var(--navbar-h);
}
.hero__eyebrow {
  font-size: var(--fs-11);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-beige-dark);
  margin-bottom: var(--sp-5);
  display: block;
  animation: fade-in-up 0.6s ease 0.2s both;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(var(--fs-48), 8vw, var(--fs-80));
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1.05;
  max-width: 640px;
  margin-bottom: var(--sp-6);
  animation: fade-in-up 0.7s ease 0.35s both;
}
.hero__title em {
  font-style: italic;
  color: var(--clr-beige-dark);
}
.hero__desc {
  font-size: clamp(var(--fs-16), 2vw, var(--fs-18));
  color: rgba(255,255,255,0.78);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: var(--sp-10);
  animation: fade-in-up 0.7s ease 0.5s both;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  animation: fade-in-up 0.7s ease 0.65s both;
}
.hero__scroll-hint {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  animation: fade-in 1s ease 1.2s both;
}
.hero__scroll-hint span {
  font-size: var(--fs-10);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.scroll-line {
  width: 1.5px;
  height: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.5), transparent);
  animation: float-y 2s ease-in-out infinite;
}

/* ===== MARQUEE STRIP ===== */
.marquee-strip {
  background: var(--clr-black);
  padding: var(--sp-4) 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee-scroll 20s linear infinite;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  padding: 0 var(--sp-6);
  font-size: var(--fs-12);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: var(--r-full);
  background: var(--clr-accent);
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== FEATURED CATEGORIES ===== */
.categories-section { background: var(--clr-off-white); }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

/* ===== FEATURES BAR ===== */
.features-bar {
  background: var(--clr-beige);
  padding: var(--sp-10) 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-8);
}
.feature-item {
  text-align: center;
  padding: var(--sp-4);
}
.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--sp-4);
  color: var(--clr-accent);
}
.feature-icon svg { width: 100%; height: 100%; }
.feature-title {
  font-size: var(--fs-14);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
  color: var(--text-primary);
}
.feature-desc { font-size: var(--fs-13); color: var(--text-muted); line-height: 1.6; }

/* ===== BRAND STORY ===== */
.brand-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.brand-story__img {
  position: relative;
  overflow: hidden;
}
.brand-story__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.brand-story__img:hover img { transform: scale(1.04); }
.brand-story__content {
  background: var(--clr-beige);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(var(--sp-12), 6vw, var(--sp-24));
}
.brand-story__eyebrow {
  font-size: var(--fs-11);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: var(--sp-5);
  display: block;
}
.brand-story__title {
  font-family: var(--font-display);
  font-size: clamp(var(--fs-32), 4vw, var(--fs-48));
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: var(--sp-6);
}
.brand-story__title em { font-style: italic; color: var(--clr-accent); }
.brand-story__text {
  font-size: var(--fs-16);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--sp-8);
  max-width: 440px;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: var(--clr-black);
  padding: clamp(var(--sp-12), 8vw, var(--sp-24)) 0;
  text-align: center;
}
.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(var(--fs-28), 4vw, var(--fs-42));
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: var(--sp-4);
}
.newsletter-desc {
  font-size: var(--fs-16);
  color: rgba(255,255,255,0.55);
  margin-bottom: var(--sp-8);
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}
.newsletter-form {
  display: flex;
  gap: var(--sp-3);
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--r-sm);
  color: var(--clr-white);
  font-size: var(--fs-16);
  outline: none;
  transition: border-color var(--tr-fast);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-input:focus { border-color: rgba(255,255,255,0.45); }

/* ===== RESPONSIVE HOME ===== */
@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); gap: var(--sp-4); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-story { grid-template-columns: 1fr; min-height: auto; }
  .brand-story__img { height: 400px; }
}
@media (max-width: 768px) {
  .hero__title { max-width: 100%; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-form { flex-direction: column; }
}
@media (max-width: 480px) {
  .hero { height: 100svh; }
  .hero__cta { flex-direction: column; }
  .categories-grid { grid-template-columns: 1fr; }
  .brand-story__img { height: 300px; }
}
