/* ══════════════════════════════════════════════════
   MEJOR AGATE — Bright Minimal / Editorial
   Warm off-white · stone · near-black · restrained
   ══════════════════════════════════════════════════ */

:root {
  --bg: #f6f3ee;
  --bg-pure: #ffffff;
  --stone: #ece6db;
  --stone-2: #e2dacd;
  --ink: #1c1a17;
  --ink-soft: #322e28;
  --muted: #6d665b;
  --faint: #9a9184;
  --line: rgba(28, 26, 23, .12);
  --line-2: rgba(28, 26, 23, .2);
  --accent: #8a7355;
  --sans: "Noto Sans KR", -apple-system, BlinkMacSystemFont, sans-serif;
  --latin: "Cormorant Garamond", "Noto Sans KR", serif;
  --ease: cubic-bezier(.22, .7, .28, 1);
  --pad: clamp(20px, 5vw, 64px);
  --maxw: 1180px;
}

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

html { scroll-behavior: smooth; }

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

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

.sr-only {
  position: absolute; width: 1px; height: 1px;
  clip: rect(0 0 0 0); overflow: hidden; white-space: nowrap;
}
.pc-only { display: inline; }

main section[id] { scroll-margin-top: 78px; }

/* ── Reveal (gentle fade-up) ─────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--d, 0s);
}
.reveal.in-view { opacity: 1; transform: none; }

/* ── Shared type ─────────────────────────────── */
.eyebrow {
  font-size: 12.5px;
  letter-spacing: .18em;
  color: var(--accent);
  font-weight: 500;
  text-transform: none;
}
.section-label {
  font-size: 12.5px;
  letter-spacing: .18em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 16px;
}
h1, h2, h3 { font-weight: 500; letter-spacing: -.01em; color: var(--ink); }
.latin { font-family: var(--latin); font-weight: 600; letter-spacing: .01em; }

/* ══════════════ HEADER ══════════════ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 90;
  padding: 18px var(--pad);
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease);
}
.site-header.scrolled {
  background: rgba(246, 243, 238, .88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px var(--pad);
  box-shadow: 0 1px 0 var(--line);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand img { height: 22px; width: auto; }
.main-nav {
  display: flex;
  gap: clamp(18px, 2.4vw, 32px);
  margin-left: auto;
}
.main-nav a {
  font-size: 14px;
  color: var(--muted);
  position: relative;
  padding: 4px 0;
  transition: color .3s var(--ease);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
}
.main-nav a:hover { color: var(--ink); }
.main-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-call {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 8px 18px;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
  white-space: nowrap;
}
.header-call:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.menu-toggle {
  display: none;
  background: none; border: none;
  width: 40px; height: 40px;
  position: relative; z-index: 120;
}
.menu-toggle span {
  position: absolute; left: 9px; right: 9px;
  height: 1.5px; background: var(--ink);
  transition: transform .4s var(--ease), top .4s var(--ease), background .3s;
}
.menu-toggle span:nth-child(1) { top: 16px; }
.menu-toggle span:nth-child(2) { top: 24px; }
.menu-toggle.open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.menu-toggle.open span:nth-child(2) { top: 20px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0;
  z-index: 110;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  overflow-y: auto;
  padding: 24px 20px;
  opacity: 0; visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; align-items: center; gap: 22px; }
.mobile-menu nav a {
  font-size: 22px; font-weight: 500; color: var(--ink);
  opacity: 0; transform: translateY(12px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.mobile-menu.open nav a { opacity: 1; transform: none; }
.mobile-menu.open nav a:nth-child(1) { transition-delay: .06s; }
.mobile-menu.open nav a:nth-child(2) { transition-delay: .11s; }
.mobile-menu.open nav a:nth-child(3) { transition-delay: .16s; }
.mobile-menu.open nav a:nth-child(4) { transition-delay: .21s; }
.mobile-menu.open nav a:nth-child(5) { transition-delay: .26s; }
.mobile-menu.open nav a:nth-child(6) { transition-delay: .31s; }
.mobile-menu-call {
  font-size: 17px; font-weight: 500; color: var(--ink);
  border: 1px solid var(--line-2); border-radius: 999px; padding: 12px 30px;
}

/* ══════════════ BUTTONS ══════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 30px;
  border-radius: 4px;
  font-size: 15px; font-weight: 500; letter-spacing: .01em;
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn-solid { background: var(--ink); color: #fff; }
.btn-solid:hover { background: #000; transform: translateY(-1px); }
.btn-line { border: 1px solid var(--line-2); color: var(--ink); }
.btn-line:hover { border-color: var(--ink); transform: translateY(-1px); }

/* ══════════════ HERO ══════════════ */
.hero {
  padding: clamp(120px, 18vh, 190px) var(--pad) clamp(40px, 6vw, 72px);
}
.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-text .eyebrow { margin-bottom: 22px; }
.hero-text h1 {
  font-size: clamp(30px, 4.6vw, 54px);
  line-height: 1.28;
  font-weight: 500;
}
.hero-lead {
  margin-top: 24px;
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--muted);
  font-weight: 400;
  max-width: 440px;
}
.hero-actions { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; }
.hero-image {
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-pure);
}
.hero-image img {
  width: 100%;
  aspect-ratio: 4 / 3.35;
  object-fit: cover;
}

