/* Stoise Apparel — Airbnb-inspired shell */

:root {
  --stoise-black: #111111;
  --stoise-ink: #222222;
  --stoise-muted: #6a6a6a;
  --stoise-line: #dddddd;
  --stoise-soft: #f7f7f7;
  --stoise-white: #ffffff;
  --stoise-red: #e11d2e;
  --stoise-red-hover: #c41524;
  --stoise-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.05);
  --stoise-shadow-lift: 0 2px 4px rgba(0, 0, 0, 0.08), 0 8px 28px rgba(0, 0, 0, 0.12);
  --header-h: 80px;
  --font: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.2, 0, 0, 1);
  --radius: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--stoise-ink);
  background: var(--stoise-white);
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

img {
  display: block;
  max-width: 100%;
}

/* —— Header (Airbnb-like sticky bar) —— */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--stoise-line);
  box-shadow: var(--stoise-shadow);
}

.header-inner {
  max-width: 1760px;
  margin: 0 auto;
  height: 100%;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  transition: transform 0.25s var(--ease);
}

.brand:hover {
  transform: scale(1.02);
}

.brand img {
  height: 44px;
  width: auto;
}

.nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.nav-link {
  position: relative;
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--stoise-muted);
  border-radius: 999px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.nav-link:hover {
  color: var(--stoise-ink);
  background: var(--stoise-soft);
}

.nav-link.is-active {
  color: var(--stoise-ink);
  font-weight: 600;
}

.nav-link.is-active::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  background: var(--stoise-ink);
  border-radius: 2px;
  transform-origin: center;
  animation: underline-in 0.28s var(--ease);
}

.nav-link.is-active:hover {
  background: transparent;
}

@keyframes underline-in {
  from {
    transform: scaleX(0.4);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.action-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--stoise-ink);
  border-radius: 999px;
  transition: background 0.2s var(--ease);
}

.action-chip:hover {
  background: var(--stoise-soft);
}

.menu-btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--stoise-line);
  background: var(--stoise-white);
  transition: box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}

.menu-btn:hover {
  box-shadow: var(--stoise-shadow);
}

.menu-btn svg {
  width: 18px;
  height: 18px;
}

.menu-btn--desktop {
  display: none;
}

.menu-btn--mobile {
  display: inline-flex;
}

.header-home-btn {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--stoise-line);
  background: var(--stoise-white);
  color: var(--stoise-ink);
  transition: box-shadow 0.2s var(--ease);
}

.header-home-btn:hover {
  box-shadow: var(--stoise-shadow);
}

.header-home-btn svg {
  width: 18px;
  height: 18px;
}

/* —— Mobile drawer —— */

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 400;
  pointer-events: none;
  visibility: hidden;
}

.mobile-nav.is-open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.mobile-nav.is-open .mobile-nav__backdrop {
  opacity: 1;
}

.mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: var(--stoise-white);
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  box-shadow: var(--stoise-shadow-lift);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav.is-open .mobile-nav__panel {
  transform: translateX(0);
}

.mobile-nav__close {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--stoise-soft);
  margin-bottom: 12px;
}

.mobile-nav a {
  padding: 14px 12px;
  font-size: 17px;
  font-weight: 500;
  border-radius: var(--radius);
  color: var(--stoise-ink);
  transition: background 0.2s var(--ease);
}

.mobile-nav a:hover,
.mobile-nav a.is-active {
  background: var(--stoise-soft);
}

.mobile-nav a.is-active {
  color: var(--stoise-red);
  font-weight: 700;
}

/* —— Main (empty for now) —— */

.site-main {
  flex: 1;
  width: 100%;
  min-height: calc(100vh - var(--header-h) - 220px);
  opacity: 0;
  transform: translateY(12px);
  animation: page-enter 0.55s var(--ease) 0.05s forwards;
}

@keyframes page-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 40px 80px;
  min-height: 48vh;
}

.page-title {
  margin: 0 0 8px;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--stoise-black);
}

.page-subtitle {
  margin: 0;
  font-size: 1rem;
  color: var(--stoise-muted);
  font-weight: 400;
}

