:root {
  --bg: #f7f3ed;
  --bg-strong: #fffdf9;
  --panel: rgba(255, 255, 255, 0.84);
  --panel-strong: rgba(255, 255, 255, 0.94);
  --line: rgba(23, 18, 13, 0.08);
  --text: #17120d;
  --muted: rgba(23, 18, 13, 0.62);
  --accent: #d9b98c;
  --accent-strong: #8f6b41;
  --accent-soft: #f3e2c8;
  --accent-rgb: 217, 185, 140;
  --shadow: 0 24px 70px rgba(39, 26, 11, 0.12);
  --shadow-soft: 0 14px 36px rgba(30, 20, 10, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --max-width: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 12%, rgba(var(--accent-rgb), 0.16), transparent 22%),
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.9), transparent 24%),
    radial-gradient(circle at 20% 82%, rgba(var(--accent-rgb), 0.1), transparent 28%),
    linear-gradient(180deg, var(--bg-strong) 0%, var(--bg) 100%);
}

body.intro-active,
body.overlay-open,
body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  color: inherit;
  font: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.34;
}

.orb-a {
  top: -10vw;
  right: -8vw;
  width: 34vw;
  height: 34vw;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.24), transparent 62%);
  animation: floatA 18s ease-in-out infinite;
}

.orb-b {
  left: -8vw;
  bottom: 0;
  width: 26vw;
  height: 26vw;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.16), transparent 60%);
  animation: floatB 20s ease-in-out infinite;
}

.orb-c {
  left: 42vw;
  top: 42vh;
  width: 18vw;
  height: 18vw;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.88), transparent 60%);
  animation: floatC 22s ease-in-out infinite;
}

.noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(0, 0, 0, 0.14) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 40%, rgba(0, 0, 0, 0.1) 0 1px, transparent 1px);
  background-size: 140px 140px;
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at center, rgba(var(--accent-rgb), 0.08), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,0.995), rgba(247,241,232,0.995));
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.intro.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-core {
  position: relative;
  width: min(520px, 78vw);
  height: min(520px, 78vw);
  display: grid;
  place-items: center;
  isolation: isolate;
}

.intro-grid,
.intro-glow,
.intro-flare,
.intro-dust {
  position: absolute;
  inset: -12%;
  pointer-events: none;
}

.intro-grid {
  background:
    linear-gradient(rgba(23, 18, 13, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 18, 13, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black 24%, transparent 72%);
  opacity: 0;
  transform: scale(0.88) rotate(-8deg);
}

.intro-glow {
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.96), transparent 28%),
    radial-gradient(circle at center, rgba(var(--accent-rgb), 0.26), transparent 55%);
  opacity: 0;
  transform: scale(0.76);
}

.intro-flare {
  inset: 10% -12%;
  background: linear-gradient(100deg, transparent 12%, rgba(255, 255, 255, 0.86) 47%, transparent 82%);
  mix-blend-mode: screen;
  opacity: 0;
  transform: translateX(-34%) skewX(-18deg);
}

.intro-dust {
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0;
}

.dust-a {
  inset: 16% auto auto 10%;
  width: 72px;
  height: 72px;
  background: rgba(var(--accent-rgb), 0.26);
}

.dust-b {
  inset: auto 14% 18% auto;
  width: 92px;
  height: 92px;
  background: rgba(var(--accent-rgb), 0.18);
}

.dust-c {
  inset: auto auto 12% 20%;
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.82);
}

.intro-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(23, 18, 13, 0.06);
  opacity: 0;
  transform: scale(0.82);
}

.orbit-2 {
  inset: 10%;
}

.orbit-3 {
  inset: 22%;
}

.intro-line {
  position: absolute;
  height: 1px;
  width: 70%;
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.4), transparent);
  opacity: 0;
  transform: scaleX(0.35);
}

.line-2 {
  transform: rotate(60deg);
}

.line-3 {
  transform: rotate(-60deg);
}

.intro-object {
  position: absolute;
  border-radius: 22px;
  border: 1px solid rgba(23,18,13,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(244,236,224,0.5));
  box-shadow: 0 22px 40px rgba(31,18,4,0.08);
  opacity: 0;
}

.object-1 {
  width: 86px;
  height: 86px;
  left: 26px;
  top: 84px;
  transform: rotate(18deg);
}

