/* SEIKATSUI TREND — fashion editorial */

:root {
  --st-ivory: #F6F1EA;
  --st-paper: #FBF7F1;
  --st-ink: #1A1612;
  --st-clay: #C45C3E;
  --st-gold: #B0894A;
  --st-muted: #6B6258;
  --st-line: rgba(26, 22, 18, 0.12);
  --st-white: #fff;
  --st-header: 5rem;
  --st-display: "Cormorant Garamond", "Times New Roman", serif;
  --st-jp: "Shippori Mincho", "Yu Mincho", serif;
  --st-sans: "Noto Sans JP", "Hiragino Sans", sans-serif;
  --st-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body.st-body {
  margin: 0;
  font-family: var(--st-sans);
  color: var(--st-ink);
  background:
    radial-gradient(900px 420px at 8% -8%, rgba(196, 92, 62, 0.07), transparent 55%),
    radial-gradient(800px 380px at 100% 4%, rgba(176, 137, 74, 0.1), transparent 50%),
    linear-gradient(180deg, var(--st-paper) 0%, var(--st-ivory) 48%, #efe6d9 100%);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol { margin: 0; padding: 0; }
button, input, select, textarea { font: inherit; }

.st-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  background: var(--st-ink);
  color: var(--st-ivory);
  padding: 0.7rem 1rem;
}

.st-skip:focus {
  left: 1rem;
  top: 1rem;
}

.st-wrap {
  width: min(1180px, calc(100% - 2.4rem));
  margin-inline: auto;
}

.st-wrap--narrow {
  width: min(760px, calc(100% - 2.4rem));
}

.st-eyebrow {
  margin: 0 0 0.7rem;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--st-clay);
  font-weight: 500;
}

.st-eyebrow--light { color: #e8c9b8; }

.st-section {
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.st-section--soft {
  background: rgba(255, 255, 255, 0.38);
}

.st-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: 2.4rem;
}

.st-heading h2,
.st-mast h1,
.st-hero__title,
.st-prose h2,
.st-visit h2,
.st-not-found h1,
.st-thanks h2 {
  font-family: var(--st-jp);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.28;
}

.st-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.st-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.1rem;
}

.st-link--on-dark { color: var(--st-ivory); }

.st-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  transition: background 0.25s var(--st-ease), border-color 0.25s, color 0.25s;
}

.st-btn--light {
  background: var(--st-ivory);
  color: var(--st-ink);
}

.st-btn--light:hover { background: var(--st-white); }

.st-btn--ghost {
  background: transparent;
  color: var(--st-ivory);
  border-color: rgba(255, 255, 255, 0.5);
}

.st-btn--ghost:hover { background: rgba(255, 255, 255, 0.1); }

.st-btn--ink {
  background: var(--st-ink);
  color: var(--st-ivory);
}

.st-btn--ink:hover { background: #2a241c; }

.st-image {
  overflow: hidden;
  background: #d8cfc3;
}

.st-image img,
.st-cat__media img,
.st-mosaic__item img,
.st-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--st-ease);
}

.st-cat:hover img,
.st-product:hover img,
.st-mosaic__item:hover img,
.st-journal__card:hover img {
  transform: scale(1.05);
}

/* Header */
.st-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--st-header);
  background: rgba(246, 241, 234, 0.9);
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
  border-bottom: 1px solid transparent;
  color: var(--st-ink);
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s, height 0.35s;
}

.st-header.is-scrolled {
  height: 4.25rem;
  background: rgba(246, 241, 234, 0.97);
  border-bottom-color: var(--st-line);
  box-shadow: 0 10px 40px rgba(26, 22, 18, 0.06);
}

.st-header.is-over-hero:not(.is-scrolled) {
  background: linear-gradient(180deg, rgba(14, 12, 10, 0.5), transparent);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: var(--st-white);
  box-shadow: none;
}

.st-header.is-over-hero:not(.is-scrolled) .st-logo__mark,
.st-header.is-over-hero:not(.is-scrolled) .st-logo__sub,
.st-header.is-over-hero:not(.is-scrolled) .st-nav__link {
  color: var(--st-white);
}

.st-header.is-over-hero:not(.is-scrolled) .st-nav__toggle-bar {
  background: var(--st-white);
}

.st-nav__inner {
  width: min(1280px, calc(100% - 2rem));
  margin-inline: auto;
  min-height: inherit;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.st-logo {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  line-height: 1.1;
}

.st-logo__mark {
  font-family: var(--st-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.st-logo__sub {
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  color: var(--st-muted);
}

.st-nav__list {
  display: flex;
  gap: 1.4rem;
  list-style: none;
}

.st-nav__link {
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  position: relative;
}

.st-nav__link.is-active::after,
.st-nav__link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 1px;
  background: currentColor;
}

.st-nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
}

.st-nav__toggle-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--st-ink);
  transition: transform 0.25s var(--st-ease), opacity 0.2s;
}