.page-empty {
  margin-top: 40px;
  min-height: 280px;
  border: 1px dashed var(--stoise-line);
  border-radius: 16px;
  background: linear-gradient(180deg, var(--stoise-white) 0%, var(--stoise-soft) 100%);
  display: grid;
  place-items: center;
  color: var(--stoise-muted);
  font-size: 15px;
  letter-spacing: 0.01em;
}

/* —— Contact —— */

.contact-page {
  max-width: 560px;
}

.contact-stack {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-wa {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border-radius: 16px;
  background: var(--stoise-white);
  border: 1px solid var(--stoise-line);
  box-shadow: var(--stoise-shadow);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.contact-wa:hover {
  transform: translateY(-2px);
  box-shadow: var(--stoise-shadow-lift);
  border-color: #c8e6c9;
}

.contact-wa__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #25d366;
  color: #fff;
}

.contact-wa__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-wa__label {
  font-size: 13px;
  font-weight: 500;
  color: var(--stoise-muted);
}

.contact-wa__name {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--stoise-black);
}

.contact-wa__arrow {
  flex-shrink: 0;
  color: var(--stoise-muted);
  transition: transform 0.25s var(--ease), color 0.25s var(--ease);
}

.contact-wa:hover .contact-wa__arrow {
  color: #25d366;
  transform: translateX(3px);
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 12px;
  color: var(--stoise-ink);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.contact-email:hover {
  background: var(--stoise-soft);
  color: var(--stoise-red);
}

.contact-email__icon {
  display: grid;
  place-items: center;
  color: var(--stoise-muted);
  transition: color 0.2s var(--ease);
}

.contact-email:hover .contact-email__icon {
  color: var(--stoise-red);
}

.contact-email__text {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* —— Size chart —— */

.size-page {
  max-width: 960px;
}

.size-lead {
  max-width: 40rem;
  line-height: 1.65;
}

.size-layout {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
}

.size-visual {
  padding: 28px 24px;
  border-radius: 20px;
  background: var(--stoise-soft);
  border: 1px solid var(--stoise-line);
  text-align: center;
}

.size-visual svg {
  width: min(100%, 240px);
  height: auto;
  margin: 0 auto 12px;
}

.size-visual p {
  margin: 0;
  font-size: 13px;
  color: var(--stoise-muted);
  line-height: 1.5;
}

.size-table-wrap {
  min-width: 0;
}

.size-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  background: var(--stoise-white);
  border: 1px solid var(--stoise-line);
  border-radius: 16px;
  overflow: hidden;
}

.size-table th,
.size-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--stoise-line);
}

.size-table thead th {
  background: var(--stoise-black);
  color: var(--stoise-white);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.size-table tbody th {
  font-weight: 800;
  color: var(--stoise-red);
  width: 4.5rem;
}

.size-table tbody tr:last-child th,
.size-table tbody tr:last-child td {
  border-bottom: none;
}

.size-table tbody tr:hover td,
.size-table tbody tr:hover th {
  background: var(--stoise-soft);
}

.size-notes {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.size-notes li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--stoise-muted);
}

.size-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--stoise-red);
}

.size-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.size-site {
  margin: 40px 0 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--stoise-muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 800px) {
  .size-layout {
    grid-template-columns: 1fr;
  }
}

/* —— Produk (Airbnb-like listings) —— */

.produk-page {
  --about-max: 1280px;
  --about-pad: clamp(20px, 4vw, 40px);
  padding: 28px 0 80px;
}

.product-tabs__track {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  border-bottom: none;
}

.product-tabs {
  margin-bottom: 0;
  flex: 1 1 auto;
  min-width: 0;
  overflow: visible;
}

.produk-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px 24px;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 1px solid var(--stoise-line);
  overflow: visible;
}

.product-tabs__track::-webkit-scrollbar {
  display: none;
}