.object-2 {
  width: 128px;
  height: 34px;
  right: 28px;
  top: 92px;
  border-radius: 999px;
  transform: rotate(-22deg);
}

.object-3 {
  width: 72px;
  height: 72px;
  right: 62px;
  bottom: 90px;
  transform: rotate(30deg);
}

.intro-logo-wrap {
  position: relative;
  z-index: 2;
  width: min(320px, 62vw);
  filter: drop-shadow(0 16px 26px rgba(50, 28, 8, 0.08));
  opacity: 0;
  transform: scale(0.82);
  display: grid;
  justify-items: center;
  gap: 0.7rem;
}

.intro-logo-wrap::before {
  content: "";
  position: absolute;
  inset: -18% -24%;
  background: linear-gradient(110deg, transparent 25%, rgba(255, 255, 255, 0.94) 50%, transparent 76%);
  opacity: 0;
  transform: translateX(-46%) skewX(-18deg);
}

.intro-sigil {
  width: 108px;
  height: 108px;
  border-radius: 34px;
  border: 1px solid rgba(23, 18, 13, 0.08);
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.9), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,0.88), rgba(244,236,224,0.76));
  display: grid;
  place-items: center;
  box-shadow: 0 22px 42px rgba(31,18,4,0.08);
}

.intro-sigil span,
.brand-sigil,
.footer-sigil {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(90deg, #c67f49, #e2c991, #ff9850);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.intro-sigil span {
  font-size: 4.3rem;
  transform: translateY(-2px);
}

.intro-wordmark {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-transform: lowercase;
  background: linear-gradient(90deg, #c67f49, #e2c991, #ff9850);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.intro-claim {
  position: absolute;
  top: calc(50% + 104px);
  left: 50%;
  transform: translate(-50%, 16px);
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-size: clamp(0.76rem, 0.7vw + 0.7rem, 0.95rem);
  color: rgba(23,18,13,0.56);
  white-space: nowrap;
  opacity: 0;
}

.page-shell {
  position: relative;
  z-index: 1;
  opacity: 1;
  transform: none;
}

.intro.intro-enter .intro-grid {
  opacity: 0.34;
  transform: scale(1) rotate(0deg);
  transition: opacity 0.55s ease, transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.intro.intro-enter .intro-glow {
  opacity: 1;
  transform: scale(1.08);
  transition: opacity 0.45s ease 0.08s, transform 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.08s;
}

.intro.intro-enter .intro-flare {
  opacity: 1;
  transform: translateX(34%) skewX(-18deg);
  transition: transform 1.2s ease 0.18s, opacity 0.35s ease 0.18s;
}

.intro.intro-enter .intro-dust {
  opacity: 1;
  transition: opacity 0.5s ease 0.12s, transform 1.6s ease;
}

.intro.intro-enter .dust-a { transform: translate3d(26px, -18px, 0); }
.intro.intro-enter .dust-b { transform: translate3d(-24px, -10px, 0); }
.intro.intro-enter .dust-c { transform: translate3d(20px, 12px, 0); }

.intro.intro-enter .intro-orbit {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.55s ease, transform 0.95s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.intro.intro-enter .orbit-2 { transition-delay: 0.08s; }
.intro.intro-enter .orbit-3 { transition-delay: 0.16s; }

.intro.intro-enter .intro-line {
  opacity: 1;
  transform: scaleX(1);
  transition: opacity 0.3s ease 0.24s, transform 0.55s ease 0.24s;
}

.intro.intro-enter .line-2 { transition-delay: 0.3s; }
.intro.intro-enter .line-3 { transition-delay: 0.36s; }

.intro.intro-enter .intro-object {
  opacity: 1;
  transition: opacity 0.45s ease, transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.intro.intro-enter .object-1 {
  transform: translateY(-12px) rotate(11deg);
  transition-delay: 0.28s;
}

.intro.intro-enter .object-2 {
  transform: translateY(10px) rotate(-16deg);
  transition-delay: 0.36s;
}

.intro.intro-enter .object-3 {
  transform: translateY(-8px) rotate(18deg);
  transition-delay: 0.44s;
}

.intro.intro-enter .intro-logo-wrap {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s ease 0.42s, transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.42s;
}

.intro.intro-enter .intro-logo-wrap::before {
  opacity: 1;
  transform: translateX(48%) skewX(-18deg);
  transition: opacity 0.25s ease 0.58s, transform 0.95s ease 0.58s;
}

.intro.intro-enter .intro-claim {
  opacity: 1;
  transform: translate(-50%, 0);
  transition: opacity 0.45s ease 0.72s, transform 0.7s ease 0.72s;
}

.intro.intro-exit .intro-core {
  animation: introPulseOut 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px) scale(0.985);
  transition: opacity 0.75s ease, transform 0.95s cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.product-card {
  opacity: 0;
  transform: translateY(36px) scale(0.985);
}

.product-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition: opacity 0.65s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-copy::after,
.hero-panel-card::after,
.catalog-toolbar::after,
.highlight-card::after,
.featured-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.45) 46%, transparent 70%);
  opacity: 0;
  transform: translateX(-30%);
  pointer-events: none;
}

.hero-copy,
.hero-panel-card,
.catalog-toolbar,
.highlight-card,
.featured-card {
  position: relative;
  overflow: hidden;
}

.hero-copy.is-visible::after,
.hero-panel-card.is-visible::after,
.catalog-toolbar.is-visible::after,
.highlight-card.is-visible::after,
.featured-card.is-visible::after {
  animation: cardSweep 1.3s ease 0.12s 1;
}

.status-banner {
  animation: breathe 2.8s ease-in-out infinite;
}

.container {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.66);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.brand-sigil {
  font-size: 2.45rem;
  transform: translateY(-2px);
}

.brand-copy {
  display: grid;
  gap: 0.16rem;
}

.brand-copy strong,
.hero-panel-card h2,
.catalog-toolbar h2,
.empty-state h3,
.overlay-head h2,
.detail-title-row h3,
.metric strong,
.experience-card h3,
.manifesto-card h2,
.footer-copy strong,
.section-head h2,
.quote-card blockquote,
.highlight-card h3,
.featured-card h3,
.materials-card h3,
.join-card h2 {
  font-family: "Space Grotesk", sans-serif;
}

.brand-copy strong {
  font-size: 1.15rem;
}

.brand-copy small,
.eyebrow,
.detail-collection {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.74rem;
  color: var(--muted);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.icon-button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.social-link svg,
.footer-o svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.icon-button:hover,
.btn:hover,
.collection-button:hover,
.product-card:hover,
.favorite-toggle:hover,
.footer-o:hover,
.highlight-card:hover,
.featured-card:hover,
.materials-card:hover,
.experience-card:hover {
  transform: translateY(-2px);
}

.mobile-nav-toggle {
  display: none;
  gap: 4px;
  padding: 0;
}

.mobile-nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.favorites-button {
  position: relative;
}

.heart-icon {
  font-size: 1rem;
  line-height: 1;
}

.favorites-badge {
  position: absolute;
  top: -5px;
  right: -4px;
  min-width: 22px;
  height: 22px;
  padding: 0 0.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero {
  padding: 2rem 0 1.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 1.2rem;
}

.hero-copy,
.hero-panel-card,
.category-sidebar,
.catalog-toolbar,
.product-card,
.empty-state,
.favorites-item,
.status-banner,
.overlay-panel,
.manifesto-card,
.manifesto-metrics,
.experience-card,
.highlight-card,
.featured-card,
.quote-card,
.materials-card,
.join-card {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-panel-card,
.category-sidebar,
.catalog-toolbar,
.empty-state,
.status-banner,
.manifesto-card,
.manifesto-metrics,
.quote-card,
.join-card {
  border-radius: var(--radius-xl);
}

.hero-copy {
  padding: clamp(1.4rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.86), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(var(--accent-rgb), 0.22), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 236, 225, 0.8));
}

.hero-wordmark {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4.2rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: -0.06em;
  max-width: 7ch;
  margin: 0.25rem 0 0.7rem;
  background: linear-gradient(90deg, #c67f49, #e2c991, #ff9850);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-copy h1 {
  margin: 0.5rem 0 1rem;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 0.95;
  max-width: 16ch;
}

.hero-text,
.toolbar-description,
.sidebar-text,
.empty-state p,
.favorites-item p,
.detail-description,
.detail-section p,
.footer-note,
.manifesto-card p:last-child,
.metric span,
.experience-card p:last-child,
.highlight-card p,
.featured-card p,
.quote-card p,
.materials-card p,
.join-card p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-actions,
.detail-actions,
.join-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.btn {
  min-height: 52px;
  padding: 0 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  background: var(--text);
  color: #fff;
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.14);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.84);
}

.hero-panel-card,
.manifesto-card,
.manifesto-metrics,
.quote-card,
.join-card {
  padding: 1.4rem;
}

.hero-panel-card {
  height: 100%;
  display: grid;
  align-content: start;
  gap: 1rem;
  background:
    radial-gradient(circle at 16% 16%, rgba(255, 255, 255, 0.84), transparent 24%),
    radial-gradient(circle at 86% 18%, rgba(var(--accent-rgb), 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 239, 231, 0.84));
}

.panel-label,
.section-head .eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--accent-strong);
}

