/* ===== VARIABLES ===== */
:root {
  --bg:       #FAF7F2;
  --bg-alt:   #F0E8DC;
  --text:     #1E1E1E;
  --muted:    #6B6B6B;
  --gold:     #C4922A;
  --gold-lt:  #D4A843;
  --dark:     #0D0D0D;
  --dark-2:   #1A1614;
  --white:    #FFFFFF;

  --f-head: 'Outfit', 'DM Sans', system-ui, sans-serif;
  --f-body: 'DM Sans', system-ui, sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,.09);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.15);
  --r:  8px;
  --rl: 16px;

  --nav-h: 76px;
  --max-w: 1200px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ===== LAYOUT ===== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ===== TYPE ===== */
.eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.h2 {
  font-family: var(--f-head);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.h2.light { color: var(--white); }

.grad-text {
  background: linear-gradient(120deg, var(--gold) 0%, #E8B84B 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.lead { font-size: 1.05rem; color: var(--muted); line-height: 1.78; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r);
  font-family: var(--f-body);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .2s, border-color .2s, transform .15s, box-shadow .2s;
}
.btn-gold {
  background: linear-gradient(135deg, #C4922A 0%, #D4A843 50%, #C4922A 100%);
  background-size: 200% auto;
  color: var(--white);
  border-color: transparent;
}
.btn-gold:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,146,42,.4);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
  transform: translateY(-1px);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .16s; }
.d3 { transition-delay: .24s; }
.d4 { transition-delay: .32s; }
.d5 { transition-delay: .40s; }
.d6 { transition-delay: .48s; }

/* ===== NAV ===== */
#nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(13,13,13,.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .3s, box-shadow .3s;
}
#nav.scrolled {
  background: rgba(13,13,13,.95);
  box-shadow: 0 4px 30px rgba(0,0,0,.55);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-brand img {
  height: 50px;
  width: 50px;
  object-fit: cover;
  border-radius: 0;
}
.nav-brand-text {
  font-family: var(--f-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.25;
}
.nav-brand-text small {
  display: block;
  font-family: var(--f-body);
  font-size: .65rem;
  font-weight: 400;
  color: rgba(255,255,255,.32);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.68);
  letter-spacing: .02em;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width .2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: #111;
  border-top: 1px solid rgba(196,146,42,.2);
  z-index: 99;
  padding: 8px 0 20px;
}
#mobile-menu.open { display: block; }
#mobile-menu a {
  display: block;
  padding: 14px 24px;
  font-size: .95rem;
  font-weight: 500;
  color: rgba(255,255,255,.72);
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color .2s, background .2s;
}
#mobile-menu a:hover { color: var(--gold); background: rgba(255,255,255,.03); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1920&q=85') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg,
    rgba(13,13,13,.9) 0%,
    rgba(13,13,13,.65) 55%,
    rgba(13,13,13,.25) 100%);
}
.hero-body {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: var(--nav-h);
}
.hero-content {
  max-width: 620px;
  padding: 70px 0 90px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(196,146,42,.1);
  border: 1px solid rgba(196,146,42,.35);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 28px;
}
.hero h1 {
  font-family: var(--f-head);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -.03em;
  margin-bottom: 22px;
}
.hero h1 .hl {
  background: linear-gradient(120deg, var(--gold) 0%, #F0C060 60%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero p {
  font-size: clamp(.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,.7);
  line-height: 1.78;
  margin-bottom: 36px;
  max-width: 500px;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== HIGHLIGHTS ===== */
.highlights {
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}
.highlights::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 200px;
  background: radial-gradient(ellipse at center, rgba(196,146,42,.12) 0%, transparent 70%);
  pointer-events: none;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
}
.highlight-item {
  padding: 56px 40px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
}
.highlight-item:last-child { border-right: none; }
.highlight-num {
  font-family: var(--f-head);
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -.02em;
  background: linear-gradient(135deg, var(--gold) 0%, #F0C060 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.highlight-lbl {
  font-size: .82rem;
  color: rgba(255,255,255,.38);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* ===== ABOUT ===== */
.about { padding: 110px 0; background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text .lead { margin-bottom: 14px; }
.about-text .lead:last-of-type { margin-bottom: 32px; }
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--rl);
  box-shadow: var(--shadow-md);
}
.about-badge {
  position: absolute;
  bottom: -22px; left: -22px;
  background: linear-gradient(135deg, #C4922A 0%, #D4A843 100%);
  color: var(--white);
  padding: 22px 26px;
  border-radius: var(--r);
  box-shadow: 0 8px 32px rgba(196,146,42,.4);
  text-align: center;
  line-height: 1.2;
}
.about-badge strong {
  display: block;
  font-family: var(--f-head);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -.02em;
}
.about-badge span {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  opacity: .88;
}

/* ===== PRODUCTS ===== */
.products { padding: 110px 0; background: var(--bg-alt); }
.section-hd { text-align: center; margin-bottom: 60px; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--rl);
  padding: 36px 28px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, #F0C060 50%, var(--gold) 100%);
  opacity: 0;
  transition: opacity .25s;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.product-card:hover::before { opacity: 1; }
.product-card:last-child:nth-child(3n+1) { grid-column: 2; }
.product-icon {
  width: 52px; height: 52px;
  background: rgba(196,146,42,.1);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.product-icon svg {
  width: 26px; height: 26px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.product-card h3 {
  font-family: var(--f-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.product-card p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ===== TRUSTED BY ===== */
.trusted-by {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding: 16px 20px;
  background: rgba(196,146,42,.07);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r) var(--r) 0;
}
.trusted-label {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  white-space: nowrap;
}
.trusted-names {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.trusted-names span {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
  background: var(--white);
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 100px;
  padding: 4px 12px;
}

/* ===== BRANDS ===== */
.brands { padding: 90px 0; background: var(--bg-alt); }
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
.brand-chip {
  padding: 14px 26px;
  border: 1.5px solid rgba(196,146,42,.28);
  border-radius: 100px;
  font-family: var(--f-head);
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark);
  background: var(--white);
  letter-spacing: .01em;
  transition: border-color .2s, background .2s, color .2s, transform .15s;
  cursor: default;
}
.brand-chip:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 110px 0;
  background: radial-gradient(ellipse at 50% 0%, #1A1614 0%, #0D0D0D 60%);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c4922a' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: .4;
  pointer-events: none;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.testi-card {
  background: linear-gradient(135deg, rgba(255,255,255,.07) 0%, rgba(255,255,255,.03) 100%);
  border: 1px solid rgba(196,146,42,.18);
  border-radius: var(--rl);
  padding: 32px 28px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.testi-card:hover {
  transform: translateY(-4px);
  border-color: rgba(196,146,42,.4);
  box-shadow: 0 12px 40px rgba(196,146,42,.1);
}
.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.stars svg { width: 15px; height: 15px; fill: var(--gold); }
.testi-quote {
  font-size: .92rem;
  color: rgba(255,255,255,.7);
  line-height: 1.78;
  font-style: italic;
  margin-bottom: 24px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(196,146,42,.12);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: .85rem;
  color: var(--gold);
  flex-shrink: 0;
}
.testi-name { font-size: .88rem; font-weight: 600; color: var(--white); }
.testi-src  { font-size: .75rem; color: rgba(255,255,255,.28); }

/* ===== REVIEWS CTA ===== */
.reviews-cta {
  position: relative;
  text-align: center;
  margin-top: 48px;
}

/* ===== WHY CHOOSE US ===== */
.why { padding: 110px 0; background: var(--bg); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border-radius: var(--rl);
  padding: 36px 28px;
  border: 1px solid rgba(0,0,0,.06);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.why-icon {
  width: 56px; height: 56px;
  background: rgba(196,146,42,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.why-icon svg {
  width: 26px; height: 26px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.why-card h3 {
  font-family: var(--f-head);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.why-card p {
  font-size: .88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact { padding: 110px 0; background: var(--bg-alt); }

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 680px;
  margin: 0 auto 40px;
}
.contact-card {
  background: var(--white);
  border-radius: var(--rl);
  padding: 44px 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(0,0,0,.05);
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #F0C060, var(--gold));
  opacity: 0;
  transition: opacity .25s;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.contact-card:hover::before { opacity: 1; }
.contact-card-icon {
  width: 60px; height: 60px;
  background: rgba(196,146,42,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.contact-card-icon svg {
  width: 26px; height: 26px;
  stroke: var(--gold); fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-card-label {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
}
.contact-card-value {
  font-family: var(--f-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -.01em;
}

.contact-secondary {
  display: flex;
  gap: 48px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.ci-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ci-icon {
  width: 40px; height: 40px;
  background: rgba(196,146,42,.1);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ci-icon svg {
  width: 18px; height: 18px;
  stroke: var(--gold); fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ci-text strong {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 3px;
}
.ci-text span, .ci-text a { font-size: .92rem; color: var(--text); }
.ci-text a:hover { color: var(--gold); }

.contact-map {
  border-radius: var(--rl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 320px;
}
.contact-map iframe { width: 100%; height: 100%; border: 0; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(196,146,42,.1);
  padding: 64px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 28px;
}
.footer-tagline {
  font-size: .88rem;
  color: rgba(255,255,255,.35);
  line-height: 1.72;
  margin-top: 14px;
  max-width: 270px;
}
.footer-col h4 {
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.28);
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a, .footer-col span {
  font-size: .88rem;
  color: rgba(255,255,255,.42);
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-btm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: .75rem;
  color: rgba(255,255,255,.2);
}
.footer-btm a { color: rgba(196,146,42,.5); transition: color .2s; }
.footer-btm a:hover { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > :first-child { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .about, .products, .brands, .testimonials, .why, .contact { padding-top: 72px; padding-bottom: 72px; }
  .section-hd { margin-bottom: 40px; }

  .highlights-grid { grid-template-columns: 1fr; }
  .highlight-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.06); }
  .highlight-item:last-child { border-bottom: none; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img-wrap img { height: 320px; }
  .about-badge { bottom: -16px; left: 16px; }

  .products-grid { grid-template-columns: 1fr 1fr; }
  .product-card:last-child:nth-child(3n+1) { grid-column: auto; }

  .testi-grid { grid-template-columns: 1fr; }

  .why-grid { grid-template-columns: 1fr 1fr; }

  .contact-cards { grid-template-columns: 1fr; max-width: 400px; }
  .contact-secondary { flex-direction: column; gap: 20px; align-items: flex-start; padding: 0 0 0 8px; }

  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-top > :first-child { grid-column: span 1; }
  .footer-btm { flex-direction: column; text-align: center; }
}

@media (max-width: 520px) {
  .products-grid { grid-template-columns: 1fr; }
  .product-card:last-child:nth-child(3n+1) { grid-column: auto; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .contact-card-value { font-size: 1.05rem; }
}