.product-tab {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--stoise-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.product-tab:hover {
  color: var(--stoise-ink);
}

.product-tab.is-active {
  color: var(--stoise-ink);
  font-weight: 700;
  border-bottom-color: var(--stoise-red);
}

.product-tab__chevron {
  transition: transform 0.2s var(--ease);
}

.product-tab-wrap {
  position: relative;
  flex: 0 0 auto;
}

.product-tab-wrap.is-open .product-tab__chevron {
  transform: rotate(180deg);
}

/* Fixed so not clipped by horizontal scroll on tabs */
.jersey-dropdown {
  position: fixed;
  z-index: 160;
  min-width: min(260px, calc(100vw - 24px));
  max-width: calc(100vw - 24px);
  max-height: min(60vh, 420px);
  overflow-y: auto;
  padding: 8px;
  background: var(--stoise-white);
  border: 1px solid var(--stoise-line);
  border-radius: 14px;
  box-shadow: var(--stoise-shadow-lift);
}

.jersey-dropdown__item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--stoise-ink);
  transition: background 0.15s var(--ease), color 0.15s var(--ease);
}

.jersey-dropdown__item:hover {
  background: var(--stoise-soft);
}

.jersey-dropdown__item.is-active {
  background: rgba(225, 29, 46, 0.08);
  color: var(--stoise-red);
}

.product-search {
  position: relative;
  display: flex;
  align-items: center;
  flex: 0 1 280px;
  margin-bottom: 10px;
}

.product-search__icon {
  position: absolute;
  left: 14px;
  color: var(--stoise-muted);
  pointer-events: none;
}

.product-search input {
  width: 100%;
  height: 44px;
  padding: 0 14px 0 42px;
  border: 1px solid var(--stoise-line);
  border-radius: 999px;
  background: var(--stoise-white);
  font-family: inherit;
  font-size: 14px;
  color: var(--stoise-ink);
  outline: none;
  box-shadow: var(--stoise-shadow);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.product-search input::placeholder {
  color: #999;
}

.product-search input:focus {
  border-color: #bbb;
  box-shadow: var(--stoise-shadow-lift);
}

.produk-grid-wrap {
  padding-top: 36px;
}

.product-empty {
  margin: 48px 0;
  text-align: center;
  font-size: 15px;
  color: var(--stoise-muted);
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
}

.listing-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border-radius: 16px;
  outline: none;
  transition: transform 0.25s var(--ease);
}

.listing-card:hover,
.listing-card:focus-visible {
  transform: translateY(-3px);
}

.listing-card:focus-visible .listing-card__media {
  box-shadow: 0 0 0 2px var(--stoise-white), 0 0 0 4px var(--stoise-red);
}

.listing-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  background: var(--stoise-soft);
  box-shadow: var(--stoise-shadow);
  transition: box-shadow 0.25s var(--ease);
}

.listing-card:hover .listing-card__media {
  box-shadow: var(--stoise-shadow-lift);
}

.listing-card__media > img:not(.listing-card__brand) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.listing-card:hover .listing-card__media > img:not(.listing-card__brand) {
  transform: scale(1.04);
}

.listing-card__brand {
  position: absolute;
  top: 12px;
  right: 12px;
  left: auto;
  height: 22px !important;
  width: auto !important;
  max-width: 88px;
  object-fit: contain;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.85)) drop-shadow(0 1px 3px rgba(0, 0, 0, 0.25));
  pointer-events: none;
}

.listing-card__body {
  padding: 16px 8px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.listing-card__title {
  margin: 0;
  width: 100%;
  font-size: clamp(0.9rem, 1.05vw, 1.02rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--stoise-black);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.listing-card__meta {
  margin: 0;
  font-size: 13px;
  color: var(--stoise-muted);
}

.listing-card__site {
  margin: 8px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--stoise-ink);
}

.listing-card__code {
  margin: 0;
  font-size: 13px;
  color: var(--stoise-muted);
}

.listing-card__code strong {
  color: var(--stoise-black);
  font-weight: 700;
}

.listing-card__cta {
  margin-top: 14px;
  align-self: center;
  padding: 10px 22px;
  font-size: 13px;
}

/* Detail panel */
.product-panel {
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: 100%;
  z-index: 300;
  pointer-events: none;
  visibility: hidden;
  overflow: hidden;
}

.product-panel.is-open {
  pointer-events: auto;
  visibility: visible;
}

.product-panel__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.product-panel.is-open .product-panel__backdrop {
  opacity: 1;
}

.product-panel__sheet {
  position: absolute;
  top: 0;
  right: 0;
  left: auto;
  width: min(560px, 100%);
  max-width: 100%;
  height: 100%;
  height: 100dvh;
  background: var(--stoise-white);
  box-shadow: var(--stoise-shadow-lift);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-sizing: border-box;
}

.product-panel.is-open .product-panel__sheet {
  transform: translateX(0);
}

.product-panel__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--stoise-shadow);
  transition: transform 0.2s var(--ease);
}