.hero-panel-card h2,
.catalog-toolbar h2,
.empty-state h3,
.overlay-head h2,
.section-head h2,
.manifesto-card h2,
.join-card h2 {
  margin: 0;
}

.hero-panel-pills,
.property-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.hero-panel-pills span,
.product-meta,
.property-pill {
  padding: 0.7rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  font-size: 0.84rem;
  color: var(--muted);
}

.collection-highlights,
.manifesto,
.quote-section,
.featured-strip,
.materials-strip,
.experience-strip,
.join-section {
  padding: 0.8rem 0 1.6rem;
}

.section-head {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1;
}

.highlight-grid,
.featured-grid,
.materials-grid,
.experience-grid,
.manifesto-grid {
  display: grid;
  gap: 1rem;
}

.highlight-grid {
  grid-template-columns: repeat(3, 1fr);
}

.highlight-card,
.featured-card,
.materials-card,
.experience-card {
  border-radius: 28px;
  padding: 1.2rem;
}

.highlight-card {
  min-height: 240px;
  display: grid;
  align-content: space-between;
  background:
    radial-gradient(circle at 84% 18%, rgba(var(--accent-rgb), 0.18), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 235, 224, 0.88));
}

.highlight-card h3,
.featured-card h3,
.materials-card h3,
.experience-card h3 {
  margin: 0.2rem 0 0.4rem;
  font-size: 1.15rem;
}

