:root {
  --ink: #020617;
  --navy: #07111f;
  --navy-2: #0f172a;
  --slate: #334155;
  --muted: #64748b;
  --line: #dbe4ed;
  --line-strong: #b8c5d2;
  --paper: #f8fafc;
  --surface: #ffffff;
  --surface-soft: #eef3f7;
  --accent: #0369a1;
  --accent-2: #0ea5e9;
  --warm: #b97822;
  --warm-soft: #f4b15d;
  --success: #0f766e;
  --danger: #b91c1c;
  --shadow-sm: 0 12px 32px rgba(15, 23, 42, .08);
  --shadow-md: 0 28px 70px rgba(15, 23, 42, .14);
  --shadow-lg: 0 44px 110px rgba(15, 23, 42, .18);
  --radius: 8px;
  --radius-lg: 18px;
  --container: 1180px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(248, 250, 252, .94), rgba(248, 250, 252, 1) 42%),
    repeating-linear-gradient(90deg, rgba(15, 23, 42, .03) 0, rgba(15, 23, 42, .03) 1px, transparent 1px, transparent 96px);
  font-family: Jost, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

::selection {
  color: #fff;
  background: var(--accent);
}

:focus-visible {
  outline: 3px solid rgba(3, 105, 161, .45);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 2000;
  transform: translateY(-140%);
  padding: 10px 14px;
  color: #fff;
  background: var(--navy);
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.section-tight {
  padding: 64px 0;
}

.section-dark {
  color: #f8fafc;
  background: var(--navy);
}

.section-soft {
  background: rgba(238, 243, 247, .72);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.eyebrow,
.kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.section-dark .kicker {
  color: #9fd6f4;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  line-height: 1.05;
  font-family: "Bodoni Moda", Georgia, serif;
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  font-size: 3.45rem;
}

h2 {
  max-width: 760px;
  font-size: 2.55rem;
}

h3 {
  font-size: 1.45rem;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: #fff;
}

p {
  margin: 0;
}

.lead {
  max-width: 680px;
  color: #263548;
  font-size: 1.1rem;
  line-height: 1.7;
}

.section-dark .lead,
.section-dark p {
  color: rgba(248, 250, 252, .78);
}

.muted {
  color: var(--muted);
}

.utility-bar {
  position: relative;
  z-index: 1001;
  color: #e2e8f0;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  gap: 20px;
  font-size: .86rem;
}

.utility-inner span {
  color: rgba(248, 250, 252, .78);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 250, 252, .78);
  border-bottom: 1px solid rgba(219, 228, 237, .72);
  backdrop-filter: blur(18px);
  transition: box-shadow .24s var(--ease), background .24s var(--ease), border-color .24s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(248, 250, 252, .94);
  box-shadow: 0 16px 46px rgba(15, 23, 42, .08);
}

.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 82px;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
}

.brand img {
  width: 42px;
  height: 42px;
}

.brand-word {
  display: grid;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.1;
}