.product-panel__close:hover {
  transform: scale(1.05);
}

.product-panel__body {
  overflow-x: hidden;
  overflow-y: auto;
  flex: 1;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}

.panel-hero {
  aspect-ratio: 1 / 1;
  background: var(--stoise-soft);
  max-width: 100%;
}

.panel-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.panel-content {
  padding: 24px 20px 48px;
  max-width: 100%;
  box-sizing: border-box;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.panel-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  max-width: 100%;
}

.panel-title-row > div {
  min-width: 0;
  flex: 1;
}

@media (max-width: 560px) {
  .product-panel__sheet {
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    transform: translateY(100%);
  }

  .product-panel.is-open .product-panel__sheet {
    transform: translateY(0);
  }

  .panel-title-row {
    flex-direction: column;
    align-items: stretch;
  }

  .panel-share {
    align-self: flex-start;
  }

  .panel-content {
    padding: 20px 16px 40px;
  }
}

.panel-title-row .panel-kicker {
  margin-bottom: 8px;
}

.panel-title-row h2 {
  margin: 0;
}

.panel-share {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--stoise-line);
  background: var(--stoise-white);
  font-size: 13px;
  font-weight: 600;
  color: var(--stoise-ink);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}

.panel-share:hover {
  background: var(--stoise-soft);
  border-color: #cfcfcf;
}

.panel-share.is-copied {
  color: var(--stoise-red);
  border-color: rgba(225, 29, 46, 0.35);
}

.panel-kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stoise-red);
}

.panel-content h2 {
  margin: 0 0 8px;
  font-size: clamp(1.4rem, 3vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--stoise-black);
}

.panel-tagline {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: var(--stoise-muted);
  line-height: 1.5;
}

.panel-site {
  margin: 0 0 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--stoise-ink);
}

.panel-block {
  margin-bottom: 24px;
}

.panel-block h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--stoise-black);
}

.panel-block p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--stoise-muted);
}

.panel-list {
  margin: 0;
  padding: 0 0 0 1.15rem;
  display: grid;
  gap: 8px;
}

.panel-list li {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--stoise-muted);
}

.panel-list--check {
  list-style: none;
  padding: 0;
}

.panel-list--check li {
  position: relative;
  padding-left: 26px;
  color: var(--stoise-ink);
  font-weight: 500;
}

.panel-list--check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--stoise-red);
  box-shadow: inset 0 0 0 3px var(--stoise-white), 0 0 0 1px var(--stoise-red);
}

.panel-chips {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.panel-chips li {
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  background: var(--stoise-soft);
  border-radius: 999px;
  color: var(--stoise-ink);
}

.panel-note {
  margin: 0 !important;
  font-size: 13px !important;
}

.panel-cta-box {
  margin-top: 8px;
  padding: 22px;
  border-radius: 16px;
  background: var(--stoise-soft);
  border: 1px solid var(--stoise-line);
}

.panel-cta-box p {
  margin: 0 0 16px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--stoise-ink);
}

.panel-wa {
  width: 100%;
}

.panel-wa svg {
  flex-shrink: 0;
}

@media (max-width: 1000px) {
  .listing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .produk-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .product-search {
    flex: 1 1 auto;
    max-width: none;
    margin-bottom: 12px;
    order: -1;
  }
}

@media (max-width: 560px) {
  .listing-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .produk-grid-wrap {
    padding-top: 28px;
  }
}

/* —— Footer —— */

.site-footer {
  background: var(--stoise-soft);
  border-top: 1px solid var(--stoise-line);
  margin-top: auto;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 40px 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h3 {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--stoise-black);
}

.footer-col a,
.footer-col p {
  display: block;
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--stoise-muted);
  transition: color 0.2s var(--ease);
}

.footer-col a:hover {
  color: var(--stoise-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 40px;
  border-top: 1px solid var(--stoise-line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--stoise-muted);
}

.footer-brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--stoise-ink);
}