.highlight-card .meta,
.featured-card .meta {
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.manifesto-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.manifesto-card h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 0.98;
  margin: 0 0 0.8rem;
}

.manifesto-metrics {
  display: grid;
  gap: 0.8rem;
}

.metric {
  padding: 1rem 1.05rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.metric strong {
  display: block;
  margin-bottom: 0.25rem;
}

.quote-card {
  text-align: center;
}

.quote-card blockquote {
  margin: 0.25rem auto 0.7rem;
  max-width: 16ch;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.96;
}

.featured-grid {
  grid-template-columns: repeat(3, 1fr);
}

.featured-card {
  min-height: 280px;
  display: grid;
  align-content: end;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.16), rgba(255,255,255,0.78)),
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.86), transparent 26%),
    radial-gradient(circle at 84% 18%, rgba(var(--accent-rgb), 0.22), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,0.92), rgba(239,228,212,0.9));
}

.featured-card.large {
  grid-column: span 2;
}

.materials-grid,
.experience-grid {
  grid-template-columns: repeat(3, 1fr);
}

.materials-card,
.experience-card {
  background: rgba(255,255,255,0.78);
}

.catalog {
  padding: 1rem 0 4rem;
}

.catalog-layout {
  display: grid;
  grid-template-columns: minmax(250px, 310px) minmax(0, 1fr);
  gap: 1.2rem;
  align-items: start;
}

.category-sidebar {
  position: sticky;
  top: 106px;
  padding: 1.3rem;
}

.sidebar-top {
  margin-bottom: 1.1rem;
}

.category-list {
  display: grid;
  gap: 0.7rem;
}

