/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 300;
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

:root {
  --bg-primary: #FAF7F2;
  --bg-secondary: #F2EBE0;
  --bg-tertiary: #E8DFD0;
  --bg-dark: #2D1F14;
  --bg-dark-2: #3A2A1C;
  --text-primary: #2D1F14;
  --text-secondary: #6B5B4D;
  --text-muted: #9A8B7C;
  --text-light: #E8DFD0;
  --text-on-dark: #F5EFE6;
  --accent-gold: #C9A962;
  --accent-gold-light: #DBC28A;
  --accent-gold-dark: #A8893F;
  --border-light: rgba(45, 31, 20, 0.1);
  --border-gold: rgba(201, 169, 98, 0.4);
  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --section-padding: clamp(80px, 10vw, 140px);
  --container-max: 1280px;
}

.serif { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.01em; }
.serif-italic { font-family: var(--font-display); font-style: italic; font-weight: 400; }
.gold { color: var(--accent-gold); }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(24px, 4vw, 48px);
}

/* ============ NAVIGATION ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 24px 0;
}
.nav.scrolled {
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 20px rgba(45, 31, 20, 0.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
}
.nav-logo span { color: var(--accent-gold); }
.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-primary);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}
.nav-link:hover { color: var(--accent-gold-dark); }
.nav-link:hover::after { width: 100%; }
.nav-cta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 28px;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold-dark);
  transition: all 0.3s ease;
}
.nav-cta:hover { background: var(--accent-gold); color: #fff; }

.hamburger {
  display: none;
  width: 32px; height: 32px;
  position: relative;
  z-index: 101;
}
.hamburger span {
  position: absolute;
  left: 4px; right: 4px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}
.hamburger span:nth-child(1) { top: 10px; }
.hamburger span:nth-child(2) { top: 15px; }
.hamburger span:nth-child(3) { top: 20px; }
.hamburger.open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(45, 31, 20, 0.98);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu .nav-link {
  color: var(--text-on-dark);
  font-size: 20px;
  font-family: var(--font-display);
  letter-spacing: 0.1em;
  text-transform: none;
}
.mobile-menu .nav-link::after { background: var(--accent-gold); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45, 31, 20, 0.75) 0%, rgba(45, 31, 20, 0.45) 50%, rgba(45, 31, 20, 0.3) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--text-on-dark);
  max-width: 800px;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-gold-light);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--accent-gold); }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero-title em { font-style: italic; font-weight: 400; color: var(--accent-gold-light); }
.hero-subtitle {
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245, 239, 230, 0.8);
  margin-bottom: 48px;
  max-width: 560px;
}
.hero-actions { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 80px; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: var(--accent-gold);
  color: #2D1F14;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: var(--accent-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 169, 98, 0.3);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  border: 1px solid rgba(245, 239, 230, 0.4);
  color: var(--text-on-dark);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.btn-outline:hover { border-color: var(--accent-gold); color: var(--accent-gold-light); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(245, 239, 230, 0.2);
  padding-top: 48px;
}
.stat-item { padding: 0 24px; border-left: 1px solid rgba(245, 239, 230, 0.15); }
.stat-item:first-child { border-left: none; padding-left: 0; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 500;
  color: var(--accent-gold-light);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 239, 230, 0.6);
  line-height: 1.5;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(245, 239, 230, 0.6);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--accent-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ============ SECTION COMMON ============ */
.section { padding: var(--section-padding) 0; }
.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent-gold-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.section-eyebrow::before { content: ''; width: 30px; height: 1px; background: var(--accent-gold); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 500;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.section-title em { font-style: italic; font-weight: 400; color: var(--accent-gold-dark); }
.section-desc { font-size: 16px; color: var(--text-secondary); max-width: 560px; line-height: 1.8; }

/* ============ ABOUT ============ */
.about { background: var(--bg-primary); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-image { width: 100%; aspect-ratio: 4/5; overflow: hidden; }
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.about-image:hover img { transform: scale(1.05); }
.about-accent-box {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 60%; aspect-ratio: 1;
  border: 1px solid var(--accent-gold);
  z-index: -1;
}
.about-text h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--text-primary);
}
.about-text p { color: var(--text-secondary); margin-bottom: 20px; line-height: 1.8; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.about-feature { padding-top: 20px; border-top: 1px solid var(--border-light); }
.about-feature-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold-dark);
  margin-bottom: 8px;
}
.about-feature-value {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text-primary);
}

/* ============ PRODUCTS ============ */
.products { background: var(--bg-secondary); }
.products-header { text-align: center; margin-bottom: 80px; }
.products-header .section-eyebrow { justify-content: center; }
.products-header .section-desc { margin: 0 auto; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.product-card {
  background: var(--bg-primary);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(45, 31, 20, 0.12);
}
.product-image { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.product-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-image img { transform: scale(1.08); }
.product-category-tag {
  position: absolute;
  top: 20px; left: 20px;
  background: var(--accent-gold);
  color: #2D1F14;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 14px;
}
.product-info { padding: 32px 28px; }
.product-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 12px;
}
.product-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.product-advantage {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--border-light);
}
.product-advantage-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(201, 169, 98, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold-dark);
  flex-shrink: 0;
}
.product-advantage-text { font-size: 13px; color: var(--text-secondary); font-weight: 500; }
.product-advantage-text strong { color: var(--text-primary); font-weight: 600; }

