/* ==========================================
   ZNP Cut & Edge — Stylesheet
   Dark luxury, gold accents, editorial typography
   ========================================== */

:root {
  --ink: #0f0e0c;
  --ink-2: #1a1814;
  --ink-3: #272420;
  --paper: #f7f3ec;
  --paper-2: #efe8dc;
  --cream: #ede4d1;
  --gold: #c9a961;
  --gold-hi: #e0c57f;
  --gold-dark: #8a7238;
  --muted: #8a8379;
  --line: rgba(201, 169, 97, 0.18);
  --line-dark: rgba(247, 243, 236, 0.08);
  --serif: 'Fraunces', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --r: 2px;
  --maxw: 1240px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--gold-dark); }

ul { list-style: none; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ============ TYPOGRAPHY ============ */

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--ink);
}

h1 { font-size: clamp(2.6rem, 6vw, 5.4rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 400; }
h3 { font-size: 1.4rem; font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 500; font-family: var(--sans); letter-spacing: 0.02em; }
h5 { font-size: 0.82rem; font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.18em; font-weight: 500; margin-bottom: 1.2rem; }

.serif-italic { font-style: italic; font-weight: 300; }

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 1.2rem;
  padding-left: 2.4rem;
  position: relative;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 2rem; height: 1px;
  background: var(--gold);
}
.eyebrow.gold { color: var(--gold); }
.section-dark .eyebrow { color: var(--gold-hi); }
.section-dark .eyebrow::before { background: var(--gold); }

.gold { color: var(--gold-dark); font-style: italic; font-weight: 300; }

.muted { color: var(--muted); }
.small { font-size: 0.9rem; }
.lead { font-size: 1.15rem; color: #4a4640; margin-top: 1.2rem; max-width: 540px; }

/* ============ BUTTONS ============ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .3s cubic-bezier(.2,.7,.2,1);
  border-radius: var(--r);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-hi); border-color: var(--gold-hi); color: var(--ink); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(15,14,12,.3);
}
.btn-ghost:hover { border-color: var(--ink); color: var(--ink); }

.section-dark .btn-ghost { color: var(--paper); border-color: rgba(247,243,236,.25); }
.section-dark .btn-ghost:hover { border-color: var(--gold); color: var(--gold-hi); }

.btn-dark {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.btn-dark:hover { background: var(--ink-3); color: var(--gold-hi); }

.link-arrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  margin-top: 1rem;
  color: var(--ink);
}
.link-arrow:hover { color: var(--gold-dark); }

/* ============ TOPBAR ============ */

.topbar {
  background: var(--ink);
  color: var(--paper-2);
  font-size: 0.78rem;
  border-bottom: 1px solid var(--line-dark);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 42px;
  gap: 20px;
}
.topbar-contact { display: flex; gap: 24px; }
.topbar-contact a { color: var(--paper-2); opacity: 0.8; }
.topbar-contact a:hover { color: var(--gold-hi); opacity: 1; }
.ico { color: var(--gold); margin-right: 6px; }
.topbar-meta { color: var(--muted); letter-spacing: 0.15em; text-transform: uppercase; font-size: 0.7rem; }

/* ============ NAV ============ */

.nav {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(247, 243, 236, 0.96);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 40px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.brand-mark {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}
.brand-sub {
  font-family: var(--sans);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold-dark);
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 38px;
  margin-left: auto;
  margin-right: 32px;
}
.nav-links a {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold-dark); }

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--ink);
}

/* ============ HERO ============ */

.hero {
  position: relative;
  padding: 100px 0 120px;
  background: var(--paper);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  top: 0; right: -5%;
  width: 55%; height: 100%;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(201,169,97,.18), transparent 60%),
    linear-gradient(135deg, #1a1814 0%, #0f0e0c 100%);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(201,169,97,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.5;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-copy .hero-actions {
  margin-top: 2.4rem;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  max-width: 520px;
}
.hero-stats > div { display: flex; flex-direction: column; gap: 4px; }
.hero-stats strong {
  font-family: var(--serif);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--gold-dark);
}
.hero-stats span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}

