/* ============================================================
   SEIKOMODS.01 — Premium CSS
   Palette: #0a0a0a (black) | #f5f1ea (ivory) | #b8895a (rose gold)
   Typography: Playfair Display (headings) + Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:     #0a0a0a;
  --black-2:   #111111;
  --black-3:   #1a1a1a;
  --ivory:     #f5f1ea;
  --ivory-2:   #ede9e0;
  --ivory-3:   #d8d2c4;
  --gold:      #b8895a;
  --gold-light:#cfa778;
  --gold-dark: #9a7040;
  --white:     #ffffff;
  --text-muted:#888880;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius:    4px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --shadow:    0 8px 32px rgba(0,0,0,0.4);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.3);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--black);
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

img { display: block; max-width: 100%; height: auto; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ivory);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.1rem; }

p { color: var(--ivory-3); margin-bottom: 1rem; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---- Utility Classes ---- */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 48px 0; }

.label-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,137,90,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(245,241,234,0.4);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-ghost:hover {
  background: var(--gold);
  color: var(--black);
}

/* ---- Header / Nav ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184,137,90,0.2);
  transition: background var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ivory);
  letter-spacing: 0.05em;
}
.nav-logo span { color: var(--gold); }
.nav-logo:hover { color: var(--ivory); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory-3);
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ivory);
  font-size: 1.3rem;
  transition: color var(--transition);
  padding: 6px;
  display: flex;
  align-items: center;
}
.cart-btn:hover { color: var(--gold); }

.cart-count {
  position: absolute;
  top: 0; right: 0;
  background: var(--gold);
  color: var(--black);
  font-size: 0.6rem;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ivory);
  transition: all var(--transition);
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black-2);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(184,137,90,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(184,137,90,0.06) 0%, transparent 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content { position: relative; z-index: 1; }

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero h1 { margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: var(--gold); }

.hero-desc {
  font-size: 1.05rem;
  color: var(--ivory-3);
  max-width: 480px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-image {
  position: relative;
  z-index: 1;
}
.hero-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: var(--black-2);
  border: 1px solid rgba(184,137,90,0.3);
  border-radius: 8px;
  padding: 16px 20px;
  box-shadow: var(--shadow);
}
.hero-badge strong { display: block; color: var(--gold); font-size: 1.4rem; font-family: var(--font-head); }
.hero-badge span { font-size: 0.72rem; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; }

/* ---- USP Bar ---- */
.usp-bar {
  background: linear-gradient(90deg, var(--black-3) 0%, var(--black-2) 100%);
  border-top: 1px solid rgba(184,137,90,0.15);
  border-bottom: 1px solid rgba(184,137,90,0.15);
  padding: 28px 0;
}

.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.usp-item { display: flex; flex-direction: column; align-items: center; gap: 8px; }

.usp-icon {
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.usp-title {
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: var(--ivory);
  font-weight: 600;
}
.usp-desc { font-size: 0.78rem; color: var(--text-muted); }

/* Highlight the tracking USP */
.usp-item.featured .usp-title {
  color: var(--gold);
}
.usp-item.featured {
  border: 1px solid rgba(184,137,90,0.3);
  border-radius: 8px;
  padding: 16px 12px;
  background: rgba(184,137,90,0.05);
}

/* ---- Products Grid ---- */
.products-section { padding: 80px 0; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { max-width: 520px; margin: 0 auto; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--black-2);
  border: 1px solid rgba(245,241,234,0.06);
  border-radius: 8px;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184,137,90,0.35);
  box-shadow: var(--shadow);
}

.product-card__img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--black-3);
}
.product-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card__img img { transform: scale(1.06); }

.product-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
}

.product-card__body { padding: 20px; flex: 1; display: flex; flex-direction: column; }

.product-card__ref {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.product-card__name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  color: var(--ivory);
  margin-bottom: 8px;
}

.product-card__desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 16px;
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.product-price {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--gold);
  font-weight: 700;
}
.product-price__original {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: line-through;
  font-family: var(--font-body);
  font-weight: 400;
}

/* ---- Product Page ---- */
.product-page { padding: 64px 0; }

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.product-gallery { position: sticky; top: 88px; }
.product-gallery__main {
  border-radius: 8px;
  overflow: hidden;
  background: var(--black-2);
  aspect-ratio: 4/5;
  margin-bottom: 12px;
}
.product-gallery__main img { width: 100%; height: 100%; object-fit: cover; }

.product-info__brand {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.product-info h1 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 16px; }

.product-info__price {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 24px;
}

.product-info__desc { font-size: 0.95rem; line-height: 1.8; margin-bottom: 32px; }

.product-specs {
  background: var(--black-2);
  border: 1px solid rgba(245,241,234,0.07);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 28px;
}
.product-specs h4 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(245,241,234,0.05);
  font-size: 0.85rem;
}
.spec-row:last-child { border-bottom: none; }
.spec-row .spec-label { color: var(--text-muted); }
.spec-row .spec-val { color: var(--ivory); font-weight: 500; }

.product-actions { display: flex; flex-direction: column; gap: 12px; }
.product-actions .btn { width: 100%; justify-content: center; font-size: 0.9rem; padding: 16px; }

.tracking-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(184,137,90,0.1) 0%, rgba(184,137,90,0.05) 100%);
  border: 1px solid rgba(184,137,90,0.3);
  border-radius: 8px;
  padding: 14px 18px;
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--ivory-3);
}
.tracking-badge .ti { font-size: 1.4rem; color: var(--gold); }
.tracking-badge strong { color: var(--gold); display: block; margin-bottom: 2px; }