.brand-word small {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-links a,
.nav-links button {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 13px;
  color: #273447;
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  font-weight: 600;
}

.nav-links a:hover,
.nav-links button:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  background: rgba(3, 105, 161, .08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle,
.category-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--navy);
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-toggle {
  display: none;
}

.icon-button svg,
.menu-toggle svg,
.category-toggle svg {
  width: 21px;
  height: 21px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  gap: 10px;
  padding: 0 18px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 700;
  line-height: 1;
  transition: transform .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease), box-shadow .22s var(--ease);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.button-primary {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.button-primary:hover {
  background: #111e31;
}

.button-accent {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.button-light {
  color: var(--navy);
  background: rgba(255, 255, 255, .92);
}

.button-ghost {
  color: var(--navy);
  background: transparent;
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: auto;
  padding: 36px 0 22px;
  overflow: hidden;
}

.hero + .section {
  padding-top: 32px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(360px, 1.04fr);
  align-items: center;
  gap: 48px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy .lead {
  margin-top: 26px;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-visual {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(219, 228, 237, .86);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transform-style: preserve-3d;
}

.hero-visual img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  filter: drop-shadow(0 42px 60px rgba(15, 23, 42, .18));
  transform: translate3d(var(--stage-x, 0), var(--stage-y, 0), 0);
  transition: transform .2s var(--ease);
}

.hero-specs {
  position: absolute;
  inset: auto 26px 38px auto;
  display: grid;
  gap: 10px;
  width: min(340px, 72%);
}

.spec-pill {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  color: #fff;
  background: rgba(7, 17, 31, .82);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}

.spec-pill span {
  color: rgba(248, 250, 252, .68);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--shadow-sm);
}

.trust-strip div {
  padding: 14px 16px;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong {
  display: block;
  color: var(--navy);
  font-size: 1.02rem;
}

.trust-strip span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: .92rem;
}

.page-hero {
  min-height: auto;
  padding: 74px 0 62px;
}

.page-hero .hero-grid {
  grid-template-columns: minmax(0, .92fr) minmax(320px, .82fr);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(300px, .58fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 42px;
}

.section-head p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-dark .section-head p:last-child {
  color: rgba(248, 250, 252, .72);
}

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

.category-card,
.service-card,
.guide-card,
.brand-card,
.product-card,
.value-card {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s var(--ease);
}

.category-card,
.service-card,
.guide-card,
.brand-card,
.value-card {
  padding: 26px;
}

.tilt-card {
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(var(--lift, 0));
}

.category-card:hover,
.service-card:hover,
.guide-card:hover,
.brand-card:hover,
.product-card:hover,
.value-card:hover {
  --lift: -4px;
  border-color: rgba(3, 105, 161, .28);
  box-shadow: var(--shadow-md);
}

.category-card::before,
.brand-card::before,
.guide-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(125deg, rgba(159, 214, 244, .2), transparent 38%, rgba(244, 177, 93, .16));
  opacity: 0;
  transition: opacity .24s var(--ease);
}

.category-card:hover::before,
.brand-card:hover::before,
.guide-card:hover::before {
  opacity: 1;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--accent);
  background: #e8f5fc;
  border-radius: var(--radius);
}

.card-icon svg {
  width: 25px;
  height: 25px;
}

.category-card h3,
.service-card h3,
.guide-card h3,
.brand-card h3,
.value-card h3 {
  position: relative;
  margin-top: 26px;
  font-family: Jost, Inter, sans-serif;
  font-size: 1.24rem;
  line-height: 1.25;
}

.category-card p,
.service-card p,
.guide-card p,
.brand-card p,
.value-card p {
  position: relative;
  margin-top: 12px;
  color: var(--muted);
}

.card-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--accent);
  font-weight: 700;
}

.collection-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.collection-tab {
  min-height: 44px;
  padding: 0 16px;
  color: var(--slate);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 700;
}

.collection-tab.is-active {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.collection-panel {
  display: none;
}

.collection-panel.is-active {
  display: block;
  animation: softIn .34s var(--ease);
}

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

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 100%;
}

.product-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 250px;
  padding: 0;
  background: linear-gradient(180deg, #f8fafc, #e9f0f7);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.product-art img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform .28s var(--ease), filter .28s var(--ease);
}

.product-card:hover .product-art > svg,
.product-card:hover .product-art img {
  transform: scale(1.04) translateY(-4px);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 10px;
  color: #fff;
  background: var(--navy);
  border-radius: var(--radius);
  font-size: .78rem;
  font-weight: 800;
}

.product-body {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.product-body h3 {
  font-family: Jost, Inter, sans-serif;
  font-size: 1.13rem;
  line-height: 1.3;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--slate);
}

.product-specs span {
  padding: 6px 9px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: .84rem;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 4px;
}

.price-line strong {
  color: var(--navy);
  font-size: 1.1rem;
}

.price-line span {
  color: var(--muted);
  font-size: .9rem;
}

.rail-shell {
  position: relative;
}

.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(270px, 31%);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 2px 20px;
}

.rail::-webkit-scrollbar {
  display: none;
}

.rail > * {
  scroll-snap-align: start;
}

.rail-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 12px;
}

.rail-button {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background: var(--navy);
  border: 0;
  border-radius: var(--radius);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, .72fr);
  gap: 54px;
  align-items: center;
}

.visual-frame {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.visual-frame img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.copy-stack {
  display: grid;
  gap: 22px;
}

.plain-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  position: relative;
  padding-left: 28px;
  color: #35445a;
}

.plain-list li::before {
  content: "";
  position: absolute;
  top: .68em;
  left: 0;
  width: 12px;
  height: 2px;
  background: var(--accent);
}