.st-nav__toggle[aria-expanded="true"] .st-nav__toggle-bar:first-child {
  transform: translateY(4.25px) rotate(45deg);
}

.st-nav__toggle[aria-expanded="true"] .st-nav__toggle-bar:last-child {
  transform: translateY(-4.25px) rotate(-45deg);
}

.st-nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1200;
}

.st-nav-drawer[hidden] { display: none !important; }
.st-nav-drawer.is-open { display: block; }

.st-nav-drawer__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  width: 100%;
  background: rgba(20, 16, 12, 0.55);
  cursor: pointer;
}

.st-nav-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(22rem, 88vw);
  height: 100%;
  background: var(--st-ivory);
  color: var(--st-ink);
  padding: 1.4rem 1.3rem 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s var(--st-ease);
  box-shadow: -12px 0 40px rgba(26, 22, 18, 0.12);
}

.st-nav-drawer.is-open .st-nav-drawer__panel { transform: translateX(0); }

.st-nav-drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.st-nav-drawer__brand {
  margin: 0;
  font-family: var(--st-display);
  letter-spacing: 0.08em;
}

.st-nav-drawer__close {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
}

.st-nav-drawer__list { list-style: none; }

.st-nav-drawer__link {
  display: block;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--st-line);
  font-family: var(--st-jp);
  font-size: 1.15rem;
}

.st-nav-drawer__link.is-active { color: var(--st-clay); }

.st-nav-drawer__meta {
  margin-top: 1.6rem;
  font-size: 0.82rem;
  color: var(--st-muted);
}

body.is-drawer-open { overflow: hidden; }

/* Hero */
.st-hero {
  position: relative;
  height: clamp(560px, 86vh, 860px);
  overflow: hidden;
  background: #111;
  color: var(--st-white);
}

.st-hero__track,
.st-hero__slide {
  position: absolute;
  inset: 0;
}

.st-hero__slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s var(--st-ease), visibility 0.8s;
}

.st-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.st-hero__media {
  position: absolute;
  inset: 0;
}

.st-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
}

.st-hero__media.is-animate img {
  animation: stKenburns 14s var(--st-ease) infinite alternate;
}

@keyframes stKenburns {
  from { transform: scale(1.04) translate(0, 0); }
  to { transform: scale(1.12) translate(-1.6%, -1%); }
}

.st-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(8, 6, 5, 0.82) 0%, rgba(8, 6, 5, 0.38) 48%, rgba(8, 6, 5, 0.62) 100%),
    linear-gradient(180deg, rgba(8, 6, 5, 0.38) 0%, transparent 40%, rgba(8, 6, 5, 0.78) 100%);
}

.st-hero__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--st-header) + 1.4rem) clamp(1.3rem, 5vw, 4.6rem) 7.2rem;
  max-width: min(46rem, 92vw);
}

.st-hero__brand {
  margin: 0 0 0.7rem;
  font-family: var(--st-display);
  letter-spacing: 0.2em;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.st-hero__label {
  margin: 0;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  opacity: 0.9;
}

.st-hero__title {
  margin: 0.85rem 0 0;
  font-size: clamp(2.1rem, 6vw, 4.1rem);
}

.st-hero__text {
  margin: 1.1rem 0 0;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.88);
}

.st-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.st-hero__ui {
  position: absolute;
  left: clamp(1.2rem, 5vw, 4.4rem);
  right: clamp(1.2rem, 5vw, 4.4rem);
  bottom: 1.3rem;
  z-index: 3;
  display: grid;
  gap: 0.7rem;
}

.st-hero__progress {
  height: 2px;
  background: rgba(255, 255, 255, 0.22);
  overflow: hidden;
}

.st-hero__progress-bar {
  display: block;
  height: 100%;
  width: 0;
  background: var(--st-ivory);
}

.st-hero__progress-bar.is-run {
  animation: stBar 5.6s linear forwards;
}

@keyframes stBar {
  from { width: 0; }
  to { width: 100%; }
}

.st-hero__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.st-hero__count {
  margin: 0;
  font-family: var(--st-display);
  letter-spacing: 0.14em;
}

.st-hero__nav { display: flex; gap: 0.45rem; }

.st-hero__nav-btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--st-white);
  background: rgba(14, 12, 10, 0.28);
  cursor: pointer;
}

.st-hero__nav-btn:hover { background: rgba(255, 255, 255, 0.12); }

.st-hero__dots { display: flex; gap: 0.45rem; }

.st-hero__dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
}

.st-hero__dot.is-active { background: var(--st-ivory); }

.st-hero__scroll {
  position: absolute;
  right: clamp(1.2rem, 4vw, 3rem);
  bottom: 1.5rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  writing-mode: vertical-rl;
}

