/* ============================================
   HOME PAGE CSS (LIGHT)
   ============================================ */

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 55% at 65% 45%, #e8dfd0 0%, #fafaf8 65%);
  will-change: transform;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 55%, var(--color-bg) 100%);
  pointer-events: none;
}
.hero__inner {
  flex: 1; display: grid; grid-template-columns: 1fr 360px; gap: 4rem;
  align-items: center; padding-top: 6rem; padding-bottom: 4rem;
  position: relative; z-index: 2;
}
.hero__eyebrow { margin-bottom: 1.5rem; }
.hero__title { color: var(--color-text); }
.hero__title em { font-style: italic; color: var(--color-accent); }
.hero__desc { margin-top: 1.5rem; max-width: 420px; }
.hero__actions { display: flex; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap; }

.hero__card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(20,18,14,0.08), 0 1px 3px rgba(20,18,14,0.05);
  transition: transform var(--dur-slow) var(--ease-out), box-shadow var(--dur-slow) var(--ease-out);
}
.hero__card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(20,18,14,0.14); }
.hero__card-media { height: 340px; width: 100%; display: block; overflow: hidden; }
.hero__card-media img { width: 100%; height: 100%; object-fit: cover; display: block; border-radius: 0; }
.hero__card-body { padding: 1.25rem 1.5rem 1.5rem; }
.hero__card-top { margin-bottom: 0.75rem; }
.hero__card-name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 0.25rem; color: var(--color-text); }
.hero__card-note { font-size: 0.78rem; color: var(--color-text-muted); letter-spacing: 0.07em; }
.hero__card-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 1.25rem; }

.hero__stats { border-top: 1px solid var(--color-border); position: relative; z-index: 2; background: var(--color-bg); }
.hero__stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.hero__stat { display: flex; flex-direction: column; gap: 0.3rem; padding: 1.5rem var(--gutter); border-right: 1px solid var(--color-border); }
.hero__stat:last-child { border-right: none; }
.hero__stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; letter-spacing: -0.03em; color: var(--color-text); }
.hero__stat-label { font-size: 0.72rem; color: var(--color-text-muted); letter-spacing: 0.06em; }

/* ── Categories ── */
.categories .section-header { margin-bottom: 2.5rem; }
.categories__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--color-border); }

.category-card {
  position: relative; background: var(--cat-bg, var(--color-surface));
  overflow: hidden; aspect-ratio: 3/4;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.category-card__media { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.category-card__placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; transition: transform var(--dur-slow) var(--ease-out); }
.category-card:hover .category-card__placeholder { transform: scale(1.04); }
.category-card__body {
  position: relative; z-index: 2; padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
}
.category-card__name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: #fff; margin-bottom: 0.2rem; }
.category-card__count { font-size: 0.72rem; color: rgba(255,255,255,0.65); letter-spacing: 0.06em; }
.category-card__arrow { display: inline-block; margin-top: 0.75rem; color: rgba(255,255,255,0.6); font-size: 1.1rem; transition: transform var(--dur-fast), color var(--dur-fast); }
.category-card:hover .category-card__arrow { transform: translateX(6px); color: #fff; }

/* ── Product Cards ── */
.product-card { position: relative; }
.product-card__media {
  display: block; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--color-surface); aspect-ratio: 3/4;
  box-shadow: 0 1px 4px rgba(20,18,14,0.06);
}
.product-card__badge { position: absolute; top: 1rem; left: 1rem; z-index: 2; }
.product-card__actions {
  position: absolute; bottom: 1rem; left: 1rem; right: 1rem;
  opacity: 0; transform: translateY(8px);
  transition: all var(--dur-normal) var(--ease-out);
}
.product-card:hover .product-card__actions { opacity: 1; transform: translateY(0); }
.product-card__atc { width: 100%; justify-content: center; font-size: 0.78rem; padding: 0.75rem 1rem; }
.product-card__info { padding: 1rem 0 0; }
.product-card__name { font-size: 0.95rem; font-weight: 500; letter-spacing: -0.01em; margin-bottom: 0.2rem; }
.product-card__name a { color: var(--color-text); transition: color var(--dur-fast); }
.product-card__name a:hover { color: var(--color-accent); }
.product-card__notes { font-size: 0.75rem; color: var(--color-text-muted); letter-spacing: 0.06em; margin-bottom: 0.5rem; }
.product-card__price { font-size: 1.05rem; }

/* ── Brand Story ── */
.brand-story { overflow: hidden; }
.brand-story__inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.brand-story__media { position: relative; background: #f0ebe1; min-height: 500px; }
.brand-story__placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #e8dfd0 0%, #f5f0e5 50%, #e8dfd0 100%); }
.brand-story__media-label { position: absolute; bottom: 2rem; left: 2rem; background: rgba(255,255,255,0.85); backdrop-filter: blur(8px); padding: 0.5rem 1rem; border-radius: var(--radius-full); border: 1px solid var(--color-border); }
.brand-story__content { display: flex; flex-direction: column; justify-content: center; padding: var(--space-xl); background: var(--color-bg-alt); }
.brand-story__content .t-display-lg em { font-style: italic; color: var(--color-accent); }

/* ── Testimonials ── */
.testimonials { background: var(--color-bg); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  padding: 2rem; border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 1px 4px rgba(20,18,14,0.05);
  transition: box-shadow var(--dur-normal), transform var(--dur-normal);
}
.testimonial-card:hover { box-shadow: 0 8px 32px rgba(20,18,14,0.1); transform: translateY(-2px); }
.testimonial-card__stars { margin-bottom: 1rem; color: var(--color-accent-warm); font-size: 0.875rem; letter-spacing: 0.1em; }
.testimonial-card__quote { font-family: var(--font-display); font-size: 0.975rem; font-style: italic; color: var(--color-text); line-height: 1.65; margin-bottom: 1.5rem; }
.testimonial-card__author { display: flex; align-items: center; justify-content: space-between; }
.testimonial-card__name { font-size: 0.85rem; font-weight: 500; color: var(--color-text); }
.testimonial-card__city { font-size: 0.78rem; color: var(--color-text-muted); }

/* ── Features Band ── */
.features-band { background: var(--color-bg-alt); border-top: 1px solid var(--color-border); }
.features-band__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.feature-item { display: flex; align-items: flex-start; gap: 1rem; padding: 2.5rem 2rem; border-right: 1px solid var(--color-border); }
.feature-item:last-child { border-right: none; }
.feature-item__icon { color: var(--color-accent-warm); flex-shrink: 0; margin-top: 2px; }
.feature-item__title { font-size: 0.875rem; font-weight: 600; margin-bottom: 0.3rem; color: var(--color-text); }
.feature-item__desc { font-size: 0.78rem; color: var(--color-text-muted); line-height: 1.55; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr 300px; }
  .hero__stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero__stat:nth-child(2) { border-right: none; }
  .categories__grid { grid-template-columns: repeat(2, 1fr); }
  .features-band__grid { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(2) { border-right: none; }
  .feature-item:nth-child(3) { border-top: 1px solid var(--color-border); border-right: none; }
}
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; padding-top: 8rem; text-align: center; }
  .hero__desc { max-width: 100%; }
  .hero__actions { justify-content: center; }
  .hero__card { display: none; }
  .brand-story__inner { grid-template-columns: 1fr; }
  .brand-story__media { min-height: 300px; }
  .brand-story__content { padding: var(--space-lg) var(--gutter); }
  .testimonials__grid { grid-template-columns: 1fr; max-width: 480px; margin: 3rem auto 0; }
}
@media (max-width: 600px) {
  .products-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 1rem !important; }
}