.section-dark .plain-list li {
  color: rgba(248, 250, 252, .78);
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-band .value-card {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

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

.brand-card strong {
  display: block;
  color: var(--navy);
  font-size: 1.3rem;
}

.brand-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.guide-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(340px, .58fr);
  gap: 36px;
  align-items: start;
}

.email-card {
  padding: 34px;
  color: #fff;
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.email-card h2 {
  color: #fff;
}

.email-card .kicker,
.email-card .eyebrow {
  color: #9fd6f4;
}

.email-card .lead {
  color: rgba(248, 250, 252, .78);
}

.email-card a {
  display: inline-flex;
  margin-top: 18px;
  color: #fff;
  font-size: 2.35rem;
  font-family: "Bodoni Moda", Georgia, serif;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.inquiry-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--navy);
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--accent);
  outline: 3px solid rgba(3, 105, 161, .16);
}

.status-note {
  min-height: 24px;
  color: var(--success);
  font-weight: 700;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1500;
  background: rgba(2, 6, 23, .42);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s var(--ease);
}

.drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.category-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1600;
  width: min(560px, 100%);
  height: 100dvh;
  padding: 28px;
  color: #fff;
  background: rgba(7, 17, 31, .96);
  border-left: 1px solid rgba(255, 255, 255, .14);
  transform: translateX(102%);
  transition: transform .28s var(--ease);
  overflow-y: auto;
}

.category-drawer h2 {
  color: #fff;
}

.category-drawer .eyebrow,
.category-drawer .kicker {
  color: #9fd6f4;
}

.category-drawer.is-open {
  transform: translateX(0);
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.drawer-close {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: var(--radius);
}

.drawer-grid {
  display: grid;
  gap: 14px;
}

.drawer-link {
  display: grid;
  gap: 4px;
  padding: 18px;
  color: #fff;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
}

.drawer-link strong {
  font-size: 1.1rem;
}

.drawer-link span {
  color: rgba(248, 250, 252, .68);
}

.site-footer {
  color: rgba(248, 250, 252, .78);
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(240px, .9fr) minmax(320px, 1fr) minmax(220px, .64fr);
  gap: 32px;
  padding: 58px 0;
}

.footer-inner h2,
.footer-inner h3 {
  color: #fff;
  font-family: Jost, Inter, sans-serif;
}

.footer-inner h2 {
  font-size: 1.35rem;
}

.footer-inner h3 {
  margin-bottom: 14px;
  font-size: .95rem;
  text-transform: uppercase;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 22px;
}

.footer-nav a,
.footer-email {
  color: rgba(248, 250, 252, .82);
}

.footer-nav a:hover,
.footer-email:hover {
  color: #fff;
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(248, 250, 252, .58);
  font-size: .92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1080px) {
  h1 {
    font-size: 3.15rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .nav-inner {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    top: 120px;
    left: 20px;
    right: 20px;
    z-index: 1200;
    display: none;
    grid-template-columns: 1fr;
    justify-content: stretch;
    padding: 14px;
    background: rgba(248, 250, 252, .98);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a,
  .nav-links button {
    justify-content: flex-start;
  }

  .nav-actions {
    justify-self: end;
  }

  .hero-grid,
  .page-hero .hero-grid,
  .split-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .section-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .category-grid,
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid,
  .guide-grid,
  .service-grid,
  .feature-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip div:nth-child(2) {
    border-right: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .utility-inner {
    justify-content: center;
  }

  .utility-inner span:nth-child(n+2) {
    display: none;
  }

  .nav-inner {
    min-height: 72px;
    gap: 12px;
  }

  .brand-word small {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero,
  .page-hero {
    padding-top: 28px;
  }

  .hero {
    padding-bottom: 18px;
  }

  .hero + .section {
    padding-top: 16px;
  }

  .hero-copy .lead {
    margin-top: 18px;
  }

  .hero-actions,
  .inline-actions {
    margin-top: 24px;
  }

  h1 {
    font-size: 2.12rem;
  }

  h2 {
    font-size: 1.95rem;
  }

  .lead {
    font-size: 1.06rem;
  }

  .section {
    padding: 66px 0;
  }

  .category-grid,
  .brand-grid,
  .product-grid,
  .guide-grid,
  .service-grid,
  .feature-band {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    display: none;
  }

  .trust-strip div,
  .trust-strip div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .rail {
    grid-auto-columns: minmax(256px, 86%);
  }

  .hero-specs {
    display: none;
  }

  .hero-visual img {
    height: 210px;
    object-fit: cover;
  }

  .product-art,
  .product-art img {
    min-height: 210px;
    height: 210px;
  }

  .spec-pill {
    color: var(--ink);
    background: rgba(255, 255, 255, .9);
    border-color: var(--line);
  }

  .spec-pill span {
    color: var(--muted);
  }

  .email-card,
  .inquiry-form {
    padding: 22px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .tilt-card,
  .hero-visual img {
    transform: none !important;
  }
}
