/* ===================== RESET & BASE ===================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --noir: #0c0b09;
  --noir-2: #14120f;
  --ink: #1c1915;
  --line: rgba(246,242,234,.09);
  --line-strong: rgba(246,242,234,.16);
  --ivory: #f5f1e7;
  --ivory-dim: #cfc9bc;
  --stone: #948c7c;
  --gold: #b8935a;
  --gold-bright: #d9b878;
  --gold-deep: #8a6a38;
  --font-display: "Cormorant Garamond", serif;
  --font-body: "Jost", sans-serif;
  --ease: cubic-bezier(.22,.9,.28,1);
}

body {
  background: var(--noir);
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; }

.grain {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: .045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.kicker {
  font-family: var(--font-body);
  font-size: 11.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 500;
  margin-bottom: 16px;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; letter-spacing: .01em; }
h1 span, h2 span { color: var(--gold-bright); font-style: italic; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 28px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), background .35s, color .35s, border-color .35s;
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: #100d09; }
.btn-gold:hover { background: var(--gold-bright); transform: translateY(-2px); }
.btn-line { border-color: var(--line-strong); color: var(--ivory); }
.btn-line:hover { border-color: var(--gold); color: var(--gold-bright); transform: translateY(-2px); }
.btn-lg { padding: 17px 34px; font-size: 13px; }
.btn-outline { border-color: var(--line-strong); color: var(--ivory); background: transparent; flex: 1; }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-bright); }
.btn-outline.added { border-color: var(--gold); color: var(--gold-bright); background: rgba(184,147,90,.1); }
.btn-whatsapp { background: #1f9455; color: #fff; padding: 12px 16px; font-size: 11.5px; }
.btn-whatsapp:hover { background: #24aa63; transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ===================== HEADER ===================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  padding: 22px 0;
  transition: background .4s var(--ease), padding .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(12,11,9,.92);
  backdrop-filter: blur(14px);
  padding: 14px 0;
  border-color: var(--line);
}
.header-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--gold-bright); }
.brand-mark { display: grid; place-items: center; }
.brand-word { font-family: var(--font-display); font-size: 22px; font-weight: 700; letter-spacing: .05em; color: var(--ivory); }
.brand-word em { color: var(--gold-bright); font-style: normal; }
.main-nav { display: flex; gap: 40px; }
.main-nav a { font-size: 13px; letter-spacing: .05em; color: var(--ivory-dim); position: relative; padding: 4px 0; transition: color .3s; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--gold-bright); transition: width .3s var(--ease); }
.main-nav a:hover { color: var(--ivory); }
.main-nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 18px; }
.icon-btn { position: relative; display: grid; place-items: center; color: var(--ivory); width: 34px; height: 34px; }
.cart-count {
  position: absolute; top: -6px; right: -8px;
  background: var(--gold); color: #100d09;
  font-size: 10px; font-weight: 700;
  width: 17px; height: 17px; border-radius: 50%;
  display: grid; place-items: center;
}
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; width: 26px; }
.menu-toggle span { display: block; height: 1px; background: var(--ivory); transition: transform .3s, opacity .3s; }
.menu-toggle.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 900px 500px at 82% 22%, rgba(184,147,90,.16), transparent 60%),
    linear-gradient(160deg, #0c0b09 0%, #100e0b 55%, #0c0b09 100%);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(115deg, transparent 62%, rgba(184,147,90,.06) 63%, transparent 64%);
}
.hero-grid {
  position: relative; z-index: 1;
  max-width: 1360px; margin: 0 auto; padding: 0 6%;
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 60px; align-items: center;
}
.hero-copy { max-width: 640px; }
.hero h1 { font-size: clamp(46px, 6vw, 76px); line-height: 1.04; margin-bottom: 26px; }
.hero-lede { color: var(--ivory-dim); font-size: 16.5px; max-width: 500px; margin-bottom: 40px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 38px; flex-wrap: wrap; }
.hero-stats div { border-left: 1px solid var(--gold-deep); padding-left: 14px; }
.hero-stats dt { font-family: var(--font-display); font-size: 27px; color: var(--gold-bright); font-weight: 600; }
.hero-stats dd { font-size: 11px; color: var(--stone); letter-spacing: .03em; margin-top: 3px; }

.hero-visual { position: relative; height: 520px; display: grid; place-items: center; }
.showcase-watch {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  animation: floatY 7s ease-in-out infinite;
}
.watch-strap-top, .watch-strap-bottom {
  width: 92px; height: 60px;
  background: linear-gradient(160deg, #2a2117, #14100a);
  border: 1px solid var(--line-strong);
}
.watch-strap-top { border-radius: 20px 20px 0 0; }
.watch-strap-bottom { border-radius: 0 0 20px 20px; }
.watch-case {
  width: 270px; height: 270px; border-radius: 50%;
  padding: 16px;
  background: conic-gradient(from 140deg, #e7cd8f, #7d602f, #e7cd8f 60%, #a1793f, #e7cd8f);
  box-shadow: 0 40px 90px rgba(0,0,0,.65), 0 0 60px rgba(184,147,90,.12);
  margin: -4px 0;
}
.watch-face {
  width: 100%; height: 100%; border-radius: 50%; position: relative;
  background: radial-gradient(circle at 40% 35%, #232019, #0a0908 75%);
  border: 6px solid #17140f;
}
.watch-brand { position: absolute; top: 30%; left: 0; right: 0; text-align: center; font-family: var(--font-display); font-size: 10px; letter-spacing: .25em; color: var(--gold-bright); }
.tick { position: absolute; background: var(--ivory-dim); }
.t12 { top: 8%; left: 50%; width: 2px; height: 16px; transform: translateX(-50%); }
.t6 { bottom: 8%; left: 50%; width: 2px; height: 16px; transform: translateX(-50%); }
.t3 { right: 8%; top: 50%; width: 16px; height: 2px; transform: translateY(-50%); }
.t9 { left: 8%; top: 50%; width: 16px; height: 2px; transform: translateY(-50%); }
.hand { position: absolute; left: 50%; bottom: 50%; transform-origin: bottom center; background: var(--ivory); border-radius: 3px; }
.hand.hour { width: 4px; height: 60px; transform: rotate(52deg); }
.hand.minute { width: 3px; height: 92px; transform: rotate(158deg); }
.hand.second { width: 1.5px; height: 100px; background: var(--gold-bright); transform: rotate(0deg); animation: spin 12s linear infinite; }
.pivot { position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--gold-bright); left: calc(50% - 4.5px); top: calc(50% - 4.5px); }

.showcase-wallet {
  position: absolute; right: 6%; bottom: 6%; z-index: 3;
  width: 190px; height: 130px; border-radius: 8px;
  background: linear-gradient(150deg, #3a2a19, #171009);
  box-shadow: 0 30px 70px rgba(0,0,0,.6);
  transform: rotate(-9deg);
  animation: floatY 8s ease-in-out infinite reverse;
}
.wallet-stitch { position: absolute; inset: 9px; border: 1px dashed rgba(184,147,90,.4); border-radius: 5px; }
.wallet-emblem { position: absolute; right: 16px; bottom: 12px; font-family: var(--font-display); font-size: 22px; color: var(--gold-bright); font-weight: 700; }

.hero-tag {
  position: absolute; left: 0; top: 8%; z-index: 3;
  background: rgba(20,18,15,.9); border: 1px solid var(--line-strong);
  padding: 14px 18px; border-radius: 6px;
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.hero-tag strong { display: block; font-size: 12px; color: var(--ivory); }
.hero-tag small { display: block; font-size: 10.5px; color: var(--stone); margin-top: 4px; }

.scroll-cue { position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); z-index: 2; }
.scroll-cue span { display: block; width: 1px; height: 40px; background: linear-gradient(var(--gold-bright), transparent); animation: scrollDown 2s ease-in-out infinite; }

@keyframes floatY { 0%,100% { transform: translateY(0) rotate(var(--r,0)); } 50% { transform: translateY(-14px) rotate(var(--r,0)); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes scrollDown { 0% { transform: scaleY(0); opacity: 0; } 40% { transform: scaleY(1); opacity: 1; } 100% { transform: scaleY(1); opacity: 0; } }

/* ===================== TRUST STRIP ===================== */
.trust-strip {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.trust-strip div {
  display: flex; align-items: center; gap: 10px;
  padding: 20px 5%; font-size: 12px; color: var(--ivory-dim);
  border-right: 1px solid var(--line);
}
.trust-strip div:last-child { border-right: 0; }
.trust-strip svg { color: var(--gold-bright); flex-shrink: 0; }

/* ===================== SHOP SECTIONS ===================== */
.shop-section { padding: 110px 6%; max-width: 1360px; margin: 0 auto; }
.shop-section.alt { background: var(--noir-2); max-width: none; padding: 110px 6%; }
.shop-section.alt .product-grid, .shop-section.alt .section-head { max-width: 1360px; margin: 0 auto; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 60px; }
.section-head h2 { font-size: clamp(36px, 4.5vw, 54px); margin-bottom: 16px; }
.section-sub { color: var(--stone); font-size: 14.5px; line-height: 1.8; }

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

.product-card {
  background: var(--ink);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: transform .5s var(--ease), border-color .4s, box-shadow .4s;
}
.product-card.in-view { opacity: 1; transform: translateY(0); }
.product-card:hover { border-color: rgba(184,147,90,.45); box-shadow: 0 24px 60px rgba(0,0,0,.5); transform: translateY(-6px); }

.product-media { position: relative; height: 250px; overflow: hidden; }
.product-badge {
  position: absolute; left: 14px; top: 14px; z-index: 2;
  background: var(--gold); color: #100d09;
  font-size: 9.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: 5px 9px; border-radius: 3px;
}
.product-visual { width: 100%; height: 100%; display: grid; place-items: center; transition: transform .5s var(--ease); }
.product-card:hover .product-visual { transform: scale(1.05); }

/* watch visual */
.pv-watch { position: relative; width: 150px; height: 150px; border-radius: 50%; padding: 10px; }
.pv-watch .pv-face { width: 100%; height: 100%; border-radius: 50%; position: relative; background: radial-gradient(circle at 40% 35%, rgba(255,255,255,.12), rgba(0,0,0,.45) 75%); border: 4px solid rgba(0,0,0,.35); }
.pv-watch .pv-face::before { content: ""; position: absolute; top: 30%; left: 0; right: 0; text-align: center; }
.pv-watch .pv-mark { position: absolute; top: 30%; left: 0; right: 0; text-align: center; font-size: 8px; letter-spacing: .2em; color: rgba(255,255,255,.75); font-family: var(--font-display); }
.pv-watch .pv-hand { position: absolute; left: 50%; bottom: 50%; transform-origin: bottom; background: rgba(255,255,255,.85); border-radius: 2px; }
.pv-watch .pv-h1 { width: 3px; height: 32px; transform: rotate(40deg); }
.pv-watch .pv-h2 { width: 2px; height: 48px; transform: rotate(150deg); }
.pv-watch .pv-dot { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: #fff; left: calc(50% - 3px); top: calc(50% - 3px); }

/* wallet visual */
.pv-wallet { position: relative; width: 165px; height: 108px; border-radius: 7px; transform: rotate(-6deg); box-shadow: 12px 20px 40px rgba(0,0,0,.5); }
.pv-wallet .pv-stitch { position: absolute; inset: 8px; border: 1px dashed rgba(255,255,255,.28); border-radius: 4px; }
.pv-wallet .pv-mono { position: absolute; right: 14px; bottom: 10px; font-family: var(--font-display); font-weight: 700; font-size: 17px; color: rgba(255,255,255,.85); }

.product-body { padding: 22px 22px 24px; }
.product-kind { font-size: 9.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 8px; }
.product-name { font-size: 21px; margin-bottom: 8px; }
.product-desc { font-size: 12.5px; color: var(--stone); line-height: 1.7; min-height: 52px; }

.color-row { display: flex; align-items: center; gap: 8px; margin: 16px 0; }
.color-label { font-size: 10px; color: var(--stone); text-transform: uppercase; letter-spacing: .06em; }
.swatches { display: flex; gap: 6px; }
.swatch {
  width: 16px; height: 16px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  cursor: pointer; transition: transform .2s, border-color .2s;
}
.swatch:hover { transform: scale(1.15); }
.swatch.active { border-color: var(--gold-bright); box-shadow: 0 0 0 2px rgba(184,147,90,.3); }
.swatch-name { font-size: 11px; color: var(--ivory-dim); margin-left: 2px; }

.product-foot { border-top: 1px solid var(--line); padding-top: 16px; }
.product-price { display: block; font-family: var(--font-display); font-size: 20px; color: var(--ivory); margin-bottom: 14px; }
.product-buttons { display: flex; gap: 8px; }
.product-buttons .btn { padding: 11px 14px; font-size: 10.5px; }

/* ===================== ABOUT ===================== */
.about-section {
  max-width: 1360px; margin: 0 auto;
  padding: 120px 6%;
  display: grid; grid-template-columns: .75fr 1.25fr;
  gap: 90px; align-items: center;
}
.about-frame {
  position: relative; height: 440px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  background: radial-gradient(circle, rgba(184,147,90,.12), transparent 65%);
}
.about-ring { position: absolute; width: 230px; height: 230px; border: 1px solid var(--gold-deep); border-radius: 50%; animation: spin 30s linear infinite; }
.about-glyph { color: var(--gold-bright); display: grid; place-items: center; }
.about-content h2, .about-copy h2 { font-size: clamp(34px, 4vw, 52px); line-height: 1.1; margin-bottom: 22px; }
.about-copy > p { color: var(--stone); font-size: 14.5px; line-height: 1.85; max-width: 600px; margin-bottom: 44px; }
.about-grid { display: grid; gap: 26px; }
.about-grid > div { display: grid; grid-template-columns: 44px 1fr; column-gap: 14px; }
.about-grid b { font-family: var(--font-display); color: var(--gold-bright); font-size: 20px; }
.about-grid h3 { grid-column: 2; font-size: 16px; margin-bottom: 6px; }
.about-grid p { grid-column: 2; color: var(--stone); font-size: 13px; line-height: 1.7; }

/* ===================== CTA ===================== */
.cta-banner {
  margin: 0 6% 120px;
  padding: 64px 60px;
  border: 1px solid rgba(184,147,90,.28);
  background: radial-gradient(circle at 88% 30%, rgba(184,147,90,.15), transparent 45%), var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 40px;
}
.cta-text h2 { font-size: clamp(32px, 3.6vw, 48px); margin-bottom: 12px; }
.cta-text p:last-child { color: var(--stone); font-size: 14px; max-width: 460px; }

/* ===================== CONTACT ===================== */
.contact-section { max-width: 1360px; margin: 0 auto; padding: 0 6% 130px; }
.contact-wrap { display: grid; grid-template-columns: .85fr 1.15fr; gap: 50px; }
.contact-cards { display: grid; gap: 18px; align-content: start; }
.contact-card { background: var(--ink); border: 1px solid var(--line); border-radius: 6px; padding: 26px; }
.contact-card svg { color: var(--gold-bright); margin-bottom: 14px; }
.contact-card strong { display: block; font-size: 13px; margin-bottom: 8px; }
.contact-card a, .contact-card span { color: var(--stone); font-size: 13px; }
.contact-card a:hover { color: var(--gold-bright); }

.contact-form { background: var(--ink); border: 1px solid var(--line); border-radius: 6px; padding: 34px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 11px; letter-spacing: .06em; text-transform: uppercase; color: var(--stone); margin-bottom: 8px; }
.field input, .field textarea {
  width: 100%; background: var(--noir); border: 1px solid var(--line-strong);
  color: var(--ivory); padding: 13px 14px; font-family: inherit; font-size: 13.5px;
  border-radius: 4px; transition: border-color .3s;
  resize: vertical;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--gold); }
.form-note { margin-top: 14px; font-size: 12.5px; color: var(--gold-bright); min-height: 16px; }

/* ===================== FOOTER ===================== */
.site-footer { border-top: 1px solid var(--line); padding: 70px 6% 30px; max-width: 1360px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; }
.footer-brand .brand-word { font-size: 22px; }
.footer-brand p { color: var(--stone); font-size: 12.5px; margin-top: 14px; max-width: 260px; line-height: 1.7; }
.footer-col h4 { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--stone); margin-bottom: 16px; }
.footer-col a { display: block; color: var(--ivory-dim); font-size: 13px; margin-bottom: 10px; transition: color .3s; }
.footer-col a:hover { color: var(--gold-bright); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 24px; display: flex; justify-content: space-between; font-size: 11.5px; color: var(--stone); }

