/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: url('/images/Home%20page.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: .07;
  background-image:
    radial-gradient(circle at 20% 50%, #d4a94a 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, #b8922a 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, #a0822a 0%, transparent 35%);
  z-index: 0;
}

.hero-leaf-bg {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 64px 80px;
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-lt);
  font-size: .75rem;
  letter-spacing: .28em;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeUp .8s ease both;
}

.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  width: 30px; height: 1px;
  background: var(--gold);
  opacity: .6;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 300;
  color: #f5efe6;
  line-height: 1.08;
  margin-bottom: 28px;
  animation: fadeUp .9s .1s ease both;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-lt);
}

.hero-desc {
  color: rgba(245,239,230,.65);
  font-size: .95rem;
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 44px;
  font-weight: 300;
  animation: fadeUp 1s .2s ease both;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 1s .3s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  font-size: .82rem;
  letter-spacing: .18em;
  font-weight: 600;
  padding: 16px 36px;
  text-transform: uppercase;
  transition: background .3s, transform .2s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  min-height: 44px;
}

.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--cream);
  text-decoration: none;
  font-size: .82rem;
  letter-spacing: .18em;
  font-weight: 500;
  padding: 15px 32px;
  text-transform: uppercase;
  border: 1px solid rgba(245,239,230,.3);
  transition: border-color .3s, color .3s;
  min-height: 44px;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold-lt);
}

.hero-visual {
  display: none;
}

.hero-banner-image {
  display: none;
}

.hero-visual-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(27,62,40,.8) 0%, rgba(27,62,40,.5) 30%, rgba(27,62,40,.3) 60%, rgba(27,62,40,0) 100%),
    linear-gradient(to bottom, rgba(27,62,40,.3) 0%, rgba(27,62,40,.4) 100%);
  pointer-events: none;
  z-index: 1;
}

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--white);
  border-top: 1px solid var(--cream-dk);
  border-bottom: 1px solid var(--cream-dk);
  padding: 22px 80px;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  letter-spacing: .12em;
  font-weight: 500;
  color: var(--text-lt);
  text-transform: uppercase;
}

.trust-icon { font-size: 1.1rem; }

/* ─── SECTION SHARED ─── */
section { padding: 90px 80px; }

.section-label {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  font-size: .72rem;
  letter-spacing: .28em;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--forest);
  line-height: 1.15;
}

.section-title em { font-style: italic; color: var(--gold); }

/* ─── CATEGORIES ─── */
.categories {
  background: var(--cream);
}

.categories-header {
  text-align: center;
  margin-bottom: 56px;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cat-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--forest);
}

.cat-card-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  transition: transform .6s ease;
  filter: blur(0);
}

.cat-card:hover .cat-card-bg { transform: scale(1.08); }

.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,62,40,.85) 0%, rgba(27,62,40,.2) 60%, transparent 100%);
}

.cat-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 28px;
}

.cat-label {
  display: block;
  font-size: .7rem;
  letter-spacing: .22em;
  color: var(--gold-lt);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.cat-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 14px;
}

.cat-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-lt);
  font-size: .75rem;
  letter-spacing: .16em;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  transition: gap .3s;
}

.cat-link:hover { gap: 14px; }

.cat-count {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(184,146,42,.85);
  color: #fff;
  font-size: .65rem;
  letter-spacing: .1em;
  padding: 5px 12px;
  font-weight: 600;
  text-transform: uppercase;
}

/* backgrounds per card */
.cat-card:nth-child(1) .cat-card-bg { background: radial-gradient(circle at 50% 40%, #2d5a3e 0%, #1b3e28 100%); }
.cat-card:nth-child(2) .cat-card-bg { background: radial-gradient(circle at 50% 40%, #3d4a2a 0%, #263318 100%); }
.cat-card:nth-child(3) .cat-card-bg { background: radial-gradient(circle at 50% 40%, #4a3020 0%, #2e1e12 100%); }

/* ─── FEATURED PRODUCTS ─── */
.products {
  background: var(--white);
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 20px;
}

.filter-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.filter-tab {
  border: 1px solid var(--cream-dk);
  background: none;
  padding: 8px 18px;
  font-family: 'Jost', sans-serif;
  font-size: .75rem;
  letter-spacing: .14em;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--text-lt);
  transition: all .25s;
}

.filter-tab.active, .filter-tab:hover {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--cream-dk);
  cursor: pointer;
  transition: box-shadow .3s, transform .3s;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.product-card:hover {
  box-shadow: 0 12px 48px rgba(27,62,40,.12);
  transform: translateY(-4px);
}

.product-img-wrap {
  aspect-ratio: 1;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4.5rem;
  position: relative;
  overflow: hidden;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1);
}

.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  font-size: .62rem;
  letter-spacing: .12em;
  font-weight: 600;
  text-transform: uppercase;
  padding: 4px 10px;
}

.badge-new { background: var(--forest); color: var(--cream); }
.badge-hot { background: var(--gold); color: #fff; }
.badge-sale { background: #8b3a3a; color: #fff; }

.product-wishlist {
  position: absolute;
  top: 14px; right: 14px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--cream-dk);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  cursor: pointer;
  transition: background .25s;
  opacity: 0;
  transition: opacity .3s;
}

.product-card:hover .product-wishlist { opacity: 1; }
.product-wishlist:hover { background: #fff0f0; }

.product-info {
  padding: 18px 20px 20px;
}

.product-category {
  font-size: .68rem;
  letter-spacing: .18em;
  color: var(--gold);
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  line-height: 1.2;
}

.product-weight {
  font-size: .72rem;
  color: var(--text-lt);
  letter-spacing: .1em;
  margin-bottom: 12px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--forest);
}

.product-price-old {
  font-size: .85rem;
  color: var(--sand);
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 6px;
}

.add-to-cart {
  background: var(--forest);
  color: var(--cream);
  border: none;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background .25s, transform .2s;
  border-radius: 2px;
}

.add-to-cart:hover { background: var(--gold); transform: scale(1.08); }

.product-rating {
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
}

.star { color: var(--gold); font-size: .75rem; }
.star.empty { color: var(--cream-dk); }

/* ─── PROCESS ─── */
.process {
  background: var(--cream-dk);
  text-align: center;
}

.process-header { margin-bottom: 60px; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 38px; left: 12%;
  width: 76%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), var(--gold), transparent);
  opacity: .3;
}

.process-step {
  position: relative;
}

.process-icon-wrap {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--cream-dk);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  transition: border-color .3s, transform .3s;
}

.process-step:hover .process-icon-wrap {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.process-num {
  position: absolute;
  top: -6px; right: -6px;
  width: 22px; height: 22px;
  background: var(--gold);
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.process-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 10px;
}

.process-step-desc {
  font-size: .82rem;
  color: var(--text-lt);
  line-height: 1.75;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  background: var(--white);
  text-align: center;
}

.testimonials-header { margin-bottom: 56px; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--cream);
  padding: 36px 32px;
  border-radius: 3px;
  border: 1px solid var(--cream-dk);
  text-align: left;
  position: relative;
  transition: box-shadow .3s;
}

.testi-card:hover {
  box-shadow: 0 8px 40px rgba(27,62,40,.08);
}

.testi-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: var(--gold);
  line-height: .5;
  margin-bottom: 20px;
  opacity: .5;
}