/* ============ WHOLESALE SERVICES ============ */
.wholesale {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}
.wholesale::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='600' height='600' viewBox='0 0 600 600' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M300 50L350 250L550 300L350 350L300 550L250 350L50 300L250 250Z' fill='none' stroke='%23C9A962' stroke-width='0.5' opacity='0.1'/%3E%3C/svg%3E");
  background-size: 400px;
  background-repeat: no-repeat;
  background-position: right center;
  opacity: 0.3;
}
.wholesale .section-title { color: var(--text-on-dark); }
.wholesale .section-title em { color: var(--accent-gold-light); }
.wholesale .section-desc { color: rgba(245, 239, 230, 0.65); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 64px;
  position: relative;
  z-index: 1;
}
.service-item {
  padding: 32px 24px;
  border: 1px solid rgba(201, 169, 98, 0.2);
  text-align: center;
  transition: all 0.4s ease;
}
.service-item:hover {
  border-color: var(--accent-gold);
  background: rgba(201, 169, 98, 0.05);
  transform: translateY(-4px);
}
.service-icon {
  width: 56px; height: 56px;
  margin: 0 auto 24px;
  border: 1px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  transform: rotate(45deg);
}
.service-icon svg { transform: rotate(-45deg); width: 24px; height: 24px; }
.service-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text-on-dark);
}
.service-desc { font-size: 13px; color: rgba(245, 239, 230, 0.55); line-height: 1.6; }

/* ============ WHY CHOOSE US ============ */
.why-us { background: var(--bg-primary); }
.why-us-header { text-align: center; margin-bottom: 80px; }
.why-us-header .section-eyebrow { justify-content: center; }
.why-us-header .section-desc { margin: 0 auto; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.feature-item {
  padding: 48px 40px;
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  transition: background 0.4s ease;
}
.feature-item:nth-child(3n) { border-right: none; }
.feature-item:nth-last-child(-n+3) { border-bottom: none; }
.feature-item:hover { background: rgba(201, 169, 98, 0.03); }
.feature-number {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--accent-gold-dark);
  font-style: italic;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.feature-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ============ CTA BANNER ============ */
.cta-banner {
  background: var(--bg-tertiary);
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.cta-banner p { color: var(--text-secondary); margin-bottom: 36px; font-size: 16px; }

/* ============ CONTACT ============ */
.contact { background: var(--bg-secondary); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 80px);
}
.contact-info-block { margin-bottom: 40px; }
.contact-info-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-gold-dark);
  margin-bottom: 12px;
}
.contact-info-value {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text-primary);
  line-height: 1.5;
}
.contact-info-value a { transition: color 0.3s ease; }
.contact-info-value a:hover { color: var(--accent-gold-dark); }

.contact-form {
  background: var(--bg-primary);
  padding: 48px;
  position: relative;
}
.contact-form::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 60px; height: 2px;
  background: var(--accent-gold);
}
.form-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.form-subtitle { font-size: 14px; color: var(--text-secondary); margin-bottom: 36px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-light);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  transition: all 0.3s ease;
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.1);
}
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-submit {
  width: 100%;
  padding: 16px 36px;
  background: var(--text-primary);
  color: var(--text-on-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-submit:hover { background: var(--accent-gold-dark); }
.form-success {
  padding: 24px;
  background: rgba(31, 138, 91, 0.08);
  border: 1px solid rgba(31, 138, 91, 0.3);
  color: #1F8A5B;
  text-align: center;
  font-size: 14px;
}

.map-section { margin-top: 80px; }
.map-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}
.map-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}
.map-link:hover { gap: 12px; }
.map-container {
  width: 100%;
  border: 1px solid var(--border-light);
  overflow: hidden;
}
.map-container iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding-top: 100px;
  padding-bottom: 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(245, 239, 230, 0.1);
}
.footer-brand p {
  color: rgba(245, 239, 230, 0.6);
  font-size: 14px;
  line-height: 1.8;
  margin: 20px 0 24px;
  max-width: 320px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-logo span { color: var(--accent-gold); }
.footer-col-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold-light);
  margin-bottom: 28px;
}
.footer-links { display: flex; flex-direction: column; gap: 14px; }
.footer-link {
  font-size: 14px;
  color: rgba(245, 239, 230, 0.6);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-link::before {
  content: '';
  width: 0; height: 1px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}
.footer-link:hover { color: var(--accent-gold-light); }
.footer-link:hover::before { width: 16px; }
.footer-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 14px;
  color: rgba(245, 239, 230, 0.7);
  line-height: 1.6;
}
.footer-contact-icon {
  width: 20px;
  flex-shrink: 0;
  color: var(--accent-gold);
  margin-top: 3px;
}
.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(245, 239, 230, 0.4);
  flex-wrap: wrap;
  gap: 16px;
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============ GOLD DIVIDER ============ */
.gold-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 24px 0;
}
.gold-divider::before, .gold-divider::after {
  content: '';
  width: 60px; height: 1px;
  background: linear-gradient(to right, transparent, var(--accent-gold));
}
.gold-divider::after { background: linear-gradient(to left, transparent, var(--accent-gold)); }
.gold-divider-diamond {
  width: 8px; height: 8px;
  background: var(--accent-gold);
  transform: rotate(45deg);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(3n) { border-right: 1px solid var(--border-light); }
  .feature-item:nth-child(2n) { border-right: none; }
  .feature-item:nth-last-child(-n+3) { border-bottom: 1px solid var(--border-light); }
  .feature-item:nth-last-child(-n+2) { border-bottom: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: block; }
  .mobile-menu { display: flex; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-item { border-left: none; padding: 0; border-top: 1px solid rgba(245, 239, 230, 0.15); padding-top: 20px; }
  .stat-item:first-child { padding-top: 20px; border-top: 1px solid rgba(245, 239, 230, 0.15); }
  .about-grid { grid-template-columns: 1fr; }
  .about-accent-box { display: none; }
  .products-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-item { border-right: none !important; }
  .feature-item:last-child { border-bottom: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { margin-bottom: 60px; }
  .scroll-indicator { display: none; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { justify-content: center; }
}