/* ===================== CART DRAWER ===================== */
.cart-scrim { position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 1400; opacity: 0; pointer-events: none; transition: opacity .35s; }
.cart-scrim.active { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: 400px; max-width: 92vw;
  background: var(--noir-2); border-left: 1px solid var(--line-strong);
  z-index: 1500; transform: translateX(100%);
  transition: transform .45s var(--ease);
  display: flex; flex-direction: column;
}
.cart-drawer.active { transform: translateX(0); }
.cart-head { display: flex; justify-content: space-between; align-items: center; padding: 24px 24px 18px; border-bottom: 1px solid var(--line); }
.cart-head h3 { font-size: 20px; }
.cart-head button { background: none; border: 0; color: var(--ivory); }
.cart-items { flex: 1; overflow-y: auto; padding: 10px 24px; }
.cart-empty { color: var(--stone); font-size: 13px; text-align: center; padding: 60px 0; }
.cart-item { display: grid; grid-template-columns: 54px 1fr auto; gap: 12px; align-items: center; padding: 16px 0; border-bottom: 1px solid var(--line); }
.cart-item-swatch { width: 54px; height: 54px; border-radius: 6px; }
.cart-item-name { font-size: 13px; color: var(--ivory); }
.cart-item-meta { font-size: 11px; color: var(--stone); margin-top: 4px; }
.cart-item-price { font-size: 13px; color: var(--gold-bright); text-align: right; }
.cart-item-remove { grid-column: 1 / -1; justify-self: end; font-size: 10.5px; color: var(--stone); text-decoration: underline; margin-top: -6px; }
.cart-item-remove:hover { color: var(--gold-bright); }
.cart-foot { padding: 20px 24px 26px; border-top: 1px solid var(--line); }
.cart-total-row { display: flex; justify-content: space-between; font-size: 15px; margin-bottom: 18px; }
.cart-total-row strong { color: var(--gold-bright); font-family: var(--font-display); font-size: 19px; }

