:root {
  --ink: #1b1918;
  --muted: #716d69;
  --paper: #fafaf8;
  --paper-2: #f3f2ef;
  --white: #ffffff;
  --line: #e5e3df;
  --line-dark: #cbc7c1;
  --green: #3f8d78;
  --green-soft: #dcebe5;
  --rose: #c96778;
  --rose-soft: #f0dce0;
  --orange: #cb7753;
  --yellow: #d7ae54;
  --radius: 7px;
  --sans: "Manrope", Arial, sans-serif;
  --mono: "IBM Plex Mono", Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
}
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; }
img { display: block; max-width: 100%; }
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 12px 16px;
  background: var(--ink);
  color: white;
}
.skip-link:focus { top: 12px; }
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 58px;
  border-bottom: 1px solid rgba(27, 25, 24, .08);
  background: rgba(250, 250, 248, .9);
  backdrop-filter: blur(16px);
}
.header-inner {
  width: min(1240px, calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
}
.brand {
  flex: 0 0 auto;
  text-decoration: none;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}
.brand span { color: var(--rose); }
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: 8px;
}
.desktop-nav a {
  position: relative;
  padding: 20px 0 18px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
  text-decoration: none;
  text-transform: uppercase;
}
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--ink);
  transition: right .22s ease;
}
.desktop-nav a:hover,
.desktop-nav a.active { color: var(--ink); }
.desktop-nav a:hover::after,
.desktop-nav a.active::after { right: 0; }
.header-actions {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.header-search {
  width: 108px;
  height: 34px;
  padding: 0 8px 0 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: rgba(255, 255, 255, .55);
  color: var(--muted);
  cursor: pointer;
  font-size: 11px;
}
.header-search svg,
.icon-button svg,
.mobile-nav svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}
.header-search kbd {
  margin-left: auto;
  padding: 2px 4px;
  border: 1px solid var(--line);
  border-radius: 3px;
  font-family: var(--mono);
  font-size: 8px;
}
.icon-button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.login-button {
  min-width: 62px;
  height: 34px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 5px;
  background: var(--ink);
  color: white;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
.login-button:hover { background: #2b2926; }

.hero {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.spectrum-field {
  position: absolute;
  inset: 0;
  opacity: .92;
  background:
    linear-gradient(90deg, transparent 0 38%, rgba(191, 231, 217, .55) 54%, transparent 70%),
    linear-gradient(112deg, rgba(240, 205, 212, .62) 0%, transparent 30%),
    linear-gradient(245deg, rgba(242, 210, 187, .78) 0%, transparent 38%);
}
.spectrum-field::before,
.spectrum-field::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(27, 25, 24, .035) 1px, transparent 1px);
  background-size: 100% 80px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
}
.spectrum-field::after {
  background-image: linear-gradient(90deg, rgba(27, 25, 24, .025) 1px, transparent 1px);
  background-size: 80px 100%;
}
.hero-inner {
  position: relative;
  width: min(1240px, calc(100% - 40px));
  min-height: 650px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  align-items: center;
  gap: 54px;
  padding: 66px 0 58px;
}
.hero-copy { position: relative; z-index: 2; }
.kicker {
  margin: 0 0 15px;
  color: #8d7569;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(54px, 6vw, 86px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: 0;
}
.hero h1 span {
  display: block;
  color: var(--rose);
}
.hero-lead {
  max-width: 600px;
  margin: 28px 0 0;
  color: #57524e;
  font-size: 16px;
  line-height: 1.75;
}
.hero-search {
  width: min(570px, 100%);
  height: 52px;
  margin-top: 25px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(27, 25, 24, .13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .75);
  box-shadow: 0 16px 44px rgba(50, 43, 38, .08);
  backdrop-filter: blur(10px);
}
.hero-search svg {
  width: 19px;
  height: 19px;
  margin: 0 12px 0 16px;
  fill: none;
  stroke: var(--muted);
  stroke-width: 1.7;
}
.hero-search input {
  min-width: 0;
  flex: 1;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
}
.hero-search button {
  height: 40px;
  margin-right: 6px;
  padding: 0 18px;
  border: 0;
  border-radius: 5px;
  background: var(--ink);
  color: white;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}
.primary-link,
.secondary-link {
  min-height: 44px;
  padding: 0 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}
.primary-link {
  background: var(--ink);
  color: white;
}
.secondary-link { border: 1px solid rgba(27, 25, 24, .2); }
.secondary-link span { margin-left: 15px; }
.hero-stats {
  margin: 36px 0 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(80px, 1fr));
  max-width: 570px;
}
.hero-stats div {
  padding-left: 20px;
  border-left: 1px solid rgba(27, 25, 24, .16);
}
.hero-stats div:first-child { padding-left: 0; border-left: 0; }
.hero-stats dt {
  font-family: var(--mono);
  font-size: 20px;
  line-height: 1;
}
.hero-stats dd {
  margin: 9px 0 0;
  color: #8b8681;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}
.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 520px;
}
.hero-visual::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 2%;
  bottom: 75px;
  height: 1px;
  background: rgba(27, 25, 24, .22);
  box-shadow: 0 14px 25px rgba(27, 25, 24, .14);
}
.bottle {
  position: absolute;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(27, 25, 24, .12);
  background: rgba(255, 255, 255, .62);
  backdrop-filter: blur(13px);
  transition: transform .35s ease;
}
.bottle:hover { transform: translateY(-8px); }
.bottle span {
  position: absolute;
  left: 11px;
  top: 9px;
  z-index: 2;
  color: #9b9690;
  font-family: var(--mono);
  font-size: 8px;
}
.bottle img {
  width: 100%;
  height: 100%;
  padding: 20px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.bottle-back { width: 195px; height: 255px; right: 0; top: 30px; opacity: .82; }
.bottle-main { width: 245px; height: 330px; left: 15%; top: 72px; z-index: 2; }
.bottle-front { width: 165px; height: 220px; right: 4%; bottom: 76px; z-index: 3; }
.visual-caption {
  position: absolute;
  left: 0;
  bottom: 20px;
  display: grid;
  gap: 4px;
}
.visual-caption span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}
.visual-caption strong { font-size: 13px; }

.content-section {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 76px 0;
}
.section-heading {
  min-width: 0;
  margin-bottom: 27px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}
.section-heading.compact { margin-bottom: 22px; }
.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 39px);
  font-weight: 750;
  line-height: 1.1;
}
.arrow-link {
  padding: 9px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 10px;
  text-decoration: none;
  text-transform: uppercase;
}
.arrow-link span { margin-left: 12px; }
.section-note {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}