/* ── Fact strip ── */
.factstrip {
  max-width: var(--maxw);
  margin: clamp(30px, 4vw, 48px) auto 0;
  padding: 0 var(--pad);
}
.factstrip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.fact {
  padding: 22px 20px;
  border-left: 1px solid var(--line);
}
.fact:first-child { border-left: none; }
.fact dt {
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--faint);
  margin-bottom: 7px;
}
.fact dd {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}

/* ══════════════ SECTION SHELL ══════════════ */
section { position: relative; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

/* ══════════════ SEAMLESS ══════════════ */
.seamless {
  padding: clamp(80px, 11vw, 150px) 0;
}
.seamless-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.seamless-copy h2 {
  font-size: clamp(23px, 3vw, 36px);
  line-height: 1.45;
  margin-bottom: 22px;
}
.seamless-copy p {
  font-size: clamp(15px, 1.5vw, 16.5px);
  color: var(--muted);
  line-height: 1.95;
  max-width: 460px;
}
.seamless-figure {
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-pure);
}
.seamless-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* ══════════════ GALLERY ══════════════ */
.gallery {
  padding: 0 0 clamp(80px, 11vw, 140px);
}
.gallery-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 26px);
}
.gallery figure { border-radius: 6px; overflow: hidden; background: var(--bg-pure); }
.gallery figure img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.gallery figure:hover img { transform: scale(1.04); }
.gallery figcaption {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--muted);
}
.gallery figcaption strong {
  display: block;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 3px;
  font-size: 14.5px;
}

/* ══════════════ LINEUP ══════════════ */
.lineup {
  background: var(--stone);
  padding: clamp(80px, 11vw, 140px) 0;
}
.lineup-head {
  max-width: var(--maxw);
  margin: 0 auto clamp(40px, 6vw, 64px);
  padding: 0 var(--pad);
}
.lineup-head h2 { font-size: clamp(24px, 3.2vw, 40px); line-height: 1.35; }
.product-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.2vw, 28px);
}
.product-card {
  background: var(--bg-pure);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 50px rgba(28, 26, 23, .1);
}
.product-card figure { overflow: hidden; background: #fff; border-bottom: 1px solid var(--line); }
.product-card figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.product-card:hover figure img { transform: scale(1.05); }
.product-body { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
.product-code {
  font-family: var(--latin);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--accent);
  margin-bottom: 8px;
}
.product-body h3 { font-size: 18px; font-weight: 500; margin-bottom: 14px; }
.product-size {
  font-family: var(--latin);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--line);
}
.product-size small { font-family: var(--sans); font-size: .68em; color: var(--faint); margin-left: 3px; }
.product-body ul { list-style: none; }
.product-body li {
  font-size: 13.5px; color: var(--muted);
  padding: 4px 0 4px 18px; position: relative;
}
.product-body li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }
.badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--accent);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 3px 11px;
  margin-bottom: 12px;
}

