/* =============================================
   WoolPrestige — Premium Green & Gold Style
   ============================================= */

:root {
  --green-dark:   #1E3A1E;
  --green-mid:    #2D4F2D;
  --green-light:  #3A6B3A;
  --gold:         #D4A853;
  --gold-light:   #F0CF7A;
  --gold-dark:    #B8892A;
  --gold-grad:    linear-gradient(135deg, #D4A853, #F0CF7A, #B8892A);
  --cream:        #FAF7F0;
  --cream-2:      #F3EFE5;
  --white:        #FFFFFF;
  --gray-300:     #D4CFC8;
  --gray-500:     #8A8278;
  --gray-700:     #4A4540;
  --black:        #1A1612;
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.16);
  --shadow-gold:  0 6px 24px rgba(212,168,83,0.28);
  --radius:       4px;
  --radius-md:    8px;
  --radius-lg:    12px;
  --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--cream);
  color: var(--gray-700);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }

/* ---- TYPOGRAPHY ---- */
.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--green-dark);
  line-height: 1.2;
}
.gold-text { color: var(--gold); }
.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-sub {
  font-size: 1rem;
  color: var(--gray-500);
  margin-top: 12px;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.title-divider {
  display: flex;
  justify-content: center;
  margin: 14px 0 0;
}
.title-divider.left { justify-content: flex-start; }
.title-divider span {
  display: block;
  width: 56px;
  height: 2px;
  background: var(--gold-grad);
  border-radius: 2px;
}

/* ---- BUTTONS ---- */
.btn { display: inline-flex; align-items: center; gap: 6px; border: none; cursor: pointer; font-family: inherit; font-weight: 600; letter-spacing: 0.1em; font-size: 0.78rem; border-radius: var(--radius); transition: var(--transition); }

.btn-gold-filled {
  background: var(--gold-grad);
  color: var(--green-dark);
  padding: 14px 32px;
  box-shadow: var(--shadow-gold);
}
.btn-gold-filled:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(212,168,83,0.4); filter: brightness(1.05); }

.btn-gold-outline {
  background: transparent;
  color: var(--gold-light);
  border: 1.5px solid var(--gold);
  padding: 12px 28px;
}
.btn-gold-outline:hover { background: rgba(212,168,83,0.12); transform: translateY(-2px); }

.btn-full { width: 100%; justify-content: center; padding: 16px; font-size: 0.82rem; }

/* ---- REVEAL ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================
   TOP BAR
   ============================================ */
.topbar {
  background: var(--green-dark);
  color: rgba(255,255,255,0.65);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.topbar .sep { opacity: 0.3; }
.topbar a { color: var(--gold-light); }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green-dark);
  border-bottom: 1px solid rgba(212,168,83,0.15);
  transition: var(--transition);
  padding: 0;
}
.site-header.scrolled {
  background: rgba(30,58,30,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}

/* Logo */
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-svg { display: block; height: 52px; width: auto; }
.logo-light .logo-svg { filter: brightness(1.05); }

/* Nav */
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: var(--transition);
  border-bottom: 2px solid transparent;
}
.nav a:hover, .nav a.active { color: var(--gold-light); border-bottom-color: var(--gold); }

/* Header icons */
.header-icons { display: flex; align-items: center; gap: 4px; }
.header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius);
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
  position: relative;
}
.header-icon:hover { color: var(--gold-light); background: rgba(255,255,255,0.06); }
.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 36px;
  height: 36px;
  justify-content: center;
  align-items: center;
}
.burger span { display: block; width: 20px; height: 1.5px; background: rgba(255,255,255,0.8); border-radius: 2px; transition: var(--transition); transform-origin: center; }
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--green-dark);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.85);
  padding: 10px 28px;
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--gold-light); }

/* ============================================
   LOGO WORDMARK
   ============================================ */
.logo-wordmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-left: 10px;
  white-space: nowrap;
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero { position: relative; overflow: hidden; }

/* Slider container */
.slider {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
}
@media (min-height: 700px) { .slider { height: 680px; } }
@media (max-width: 768px)  { .slider { height: 520px; } }

/* Individual slides */
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
}
.slide.active { opacity: 1; z-index: 1; }

/* Dark overlay per slide */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,30,15,0.88) 0%, rgba(15,30,15,0.52) 55%, rgba(15,30,15,0.12) 100%);
  z-index: 0;
}

/* Slide text content */
.slide-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  padding: 80px 0;
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

/* Keep old class names working as fallback */
.hero-slides { position: relative; }
.hero-slide {
  min-height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20,38,20,0.82) 0%, rgba(20,38,20,0.45) 55%, rgba(20,38,20,0.1) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 580px;
  padding: 80px 0;
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
  opacity: 0.85;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 20px;
}
.hero-title .gold-text { color: var(--gold-light); }
.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(30,58,30,0.6);
  border: 1px solid rgba(212,168,83,0.3);
  color: var(--gold-light);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-prev { left: 20px; }
.hero-next { right: 20px; }
.hero-arrow:hover { background: rgba(212,168,83,0.25); border-color: var(--gold); }

/* ============================================
   FEATURES STRIP
   ============================================ */