.st-hero__scroll i {
  width: 1px;
  height: 2.2rem;
  background: currentColor;
}

/* Category tiles */
.st-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 72vh;
}

.st-cat {
  position: relative;
  min-height: 420px;
  color: var(--st-ivory);
  overflow: hidden;
}

.st-cat__media,
.st-cat__veil {
  position: absolute;
  inset: 0;
}

.st-cat__media img { height: 100%; }

.st-cat__veil {
  background: linear-gradient(180deg, rgba(10, 8, 6, 0.1) 20%, rgba(10, 8, 6, 0.78) 100%);
}

.st-cat__body {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.5rem;
}

.st-cat h2 {
  margin: 0;
  font-family: var(--st-jp);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
}

.st-cat p { margin: 0.55rem 0 1rem; color: rgba(255, 255, 255, 0.82); }

/* Mosaic */
.st-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 0.7rem;
}

.st-mosaic__item {
  position: relative;
  overflow: hidden;
  margin: 0;
}

.st-mosaic__item--wide { grid-column: span 2; grid-row: span 2; }
.st-mosaic__item--tall { grid-row: span 2; }

.st-mosaic__item img { height: 100%; }

.st-mosaic__item figcaption {
  position: absolute;
  left: 0.8rem;
  bottom: 0.7rem;
  color: var(--st-ivory);
  font-size: 0.86rem;
  display: flex;
  gap: 0.5rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.st-mosaic__item figcaption span {
  color: var(--st-gold);
  font-family: var(--st-display);
}

/* Arrivals */
.st-arrivals {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.st-product h3 {
  margin: 0.35rem 0 0;
  font-family: var(--st-jp);
  font-size: 1.08rem;
  font-weight: 500;
}

.st-product p {
  display: flex;
  justify-content: space-between;
  margin: 0.7rem 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--st-muted);
}

.st-product p span { color: var(--st-clay); }

.st-product .st-image { aspect-ratio: 3 / 4; }

/* Process */
.st-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  list-style: none;
}

.st-process__num {
  display: block;
  font-family: var(--st-display);
  color: var(--st-gold);
  letter-spacing: 0.12em;
  margin-bottom: 0.6rem;
}

.st-process h3 {
  margin: 0 0 0.45rem;
  font-family: var(--st-jp);
  font-size: 1.2rem;
  font-weight: 500;
}

.st-process p { margin: 0; color: var(--st-muted); }

/* Journal */
.st-journal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.st-journal__card .st-image { aspect-ratio: 4 / 5; margin-bottom: 0.9rem; }

.st-journal__card time,
.st-journal__card p:first-of-type {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--st-muted);
}

.st-journal__card h3 {
  margin: 0.3rem 0 0.45rem;
  font-family: var(--st-jp);
  font-size: 1.25rem;
  font-weight: 500;
}

/* FAQ */
.st-faq__item {
  border-top: 1px solid var(--st-line);
}

.st-faq__item:last-child { border-bottom: 1px solid var(--st-line); }

.st-faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  font-family: var(--st-jp);
  font-size: 1.05rem;
}

.st-faq summary::-webkit-details-marker { display: none; }

.st-faq__item p {
  margin: 0 0 1.15rem;
  color: var(--st-muted);
}

/* Visit / mast */
.st-visit,
.st-mast {
  position: relative;
  min-height: 420px;
  color: var(--st-ivory);
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}

.st-mast { min-height: 58vh; }

.st-visit__media,
.st-mast__media {
  position: absolute;
  inset: 0;
}

.st-visit__media img,
.st-mast__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.st-visit__veil,
.st-mast__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 8, 6, 0.35), rgba(10, 8, 6, 0.72));
}

.st-visit__inner,
.st-mast__copy {
  position: relative;
  z-index: 1;
  padding: calc(var(--st-header) + 2rem) 1.4rem 3.4rem;
  max-width: 42rem;
}

.st-visit h2,
.st-mast h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3.2rem);
}

.st-visit__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

/* Inner pages */
.st-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.st-split--flip { direction: rtl; }
.st-split--flip > * { direction: ltr; }

.st-prose h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
}

.st-prose p { color: var(--st-muted); }

.st-bullets {
  margin: 1rem 0 1.3rem 1.1rem;
  color: var(--st-muted);
}

.st-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.st-cards h3 {
  margin: 0.8rem 0 0.35rem;
  font-family: var(--st-jp);
  font-weight: 500;
}

.st-cards p { color: var(--st-muted); }

.st-article-rail { display: grid; gap: 2rem; }

.st-article-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  align-items: center;
}

.st-article-row .st-image { aspect-ratio: 4 / 5; }

.st-article-row__body p:first-child {
  display: flex;
  gap: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--st-muted);
}