.collection-button {
  width: 100%;
  padding: 1rem 1rem 1rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  text-align: left;
  display: grid;
  gap: 0.35rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.collection-button strong {
  font-size: 1rem;
}

.collection-button small {
  color: var(--muted);
}

.collection-button.active {
  background: var(--text);
  color: #fff;
}

.collection-button.active small {
  color: rgba(255, 255, 255, 0.7);
}

.catalog-content {
  display: grid;
  gap: 1rem;
}

.catalog-toolbar,
.status-banner,
.empty-state {
  padding: 1.2rem 1.3rem;
}

.status-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.status-banner.is-switching {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 18px 42px rgba(var(--accent-rgb), 0.16);
}

.spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(var(--accent-rgb), 0.22);
  border-top-color: var(--accent-strong);
  animation: spin 0.8s linear infinite;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.product-grid.is-loading {
  opacity: 0.55;
  transition: opacity 0.25s ease;
}

.product-card {
  padding: 1rem;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.product-card:hover {
  box-shadow: 0 24px 54px rgba(var(--accent-rgb), 0.18);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(var(--accent-rgb), 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 42%);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: auto 10% 8% 10%;
  height: 38px;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.24), transparent 72%);
  filter: blur(20px);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.product-card:hover::before,
.product-card:hover::after {
  opacity: 1;
}

.product-card-media {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.product-card:hover .product-card-media img {
  transform: scale(1.04);
}

.favorite-toggle {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  background: rgba(23, 18, 13, 0.12);
  color: #fff;
  backdrop-filter: blur(14px);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
  z-index: 2;
}

.favorite-toggle.is-active,
.favorite-detail.is-active {
  background: #fff;
  color: #cb4959;
}

.product-card-body {
  display: grid;
  gap: 0.8rem;
  padding-top: 1rem;
}

.product-card-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.product-card h3 {
  margin: 0.2rem 0 0;
  font-size: 1.08rem;
}

.product-card p {
  margin: 0;
  color: var(--muted);
}

.product-price {
  font-weight: 700;
  white-space: nowrap;
}

.product-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.product-card-action {
  margin-top: 0.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-strong);
  font-weight: 700;
}

.skeleton-grid .skeleton-card {
  min-height: 360px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255,255,255,0.64) 20%, rgba(255,255,255,0.94) 40%, rgba(255,255,255,0.64) 60%);
  background-size: 200% 100%;
  animation: shimmer 1.2s linear infinite;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
}

.overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 16, 12, 0.36);
  backdrop-filter: blur(10px);
}

.overlay-panel {
  position: absolute;
  background:
    radial-gradient(circle at 16% 16%, rgba(255, 255, 255, 0.86), transparent 26%),
    radial-gradient(circle at 84% 18%, rgba(var(--accent-rgb), 0.2), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 239, 231, 0.96));
}

.favorites-panel {
  top: 0;
  right: 0;
  width: min(520px, 100%);
  height: 100%;
  padding: 1.2rem;
  border-left: 1px solid var(--line);
  overflow-y: auto;
}

.product-panel {
  top: 50%;
  left: 50%;
  width: min(1180px, calc(100% - 1rem));
  max-height: calc(100vh - 1rem);
  overflow-y: auto;
  transform: translate(-50%, -50%);
  padding: 1.2rem;
  border-radius: 30px;
}

.overlay-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.close-button {
  font-size: 1.6rem;
  line-height: 1;
}

.favorites-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.favorites-item {
  padding: 0.95rem;
  border-radius: 22px;
  display: grid;
  gap: 0.9rem;
}

.favorites-item-top {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 0.8rem;
}

.favorites-item-top img {
  width: 88px;
  height: 108px;
  object-fit: cover;
  border-radius: 16px;
}

.favorites-item h3 {
  margin: 0 0 0.25rem;
}

.favorites-item-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 1.2rem;
  padding-top: 1rem;
}

.detail-gallery,
.detail-content {
  display: grid;
  gap: 1rem;
}

.detail-main-image-wrap {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  aspect-ratio: 4 / 5;
}