.footer-brand-mark img {
  height: 28px;
  width: auto;
  display: block;
}

.footer-brand-mark span.accent {
  color: var(--stoise-red);
}

/* —— Accent CTA (Airbnb red orb energy) —— */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  color: var(--stoise-white);
  background: var(--stoise-red);
  border-radius: 999px;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  box-shadow: 0 2px 8px rgba(225, 29, 46, 0.28);
}

.btn-primary:hover {
  background: var(--stoise-red-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(225, 29, 46, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

/* —— Responsive —— */

@media (max-width: 900px) {
  .header-inner {
    padding: 0 16px;
    grid-template-columns: 1fr auto;
    gap: 10px;
  }

  .brand img {
    height: 34px;
  }

  .nav-center {
    display: none;
  }

  .action-chip {
    display: none;
  }

  .menu-btn--mobile {
    display: inline-flex;
  }

  .menu-btn--desktop {
    display: none;
  }

  .header-home-btn {
    display: inline-flex;
  }

  .page-shell,
  .footer-inner,
  .footer-bottom {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (min-width: 901px) {
  .menu-btn--mobile {
    display: none;
  }

  .menu-btn--desktop {
    display: inline-flex;
  }
}

/* —— About page —— */

.about-page {
  --about-max: 1120px;
  --about-pad: clamp(20px, 4vw, 40px);
}

.about-wrap {
  max-width: var(--about-max, 1120px);
  margin: 0 auto;
  padding-left: var(--about-pad, clamp(20px, 4vw, 40px));
  padding-right: var(--about-pad, clamp(20px, 4vw, 40px));
}

.about-narrow {
  max-width: 720px;
}

.about-center {
  text-align: center;
}

.about-kicker {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stoise-red);
}

.about-kicker--light {
  color: rgba(255, 255, 255, 0.72);
}

.about-hero {
  position: relative;
  padding: clamp(56px, 10vw, 100px) 0 clamp(48px, 8vw, 80px);
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(225, 29, 46, 0.08), transparent 55%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(17, 17, 17, 0.04), transparent 50%),
    linear-gradient(180deg, #fafafa 0%, var(--stoise-white) 100%);
  overflow: hidden;
}

.about-hero__title {
  margin: 0 0 20px;
  font-size: clamp(2rem, 5.2vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: var(--stoise-black);
}

.about-hero__title .accent {
  color: var(--stoise-red);
}

.about-hero__lead {
  margin: 0 0 28px;
  max-width: 640px;
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.65;
  color: var(--stoise-muted);
}

.about-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--stoise-ink);
  border-radius: 999px;
  border: 1px solid var(--stoise-line);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.btn-ghost:hover {
  background: var(--stoise-soft);
  border-color: #cfcfcf;
}

.btn-ghost--on-dark {
  color: var(--stoise-white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost--on-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
}

/* Sticky chapter TOC */
.about-toc {
  position: sticky;
  top: var(--header-h);
  z-index: 90;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--stoise-line);
}

.about-toc__track {
  max-width: var(--about-max);
  margin: 0 auto;
  padding: 0 var(--about-pad);
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.about-toc__track::-webkit-scrollbar {
  display: none;
}

.about-toc__link {
  flex: 0 0 auto;
  padding: 16px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--stoise-muted);
  border-bottom: 2px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}

.about-toc__link:hover {
  color: var(--stoise-ink);
}

.about-toc__link.is-active {
  color: var(--stoise-ink);
  font-weight: 700;
  border-bottom-color: var(--stoise-red);
}

.about-section,
#cerita,
#karya,
#detail,
#proses,
#alasan,
#ajak {
  scroll-margin-top: calc(var(--header-h) + 56px);
}

.about-section {
  padding: clamp(56px, 9vw, 96px) 0;
}

.about-section--soft {
  background: var(--stoise-soft);
}

.chapter-num {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--stoise-red);
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(32px, 5vw, 48px);
}

.section-head h2,
.about-h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3.2vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--stoise-black);
}

.section-head p,
.about-lead {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--stoise-muted);
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.about-split__label h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--stoise-black);
}

.about-split__body p {
  margin: 0 0 16px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--stoise-muted);
}