.perfume-showcase { width: min(1080px, calc(100% - 40px)); }
.perfume-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.perfume-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  transition: background .22s ease;
}
.perfume-card:hover,
.perfume-card:focus-visible { background: #f4f0ec; outline: none; }
.perfume-card-index {
  position: absolute;
  left: 13px;
  top: 11px;
  z-index: 2;
  color: #aaa49e;
  font-family: var(--mono);
  font-size: 8px;
}
.card-image {
  height: 250px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.card-image img {
  width: 100%;
  height: 100%;
  padding: 31px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform .35s ease;
}
.perfume-card:hover .card-image img { transform: scale(1.045) translateY(-3px); }
.favorite {
  position: absolute;
  right: 9px;
  top: 8px;
  z-index: 3;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.favorite svg { width: 16px; height: 16px; fill: none; stroke: var(--muted); stroke-width: 1.5; }
.favorite.saved svg { fill: var(--rose); stroke: var(--rose); }
.card-body { padding: 15px 16px 18px; border-top: 1px solid rgba(27, 25, 24, .05); }
.card-body h3 {
  min-height: 43px;
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
}
.brand-name { margin-top: 4px; color: var(--muted); font-size: 11px; }
.card-meta {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #8e8882;
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
}
.score { color: var(--green); font-size: 10px; }
.empty-state { padding: 40px; text-align: center; }

.discovery-row {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 52px;
  border-top: 1px solid var(--line);
}
.live-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
}
.live-label i { width: 6px; height: 6px; border-radius: 50%; background: #59a28f; }
.trending-list { border-top: 1px solid var(--line); }
.trending-list button {
  width: 100%;
  min-height: 50px;
  padding: 0;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.trending-list span { color: #aaa49e; font-family: var(--mono); font-size: 8px; }
.trending-list strong { overflow: hidden; font-size: 12px; font-weight: 600; text-overflow: ellipsis; white-space: nowrap; }
.trending-list em { color: var(--green); font-family: var(--mono); font-size: 9px; font-style: normal; }
.daily-pick {
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--line);
  background: #f1eee9;
}
.daily-pick-body {
  display: grid;
  grid-template-columns: 42% 1fr;
  align-items: center;
  gap: 24px;
  min-height: 245px;
}
.daily-pick-body img {
  width: 100%;
  height: 220px;
  padding: 10px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.daily-pick-body span { color: var(--muted); font-family: var(--mono); font-size: 9px; text-transform: uppercase; }
.daily-pick-body h2 { margin: 8px 0 12px; font-size: clamp(22px, 2.3vw, 31px); line-height: 1.1; }
.daily-pick-body p { color: var(--muted); font-size: 11px; line-height: 1.6; }
.daily-pick-body button {
  margin-top: 17px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}
.daily-pick-body button span { margin-left: 10px; color: inherit; }

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.collection {
  position: relative;
  min-height: 190px;
  padding: 48px 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background .22s ease;
}
.collection-wide { grid-column: span 2; background: #e4eee9; }
.collection:hover { background: #eee9e5; }
.collection-wide:hover { background: #d8e8e1; }
.collection-no { position: absolute; left: 15px; top: 13px; color: #a49e98; font-family: var(--mono); font-size: 8px; }
.collection-icon { position: absolute; right: 22px; top: 18px; font-size: 32px; font-weight: 300; }
.collection strong { max-width: 250px; margin-top: auto; font-size: 18px; line-height: 1.25; }
.collection small { margin-top: 8px; color: var(--muted); font-size: 10px; }
.collection i { position: absolute; right: 17px; bottom: 17px; font-family: var(--mono); font-size: 12px; font-style: normal; }

.taxonomy-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #f1f3ef; }
.taxonomy-inner {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.taxonomy-inner > section { min-width: 0; padding: 66px 46px 66px 0; }
.taxonomy-inner > section + section { padding: 66px 0 66px 46px; border-left: 1px solid var(--line-dark); }
.note-cloud { display: flex; flex-wrap: wrap; gap: 7px; }
.note-cloud button {
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: rgba(255, 255, 255, .42);
  cursor: pointer;
  font-size: 11px;
}
.note-cloud button:hover { border-color: var(--ink); background: var(--ink); color: white; }
.accord-list { display: grid; gap: 16px; }
.accord-row {
  display: grid;
  grid-template-columns: 85px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 12px;
  font-size: 11px;
}
.accord-track { height: 5px; overflow: hidden; background: rgba(27, 25, 24, .08); }
.accord-track i { display: block; height: 100%; background: var(--accord-color, var(--green)); }
.accord-count { color: var(--muted); font-family: var(--mono); font-size: 8px; text-align: right; }

.brands-section { padding-bottom: 82px; }
.brand-filters { display: flex; gap: 7px; margin-bottom: 18px; overflow: auto; scrollbar-width: none; }
.brand-filter {
  min-height: 33px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
  white-space: nowrap;
}
.brand-filter.active,
.brand-filter:hover { border-color: var(--ink); background: var(--ink); color: white; }
.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.brand-card {
  min-width: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.brand-card a {
  min-height: 102px;
  padding: 17px;
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  transition: background .2s ease;
}
.brand-card a:hover { background: #f2eeea; }
.brand-logo {
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fffdfa;
}
.brand-logo img { width: 78%; height: 78%; object-fit: contain; mix-blend-mode: multiply; }
.brand-logo span { padding: 4px; color: var(--ink); font-family: var(--mono); font-size: 7px; text-align: center; overflow-wrap: anywhere; }
.brand-info { min-width: 0; }
.brand-info h3 { margin: 0; overflow: hidden; font-size: 12px; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.brand-info span { display: block; margin-top: 7px; color: var(--muted); font-family: var(--mono); font-size: 7px; text-transform: uppercase; }

.ranking-band { border-top: 1px solid var(--line); background: #f3f0eb; }
.ranking-inner { padding-top: 66px; }
.ranking-table { border-top: 1px solid var(--line-dark); }
.ranking-row {
  min-height: 55px;
  display: grid;
  grid-template-columns: 40px minmax(180px, 1.2fr) minmax(130px, .8fr) 110px 70px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
}
.ranking-row.header { min-height: 37px; color: var(--muted); font-family: var(--mono); font-size: 8px; text-transform: uppercase; }
.ranking-row strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ranking-row span { color: var(--muted); }
.ranking-row em { color: var(--green); font-family: var(--mono); font-size: 9px; font-style: normal; text-align: right; }

.community-band {
  position: relative;
  min-height: 330px;
  padding: 70px max(20px, calc((100% - 1080px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  overflow: hidden;
  background: #1c312c;
  color: white;
}
.community-band::after {
  content: "";
  position: absolute;
  width: 48%;
  height: 100%;
  right: 0;
  top: 0;
  background:
    linear-gradient(125deg, transparent 20%, rgba(96, 175, 151, .35) 50%, transparent 72%),
    linear-gradient(45deg, transparent 35%, rgba(215, 174, 84, .2) 48%, transparent 62%);
}
.community-band > div { position: relative; z-index: 1; max-width: 680px; }
.community-band h2 { margin: 0; font-size: clamp(38px, 5vw, 66px); line-height: 1; }
.community-band p:last-child { max-width: 620px; margin: 22px 0 0; color: #b9c7c3; font-size: 14px; line-height: 1.7; }
.community-button {
  position: relative;
  z-index: 1;
  width: fit-content;
  min-width: 0;
  min-height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 5px;
  background: #151413;
  color: white;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .18);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.community-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, .26);
  background: #262320;
}
.community-button span { margin-left: 12px; font-size: 12px; }

.community-band .account-cta {
  width: auto;
  min-width: 0;
  min-height: 42px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 5px;
  background: #151413;
  color: #fff;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .22);
}

.community-band .account-cta:hover {
  background: #272421;
  transform: translateY(-2px);
}

.community-band .account-cta span {
  margin-left: 11px;
  color: inherit;
  font-size: 12px;
  text-decoration: none;
}

.site-footer {
  padding: 58px max(20px, calc((100% - 1080px) / 2)) 24px;
  background: #141413;
  color: white;
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 50px;
  padding-bottom: 50px;
}
.footer-brand { display: inline-block; color: white; }
.footer-main > div:first-child p { max-width: 290px; color: #8f8f8b; font-size: 11px; line-height: 1.7; }
.footer-main > div:not(:first-child) { display: flex; flex-direction: column; gap: 11px; }
.footer-main strong { margin-bottom: 5px; font-family: var(--mono); font-size: 9px; text-transform: uppercase; }
.footer-main a:not(.brand) { color: #999994; font-size: 11px; text-decoration: none; }
.footer-main a:hover { color: white; }
.footer-bottom { padding-top: 20px; display: flex; justify-content: space-between; border-top: 1px solid #2d2d2a; color: #777773; font-family: var(--mono); font-size: 8px; text-transform: uppercase; }

.mobile-nav { display: none; }
dialog {
  width: min(980px, calc(100% - 32px));
  max-height: 90vh;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 30px 100px rgba(0, 0, 0, .3);
}
dialog::backdrop { background: rgba(19, 18, 17, .72); backdrop-filter: blur(4px); }
.dialog-close { position: absolute; right: 13px; top: 13px; z-index: 4; background: white; border: 1px solid var(--line); font-size: 22px; }
.detail-hero {
  position: relative;
  min-height: 450px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  border-bottom: 1px solid var(--line);
}
.detail-copy { padding: 58px 45px; }
.detail-kicker { color: var(--green); font-family: var(--mono); font-size: 9px; text-transform: uppercase; }
.detail-copy h2 { margin: 17px 0 8px; font-size: clamp(38px, 5vw, 65px); line-height: 1; }
.detail-brand { color: var(--muted); font-size: 12px; }
.detail-score { margin-top: 32px; color: var(--green); font-family: var(--mono); font-size: 17px; }
.detail-copy > p { max-width: 490px; margin-top: 26px; color: #55514d; font-size: 13px; line-height: 1.75; }
.detail-image { min-height: 450px; display: grid; place-items: center; background: #f0ede8; }
.detail-image img { width: 100%; height: 100%; padding: 55px; object-fit: contain; mix-blend-mode: multiply; }
.detail-dna { display: grid; grid-template-columns: 1fr 1fr; }
.pyramid, .detail-accords { padding: 42px; }
.pyramid { border-right: 1px solid var(--line); }
.detail-section-label { margin-bottom: 20px; color: #9a948e; font-family: var(--mono); font-size: 8px; text-transform: uppercase; }
.pyramid-row { padding: 15px 0; border-top: 1px solid var(--line); }
.pyramid-row strong { display: block; color: var(--muted); font-family: var(--mono); font-size: 8px; text-transform: uppercase; }
.pyramid-row span { display: block; margin-top: 8px; font-size: 12px; line-height: 1.55; }
.detail-accords .accord-tag { padding: 13px 0; display: flex; justify-content: space-between; border-top: 1px solid var(--line); font-size: 12px; }
.detail-accords .accord-tag i { color: var(--green); font-family: var(--mono); font-style: normal; }
.source-links { padding: 0 42px 42px; display: flex; flex-wrap: wrap; gap: 8px; }
.source-links a { padding: 9px 11px; border: 1px solid var(--line); font-family: var(--mono); font-size: 8px; text-decoration: none; text-transform: uppercase; }
.source-links span { padding: 9px 11px; border: 1px solid var(--line); color: var(--muted); font-family: var(--mono); font-size: 8px; text-transform: uppercase; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  text-transform: uppercase;
}
.breadcrumb a { color: inherit; text-decoration: none; }
.breadcrumb strong { color: var(--ink); font-weight: 500; }

.product-profile-hero {
  min-height: 710px;
  padding-top: 76px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(215, 196, 170, .32), transparent 44%),
    linear-gradient(0deg, #faf8f3, #f0ece4);
}
.product-profile-inner { width: min(1180px, calc(100% - 40px)); margin: 0 auto; padding: 34px 0 70px; }
.product-profile-grid {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px) 150px;
  gap: 38px;
  align-items: center;
}
.product-profile-copy h1 { max-width: 650px; margin: 18px 0 12px; font-size: clamp(52px, 7vw, 108px); line-height: .9; overflow-wrap: anywhere; }
.product-brand-line { display: flex; gap: 10px; align-items: center; color: var(--green); font-family: var(--mono); font-size: 12px; text-transform: uppercase; }
.product-profile-copy > p:not(.kicker) { max-width: 610px; margin-top: 28px; color: #5e5853; font-size: 14px; line-height: 1.8; }
.product-actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.product-hero-image { min-height: 520px; display: grid; place-items: center; border: 1px solid var(--line); background: rgba(255, 253, 250, .72); }
.product-hero-image img { width: 100%; height: 100%; max-height: 520px; padding: 48px; object-fit: contain; mix-blend-mode: multiply; }
.product-facts { margin: 0; border-top: 1px solid var(--line-dark); }
.product-facts div { padding: 23px 0; border-bottom: 1px solid var(--line-dark); }
.product-facts dt { font-family: var(--mono); font-size: 20px; }
.product-facts dd { margin: 7px 0 0; color: var(--muted); font-family: var(--mono); font-size: 8px; text-transform: uppercase; }

.product-dna-band { border-bottom: 1px solid var(--line); background: #efebe3; }
.product-dna-inner { width: min(1180px, calc(100% - 40px)); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; }
.product-dna-inner > section { padding: 70px 46px; }
.product-dna-inner > section + section { border-left: 1px solid var(--line-dark); }
.product-dna-inner h2 { margin: 12px 0 28px; font-size: clamp(34px, 4vw, 58px); line-height: 1; }
.product-pyramid, .product-accords { padding: 0; }
.product-community { display: grid; grid-template-columns: minmax(0, .95fr) minmax(360px, .65fr); gap: 46px; align-items: center; border-bottom: 1px solid var(--line); }
.product-community h2 { max-width: 680px; margin: 12px 0 14px; font-size: clamp(36px, 5vw, 70px); line-height: 1; }
.product-community p { max-width: 560px; color: var(--muted); line-height: 1.7; }
.review-invite {
  border: 1px solid var(--line-dark);
  background:
    linear-gradient(135deg, rgba(223, 232, 195, .78), transparent 48%),
    #fffdfa;
}
.review-score-card {
  min-height: 150px;
  padding: 24px;
  display: grid;
  align-content: end;
  border-bottom: 1px solid var(--line-dark);
}
.review-score-card span,
.review-metrics span,
.review-cta span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
}
.review-score-card strong {
  margin-top: 13px;
  font-family: var(--mono);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}
.review-score-card p { margin: 12px 0 0; max-width: 280px; font-size: 12px; }
.review-metrics { padding: 18px 24px 8px; display: grid; gap: 14px; }
.review-metrics div { display: grid; grid-template-columns: 92px minmax(0, 1fr); gap: 14px; align-items: center; }
.review-metrics i {
  height: 7px;
  display: block;
  border: 1px solid rgba(27, 25, 24, .16);
  background: repeating-linear-gradient(90deg, rgba(27,25,24,.18) 0 18px, transparent 18px 25px);
}
.review-cta {
  min-height: 82px;
  margin: 18px;
  padding: 17px 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  align-items: center;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fffdfa;
  text-decoration: none;
}
.review-cta span { color: rgba(255,253,250,.62); grid-column: 1; }
.review-cta strong { grid-column: 1; margin-top: 5px; font-size: 16px; }
.review-cta i { grid-column: 2; grid-row: 1 / span 2; font-family: var(--mono); font-style: normal; text-align: right; }
.compact-card { color: inherit; text-decoration: none; }

.auth-layout {
  min-height: 100vh;
  padding: 150px min(7vw, 90px) 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: 70px;
  align-items: center;
  background: linear-gradient(120deg, #efe8dd, #faf8f3 58%, #e7eddf);
}
.auth-intro h1 { max-width: 690px; margin: 14px 0 22px; font-size: clamp(58px, 8vw, 118px); line-height: .9; }
.auth-intro p { max-width: 560px; color: #5e5853; line-height: 1.75; }
.auth-benefits { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 8px; }
.auth-benefits span { padding: 10px 13px; border: 1px solid var(--line-dark); font-family: var(--mono); font-size: 8px; text-transform: uppercase; }
.auth-panel { padding: 28px; border: 1px solid var(--line-dark); background: rgba(255,253,250,.88); }
.auth-tabs { display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); }
.auth-tabs button { min-height: 46px; border: 0; background: transparent; font-family: var(--mono); font-size: 9px; text-transform: uppercase; cursor: pointer; }
.auth-tabs button.active { background: var(--ink); color: #fff; }
.auth-form { margin-top: 24px; display: grid; gap: 14px; }
.auth-form label, .partner-form label { display: grid; gap: 8px; color: var(--muted); font-family: var(--mono); font-size: 8px; text-transform: uppercase; }
.auth-form input, .partner-form input, .partner-form select, .forum-search input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: #fffdfa;
  color: var(--ink);
  font: inherit;
}
.auth-form a { color: var(--green); font-size: 12px; text-decoration: none; }
.auth-note { margin-top: 22px; color: var(--muted); font-size: 11px; line-height: 1.6; }
.auth-note.error, .auth-note.success { padding: 13px 14px; border: 1px solid var(--line); }
.auth-note.error { border-color: #d7a1a1; background: #f8e8e8; color: #8c3030; }
.auth-note.success { border-color: #8fb9a9; background: var(--green-soft); color: #286452; }

.panel-hero { padding-top: 76px; border-bottom: 1px solid var(--line); background: #1f2f29; color: #fffdfa; }
.panel-hero-inner { min-height: 620px; display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 60px; align-items: center; }
.panel-hero h1 { max-width: 760px; margin: 18px 0 22px; font-size: clamp(54px, 7vw, 105px); line-height: .9; }
.panel-hero p { max-width: 560px; color: rgba(255,253,250,.72); line-height: 1.75; }
.panel-metrics { margin: 0; border-top: 1px solid rgba(255,255,255,.24); }
.panel-metrics div { padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.24); }
.panel-metrics dt { font-family: var(--mono); font-size: 32px; }
.panel-metrics dd { margin: 7px 0 0; color: rgba(255,253,250,.62); font-family: var(--mono); font-size: 8px; text-transform: uppercase; }
.workflow-grid, .pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.workflow-grid article, .pricing-grid article { min-height: 230px; padding: 28px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); background: #faf8f3; }
.workflow-grid span { color: var(--green); font-family: var(--mono); font-size: 10px; }
.workflow-grid h3, .pricing-grid h3 { margin: 28px 0 14px; font-size: 25px; line-height: 1.05; }
.workflow-grid p, .pricing-grid p { color: var(--muted); font-size: 12px; line-height: 1.7; }
.pricing-grid { grid-template-columns: repeat(4, 1fr); }
.pricing-grid article.featured { background: #dfe8c3; }
.pricing-grid strong { display: block; margin: 24px 0; font-family: var(--mono); font-size: clamp(22px, 2.2vw, 30px); line-height: 1.05; }
.pricing-note { max-width: 360px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.price-badge { display: inline-flex; min-height: 25px; align-items: center; padding: 0 10px; border: 1px solid var(--ink); background: var(--ink); color: #fff; font-family: var(--mono); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.pricing-grid .price-badge + .kicker { margin-top: 18px; }
.pricing-strip { display: grid; grid-template-columns: repeat(3, 1fr); border-left: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); background: #fffdfa; }
.pricing-strip article { min-height: 132px; padding: 22px 24px; border-right: 1px solid var(--line-dark); }
.pricing-strip span { display: block; color: var(--muted); font-family: var(--mono); font-size: 10px; text-transform: uppercase; }
.pricing-strip strong { display: block; margin: 16px 0 10px; font-size: 21px; line-height: 1.1; }
.pricing-strip p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.application-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: start; }
.application-section h2 { margin: 14px 0; font-size: clamp(38px, 5vw, 68px); line-height: .95; }
.application-section p { color: var(--muted); line-height: 1.7; }
.partner-form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding: 28px; border: 1px solid var(--line-dark); background: #fffdfa; }
.partner-form button { grid-column: 1 / -1; border: 0; }

.admin-body { overflow-x: hidden; background: #f5f2ec; }
.admin-shell { width: 100%; min-width: 0; min-height: 100vh; display: grid; grid-template-columns: 250px minmax(0, 1fr); }
.admin-sidebar { position: sticky; top: 0; height: 100vh; padding: 24px; display: flex; flex-direction: column; border-right: 1px solid var(--line-dark); background: #fffdfa; }
.admin-sidebar .brand { margin-bottom: 42px; }
.admin-sidebar nav { display: grid; gap: 6px; }
.admin-sidebar nav a { min-height: 40px; padding: 0 12px; display: flex; align-items: center; border-radius: 5px; color: var(--muted); font-family: var(--mono); font-size: 10px; text-decoration: none; text-transform: uppercase; }
.admin-sidebar nav a:hover, .admin-sidebar nav a.active { background: var(--ink); color: #fff; }
.admin-sidebar-note { margin-top: auto; padding: 16px; border: 1px solid var(--line); background: #f6f0e9; }
.admin-sidebar-note span { display: block; margin-bottom: 8px; font-family: var(--mono); font-size: 9px; text-transform: uppercase; }
.admin-sidebar-note p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.admin-main { width: 100%; min-width: 0; padding: 34px; }
.admin-topbar { min-height: 128px; display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; border-bottom: 1px solid var(--line-dark); }
.admin-topbar h1 { margin: 0; font-size: clamp(40px, 6vw, 82px); line-height: .9; letter-spacing: 0; }
.admin-session { min-width: 190px; padding: 14px 16px; border: 1px solid var(--line-dark); background: #fffdfa; }
.admin-session span { display: block; color: var(--muted); font-family: var(--mono); font-size: 9px; text-transform: uppercase; }
.admin-session strong { display: block; margin-top: 6px; font-size: 13px; }
.admin-grid { display: grid; gap: 0; }
.admin-metrics { grid-template-columns: repeat(4, 1fr); margin: 28px 0; border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.admin-metrics article { min-height: 142px; padding: 22px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); background: #fffdfa; }
.admin-metrics span, .admin-table span, .moderation-list span { color: var(--muted); font-family: var(--mono); font-size: 9px; text-transform: uppercase; }
.admin-metrics strong { display: block; margin: 14px 0 10px; font-size: 34px; line-height: 1; }
.admin-metrics p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.admin-board { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(280px, .75fr); gap: 20px; align-items: start; }
.admin-columns { margin-top: 20px; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 20px; }
.admin-card { border: 1px solid var(--line-dark); background: #fffdfa; }
.admin-card-head { min-height: 86px; padding: 22px; display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; border-bottom: 1px solid var(--line); }
.admin-card-head h2 { margin: 0; font-size: clamp(25px, 3vw, 38px); line-height: .98; }
.status-pill, .mini-link { min-height: 28px; padding: 0 10px; display: inline-flex; align-items: center; border: 1px solid var(--line-dark); border-radius: 999px; color: var(--muted); font-family: var(--mono); font-size: 9px; text-decoration: none; text-transform: uppercase; white-space: nowrap; }
.status-pill.secure { border-color: #8fb9a9; background: var(--green-soft); color: #286452; }
.admin-form { padding: 22px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.admin-form label, .auth-form label, .partner-form label { color: var(--muted); font-family: var(--mono); font-size: 9px; text-transform: uppercase; }
.admin-form input, .admin-form select, .admin-form textarea {
  width: 100%;
  min-height: 48px;
  margin-top: 8px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13px;
  text-transform: none;
}
.admin-form textarea { min-height: 104px; padding-top: 12px; resize: vertical; line-height: 1.5; }
.admin-form input:focus, .admin-form select:focus, .admin-form textarea:focus { border-color: var(--ink); box-shadow: 0 0 0 3px rgba(63, 141, 120, .13); }
.admin-form .wide, .upload-rules { grid-column: 1 / -1; }
.upload-rules { padding: 16px; border: 1px dashed #a9a39a; background: #f6f0e9; }
.upload-rules span { display: block; font-family: var(--mono); font-size: 9px; text-transform: uppercase; }
.upload-rules p { margin: 8px 0 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.admin-form button { border: 0; cursor: pointer; }
.admin-form [data-state="saved"] { background: var(--green); }
.security-list { margin: 0; padding: 20px 22px 22px; display: grid; gap: 15px; list-style: none; }
.security-list li { display: grid; grid-template-columns: 14px minmax(0, 1fr); gap: 10px; color: var(--muted); font-size: 12px; line-height: 1.55; }
.security-list li span { width: 9px; height: 9px; margin-top: 5px; border-radius: 50%; background: var(--green); }
.admin-table, .moderation-list { display: grid; }
.admin-table div { min-height: 76px; padding: 16px 18px; display: grid; grid-template-columns: minmax(0, 1fr) 120px 92px 72px; gap: 14px; align-items: center; border-bottom: 1px solid var(--line); }
.admin-table div:last-child, .moderation-list article:last-child { border-bottom: 0; }
.admin-table strong { font-size: 15px; }
.admin-table em { font-style: normal; font-family: var(--mono); font-size: 11px; }
.admin-table button, .moderation-list button { min-height: 31px; border: 1px solid var(--line-dark); background: transparent; cursor: pointer; font-family: var(--mono); font-size: 9px; text-transform: uppercase; }
.moderation-list article { padding: 18px; border-bottom: 1px solid var(--line); }
.moderation-list p { margin: 12px 0; color: var(--ink); font-size: 14px; line-height: 1.55; }
.moderation-list div { display: flex; gap: 8px; }
.seo-panel { margin-top: 20px; }
.seo-checks { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 0; }
.seo-checks article { min-height: 132px; padding: 20px; border-right: 1px solid var(--line); }
.seo-checks article:last-child { border-right: 0; }
.seo-checks strong { display: block; margin-bottom: 12px; font-size: 15px; }
.seo-checks p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.55; }

.forum-hero { padding-top: 76px; border-bottom: 1px solid var(--line); background: linear-gradient(120deg, #f2e4e1, #faf8f3 56%, #e6eadf); }
.forum-hero .content-section { min-height: 520px; display: grid; align-content: center; }
.forum-hero h1 { margin: 15px 0 18px; font-size: clamp(58px, 8vw, 118px); line-height: .9; }
.forum-hero p { max-width: 620px; color: var(--muted); line-height: 1.75; }
.forum-search { max-width: 760px; margin-top: 32px; display: grid; grid-template-columns: minmax(0, 1fr) 140px; border: 1px solid var(--line-dark); background: #fffdfa; }
.forum-search input { border: 0; }
.forum-search button { border: 0; border-left: 1px solid var(--line-dark); background: var(--ink); color: #fff; font-weight: 700; cursor: pointer; }
.forum-layout { display: grid; grid-template-columns: minmax(0, 1fr) 280px; gap: 44px; }
.forum-feed { display: grid; border-top: 1px solid var(--line-dark); }
.topic-card { padding: 28px 0; border-bottom: 1px solid var(--line-dark); }
.topic-card span { color: var(--green); font-family: var(--mono); font-size: 8px; text-transform: uppercase; }
.topic-card h2 { margin: 10px 0 8px; font-size: 28px; line-height: 1.08; }
.topic-card p { color: var(--muted); line-height: 1.65; }
.topic-card footer { margin-top: 17px; color: var(--muted); font-family: var(--mono); font-size: 8px; text-transform: uppercase; }
.forum-sidebar { display: grid; gap: 22px; align-content: start; }
.forum-sidebar section { padding: 20px; border: 1px solid var(--line); background: #fffdfa; }
.forum-sidebar a { display: block; padding: 11px 0; border-bottom: 1px solid var(--line); color: var(--ink); font-size: 12px; text-decoration: none; }
.forum-sidebar p:not(.kicker) { color: var(--muted); font-size: 12px; line-height: 1.7; }

body.menu-open { overflow: hidden; }
.menu-trigger { border-left: 1px solid var(--line); }
.site-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  visibility: hidden;
  opacity: 0;
  transition: visibility .28s, opacity .28s ease;
}
.site-menu.is-open { visibility: visible; opacity: 1; }
.site-menu-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(19, 18, 17, .58);
  backdrop-filter: blur(5px);
  cursor: pointer;
}
.site-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(760px, calc(100% - 70px));
  height: 100%;
  padding: 0 55px 35px;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.2, .8, .2, 1);
}
.site-menu.is-open .site-menu-panel { transform: translateX(0); }
.site-menu-head {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.site-menu-head .icon-button {
  border: 1px solid var(--line);
  background: white;
  font-size: 22px;
}
.site-menu-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 42px;
  padding: 55px 0;
}
.site-menu-grid section { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; }
.site-menu-grid a {
  margin-bottom: 15px;
  color: #57524e;
  font-size: 12px;
  text-decoration: none;
}
.site-menu-grid a:hover { color: var(--rose); }
.site-menu-grid .menu-feature {
  width: 100%;
  margin: 0;
  padding: 18px 0;
  display: grid;
  gap: 7px;
  border-top: 1px solid var(--line);
}
.menu-feature:last-child { border-bottom: 1px solid var(--line); }
.menu-feature strong { color: var(--ink); font-size: 17px; }
.menu-feature span { color: var(--muted); font-size: 10px; line-height: 1.55; }
.site-menu-foot {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}
.site-menu-foot > span { color: var(--muted); font-family: var(--mono); font-size: 8px; text-transform: uppercase; }
.header-search-link { text-decoration: none; }

.catalog-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(92deg, rgba(240, 220, 224, .65), transparent 42%),
    linear-gradient(250deg, rgba(211, 232, 225, .75), transparent 44%);
}
.catalog-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(27, 25, 24, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 25, 24, .025) 1px, transparent 1px);
  background-size: 80px 80px;
}
.catalog-hero-inner {
  position: relative;
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 68px;
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8f8882;
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
}
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { color: var(--ink); }
.catalog-hero-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  align-items: end;
  gap: 70px;
}
.catalog-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(53px, 6vw, 84px);
  line-height: .96;
}
.catalog-hero h1 span { display: block; color: var(--rose); }
.catalog-hero-grid > div > p:last-child {
  max-width: 650px;
  margin: 25px 0 0;
  color: #5f5954;
  font-size: 14px;
  line-height: 1.75;
}
.catalog-stats {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.catalog-stats div { padding-left: 18px; border-left: 1px solid rgba(27, 25, 24, .15); }
.catalog-stats dt { font-family: var(--mono); font-size: 20px; }
.catalog-stats dd { margin: 7px 0 0; color: var(--muted); font-family: var(--mono); font-size: 7px; text-transform: uppercase; }

.brand-directory { padding-top: 58px; }
.directory-toolbar {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 18px;
}
.directory-search {
  min-width: 0;
  height: 50px;
  flex: 1;
  display: flex;
  align-items: center;
  border: 1px solid var(--line-dark);
  background: white;
}
.directory-search svg {
  width: 18px;
  height: 18px;
  margin: 0 13px 0 16px;
  fill: none;
  stroke: var(--muted);
  stroke-width: 1.6;
}
.directory-search input { min-width: 0; height: 100%; flex: 1; border: 0; outline: 0; background: transparent; font-size: 12px; }
.view-count { color: var(--muted); font-family: var(--mono); font-size: 8px; text-transform: uppercase; white-space: nowrap; }
.view-count strong { color: var(--ink); }
.directory-filters { margin-bottom: 22px; }
.alphabet-filter {
  margin-bottom: 25px;
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.alphabet-filter button {
  width: 36px;
  height: 36px;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 9px;
}
.alphabet-filter button:first-child { width: 58px; }
.alphabet-filter button.active { background: var(--ink); color: white; }
.alphabet-filter button:disabled { color: #d2ceca; cursor: default; }
.directory-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.directory-card { min-width: 0; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.directory-card a {
  position: relative;
  min-height: 126px;
  padding: 18px 52px 18px 18px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 50px;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  transition: background .2s ease;
}
.directory-card a:hover { background: #f2eeea; }
.directory-card-index { position: absolute; left: 8px; top: 7px; color: #b0aaa4; font-family: var(--mono); font-size: 7px; }
.directory-card-logo {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fffdfa;
}
.directory-card-logo img { width: 78%; height: 78%; object-fit: contain; mix-blend-mode: multiply; }
.directory-card-logo span { max-width: 100%; padding: 5px; color: var(--ink); font-family: var(--mono); font-size: 8px; line-height: 1.25; text-align: center; overflow-wrap: anywhere; }
.directory-card-copy { min-width: 0; }
.directory-card-copy h2 { margin: 0; overflow: hidden; font-size: 16px; text-overflow: ellipsis; white-space: nowrap; }
.directory-card-copy p { margin: 8px 0 0; color: var(--muted); font-family: var(--mono); font-size: 8px; text-transform: uppercase; }
.directory-card-meta { text-align: right; }
.directory-card-meta strong { display: block; font-family: var(--mono); font-size: 17px; font-weight: 400; }
.directory-card-meta span { color: var(--muted); font-family: var(--mono); font-size: 7px; text-transform: uppercase; }
.directory-card i { position: absolute; right: 17px; font-family: var(--mono); font-size: 12px; font-style: normal; }
.directory-empty { padding: 80px 20px; text-align: center; }
.directory-empty strong { display: block; font-size: 20px; }
.directory-empty button { margin-top: 18px; padding: 11px 15px; border: 0; background: var(--ink); color: white; cursor: pointer; font-size: 11px; }
.compact-community { min-height: 275px; }
.compact-community h2 { font-size: clamp(35px, 4vw, 52px); }

.brand-profile-hero {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.brand-profile-spectrum {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(108deg, rgba(240, 216, 220, .58), transparent 38%),
    linear-gradient(260deg, rgba(193, 226, 215, .65), transparent 45%),
    linear-gradient(rgba(27, 25, 24, .03) 1px, transparent 1px);
  background-size: auto, auto, 100% 80px;
}
.brand-profile-inner {
  position: relative;
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 62px;
}
.brand-profile-grid {
  min-height: 385px;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 260px;
  align-items: center;
  gap: 48px;
}
.brand-profile-logo {
  width: 210px;
  height: 210px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(27, 25, 24, .13);
  background: rgba(255, 253, 250, .92);
  backdrop-filter: blur(12px);
}
.brand-profile-logo img { width: 78%; height: 78%; object-fit: contain; mix-blend-mode: multiply; }
.brand-profile-logo span { padding: 20px; color: var(--ink); font-family: var(--mono); font-size: 18px; text-align: center; }
.brand-profile-copy h1 { margin: 0; overflow-wrap: anywhere; font-size: clamp(48px, 6vw, 82px); line-height: .96; }
.brand-profile-copy > p:not(.kicker) { max-width: 580px; margin: 22px 0 0; color: #5e5853; font-size: 13px; line-height: 1.75; }
.brand-profile-actions { margin-top: 27px; display: flex; gap: 9px; }
.brand-profile-stats { margin: 0; display: grid; }
.brand-profile-stats div { padding: 20px 0; border-bottom: 1px solid rgba(27, 25, 24, .14); }
.brand-profile-stats dt { font-family: var(--mono); font-size: 23px; }
.brand-profile-stats dd { margin: 7px 0 0; color: var(--muted); font-family: var(--mono); font-size: 8px; text-transform: uppercase; }
.brand-products-section { padding-bottom: 84px; }
.product-toolbar {
  min-height: 52px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}
.product-toolbar .brand-filters { margin: 0; }
.sort-control { display: flex; align-items: center; gap: 10px; color: var(--muted); font-family: var(--mono); font-size: 8px; text-transform: uppercase; }
.sort-control select { height: 32px; padding: 0 28px 0 9px; border: 1px solid var(--line); background: white; color: var(--ink); font-size: 9px; }
.brand-perfume-grid:empty { display: none; }
.catalog-pending {
  padding: 72px 35px;
  border: 1px solid var(--line);
  background: #f2efea;
}
.pending-index { color: var(--muted); font-family: var(--mono); font-size: 8px; }
.catalog-pending h3 { margin: 19px 0 10px; font-size: 31px; }
.catalog-pending p { max-width: 620px; margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.catalog-pending a { display: inline-block; margin-top: 23px; font-family: var(--mono); font-size: 9px; text-decoration: none; text-transform: uppercase; }
.catalog-pending a span { margin-left: 12px; }
.brand-insight-band { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #f0f2ee; }
.brand-insight-inner {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.brand-insight-inner > section { min-width: 0; padding: 65px 50px 65px 0; }
.brand-insight-inner > section + section { padding: 65px 0 65px 50px; border-left: 1px solid var(--line-dark); }
.brand-insight-inner h2 { margin: 0 0 28px; font-size: 30px; }
.brand-insight-inner > section > p:not(.kicker) { color: var(--muted); font-size: 12px; line-height: 1.75; }
.data-badges { margin-top: 25px; display: flex; flex-wrap: wrap; gap: 7px; }
.data-badges span { padding: 7px 10px; border: 1px solid var(--line-dark); border-radius: 999px; background: rgba(255, 255, 255, .45); font-family: var(--mono); font-size: 7px; text-transform: uppercase; }
.insight-empty { color: var(--muted); font-size: 12px; line-height: 1.7; }
.related-brands-section { padding-bottom: 84px; }

.seo-hero {
  min-height: 430px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(209, 106, 126, .08), transparent 38%, rgba(114, 170, 145, .12)),
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: auto, 80px 80px, 80px 80px;
}

.seo-hero-inner {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 84px 0 64px;
}

.seo-hero-grid {
  min-height: 230px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 70px;
  align-items: end;
}

.seo-hero h1 {
  max-width: 850px;
  margin: 24px 0 20px;
  font-size: clamp(56px, 8vw, 116px);
  line-height: .9;
  letter-spacing: 0;
}

.seo-hero-grid > div > p:last-child {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.seo-stat-stack {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
}

.seo-stat-stack div {
  padding: 18px 20px 0;
  border-left: 1px solid var(--line-dark);
}

.seo-stat-stack dt {
  margin-bottom: 8px;
  font-size: 25px;
  line-height: 1;
  word-break: break-word;
}

.seo-stat-stack dd {
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 7px;
  text-transform: uppercase;
}

.seo-link-cloud {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.seo-link-cloud a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: rgba(250, 250, 248, .58);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 8px;
  text-decoration: none;
  text-transform: uppercase;
}

.seo-directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.seo-directory-card {
  min-width: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.seo-directory-card a {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  color: var(--ink);
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}

.seo-directory-card a:hover {
  background: #f4f0ea;
  transform: translateY(-2px);
}

.seo-directory-card span,
.seo-directory-card em {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  font-style: normal;
  text-transform: uppercase;
}

.seo-directory-card strong {
  display: block;
  font-size: 24px;
  line-height: 1.1;
}

.seo-directory-card p {
  min-height: 56px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.seo-product-section {
  padding-top: 70px;
}

.seo-perfume-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.seo-perfume-card a {
  color: inherit;
  text-decoration: none;
}

.seo-empty {
  grid-column: 1 / -1;
  min-height: 150px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 1050px) {
  .desktop-nav { gap: 16px; }
  .desktop-nav a:nth-last-child(-n+2) { display: none; }
  .hero-inner { grid-template-columns: 1fr 390px; gap: 20px; }
  .bottle-main { left: 2%; }
  .brand-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .catalog-hero-grid { grid-template-columns: 1fr 290px; }
  .brand-profile-grid { grid-template-columns: 170px minmax(0, 1fr) 180px; gap: 32px; }
  .brand-profile-logo { width: 170px; height: 170px; }
}

@media (max-width: 820px) {
  body { padding-bottom: 66px; }
  .site-header { height: 56px; }
  .header-inner { width: calc(100% - 30px); }
  .desktop-nav, .login-button, .header-search span, .header-search kbd { display: none; }
  .header-search { width: 34px; padding: 0; justify-content: center; border: 0; background: transparent; }
  .hero { min-height: auto; }
  .hero-inner { min-height: 720px; grid-template-columns: 1fr; padding: 52px 0 34px; }
  .hero-copy { padding-bottom: 320px; }
  .hero h1 { max-width: 690px; }
  .hero-lead { max-width: 580px; }
  .hero-visual { position: absolute; left: 0; right: 0; bottom: 20px; min-height: 300px; }
  .bottle-back { width: 150px; height: 190px; right: 8%; top: 4px; }
  .bottle-main { width: 180px; height: 240px; left: 18%; top: 28px; }
  .bottle-front { width: 125px; height: 170px; right: 17%; bottom: 25px; }
  .visual-caption { left: 0; bottom: 0; }
  .perfume-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .discovery-row { grid-template-columns: 1fr; gap: 40px; }
  .collection-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .taxonomy-inner { grid-template-columns: 1fr; }
  .taxonomy-inner > section,
  .taxonomy-inner > section + section { padding: 52px 0; border-left: 0; }
  .taxonomy-inner > section + section { border-top: 1px solid var(--line-dark); }
  .brand-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .ranking-row { grid-template-columns: 36px minmax(150px, 1fr) 90px 60px; }
  .ranking-row > *:nth-child(3) { display: none; }
  .community-band { align-items: flex-start; flex-direction: column; }
  .footer-main { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-main > div:last-child { display: none; }
  .site-menu-panel { width: min(620px, calc(100% - 35px)); padding: 0 35px 30px; }
  .site-menu-grid { grid-template-columns: 1.3fr 1fr; }
  .site-menu-grid section:last-child { display: none; }
  .catalog-hero-grid { grid-template-columns: 1fr; gap: 42px; }
  .catalog-stats { max-width: 390px; }
  .directory-grid { grid-template-columns: 1fr; }
  .brand-profile-grid { grid-template-columns: 150px minmax(0, 1fr); }
  .brand-profile-logo { width: 150px; height: 150px; }
  .brand-profile-stats { grid-column: 1 / -1; grid-template-columns: repeat(3, 1fr); }
  .brand-profile-stats div { padding: 15px 0; border-top: 1px solid rgba(27, 25, 24, .14); }
  .brand-insight-inner { grid-template-columns: 1fr; }
  .brand-insight-inner > section,
  .brand-insight-inner > section + section { padding: 50px 0; border-left: 0; }
  .brand-insight-inner > section + section { border-top: 1px solid var(--line-dark); }
  .seo-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .seo-stat-stack { max-width: 480px; }
  .seo-directory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .seo-perfume-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mobile-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    height: 66px;
    padding-bottom: env(safe-area-inset-bottom);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid var(--line);
    background: rgba(250, 250, 248, .96);
    backdrop-filter: blur(14px);
  }
  .mobile-nav a, .mobile-nav button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border: 0;
    background: transparent;
    color: #8c8782;
    font-family: var(--mono);
    font-size: 7px;
    text-decoration: none;
  }
  .mobile-nav .active { color: var(--ink); }
  .detail-hero { grid-template-columns: 1fr; }
  .detail-image { min-height: 330px; grid-row: 1; }
  .detail-copy { padding: 38px 25px; }
}

@media (max-width: 560px) {
  .header-inner, .hero-inner, .content-section, .taxonomy-inner { width: calc(100% - 28px); }
  .hero-inner { min-height: auto; padding: 43px 0 46px; }
  .hero-copy { padding-bottom: 0; }
  .hero-visual { display: none; }
  .hero h1 { font-size: 49px; }
  .hero-lead { margin-top: 20px; font-size: 13px; line-height: 1.65; }
  .hero-search { margin-top: 20px; }
  .hero-search button { padding: 0 13px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .primary-link, .secondary-link { width: 100%; }
  .hero-stats { margin-top: 24px; }
  .hero-stats div { padding-left: 11px; }
  .hero-stats dt { font-size: 16px; }
  .hero-stats dd { font-size: 7px; }
  .content-section { padding: 55px 0; }
  .section-heading { align-items: flex-start; margin-bottom: 22px; }
  .section-heading h2 { font-size: 29px; }
  .arrow-link { font-size: 8px; white-space: nowrap; }
  .perfume-showcase { width: calc(100% - 16px); }
  .perfume-showcase .section-heading { padding: 0 6px; }
  .card-image { height: 205px; }
  .card-image img { padding: 22px; }
  .card-body { padding: 12px 10px 15px; }
  .card-body h3 { min-height: 39px; font-size: 13px; }
  .brand-name { font-size: 9px; }
  .card-meta { font-size: 7px; }
  .daily-pick { padding: 20px; }
  .daily-pick-body { grid-template-columns: 40% 1fr; gap: 14px; }
  .daily-pick-body img { height: 175px; }
  .collection { min-height: 170px; padding: 45px 17px 18px; }
  .collection strong { font-size: 15px; }
  .collection small { max-width: 130px; font-size: 9px; }
  .taxonomy-inner > section,
  .taxonomy-inner > section + section { padding: 48px 0; }
  .brand-card a { min-height: 92px; padding: 12px; gap: 10px; }
  .brand-logo { width: 48px; height: 48px; flex-basis: 48px; }
  .brand-info h3 { font-size: 10px; }
  .ranking-row { grid-template-columns: 30px minmax(120px, 1fr) 72px 48px; font-size: 9px; }
  .community-band { min-height: 390px; padding: 58px 20px; }
  .community-band h2 { font-size: 43px; }
  .community-button { width: 100%; }
  .site-footer { padding-top: 45px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 35px 20px; }
  .footer-main > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { gap: 15px; flex-direction: column; }
  .detail-dna { grid-template-columns: 1fr; }
  .pyramid { border-right: 0; border-bottom: 1px solid var(--line); }
  .pyramid, .detail-accords { padding: 30px 24px; }
  .source-links { padding: 0 24px 30px; }
  .site-menu-panel { width: 100%; padding: 0 20px 25px; }
  .site-menu-head { height: 62px; }
  .site-menu-grid { grid-template-columns: 1fr; gap: 34px; padding: 35px 0; overflow-y: auto; }
  .site-menu-grid section:last-child { display: flex; }
  .site-menu-grid a { margin-bottom: 11px; }
  .site-menu-foot { flex-shrink: 0; }
  .catalog-hero-inner, .brand-profile-inner, .brand-insight-inner { width: calc(100% - 28px); }
  .seo-hero-inner { width: calc(100% - 28px); padding: 58px 0 44px; }
  .seo-hero h1 { font-size: 50px; }
  .seo-hero-grid { min-height: 0; gap: 30px; }
  .seo-stat-stack { grid-template-columns: 1fr; }
  .seo-stat-stack div { padding: 14px 0; border-left: 0; border-bottom: 1px solid var(--line-dark); }
  .seo-link-cloud a { min-height: 34px; padding: 0 12px; }
  .seo-directory-grid { grid-template-columns: 1fr; }
  .seo-directory-card a { min-height: 178px; padding: 18px; }
  .seo-directory-card strong { font-size: 20px; }
  .seo-directory-card p { min-height: 0; }
  .seo-product-section { padding-top: 52px; }
  .catalog-hero-inner { padding-bottom: 48px; }
  .catalog-hero-grid { margin-top: 45px; gap: 35px; }
  .catalog-hero h1 { font-size: 49px; }
  .catalog-hero-grid > div > p:last-child { font-size: 12px; }
  .directory-toolbar { align-items: stretch; flex-direction: column; gap: 12px; }
  .directory-search { flex-basis: 50px; }
  .view-count { text-align: right; }
  .alphabet-filter button { width: 34px; height: 34px; }
  .directory-card a { min-height: 108px; padding: 14px 42px 14px 14px; grid-template-columns: 58px minmax(0, 1fr) 42px; gap: 13px; }
  .directory-card-logo { width: 58px; height: 58px; }
  .directory-card-copy h2 { font-size: 13px; }
  .compact-community { min-height: 350px; }
  .brand-profile-inner { padding-bottom: 42px; }
  .brand-profile-grid { min-height: 0; margin-top: 38px; grid-template-columns: 90px minmax(0, 1fr); gap: 22px; }
  .brand-profile-logo { width: 90px; height: 90px; }
  .brand-profile-copy h1 { font-size: 43px; }
  .brand-profile-copy > p:not(.kicker) { font-size: 11px; }
  .brand-profile-actions { grid-column: 1 / -1; align-items: stretch; flex-direction: column; }
  .brand-profile-stats { grid-column: 1 / -1; }
  .brand-profile-stats dt { font-size: 18px; }
  .product-toolbar { align-items: stretch; flex-direction: column; padding-bottom: 16px; }
  .product-toolbar .brand-filters { width: 100%; }
  .sort-control { justify-content: flex-end; }
  .catalog-pending { padding: 50px 24px; }
  .catalog-pending h3 { font-size: 25px; }
}

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

@media (max-width: 1050px) {
  .product-profile-grid { grid-template-columns: minmax(0, 1fr) minmax(280px, 420px); }
  .product-facts { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); }
  .workflow-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-strip { grid-template-columns: 1fr; }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; height: auto; gap: 20px; }
  .admin-sidebar nav { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .admin-sidebar-note { margin-top: 0; }
  .admin-board, .admin-columns { grid-template-columns: 1fr; }
  .admin-metrics, .seo-checks { grid-template-columns: repeat(2, 1fr); }
  .seo-checks article:nth-child(2) { border-right: 0; }
  .seo-checks article { border-bottom: 1px solid var(--line); }
}

@media (max-width: 820px) {
  .product-profile-grid,
  .product-dna-inner,
  .auth-layout,
  .panel-hero-inner,
  .application-section,
  .forum-layout { grid-template-columns: 1fr; }
  .product-profile-hero { min-height: 0; }
  .product-profile-grid { min-height: 0; gap: 24px; }
  .product-profile-copy h1,
  .auth-intro h1,
  .panel-hero h1,
  .forum-hero h1 { font-size: 54px; }
  .admin-main { padding: 20px 14px 88px; }
  .admin-topbar { flex-direction: column; }
  .admin-session { width: 100%; }
  .admin-form { grid-template-columns: 1fr; }
  .admin-table div { grid-template-columns: minmax(0, 1fr); gap: 8px; }
  .admin-table button { width: fit-content; padding: 0 12px; }
  .product-hero-image { min-height: 380px; }
  .product-dna-inner > section + section { border-left: 0; border-top: 1px solid var(--line-dark); }
  .product-community { grid-template-columns: 1fr; }
  .auth-layout { padding: 110px 20px 80px; }
  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .product-profile-inner { width: calc(100% - 24px); padding-top: 24px; }
  .product-profile-copy h1,
  .auth-intro h1,
  .panel-hero h1,
  .forum-hero h1 { font-size: 42px; }
  .product-hero-image { min-height: 300px; }
  .product-hero-image img { padding: 30px; }
  .product-facts { grid-template-columns: 1fr; }
  .product-dna-inner { width: calc(100% - 24px); }
  .product-dna-inner > section { padding: 42px 0; }
  .product-actions, .auth-benefits { align-items: stretch; flex-direction: column; }
  .workflow-grid { grid-template-columns: 1fr; }
  .partner-form { grid-template-columns: 1fr; padding: 18px; }
  .admin-sidebar { padding: 18px 14px; }
  .admin-sidebar, .admin-main { max-width: 100vw; overflow: hidden; }
  .admin-sidebar nav { max-width: 100%; min-width: 0; display: flex; overflow-x: auto; padding-bottom: 4px; }
  .admin-sidebar nav a { flex: 0 0 auto; }
  .admin-metrics, .seo-checks { grid-template-columns: 1fr; }
  .seo-checks article { border-right: 0; }
  .forum-search { grid-template-columns: 1fr; }
  .forum-search button { min-height: 48px; border-left: 0; border-top: 1px solid var(--line-dark); }
  .topic-card h2 { font-size: 22px; }
  .review-invite { min-width: 0; }
  .review-metrics div { grid-template-columns: 76px minmax(0, 1fr); }
  .review-cta { min-height: 76px; margin: 14px; }
}