/* ===================== WHATSAPP FAB ===================== */
.whatsapp-fab {
  position: fixed; right: 24px; bottom: 24px; z-index: 1200;
  width: 56px; height: 56px; border-radius: 50%;
  background: #1f9455; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 14px 34px rgba(0,0,0,.45);
  animation: pulseFab 2.6s infinite;
}
@keyframes pulseFab { 0%,100% { box-shadow: 0 14px 34px rgba(0,0,0,.45); } 50% { box-shadow: 0 14px 34px rgba(31,148,85,.55); } }

/* ===================== SCROLL REVEAL (generic) ===================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1180px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { height: 420px; margin-top: 20px; }
  .hero-copy { max-width: 100%; }
  .about-section { grid-template-columns: 1fr; }
  .about-frame { height: 320px; }
  .footer-top { grid-template-columns: 1fr 1fr; row-gap: 36px; }
}

@media (max-width: 860px) {
  .main-nav { position: fixed; top: 0; right: 0; height: 100vh; width: 78%; max-width: 320px;
    background: var(--noir-2); border-left: 1px solid var(--line-strong);
    flex-direction: column; justify-content: center; align-items: flex-start;
    gap: 30px; padding: 40px; transform: translateX(100%);
    transition: transform .4s var(--ease); z-index: 950; }
  .main-nav.active { transform: translateX(0); }
  .main-nav a { font-size: 18px; }
  .menu-toggle { display: flex; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-strip div:nth-child(2) { border-right: 0; }
  .contact-wrap { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; align-items: flex-start; margin: 0 5% 90px; padding: 44px 30px; }
}

@media (max-width: 600px) {
  .header-inner { padding: 0 5%; }
  .hero { padding: 110px 0 60px; }
  .hero-grid { padding: 0 5%; }
  .hero h1 { font-size: 40px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { gap: 22px; }
  .shop-section, .shop-section.alt { padding: 80px 5%; }
  .product-grid { grid-template-columns: 1fr; }
  .about-section { padding: 80px 5%; gap: 46px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .product-buttons { flex-direction: column; }
  .cta-banner { margin: 0 5% 70px; }
}