.about-split__body p:last-child {
  margin-bottom: 0;
}

.about-quote {
  margin: 24px 0;
  padding: 20px 24px;
  border-left: 3px solid var(--stoise-red);
  background: var(--stoise-soft);
  border-radius: 0 12px 12px 0;
}

.about-quote p {
  margin: 0 !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  color: var(--stoise-black) !important;
  letter-spacing: -0.02em;
  line-height: 1.4 !important;
}

.about-band {
  padding: clamp(40px, 6vw, 64px) 0;
  background: var(--stoise-black);
  color: var(--stoise-white);
}

.about-band__title {
  margin: 0 0 24px;
  max-width: 560px;
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.chip-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip-list li {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.chip-list li:hover {
  background: rgba(225, 29, 46, 0.2);
  border-color: rgba(225, 29, 46, 0.45);
}

.about-narrow p {
  margin: 0 0 16px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--stoise-muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.product-block {
  padding: 28px 28px 30px;
  border-radius: 16px;
  border: 1px solid var(--stoise-line);
  background: var(--stoise-white);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}

.product-block:hover {
  border-color: #d0d0d0;
  box-shadow: var(--stoise-shadow);
  transform: translateY(-2px);
}

.product-block--wide {
  grid-column: 1 / -1;
}

.product-block h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--stoise-black);
}

.product-block p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--stoise-muted);
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: clamp(32px, 5vw, 48px);
}

.detail-item {
  padding: 24px 20px;
  background: var(--stoise-white);
  border-radius: 16px;
  border: 1px solid transparent;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.detail-item:hover {
  border-color: var(--stoise-line);
  box-shadow: var(--stoise-shadow);
}

.detail-item__n {
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--stoise-red);
}

.detail-item h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--stoise-black);
}

.detail-item p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--stoise-muted);
}

.custom-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(28px, 4vw, 40px);
  background: var(--stoise-white);
  border-radius: 20px;
  border: 1px solid var(--stoise-line);
  align-items: start;
}

.custom-panel__text h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--stoise-black);
}

.custom-panel__text p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--stoise-muted);
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 16px;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--stoise-ink);
  line-height: 1.4;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--stoise-red);
  box-shadow: inset 0 0 0 3px var(--stoise-white), 0 0 0 1px var(--stoise-red);
}

.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  counter-reset: none;
}

.process-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--stoise-line);
  align-items: start;
}

.process-step:first-child {
  border-top: 1px solid var(--stoise-line);
}

.process-step__num {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--stoise-red);
  line-height: 1.2;
}

.process-step h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--stoise-black);
}

.process-step p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--stoise-muted);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.why-item {
  padding: 26px 24px;
  background: var(--stoise-white);
  border-radius: 16px;
  border-top: 3px solid var(--stoise-red);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.why-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--stoise-shadow);
}

.why-item h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--stoise-black);
}

.why-item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--stoise-muted);
}

.audience-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  text-align: left;
}

.audience-list li {
  padding: 14px 18px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--stoise-ink);
  background: var(--stoise-soft);
  border-radius: 12px;
  border-left: 3px solid var(--stoise-red);
}

.about-cta {
  padding: clamp(64px, 10vw, 110px) 0;
  background:
    radial-gradient(ellipse 70% 80% at 80% 20%, rgba(225, 29, 46, 0.35), transparent 55%),
    linear-gradient(160deg, #1a1a1a 0%, #0d0d0d 100%);
  color: var(--stoise-white);
}

.about-cta__inner {
  max-width: 720px;
}

.about-cta h2 {
  margin: 0 0 18px;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.about-cta p {
  margin: 0 0 28px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

/* —— Home —— */

.home-page {
  --about-max: 1200px;
  --about-pad: clamp(20px, 4vw, 40px);
}

.home-hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--stoise-white);
}

.home-hero__media {
  position: absolute;
  inset: 0;
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.04);
  animation: home-kenburns 18s var(--ease) infinite alternate;
}

@keyframes home-kenburns {
  to {
    transform: scale(1.12);
  }
}

.home-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.82) 100%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(225, 29, 46, 0.28), transparent 60%);
}