.detail-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.detail-thumb {
  width: 88px;
  height: 110px;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-thumb.is-active {
  outline: 2px solid var(--accent-strong);
}

.detail-top {
  display: grid;
  gap: 0.4rem;
}

.detail-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.detail-title-row h3 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.favorite-detail {
  position: static;
  color: var(--text);
  background: rgba(255, 255, 255, 0.88);
  border-color: var(--line);
}

.detail-price {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 800;
}

.detail-section {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.detail-section h4 {
  margin: 0 0 0.7rem;
  font-size: 1rem;
}

.footer-zone {
  min-height: 46vh;
  display: grid;
  align-items: end;
  padding: 2rem 0;
}

.footer-wrap {
  padding-top: 3rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-sigil {
  width: 74px;
  height: 74px;
  border-radius: 24px;
  border: 1px solid rgba(var(--accent-rgb), 0.34);
  background: rgba(255,255,255,0.64);
  box-shadow: 0 10px 26px rgba(var(--accent-rgb), 0.16);
  display: grid;
  place-items: center;
  font-size: 3rem;
}

.footer-copy {
  display: grid;
  gap: 0.18rem;
}

.footer-copy strong {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
}

.footer-copy span {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
}

.footer-o {
  width: 0.88em;
  height: 0.88em;
  border-radius: 50%;
  border: 1px solid rgba(var(--accent-rgb), 0.45);
  background: rgba(255,255,255,0.56);
  display: inline-grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(var(--accent-rgb), 0.16);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.footer-o:hover {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 18px 40px rgba(var(--accent-rgb), 0.28);
}

.empty-state[hidden],
.overlay[hidden] {
  display: none;
}

@keyframes shimmer {
  to { background-position: -200% 0; }
}

@keyframes floatA {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-18px, 24px, 0) scale(1.06); }
}

@keyframes floatB {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(20px, -18px, 0) scale(1.05); }
}

@keyframes floatC {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-14px, 18px, 0) scale(1.08); }
}

@keyframes introPulseOut {
  0% { opacity: 1; transform: scale(1); filter: blur(0); }
  55% { opacity: 1; transform: scale(1.04); filter: blur(0); }
  100% { opacity: 0; transform: scale(1.12); filter: blur(8px); }
}

@keyframes cardSweep {
  0% { opacity: 0; transform: translateX(-30%); }
  20% { opacity: 1; }
  100% { opacity: 0; transform: translateX(140%); }
}

@keyframes breathe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@media (max-width: 1080px) {
  .hero-grid,
  .manifesto-grid,
  .highlight-grid,
  .featured-grid,
  .materials-grid,
  .experience-grid,
  .catalog-layout,
  .product-detail-layout,
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .category-sidebar {
    position: static;
  }

  .featured-card.large {
    grid-column: span 1;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(var(--max-width), calc(100% - 1rem));
  }

  .mobile-nav-toggle {
    display: grid;
  }

  .brand-copy small,
  .header-actions .social-link {
    display: none;
  }

  .hero-grid,
  .manifesto-grid,
  .highlight-grid,
  .featured-grid,
  .materials-grid,
  .experience-grid,
  .product-grid,
  .product-detail-layout {
    grid-template-columns: 1fr;
  }

  .category-sidebar {
    display: none;
    position: fixed;
    left: 0.5rem;
    right: 0.5rem;
    top: 82px;
    z-index: 44;
    backdrop-filter: blur(20px);
    background: rgba(255,255,255,0.94);
  }

  .category-sidebar.is-open {
    display: block;
  }

  .btn,
  .detail-actions .btn,
  .join-actions .btn {
    width: 100%;
  }

  .detail-actions,
  .join-actions {
    flex-direction: column;
  }

  .product-panel {
    width: calc(100% - 0.5rem);
    max-height: calc(100vh - 0.5rem);
    padding: 0.9rem;
    border-radius: 24px;
  }

  .intro-claim {
    white-space: normal;
    width: 80%;
    text-align: center;
    line-height: 1.5;
  }

  .favorites-item-top {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .favorites-item-top img,
  .detail-thumb {
    width: 72px;
    height: 92px;
  }
}

@media (max-width: 520px) {
  .header-inner {
    min-height: 72px;
  }

  .brand-mark {
    width: 50px;
    height: 50px;
  }

  .hero-wordmark {
    font-size: clamp(2.4rem, 12vw, 4.8rem);
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

  .product-card,
  .hero-copy,
  .hero-panel-card,
  .catalog-toolbar,
  .category-sidebar,
  .status-banner,
  .empty-state,
  .highlight-card,
  .featured-card,
  .materials-card,
  .experience-card {
    border-radius: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .intro,
  .page-shell {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
}