/* ══════════════ 800 OPTIONS ══════════════ */
.options { padding: clamp(80px, 11vw, 140px) 0; }
.options-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.options-copy h2 { font-size: clamp(23px, 3vw, 36px); line-height: 1.4; margin-bottom: 20px; }
.options-copy > p { font-size: 15px; color: var(--muted); line-height: 1.9; max-width: 440px; }
.option-controls { margin-top: 32px; display: flex; flex-direction: column; gap: 18px; }
.control-group { display: flex; align-items: center; gap: 16px; }
.control-label { width: 66px; font-size: 13px; color: var(--faint); }
.segmented {
  display: inline-flex;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
  background: var(--bg-pure);
}
.seg-btn {
  border: none; background: transparent; color: var(--muted);
  font-size: 14px; padding: 8px 22px; border-radius: 999px;
  transition: background .35s var(--ease), color .35s var(--ease);
}
.seg-btn.active { background: var(--ink); color: #fff; }
.option-result {
  background: var(--bg-pure);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(24px, 3.2vw, 40px);
}
.option-visual svg { width: 100%; height: auto; display: block; }
.svg-top { fill: #faf8f4; stroke: var(--line-2); stroke-width: 1.6; }
.svg-bowl { fill: var(--stone); stroke: var(--ink); stroke-width: 1.6; transition: x .6s var(--ease); }
.svg-drain { fill: none; stroke: var(--ink); stroke-width: 1.5; transition: cx .6s var(--ease); }
.svg-hole { fill: var(--stone-2); stroke: var(--ink); stroke-width: 1.4; transition: cx .6s var(--ease), opacity .4s; }
.svg-hole.off { opacity: 0; }
.option-label { margin-top: 20px; text-align: center; }
.option-no { display: block; font-size: 11.5px; letter-spacing: .18em; color: var(--accent); margin-bottom: 8px; }
.option-label strong { display: block; font-size: clamp(18px, 2.1vw, 23px); font-weight: 500; margin-bottom: 7px; }
.option-label p { font-size: 13.5px; color: var(--muted); }
.options-note {
  max-width: var(--maxw); margin: clamp(32px, 4vw, 48px) auto 0;
  padding: 22px var(--pad) 0;
  font-size: 14px; color: var(--muted);
  border-top: 1px solid var(--line);
}
.options-note-inner { max-width: var(--maxw); }

/* ══════════════ SPECS ══════════════ */
.specs { background: var(--stone); padding: clamp(80px, 11vw, 140px) 0; }
.specs-head { max-width: var(--maxw); margin: 0 auto clamp(36px, 5vw, 56px); padding: 0 var(--pad); }
.specs-head h2 { font-size: clamp(24px, 3.2vw, 40px); }
.spec-layout {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 4vw, 56px);
  align-items: start;
}
.spec-diagram {
  background: var(--bg-pure);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 34px);
}
.spec-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.spec-tab {
  border: 1px solid var(--line-2);
  background: transparent;
  color: var(--muted);
  font-size: 13.5px;
  padding: 8px 18px;
  border-radius: 999px;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.spec-tab.active { background: var(--ink); border-color: var(--ink); color: #fff; }
.diagram-stage svg { width: 100%; height: auto; display: block; }
.svg-outline { fill: none; stroke: var(--ink); stroke-width: 1.7; }
.svg-outline.thin { stroke-width: 1.1; stroke: var(--muted); }
.dim-line { stroke: var(--accent); stroke-width: 1; }
.dim-text { font-family: var(--latin); font-size: 15px; fill: var(--accent); font-weight: 600; }
#specSvg .draw { stroke-dasharray: 1000; stroke-dashoffset: 1000; }
#specSvg.animate .draw { animation: drawLine 1.4s var(--ease) forwards; }
#specSvg.animate .dim .draw { animation-delay: .4s; }
@keyframes drawLine { to { stroke-dashoffset: 0; } }
.diagram-note { margin-top: 14px; font-size: 13px; color: var(--faint); text-align: center; }

.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-pure);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.spec-table th, .spec-table td {
  text-align: left;
  padding: 14px 16px;
  font-size: 14px;
  border-bottom: 1px solid var(--line);
}
.spec-table thead th {
  font-size: 12px; letter-spacing: .08em; color: var(--faint);
  background: #faf8f4; font-weight: 500;
}
.spec-table tbody tr { transition: background .3s var(--ease); cursor: pointer; }
.spec-table tbody tr:hover { background: #faf6ef; }
.spec-table tbody tr.active { background: #f3ecdf; }
.spec-table tbody tr.active td:first-child { color: var(--accent); }
.spec-table td:first-child { font-weight: 500; color: var(--ink); white-space: nowrap; }
.spec-table td { color: var(--muted); }
.spec-notes { margin-top: 22px; display: grid; gap: 12px; }
.spec-notes article {
  background: var(--bg-pure);
  border: 1px solid var(--line);
  border-left: 2px solid var(--accent);
  border-radius: 6px;
  padding: 16px 20px;
}
.spec-notes h3 { font-size: 15px; font-weight: 500; margin-bottom: 5px; }
.spec-notes p { font-size: 13.5px; color: var(--muted); line-height: 1.8; }

/* ══════════════ FAQ / REFERENCE ══════════════ */
.faq { padding: clamp(80px, 11vw, 130px) 0 0; }
.reference { padding: clamp(60px, 8vw, 110px) 0 clamp(80px, 11vw, 130px); }
.list-head { max-width: 820px; margin: 0 auto clamp(32px, 5vw, 48px); padding: 0 var(--pad); }
.list-head h2 { font-size: clamp(22px, 3vw, 34px); }
.acc-list { max-width: 820px; margin: 0 auto; padding: 0 var(--pad); display: grid; gap: 10px; }
.acc-list details {
  background: var(--bg-pure);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color .3s var(--ease);
}
.acc-list details[open] { border-color: var(--line-2); }
.acc-list summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 19px 22px;
  font-size: 15.5px; font-weight: 500; color: var(--ink);
  cursor: pointer;
}
.acc-list summary::-webkit-details-marker { display: none; }
.acc-icon { position: relative; flex: none; width: 24px; height: 24px; border: 1px solid var(--line-2); border-radius: 50%; }
.acc-icon::before, .acc-icon::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 9px; height: 1.4px; background: var(--ink);
  transform: translate(-50%, -50%); transition: transform .35s var(--ease);
}
.acc-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
details[open] .acc-icon::after { transform: translate(-50%, -50%) rotate(0); }
.acc-list details p { padding: 0 22px 20px; font-size: 14.5px; color: var(--muted); line-height: 1.9; }
.acc-list details img { width: 100%; border-top: 1px solid var(--line); }

/* ══════════════ CONTACT ══════════════ */
.contact { background: var(--ink); color: #fff; padding: clamp(90px, 13vw, 150px) var(--pad); text-align: center; }
.contact-inner { max-width: 680px; margin: 0 auto; }
.contact .section-label { color: #b8a684; }
.contact h2 { color: #fff; font-size: clamp(26px, 3.8vw, 44px); line-height: 1.36; }
.contact-sub { margin-top: 22px; font-size: clamp(14.5px, 1.5vw, 16px); color: rgba(255,255,255,.72); line-height: 1.95; font-weight: 300; }
.contact-cta {
  display: inline-block;
  margin-top: 40px;
  padding: 18px 52px;
  background: #fff; color: var(--ink);
  border-radius: 6px;
  font-size: 16px; font-weight: 500; letter-spacing: .01em;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.contact-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0,0,0,.28); }
.contact-phone { margin-top: 20px; font-size: 14.5px; color: rgba(255,255,255,.66); letter-spacing: .02em; }
.contact-fine { margin-top: 26px; font-size: 13px; color: rgba(255,255,255,.5); }

/* ══════════════ FOOTER ══════════════ */
.site-footer { background: var(--bg); border-top: 1px solid var(--line); padding: clamp(46px, 7vw, 72px) var(--pad) 40px; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; }
.footer-logo { height: 20px; width: auto; margin-bottom: 34px; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; padding-bottom: 34px; border-bottom: 1px solid var(--line); }
.footer-cols strong { display: block; font-size: 12px; letter-spacing: .12em; color: var(--accent); margin-bottom: 12px; font-weight: 500; }
.footer-cols span, .footer-cols a { display: block; font-size: 13.5px; color: var(--muted); padding: 3px 0; }
.footer-cols a:hover { color: var(--ink); }
.footer-fine { padding-top: 24px; font-size: 12px; color: var(--faint); }

/* ══════════════ RESPONSIVE ══════════════ */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .header-call { margin-left: auto; }
  .menu-toggle { display: block; }
  .hero-inner { grid-template-columns: 1fr; gap: 30px; }
  .hero-image { order: -1; }
  .seamless-grid { grid-template-columns: 1fr; gap: 28px; }
  .seamless-figure { order: -1; }
  .options-inner { grid-template-columns: 1fr; }
  .spec-layout { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .gallery-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; gap: 24px; }
  .gallery figure img { aspect-ratio: 4 / 3; }
}

@media (max-width: 640px) {
  .pc-only { display: none; }
  .brand img { height: 20px; }
  .header-call { font-size: 13px; padding: 7px 14px; }
  .factstrip-inner { grid-template-columns: 1fr 1fr; }
  .fact:nth-child(3) { border-left: none; }
  .fact:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .control-group { flex-wrap: wrap; gap: 10px; }
  .spec-table th, .spec-table td { padding: 12px; font-size: 12.5px; }
  .spec-table td:first-child { white-space: normal; }
  .contact-call { padding: 20px 40px; }
  .footer-cols { grid-template-columns: 1fr; gap: 22px; }
}

/* ══════════════ REDUCED MOTION ══════════════ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  #specSvg .draw { stroke-dasharray: none; stroke-dashoffset: 0; animation: none !important; }
  .gallery figure:hover img, .product-card:hover figure img { transform: none; }
}