.testi-text {
  font-size: .9rem;
  color: var(--text-lt);
  line-height: 1.85;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--forest);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testi-name {
  font-weight: 600;
  font-size: .85rem;
  color: var(--text);
}

.testi-loc {
  font-size: .72rem;
  color: var(--text-lt);
  letter-spacing: .08em;
  margin-top: 2px;
}

.testi-stars {
  position: absolute;
  top: 32px; right: 28px;
  display: flex; gap: 2px;
}


/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .hero {
    min-height: clamp(620px, calc(100svh - 72px), 760px);
    background-attachment: scroll;
    background-position: right center;
    background-size: cover;
    background-color: transparent;
    align-items: flex-end;
  }
  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(5, 20, 12, .95) 0%, rgba(5, 20, 12, .85) 40%, rgba(5, 20, 12, .3) 100%);
    z-index: 1;
    pointer-events: none;
  }
  .hero-bg-pattern {
    display: none;
  }
  .hero-content {
    padding: 32px 24px;
    max-width: 100%;
    margin: 0 16px 20px;
    border: none;
    background: transparent;
  }
  .hero-title { font-size: clamp(2.2rem, 9vw, 3.2rem); line-height: 1.1; margin-bottom: 16px; }
  .hero-desc { max-width: 100%; font-size: .88rem; margin-bottom: 24px; color: rgba(245,239,230,.85); line-height: 1.75; }
  .hero-eyebrow { letter-spacing: .16em; line-height: 1.4; flex-wrap: wrap; font-size: .72rem; }
  .hero-cta-row { gap: 12px; }
  .btn-primary, .btn-outline { padding: 12px 24px; font-size: .78rem; min-height: 40px; }
  .cat-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar { padding: 20px 32px; gap: 30px; }
  .newsletter { padding: 60px 32px; }
}

@media (max-width: 600px) {
  .hero {
    min-height: clamp(560px, calc(100svh - 70px), 680px);
    background-position: right center;
    background-size: cover;
    background-color: transparent;
  }
  .hero-bg-pattern {
    display: none;
  }
  .hero-content { padding: 24px 16px; margin: 0 12px 16px; }
  .hero-eyebrow { letter-spacing: .12em; gap: 6px; font-size: .64rem; }
  .hero-eyebrow::before, .hero-eyebrow::after { width: 14px; }
  .hero-title { font-size: clamp(1.8rem, 8.5vw, 2.6rem); line-height: 1.1; margin-bottom: 14px; }
  .hero-desc { font-size: .82rem; line-height: 1.65; margin-bottom: 18px; }
  .hero-cta-row { flex-direction: column; align-items: stretch; gap: 10px; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; padding: 11px 16px; font-size: .75rem; min-height: 38px; }
  section { padding: 50px 16px; }
  .trust-bar { padding: 14px 16px; gap: 12px; justify-content: flex-start; }
  .trust-item { width: 100%; font-size: .66rem; letter-spacing: .08em; }
  .categories-header,
  .products-header,
  .process-header,
  .testimonials-header { margin-bottom: 32px; }
  .products-header { align-items: flex-start; gap: 12px; }
  .process-grid { grid-template-columns: 1fr; gap: 18px; }
  .process-icon-wrap { width: 60px; height: 60px; font-size: 1.6rem; }
  .testi-card { padding: 20px 16px; }
  .products-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-input, .newsletter-btn { border: 1px solid rgba(212,169,74,.3); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow,
  .hero-title,
  .hero-desc,
  .hero-cta-row {
    animation: none;
  }
}