.home-hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(48px, 10vh, 96px) var(--about-pad, 40px) clamp(64px, 12vh, 110px);
  animation: page-enter 0.8s var(--ease) 0.1s both;
}

.home-hero__logo {
  height: clamp(48px, 7vw, 72px);
  width: auto;
  margin-bottom: 28px;
  filter: brightness(0) invert(1);
}

.home-hero__title {
  margin: 0 0 16px;
  max-width: 14ch;
  font-size: clamp(2.4rem, 6.5vw, 4.4rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.home-hero__title .accent {
  color: #ff4d5c;
}

.home-hero__lead {
  margin: 0 0 28px;
  max-width: none;
  font-size: clamp(0.95rem, 1.55vw, 1.15rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 1;
  width: 28px;
  height: 42px;
  margin-left: -14px;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 16px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}

.home-hero__scroll span {
  width: 4px;
  height: 8px;
  border-radius: 4px;
  background: var(--stoise-white);
  animation: scroll-dot 1.4s var(--ease) infinite;
}

@keyframes scroll-dot {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(12px);
  }
}

.home-section {
  padding: clamp(56px, 9vw, 96px) 0;
}

.home-section--soft {
  background: var(--stoise-soft);
}

.home-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.home-section__head--stack {
  flex-direction: column;
  align-items: flex-start;
}

.home-section__head .about-h2 {
  margin-bottom: 0;
  max-width: none;
  white-space: nowrap;
}

.home-link {
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--stoise-ink);
  transition: color 0.2s var(--ease);
}

.home-link:hover {
  color: var(--stoise-red);
}

.home-rail-wrap {
  padding: 0 var(--about-pad, 40px);
}

.home-rail {
  display: flex;
  justify-content: center;
  justify-content: safe center;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.home-tile {
  flex: 0 0 min(72vw, 280px);
  scroll-snap-align: start;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  background: var(--stoise-soft);
  transition: transform 0.25s var(--ease);
}

.home-tile:hover {
  transform: translateY(-4px);
}

.home-tile img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.home-tile:hover img {
  transform: scale(1.04);
}

.home-tile__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 4px 4px;
}

.home-tile__meta strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--stoise-black);
}

.home-tile__meta span {
  font-size: 13px;
  color: var(--stoise-muted);
}

.home-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.home-cat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 20px;
  border-radius: 14px;
  background: var(--stoise-white);
  border: 1px solid var(--stoise-line);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.home-cat:hover {
  border-color: #ccc;
  transform: translateY(-2px);
  box-shadow: var(--stoise-shadow);
}

.home-cat__label {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--stoise-black);
}

.home-cat__hint {
  font-size: 13px;
  color: var(--stoise-muted);
}

.home-story {
  padding: clamp(56px, 9vw, 96px) 0;
}

.home-story__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.home-story__visual {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--stoise-soft);
}

.home-story__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-story__text p {
  margin: 0 0 20px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--stoise-muted);
}

.home-cta {
  padding: clamp(64px, 10vw, 100px) 0;
  background:
    radial-gradient(ellipse 70% 70% at 85% 15%, rgba(225, 29, 46, 0.32), transparent 55%),
    linear-gradient(155deg, #171717 0%, #0c0c0c 100%);
  color: var(--stoise-white);
}

.home-cta__inner {
  max-width: 640px;
}

.home-cta h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3.8vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.home-cta p {
  margin: 0 0 28px;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

#koleksi {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

@media (max-width: 900px) {
  .home-cats {
    grid-template-columns: 1fr 1fr;
  }

  .home-story__grid {
    grid-template-columns: 1fr;
  }

  .home-story__visual {
    aspect-ratio: 16 / 11;
  }

  .home-section__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-hero__lead,
  .home-section__head .about-h2 {
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .home-cats {
    grid-template-columns: 1fr;
  }

  .home-hero__logo {
    filter: brightness(0) invert(1);
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .about-split,
  .custom-panel,
  .detail-grid,
  .why-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-block--wide {
    grid-column: auto;
  }

  .detail-grid {
    grid-template-columns: 1fr 1fr;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .process-step {
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }
}

@media (max-width: 560px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .about-toc__link {
    padding: 14px 12px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .site-main {
    opacity: 1;
    transform: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