/* ---- Process / How It Works ---- */
.process-section { padding: 80px 0; background: var(--black-2); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.step-card {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 20px rgba(184,137,90,0.4);
}

.step-title { font-size: 1rem; margin-bottom: 8px; }
.step-desc { font-size: 0.82rem; color: var(--text-muted); }

/* ---- CTA Section ---- */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--black-3) 0%, var(--black-2) 100%);
  border-top: 1px solid rgba(184,137,90,0.15);
  text-align: center;
}
.cta-section h2 { margin-bottom: 16px; }
.cta-section p { max-width: 520px; margin: 0 auto 36px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- Testimonials ---- */
.testimonials-section { padding: 80px 0; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--black-2);
  border: 1px solid rgba(245,241,234,0.06);
  border-radius: 8px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
  border-color: rgba(184,137,90,0.25);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.stars { color: var(--gold); font-size: 1rem; letter-spacing: 3px; margin-bottom: 14px; }

.testimonial-text {
  font-style: italic;
  font-family: var(--font-head);
  font-size: 0.95rem;
  color: var(--ivory-3);
  margin-bottom: 16px;
  line-height: 1.7;
  flex: 1;
}

.testimonial-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.testimonial-author {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.testimonial-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.testimonial-verified {
  font-size: 0.68rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.testimonial-verified .ti { color: var(--gold); font-size: 0.85rem; }

.testimonials-source-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.testimonials-source-note .ti { color: var(--gold); }

/* ---- FAQ ---- */
.faq-section { padding: 80px 0; background: var(--black-2); }

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid rgba(245,241,234,0.08);
  padding: 24px 0;
}

.faq-question {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--ivory);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-question::after { content: '−'; }

.faq-answer {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding var(--transition);
}
.faq-item.open .faq-answer { max-height: 300px; padding-top: 12px; }

/* ---- Forms ---- */
.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ivory-3);
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: var(--black-2);
  border: 1px solid rgba(245,241,234,0.12);
  border-radius: var(--radius);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 12px 16px;
  transition: border-color var(--transition);
  outline: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus { border-color: var(--gold); }
.form-textarea { min-height: 140px; resize: vertical; }

/* ---- Page Banner ---- */
.page-banner {
  padding: 64px 0;
  background: linear-gradient(180deg, var(--black-2) 0%, var(--black) 100%);
  border-bottom: 1px solid rgba(184,137,90,0.15);
  text-align: center;
}
.page-banner h1 { margin-bottom: 12px; }
.page-banner p { max-width: 560px; margin: 0 auto; }

/* ---- Breadcrumb ---- */
.breadcrumb {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--ivory-3); }

/* ---- Footer ---- */
.site-footer {
  background: var(--black-2);
  border-top: 1px solid rgba(184,137,90,0.15);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand__logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--ivory);
  margin-bottom: 12px;
}
.footer-brand__logo span { color: var(--gold); }

.footer-brand p { font-size: 0.85rem; color: var(--text-muted); max-width: 300px; }

.footer-col h5 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.85rem; color: var(--text-muted); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--ivory); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(245,241,234,0.06);
  font-size: 0.78rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---- About Page ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
}

.about-image {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--black-2);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.stat-box {
  text-align: center;
  background: var(--black-2);
  border: 1px solid rgba(184,137,90,0.2);
  border-radius: 8px;
  padding: 24px 12px;
}
.stat-box strong { display: block; font-family: var(--font-head); font-size: 2rem; color: var(--gold); }
.stat-box span { font-size: 0.78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }

/* ---- Contact Page ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  padding: 80px 0;
}
.contact-info h3 { margin-bottom: 12px; }
.contact-info p { font-size: 0.9rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
  padding: 16px;
  background: var(--black-2);
  border-radius: 8px;
  border: 1px solid rgba(245,241,234,0.06);
}
.contact-item__icon { font-size: 1.3rem; color: var(--gold); margin-top: 2px; }
.contact-item h4 { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-item p { font-size: 0.88rem; margin: 0; color: var(--ivory-3); }

.contact-form {
  background: var(--black-2);
  border: 1px solid rgba(245,241,234,0.07);
  border-radius: 8px;
  padding: 40px;
}
.contact-form h3 { margin-bottom: 28px; }

/* ---- CGV Page ---- */
.legal-content { max-width: 800px; margin: 0 auto; padding: 64px 24px; }
.legal-content h2 { font-size: 1.3rem; color: var(--gold); margin: 36px 0 12px; }
.legal-content p, .legal-content li { font-size: 0.9rem; color: var(--ivory-3); line-height: 1.8; }
.legal-content ul { margin: 12px 0 12px 24px; }
.legal-content li { margin-bottom: 6px; }

/* ---- Snipcart overrides ---- */
#snipcart { display: none; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: var(--black-2);
    padding: 20px 24px;
    border-bottom: 1px solid rgba(184,137,90,0.2);
    gap: 16px;
    z-index: 999;
  }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero { min-height: 70vh; }

  .product-layout { grid-template-columns: 1fr; }
  .product-gallery { position: static; }

  .about-grid { grid-template-columns: 1fr; }
  .about-image { aspect-ratio: 16/9; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }

  .products-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  .stat-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .hero-ctas { flex-direction: column; }
}

/* ---- Animations ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-up { animation: fadeUp 0.7s ease forwards; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black-2); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