.hero-visual {
  position: relative;
  height: 520px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 14px;
}
.swatch {
  border-radius: var(--r);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.4);
}
.swatch::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.22) 0%, transparent 45%, transparent 55%, rgba(255,255,255,.08) 100%);
}
.swatch-1 {
  grid-row: 1 / 3;
  background: linear-gradient(135deg, #1a1814 0%, #0a0908 100%);
}
.swatch-2 {
  background: linear-gradient(135deg, #d4b77e 0%, #8a7238 100%);
}
.swatch-3 {
  background: linear-gradient(135deg, #f7f3ec 0%, #d7ceba 100%);
}
.swatch-label {
  position: absolute;
  bottom: -30px; right: 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--muted);
}

/* ============ SECTIONS ============ */

.section {
  padding: 110px 0;
  position: relative;
}

.section-dark {
  background: var(--ink);
  color: var(--paper);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--paper); }
.section-dark .muted { color: rgba(247,243,236,.6); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 70px;
}
.section-head .eyebrow { padding-left: 0; padding-right: 0; }
.section-head .eyebrow::before { display: none; }
.section-head p { margin-top: 1rem; }

.section-cta {
  text-align: center;
  margin-top: 60px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.grid-2.reverse > *:first-child { order: 1; }
.grid-2.reverse > *:last-child { order: 0; }

/* ============ FEATURE LIST ============ */

.feature-list { display: flex; flex-direction: column; gap: 28px; }
.feature-list li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list .dot {
  flex: none;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  margin-top: 10px;
  box-shadow: 0 0 0 4px rgba(201,169,97,.15);
}
.feature-list h4 { margin-bottom: 4px; font-size: 1rem; }
.feature-list p { color: var(--muted); font-size: 0.95rem; }

/* ============ PRODUCT GRID ============ */

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--r);
  overflow: hidden;
  transition: all .4s ease;
  color: var(--paper);
}
.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.5);
  color: var(--paper);
}
.product-thumb {
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
}
.product-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.2) 0%, transparent 40%, transparent 60%, rgba(0,0,0,.2) 100%);
}
.thumb-gloss { background: linear-gradient(135deg, #1f1c18 0%, #050504 100%); }
.thumb-metallic { background: linear-gradient(135deg, #b3a783 0%, #6b5f45 50%, #9c8f6e 100%); }
.thumb-matt { background: linear-gradient(135deg, #3d3a35 0%, #252320 100%); }
.thumb-supermatt { background: linear-gradient(135deg, #6b6862 0%, #403d37 100%); }
.thumb-ultramatt { background: linear-gradient(135deg, #2a2824 0%, #0d0c0a 100%); }
.thumb-linen { background: linear-gradient(135deg, #d7ceba 0%, #a89b7d 100%); }
.thumb-trend { background: linear-gradient(135deg, #8a6b3f 0%, #4a3823 100%); }
.thumb-wrap { background: linear-gradient(135deg, #c9a961 0%, #6b5420 100%); }

.product-body {
  padding: 24px 24px 28px;
  position: relative;
}
.product-body h3 {
  color: var(--paper);
  margin-bottom: 8px;
  font-size: 1.25rem;
  font-weight: 500;
}
.product-body p {
  color: rgba(247,243,236,.6);
  font-size: 0.9rem;
  line-height: 1.5;
}
.product-body .arrow {
  position: absolute;
  right: 24px; bottom: 22px;
  color: var(--gold);
  font-size: 1.3rem;
  transition: transform .3s ease;
}
.product-card:hover .arrow { transform: translateX(6px); }

/* ============ SERVICES STRIP ============ */

.services-strip {
  background: var(--cream);
  padding: 90px 0;
}
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.service { position: relative; padding-top: 60px; }
.service-num {
  position: absolute;
  top: 0; left: 0;
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--gold-dark);
  font-style: italic;
  opacity: 0.85;
}
.service h4 { font-family: var(--serif); font-size: 1.4rem; margin-bottom: 10px; letter-spacing: -0.01em; font-weight: 500; }
.service p { color: var(--muted); font-size: 0.96rem; }

/* ============ GUARANTEE ============ */

.guarantee { background: var(--paper); }
.guarantee-visual {
  aspect-ratio: 4/5;
  background:
    linear-gradient(135deg, rgba(201,169,97,.3), rgba(26,24,20,.85)),
    radial-gradient(ellipse at center, #8a7238 0%, #1a1814 100%);
  border-radius: var(--r);
  position: relative;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.4);
}
.guarantee-visual::before {
  content: '★';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-size: 8rem;
  color: var(--gold);
  opacity: 0.2;
}
.guarantee-visual::after {
  content: 'Guaranteed Quality · Est. 2026';
  position: absolute;
  bottom: 40px; left: 0; right: 0;
  text-align: center;
  color: var(--gold-hi);
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.check-list { margin: 1.6rem 0 2rem; }
.check-list li {
  position: relative;
  padding: 12px 0 12px 32px;
  border-bottom: 1px solid var(--line);
  font-size: 0.98rem;
  color: #4a4640;
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 12px;
  color: var(--gold-dark);
  font-weight: 700;
}

/* ============ ABOUT PREVIEW ============ */

.about-preview { background: var(--paper-2); }
.about-visual {
  aspect-ratio: 5/4;
  background:
    linear-gradient(135deg, rgba(26,24,20,.1), transparent),
    linear-gradient(45deg, #d7ceba 0%, #efe8dc 50%, #c9a961 100%);
  border-radius: var(--r);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.2);
}
.about-visual::before {
  content: '';
  position: absolute;
  top: 10%; right: 10%;
  width: 50%; height: 80%;
  background: linear-gradient(135deg, #1a1814, #0a0908);
  border-radius: var(--r);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,.3);
}
.about-visual::after {
  content: '';
  position: absolute;
  bottom: 15%; left: 8%;
  width: 40%; height: 35%;
  background: linear-gradient(135deg, #c9a961, #8a7238);
  border-radius: var(--r);
}
.about-preview p { color: #4a4640; margin-bottom: 1rem; }

/* ============ CTA ============ */

.cta {
  padding: 110px 0;
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  top: -30%; left: 50%;
  transform: translateX(-50%);
  width: 80%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(201,169,97,.18), transparent 60%);
}
.cta h2 { color: var(--paper); position: relative; }
.cta p { color: rgba(247,243,236,.65); margin: 1rem 0 2rem; position: relative; }
.cta .btn { position: relative; }

/* ============ FOOTER ============ */

.footer {
  background: #0a0908;
  color: rgba(247,243,236,.7);
  padding-top: 80px;
  border-top: 1px solid var(--line-dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 60px;
}
.footer h5 { color: var(--gold); }
.footer .brand-mark { color: var(--paper); }
.footer .brand-sub { color: var(--gold); }
.footer ul li { padding: 6px 0; font-size: 0.92rem; }
.footer ul a { color: rgba(247,243,236,.65); }
.footer ul a:hover { color: var(--gold-hi); }
.footer .muted { color: rgba(247,243,236,.5); margin-top: 1rem; }

.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding: 26px 0;
  font-size: 0.82rem;
  color: rgba(247,243,236,.4);
  letter-spacing: 0.1em;
}

/* ============ PRODUCTS PAGE SPECIFIC ============ */

.page-hero {
  padding: 80px 0 60px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); max-width: 800px; }
.page-hero .lead { max-width: 620px; }

.product-detail {
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}
.product-detail:nth-child(even) { background: var(--paper-2); }
.product-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.product-detail-visual {
  aspect-ratio: 4/3;
  border-radius: var(--r);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.3);
  position: relative;
  overflow: hidden;
}
.product-detail-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.2) 0%, transparent 45%, transparent 55%, rgba(0,0,0,.2) 100%);
}
.product-detail ul.specs {
  margin: 1.5rem 0;
}
.product-detail ul.specs li {
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  color: #4a4640;
  font-size: 0.95rem;
}
.product-detail ul.specs li strong { color: var(--ink); min-width: 140px; display: inline-block; }

/* ============ CONTACT PAGE ============ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
}
.contact-info h3 { margin-bottom: 1rem; }
.contact-info .info-block {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info .info-block h5 { color: var(--gold-dark); margin-bottom: 6px; }
.contact-info .info-block p, .contact-info .info-block a { color: #4a4640; font-size: 1rem; }

.contact-form {
  background: var(--ink);
  padding: 50px;
  border-radius: var(--r);
  color: var(--paper);
}
.contact-form h3 { color: var(--paper); margin-bottom: 0.4rem; }
.contact-form p.muted { margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 8px;
  color: var(--gold-hi);
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 14px 16px;
  background: transparent;
  border: 1px solid rgba(247,243,236,.15);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 0.95rem;
  border-radius: var(--r);
  transition: border-color .2s ease;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea { min-height: 140px; resize: vertical; }

/* ============ GALLERY ============ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--r);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform .4s ease;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item:nth-child(4n+1) { aspect-ratio: 4/5; }
.gallery-item:nth-child(4n+2) { aspect-ratio: 1; }
.gallery-item:nth-child(4n+3) { aspect-ratio: 5/4; }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.4) 100%);
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-caption {
  position: absolute;
  bottom: 16px; left: 16px;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1rem;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: all .3s ease;
}
.gallery-item:hover .gallery-caption { opacity: 1; transform: translateY(0); }

/* ============ ABOUT PAGE ============ */

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}
.value-card {
  padding: 40px 32px;
  background: var(--paper-2);
  border-radius: var(--r);
  border-top: 2px solid var(--gold);
}
.value-card h4 { font-family: var(--serif); font-size: 1.4rem; font-weight: 500; margin-bottom: 10px; }
.value-card p { color: var(--muted); font-size: 0.95rem; }

/* ============ RESPONSIVE ============ */

@media (max-width: 980px) {
  .grid-2, .grid-2.reverse { grid-template-columns: 1fr; gap: 50px; }
  .grid-2.reverse > *:first-child { order: 0; }
  .grid-2.reverse > *:last-child { order: 1; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { height: 360px; margin-top: 40px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .services { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .product-detail-inner { grid-template-columns: 1fr; gap: 40px; }
  .nav-links {
    display: none;
    position: absolute;
    top: 84px; left: 0; right: 0;
    background: var(--paper);
    flex-direction: column;
    padding: 20px 28px;
    gap: 20px;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .section { padding: 70px 0; }
  .hero { padding: 60px 0 80px; }
  .hero-bg { display: none; }
  .topbar-meta { display: none; }
  .topbar-contact { gap: 16px; font-size: 0.72rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px; }
}

@media (max-width: 560px) {
  .product-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .hero-stats strong { font-size: 1.4rem; }
  .topbar-contact a span + * { display: none; }
  .brand-sub { display: none; }
}

/* ============ ANIMATIONS ============ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-copy > * { animation: fadeUp .8s cubic-bezier(.2,.7,.2,1) backwards; }
.hero-copy .eyebrow { animation-delay: .05s; }
.hero-copy h1 { animation-delay: .15s; }
.hero-copy .lead { animation-delay: .3s; }
.hero-copy .hero-actions { animation-delay: .45s; }
.hero-copy .hero-stats { animation-delay: .6s; }

.hero-visual .swatch { animation: fadeUp .8s cubic-bezier(.2,.7,.2,1) backwards; }
.hero-visual .swatch-1 { animation-delay: .3s; }
.hero-visual .swatch-2 { animation-delay: .45s; }
.hero-visual .swatch-3 { animation-delay: .6s; }