.features-strip {
  background: var(--white);
  border-bottom: 1px solid var(--cream-2);
  padding: 28px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-right: 1px solid var(--cream-2);
}
.feature-item:last-child { border-right: none; }
.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(212,168,83,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-item strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green-dark);
  line-height: 1.3;
  margin-bottom: 3px;
}
.feature-item span {
  font-size: 0.72rem;
  color: var(--gray-500);
}

/* ============================================
   CATALOG
   ============================================ */
.catalog {
  padding: 80px 0;
  background: var(--cream);
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-2);
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.product-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-2);
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30,58,30,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }
.btn-overlay {
  background: var(--gold-grad);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 10px 22px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-overlay:hover { filter: brightness(1.1); transform: scale(1.04); }

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: var(--radius);
  background: var(--gold-grad);
  color: var(--green-dark);
}
.badge-new { background: linear-gradient(135deg, #4a9a5a, #2d7a3a); color: var(--white); }
.badge-prem { background: linear-gradient(135deg, #6a6060, #9a8a80); color: var(--white); }

.product-body { padding: 20px; }
.product-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.product-body p {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 14px;
}
.product-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.product-link:hover { color: var(--gold); gap: 8px; }

/* ============================================
   ABOUT + WHY
   ============================================ */
.about-section {
  padding: 80px 0;
  background: var(--white);
}
.about-inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: start;
}
.about-dark-panel {
  background: var(--green-dark);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  color: rgba(255,255,255,0.75);
}
.about-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.about-dark-panel > p {
  font-size: 0.92rem;
  line-height: 1.75;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.65);
}
.about-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  padding: 20px 0;
  border-top: 1px solid rgba(212,168,83,0.15);
  border-bottom: 1px solid rgba(212,168,83,0.15);
}
.about-stat strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1;
}
.about-stat span {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  margin-top: 4px;
  display: block;
}

.about-why { padding-top: 8px; }
.about-why .section-title { margin-bottom: 8px; }
.about-why .title-divider { margin-bottom: 24px; }
.why-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}
.why-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--gray-700);
}
.about-img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  opacity: 0.85;
}

/* ============================================
   BENEFITS STRIP
   ============================================ */
.benefits-strip {
  background: var(--cream-2);
  border-top: 1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-300);
  padding: 28px 0;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-right: 1px solid var(--gray-300);
}
.benefit-item:last-child { border-right: none; }
.benefit-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-item strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green-dark);
  margin-bottom: 3px;
}
.benefit-item span {
  font-size: 0.72rem;
  color: var(--gray-500);
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews {
  padding: 80px 0;
  background: var(--cream);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  border: 1px solid var(--cream-2);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 20px;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-grad);
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: 0.88rem; color: var(--green-dark); }
.review-author span { font-size: 0.76rem; color: var(--gray-500); }

/* ============================================
   COMMUNITY
   ============================================ */
.community {
  padding: 80px 0;
  background: var(--white);
}
.community-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.community-text .section-title { margin-bottom: 8px; }
.community-text .title-divider { margin-bottom: 20px; }
.community-text > p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 24px;
}
.community-perks { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.community-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gray-700);
}
.community-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 80px 0;
  background: var(--cream);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--cream-2);
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--green-dark);
  text-transform: uppercase;
}
.form-group input {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--black);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px rgba(212,168,83,0.1); }
.form-group input::placeholder { color: var(--gray-300); }
.form-note { font-size: 0.72rem; color: var(--gray-300); text-align: center; }

.contact-info { padding-top: 8px; }
.contact-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--green-dark);
  margin-bottom: 8px;
}
.contact-items { display: flex; flex-direction: column; gap: 18px; margin-top: 24px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--gray-700);
}
.contact-item a { color: var(--gray-700); transition: var(--transition); }
.contact-item a:hover { color: var(--gold); }

/* ============================================
   FOOTER
   ============================================ */
.footer-top {
  background: var(--green-dark);
  padding: 56px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.4fr;
  gap: 40px;
}
.footer-brand .logo-name { color: var(--gold-light); }
.footer-brand > p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin: 16px 0 24px;
  max-width: 240px;
}
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(212,168,83,0.25);
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-links a:hover { border-color: var(--gold); color: var(--gold-light); background: rgba(212,168,83,0.08); }

.footer-col h4 {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.footer-col a, .footer-col span {
  display: block;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  background: rgba(0,0,0,0.25);
  padding: 16px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.3); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .catalog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-item:nth-child(3) { border-right: none; }
  .about-inner { grid-template-columns: 1fr; }
  .about-dark-panel { max-width: 480px; }
}

@media (max-width: 768px) {
  .topbar { font-size: 0.7rem; gap: 8px; }
  .nav { display: none; }
  .header-icons { display: none; }
  .burger { display: flex; }

  .hero-slide { min-height: 480px; }
  .hero-content { padding: 60px 0; }
  .hero-title { font-size: clamp(2.2rem, 9vw, 3rem); }
  .hero-desc { font-size: 0.9rem; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(2) { border-right: none; }
  .feature-item:nth-child(3) { border-right: 1px solid var(--cream-2); }
  .feature-item:nth-child(4) { border-right: none; }
  .catalog-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-item:nth-child(2) { border-right: none; }
  .community-inner { grid-template-columns: 1fr; }
  .community-img { display: none; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .about-inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .catalog-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--cream-2); }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-item { border-right: none; border-bottom: 1px solid var(--gray-300); }
  .footer-grid { grid-template-columns: 1fr; }
  .section-header { margin-bottom: 32px; }
}