.st-article-row h2 {
  margin: 0.35rem 0 0.5rem;
  font-family: var(--st-jp);
  font-size: 1.45rem;
  font-weight: 500;
}

.st-contact {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.4rem;
}

.st-form { display: grid; gap: 1rem; }

.st-form label { display: grid; gap: 0.4rem; }

.st-form span {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.st-form input,
.st-form select,
.st-form textarea {
  width: 100%;
  border: 1px solid var(--st-line);
  background: rgba(255, 255, 255, 0.7);
  padding: 0.8rem 0.9rem;
  color: var(--st-ink);
}

.st-form button { justify-self: start; }

.st-contact__aside dl { margin: 1rem 0 1.4rem; }
.st-contact__aside dt {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--st-gold);
  margin-top: 0.9rem;
}
.st-contact__aside dd { margin: 0.25rem 0 0; }

.st-thanks h2 { font-size: 2rem; }

.st-not-found {
  min-height: 72vh;
  display: grid;
  place-content: center;
  text-align: center;
  padding: calc(var(--st-header) + 3rem) 1.4rem 4rem;
}

.st-not-found h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 5vw, 3rem);
}

.st-not-found p { color: var(--st-muted); }

/* Footer */
.st-footer {
  background: var(--st-ink);
  color: #e8e0d6;
  padding: 3.4rem 0 0;
}

.st-footer__inner {
  width: min(1180px, calc(100% - 2.4rem));
  margin-inline: auto;
}

.st-footer__name {
  display: block;
  font-family: var(--st-display);
  font-size: 1.8rem;
  letter-spacing: 0.08em;
}

.st-footer__jp {
  display: block;
  margin: 0.2rem 0 0.8rem;
  letter-spacing: 0.12em;
  color: var(--st-gold);
  font-size: 0.82rem;
}

.st-footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2rem 0 0;
}

.st-footer__grid span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--st-gold);
  margin-bottom: 0.5rem;
}

.st-footer a:hover { color: var(--st-ivory); }

.st-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.4rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  width: min(1180px, calc(100% - 2.4rem));
  margin-inline: auto;
  font-size: 0.78rem;
  color: #b6aea3;
}

/* Reveal: visible by default, hide only after JS ready */
.st-reveal { --st-delay: 0s; }

html.st-ready .st-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--st-ease) var(--st-delay), transform 0.8s var(--st-ease) var(--st-delay);
}

html.st-ready .st-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .st-arrivals,
  .st-process,
  .st-journal { grid-template-columns: repeat(2, 1fr); }
  .st-mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .st-mosaic__item--wide,
  .st-mosaic__item--tall { grid-column: span 1; grid-row: span 1; }
}

@media (max-width: 880px) {
  .st-nav__list { display: none; }
  .st-nav__toggle { display: flex; }
  .st-cats { grid-template-columns: 1fr; min-height: 0; }
  .st-cat { min-height: 360px; }
  .st-split,
  .st-cards,
  .st-contact,
  .st-article-row { grid-template-columns: 1fr; }
  .st-split--flip { direction: ltr; }
  .st-heading { flex-direction: column; align-items: flex-start; }
  .st-footer__grid { grid-template-columns: 1fr; }
  .st-hero__scroll { display: none; }
}

.st-stats { padding: 2.75rem 0 1.25rem; background: #fff; }
.st-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.st-stat { text-align: center; padding: 0.5rem; }
.st-stat__value {
  margin: 0;
  font-family: "Cormorant Garamond", "Shippori Mincho", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--st-clay, #C45C3E);
  line-height: 1;
}
.st-stat__label { margin: 0.45rem 0 0; font-size: 0.78rem; letter-spacing: 0.08em; color: rgba(26, 22, 18, 0.58); }
.st-marquee {
  overflow: hidden;
  border-block: 1px solid rgba(26, 22, 18, 0.1);
  padding: 0.95rem 0;
  background: #1A1612;
  color: #F6F1EA;
}
.st-marquee__track {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  animation: st-marquee 30s linear infinite;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.st-marquee i { color: #C45C3E; font-style: normal; opacity: 0.7; }
@keyframes st-marquee { to { transform: translateX(-50%); } }

@media (max-width: 720px) {
  .st-stats__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .st-arrivals,
  .st-process,
  .st-journal { grid-template-columns: 1fr; }
  .st-hero { height: min(92vh, 760px); }
  .st-hero__title { font-size: clamp(1.8rem, 9vw, 2.6rem); }
  .st-footer__bottom { flex-direction: column; }
  .st-hero__actions { flex-wrap: wrap; }
  .st-btn { min-height: 44px; }
  .st-mosaic { grid-template-columns: 1fr; grid-auto-rows: 200px; }
}

@media (prefers-reduced-motion: reduce) {
  .st-marquee__track { animation: none; }
}
