body[data-page] {
  --chrome-bg: rgba(250, 247, 242, 0.84);
  --chrome-bg-strong: rgba(250, 247, 242, 0.92);
  --chrome-bg-soft: rgba(255, 255, 255, 0.46);
  --chrome-border: rgba(26, 22, 20, 0.08);
  --chrome-text: #1a1614;
  --chrome-text-muted: rgba(26, 22, 20, 0.56);
  --chrome-accent: #e85d3a;
  --chrome-icon-bg: rgba(232, 93, 58, 0.11);
  --chrome-link-border: rgba(26, 22, 20, 0.06);
  --chrome-link-hover-border: rgba(232, 93, 58, 0.28);
  --chrome-link-active-border: rgba(232, 93, 58, 0.34);
  --chrome-link-hover-bg: rgba(255, 255, 255, 0.6);
  --chrome-link-active-bg: rgba(255, 255, 255, 0.64);
  --chrome-index: rgba(26, 22, 20, 0.42);
  --chrome-highlight: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.14) 44%, rgba(232, 93, 58, 0.12) 100%);
  --chrome-shadow: 0 20px 40px rgba(10, 18, 28, 0.14);
  --chrome-shadow-strong: 0 26px 56px rgba(10, 18, 28, 0.18);
  padding-bottom: 138px;
}

body[data-page].subpage-theme-dark {
  --chrome-bg: rgba(16, 16, 20, 0.72);
  --chrome-bg-strong: rgba(18, 18, 22, 0.84);
  --chrome-bg-soft: rgba(255, 255, 255, 0.05);
  --chrome-border: rgba(255, 255, 255, 0.12);
  --chrome-text: #ffffff;
  --chrome-text-muted: rgba(255, 255, 255, 0.64);
  --chrome-accent: #e8a87c;
  --chrome-icon-bg: rgba(232, 168, 124, 0.16);
  --chrome-link-border: rgba(255, 255, 255, 0.05);
  --chrome-link-hover-border: rgba(232, 168, 124, 0.3);
  --chrome-link-active-border: rgba(232, 168, 124, 0.38);
  --chrome-link-hover-bg: rgba(255, 255, 255, 0.08);
  --chrome-link-active-bg: rgba(255, 255, 255, 0.1);
  --chrome-index: rgba(255, 255, 255, 0.42);
  --chrome-highlight: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 44%, rgba(232, 168, 124, 0.18) 100%);
  --chrome-shadow: 0 22px 46px rgba(0, 0, 0, 0.24);
  --chrome-shadow-strong: 0 28px 60px rgba(0, 0, 0, 0.32);
}

body[data-page] nav#mainNav,
body[data-page] .mobile-menu,
body[data-page] .topbar {
  display: none !important;
}

body[data-page] .shell {
  padding-top: 108px;
}

body[data-page] .site-nav {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 260;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

body[data-page] .site-menu-toggle,
body[data-page] .site-brand,
body[data-page] .floating-pill {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--chrome-border);
  background: var(--chrome-bg);
  box-shadow: var(--chrome-shadow);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

body[data-page] .site-menu-toggle::before,
body[data-page] .site-brand::before,
body[data-page] .floating-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--chrome-highlight);
  pointer-events: none;
}

body[data-page] .site-menu-toggle > *,
body[data-page] .site-brand > *,
body[data-page] .floating-pill > * {
  position: relative;
  z-index: 1;
}

body[data-page] .site-menu-toggle {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

body[data-page] .site-menu-toggle:hover,
body[data-page] .floating-pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--chrome-shadow-strong);
  background: var(--chrome-bg-strong);
}

body[data-page] .site-brand:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: var(--chrome-shadow-strong);
  background: var(--chrome-bg-strong);
}

body[data-page] .site-menu-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--chrome-text);
  transform-origin: center;
  transition: transform 0.24s ease, opacity 0.24s ease, width 0.24s ease;
}

body[data-page] .site-menu-toggle span:nth-child(2) {
  width: 18px;
}

body[data-page].menu-open .site-menu-toggle span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

body[data-page].menu-open .site-menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.4);
}

body[data-page].menu-open .site-menu-toggle span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

body[data-page] .site-menu-panel {
  width: min(340px, calc(100vw - 32px));
  padding: 20px;
  border-radius: 28px;
  background: var(--chrome-bg);
  border: 1px solid var(--chrome-border);
  box-shadow: var(--chrome-shadow-strong);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  transform-origin: top right;
  transform: translateY(-8px) scale(0.94);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s ease, transform 0.26s ease;
  position: relative;
}

body[data-page] .site-menu-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--chrome-highlight);
  pointer-events: none;
}

body[data-page].menu-open .site-menu-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

body[data-page] .site-menu-panel-inner {
  position: relative;
  z-index: 1;
}

body[data-page] .site-menu-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--chrome-text-muted);
  margin-bottom: 10px;
}

body[data-page] .site-menu-list {
  display: grid;
  gap: 10px;
}

body[data-page] .site-menu-link {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 18px;
  text-decoration: none;
  color: var(--chrome-text);
  background: var(--chrome-bg-soft);
  border: 1px solid var(--chrome-link-border);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

body[data-page] .site-menu-link:hover {
  transform: translateX(4px);
  border-color: var(--chrome-link-hover-border);
  background: var(--chrome-link-hover-bg);
}

body[data-page] .site-menu-link.is-active {
  border-color: var(--chrome-link-active-border);
  background: var(--chrome-link-active-bg);
}

body[data-page] .site-menu-index {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--chrome-index);
  padding-top: 4px;
}

body[data-page] .site-menu-copy {
  display: grid;
  gap: 4px;
}

body[data-page] .site-menu-copy strong {
  font-family: "Instrument Serif", "Playfair Display", serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1;
  color: var(--chrome-text);
}

body[data-page] .site-menu-copy span {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(26, 22, 20, 0.68);
}

body[data-page].subpage-theme-dark .site-menu-copy span {
  color: rgba(255, 255, 255, 0.68);
}

body[data-page] .site-brand {
  position: fixed;
  top: 24px;
  left: 50%;
  z-index: 255;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 172px;
  height: 66px;
  padding: 0 30px;
  border-radius: 999px;
  transform: translateX(-50%);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

body[data-page] .site-brand img {
  display: block;
  width: auto;
  height: 48px;
}

body[data-page] .floating-toolbar {
  position: fixed;
  left: 50%;
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  z-index: 250;
  width: min(620px, calc(100vw - 40px));
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
}

body[data-page] .floating-pill {
  min-height: 60px;
  padding: 14px 18px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--chrome-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, opacity 0.24s ease;
}

body[data-page] .floating-pill--app {
  min-width: 0;
  justify-content: flex-start;
  gap: 12px;
  padding: 12px 18px 12px 14px;
}

body[data-page] .floating-pill--secondary {
  white-space: nowrap;
}

body[data-page] button.floating-pill {
  cursor: pointer;
  font: inherit;
}

body[data-page] .floating-pill:disabled {
  opacity: 0.52;
  pointer-events: none;
  transform: none;
  box-shadow: var(--chrome-shadow);
}

body[data-page] .floating-pill__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--chrome-icon-bg);
  color: var(--chrome-accent);
  flex-shrink: 0;
}

body[data-page] .floating-pill__icon svg,
body[data-page] .floating-pill--secondary svg {
  width: 18px;
  height: 18px;
}

body[data-page] .floating-pill__icon svg {
  fill: currentColor;
}

body[data-page] .floating-pill--secondary svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body[data-page] .floating-pill__copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

body[data-page] .floating-pill__eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--chrome-text-muted);
  transition: max-width 0.24s ease, opacity 0.24s ease, margin 0.24s ease;
  max-width: 120px;
  white-space: nowrap;
  overflow: hidden;
}

body[data-page] .floating-pill__label,
body[data-page] .floating-pill__text {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

body[data-page].subpage-scrolled .floating-pill {
  box-shadow: 0 18px 38px rgba(10, 18, 28, 0.16);
}

body[data-page].subpage-theme-dark.subpage-scrolled .floating-pill {
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
}

body[data-page].subpage-scrolled .floating-pill--app .floating-pill__eyebrow {
  max-width: 0;
  opacity: 0;
  margin: 0;
}

@media (max-width: 900px) {
  body[data-page] .site-nav {
    top: 18px;
    right: 18px;
  }

  body[data-page] .site-menu-toggle {
    width: 54px;
    height: 54px;
    border-radius: 18px;
  }

  body[data-page] .site-brand {
    top: 18px;
    min-width: 158px;
    height: 60px;
    padding: 0 26px;
  }

  body[data-page] .site-brand img {
    height: 42px;
  }

  body[data-page] .shell {
    padding-top: 98px;
  }

  body[data-page] .floating-toolbar {
    width: min(560px, calc(100vw - 36px));
    gap: 10px;
  }
}

@media (max-width: 500px) {
  body[data-page] {
    padding-bottom: 122px;
  }

  body[data-page] .site-nav {
    top: 14px;
    right: 14px;
  }

  body[data-page] .site-brand {
    top: 14px;
    min-width: 138px;
    height: 56px;
    padding: 0 22px;
  }

  body[data-page] .site-brand img {
    height: 38px;
  }

  body[data-page] .site-menu-panel {
    width: min(300px, calc(100vw - 20px));
    padding: 16px;
  }

  body[data-page] .site-menu-link {
    padding: 12px 14px;
  }

  body[data-page] .site-menu-copy strong {
    font-size: 24px;
  }

  body[data-page] .shell {
    padding-top: 90px;
  }

  body[data-page] .floating-toolbar {
    width: min(420px, calc(100vw - 32px));
    grid-template-columns: 52px minmax(0, 1fr) 52px;
    gap: 8px;
  }

  body[data-page] .floating-pill {
    min-height: 54px;
    padding: 12px 14px;
  }

  body[data-page] .floating-pill--secondary {
    width: 52px;
    padding: 0;
  }

  body[data-page] .floating-pill--secondary .floating-pill__text {
    display: none;
  }

  body[data-page] .floating-pill--app {
    justify-content: center;
    padding: 10px 14px 10px 12px;
  }

  body[data-page] .floating-pill__icon {
    width: 34px;
    height: 34px;
  }

  body[data-page] .floating-pill__label {
    font-size: 14px;
  }
}

@media (max-width: 360px) {
  body[data-page] .floating-toolbar {
    width: calc(100vw - 28px);
    gap: 6px;
  }

  body[data-page] .floating-pill--app .floating-pill__eyebrow {
    display: none;
  }
}

body[data-page="closet"] .shell,
body[data-page="social"] .shell,
body[data-page="styling"] .shell,
body[data-page="marketplace"] .shell {
  padding-top: 122px;
}

body[data-page="closet"] .site-brand,
body[data-page="social"] .site-brand,
body[data-page="styling"] .site-brand,
body[data-page="marketplace"] .site-brand {
  top: 28px;
  min-width: 0;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  overflow: visible;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body[data-page="closet"] .site-brand::before,
body[data-page="social"] .site-brand::before,
body[data-page="styling"] .site-brand::before,
body[data-page="marketplace"] .site-brand::before {
  display: none;
}

body[data-page="closet"] .site-brand:hover,
body[data-page="social"] .site-brand:hover,
body[data-page="styling"] .site-brand:hover,
body[data-page="marketplace"] .site-brand:hover {
  transform: translateX(-50%) translateY(-2px);
  background: none;
  box-shadow: none;
}

body[data-page="closet"] .site-brand img,
body[data-page="social"] .site-brand img,
body[data-page="styling"] .site-brand img,
body[data-page="marketplace"] .site-brand img {
  height: 72px;
}

body[data-page="closet"] .floating-toolbar,
body[data-page="social"] .floating-toolbar,
body[data-page="styling"] .floating-toolbar,
body[data-page="marketplace"] .floating-toolbar {
  width: auto;
  max-width: calc(100vw - 40px);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

body[data-page="closet"] .floating-pill,
body[data-page="social"] .floating-pill,
body[data-page="styling"] .floating-pill,
body[data-page="marketplace"] .floating-pill {
  flex: 0 0 auto;
}

body[data-page="closet"] .floating-pill--app,
body[data-page="social"] .floating-pill--app,
body[data-page="styling"] .floating-pill--app,
body[data-page="marketplace"] .floating-pill--app {
  padding: 12px 20px 12px 14px;
  background: rgba(255, 251, 247, 0.7);
  border-color: rgba(255, 255, 255, 0.52);
  box-shadow:
    0 18px 40px rgba(232, 93, 58, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

body[data-page="closet"] .floating-pill--app::before,
body[data-page="social"] .floating-pill--app::before,
body[data-page="styling"] .floating-pill--app::before,
body[data-page="marketplace"] .floating-pill--app::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.46) 0%, rgba(255, 255, 255, 0.12) 46%, rgba(232, 93, 58, 0.1) 100%);
}

body[data-page="closet"] .floating-pill--app:hover,
body[data-page="social"] .floating-pill--app:hover,
body[data-page="styling"] .floating-pill--app:hover,
body[data-page="marketplace"] .floating-pill--app:hover {
  background: rgba(255, 251, 247, 0.78);
  box-shadow:
    0 22px 46px rgba(232, 93, 58, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

body[data-page="closet"] .floating-pill--app .floating-pill__eyebrow,
body[data-page="social"] .floating-pill--app .floating-pill__eyebrow,
body[data-page="styling"] .floating-pill--app .floating-pill__eyebrow,
body[data-page="marketplace"] .floating-pill--app .floating-pill__eyebrow {
  color: rgba(26, 22, 20, 0.62);
}

body[data-page="closet"] .floating-pill--app .floating-pill__label,
body[data-page="social"] .floating-pill--app .floating-pill__label,
body[data-page="styling"] .floating-pill--app .floating-pill__label,
body[data-page="marketplace"] .floating-pill--app .floating-pill__label {
  color: #1a1614;
}

body[data-page="closet"].subpage-scrolled .floating-pill--app,
body[data-page="social"].subpage-scrolled .floating-pill--app,
body[data-page="styling"].subpage-scrolled .floating-pill--app,
body[data-page="marketplace"].subpage-scrolled .floating-pill--app {
  box-shadow:
    0 18px 40px rgba(232, 93, 58, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

body[data-page="closet"].subpage-scrolled .floating-pill--app .floating-pill__eyebrow,
body[data-page="social"].subpage-scrolled .floating-pill--app .floating-pill__eyebrow,
body[data-page="styling"].subpage-scrolled .floating-pill--app .floating-pill__eyebrow,
body[data-page="marketplace"].subpage-scrolled .floating-pill--app .floating-pill__eyebrow {
  max-width: 120px;
  opacity: 1;
  margin: 0;
}

@media (max-width: 900px) {
  body[data-page="closet"] .shell,
  body[data-page="social"] .shell,
  body[data-page="styling"] .shell,
  body[data-page="marketplace"] .shell {
    padding-top: 112px;
  }

  body[data-page="closet"] .site-brand,
  body[data-page="social"] .site-brand,
  body[data-page="styling"] .site-brand,
  body[data-page="marketplace"] .site-brand {
    top: 22px;
  }

  body[data-page="closet"] .site-brand img,
  body[data-page="social"] .site-brand img,
  body[data-page="styling"] .site-brand img,
  body[data-page="marketplace"] .site-brand img {
    height: 64px;
  }
}

@media (max-width: 500px) {
  body[data-page="closet"] .shell,
  body[data-page="social"] .shell,
  body[data-page="styling"] .shell,
  body[data-page="marketplace"] .shell {
    padding-top: 102px;
  }

  body[data-page="closet"] .site-brand,
  body[data-page="social"] .site-brand,
  body[data-page="styling"] .site-brand,
  body[data-page="marketplace"] .site-brand {
    top: 18px;
  }

  body[data-page="closet"] .site-brand img,
  body[data-page="social"] .site-brand img,
  body[data-page="styling"] .site-brand img,
  body[data-page="marketplace"] .site-brand img {
    height: 56px;
  }

  body[data-page="closet"] .floating-toolbar,
  body[data-page="social"] .floating-toolbar,
  body[data-page="styling"] .floating-toolbar,
  body[data-page="marketplace"] .floating-toolbar {
    max-width: calc(100vw - 28px);
    gap: 8px;
  }

  body[data-page="closet"] .floating-pill--app,
  body[data-page="social"] .floating-pill--app,
  body[data-page="styling"] .floating-pill--app,
  body[data-page="marketplace"] .floating-pill--app {
    padding: 10px 16px 10px 12px;
  }
}

body.info-editorial {
  --page-bg: #faf7f2;
  --page-surface: rgba(255, 255, 255, 0.62);
  --page-surface-strong: #f0ebe3;
  --page-text: #1a1614;
  --page-dim: #7e766f;
  --page-accent: #e85d3a;
  --page-accent-lo: rgba(232, 93, 58, 0.1);
  --page-blue-lo: rgba(45, 91, 255, 0.08);
  --page-border: rgba(26, 22, 20, 0.08);
  --page-shadow: 0 24px 46px rgba(26, 22, 20, 0.08);
  --page-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(232, 93, 58, 0.1), transparent 28%),
    radial-gradient(circle at 85% 12%, rgba(45, 91, 255, 0.08), transparent 22%),
    var(--page-bg);
  color: var(--page-text);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.info-editorial .shell {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding-inline: 48px;
  padding-top: 122px;
}

body.info-editorial .site-brand {
  top: 28px;
  min-width: 0;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  overflow: visible;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.info-editorial .site-brand::before {
  display: none;
}

body.info-editorial .site-brand:hover {
  transform: translateX(-50%) translateY(-2px);
  background: none;
  box-shadow: none;
}

body.info-editorial .site-brand img {
  height: 72px;
}

body.info-editorial .editorial-main {
  display: grid;
  gap: 72px;
  padding-bottom: 96px;
}

body.info-editorial .editorial-hero,
body.info-editorial .editorial-section,
body.info-editorial .editorial-stack {
  display: grid;
  gap: 24px;
}

body.info-editorial .editorial-hero {
  gap: 28px;
}

body.info-editorial .editorial-hero-grid,
body.info-editorial .editorial-two-up,
body.info-editorial .editorial-support-grid,
body.info-editorial .editorial-summary-grid {
  display: grid;
  gap: 16px;
}

body.info-editorial .editorial-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.95fr);
  align-items: start;
}

body.info-editorial .editorial-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

body.info-editorial .editorial-two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.info-editorial .editorial-summary-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body.info-editorial .editorial-support-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.info-editorial .editorial-tag {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--page-accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

body.info-editorial .editorial-tag::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

body.info-editorial .editorial-copy {
  display: grid;
  gap: 20px;
}

body.info-editorial .editorial-title,
body.info-editorial .editorial-section-title,
body.info-editorial .editorial-card h2,
body.info-editorial .editorial-card h3,
body.info-editorial .editorial-document-title,
body.info-editorial .editorial-support-card h2,
body.info-editorial .editorial-statement blockquote {
  font-family: "Instrument Serif", serif;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.98;
}

body.info-editorial .editorial-title {
  font-size: clamp(54px, 8vw, 100px);
  max-width: 11ch;
}

body.info-editorial .editorial-title em,
body.info-editorial .editorial-section-title em,
body.info-editorial .editorial-statement blockquote em {
  color: var(--page-accent);
  font-style: italic;
}

body.info-editorial .editorial-section-title {
  font-size: clamp(40px, 6vw, 74px);
  max-width: 14ch;
}

body.info-editorial .editorial-lead,
body.info-editorial .editorial-section-copy,
body.info-editorial .editorial-card p,
body.info-editorial .editorial-summary p,
body.info-editorial .editorial-document p,
body.info-editorial .editorial-document ul,
body.info-editorial .editorial-document address,
body.info-editorial .editorial-support-card p,
body.info-editorial .editorial-caption,
body.info-editorial .editorial-note,
body.info-editorial .editorial-note p,
body.info-editorial .editorial-statement p {
  color: var(--page-dim);
  font-size: 16px;
  line-height: 1.75;
}

body.info-editorial .editorial-meta-row,
body.info-editorial .editorial-chip-row,
body.info-editorial .editorial-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

body.info-editorial .editorial-pill,
body.info-editorial .editorial-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--page-border);
  background: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5f5852;
}

body.info-editorial .editorial-pill {
  letter-spacing: 0.04em;
  text-transform: none;
  font-size: 13px;
  color: var(--page-dim);
}

body.info-editorial .editorial-card,
body.info-editorial .editorial-summary,
body.info-editorial .editorial-document,
body.info-editorial .editorial-note,
body.info-editorial .editorial-support-card,
body.info-editorial .editorial-statement {
  border: 1px solid var(--page-border);
  border-radius: var(--page-radius);
  background: var(--page-surface);
  box-shadow: var(--page-shadow);
}

body.info-editorial .editorial-card,
body.info-editorial .editorial-summary,
body.info-editorial .editorial-support-card {
  padding: 24px;
}

body.info-editorial .editorial-card,
body.info-editorial .editorial-summary,
body.info-editorial .editorial-support-card,
body.info-editorial .editorial-statement,
body.info-editorial .editorial-note {
  display: grid;
  gap: 12px;
}

body.info-editorial .editorial-card strong,
body.info-editorial .editorial-summary strong,
body.info-editorial .editorial-support-kicker {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--page-accent);
  font-weight: 600;
}

body.info-editorial .editorial-card h2,
body.info-editorial .editorial-card h3,
body.info-editorial .editorial-summary h2,
body.info-editorial .editorial-summary h3,
body.info-editorial .editorial-support-card h2 {
  font-size: 34px;
}

body.info-editorial .editorial-card--dark,
body.info-editorial .editorial-statement--dark {
  background: linear-gradient(145deg, #181210 0%, #30251f 100%);
  color: #faf7f2;
}

body.info-editorial .editorial-card--dark p,
body.info-editorial .editorial-card--dark strong,
body.info-editorial .editorial-statement--dark p,
body.info-editorial .editorial-statement--dark .editorial-tag {
  color: rgba(255, 255, 255, 0.72);
}

body.info-editorial .editorial-card--dark strong {
  color: rgba(255, 255, 255, 0.58);
}

body.info-editorial .editorial-card--warm,
body.info-editorial .editorial-summary--warm,
body.info-editorial .editorial-note--warm,
body.info-editorial .editorial-statement--warm {
  background: linear-gradient(145deg, var(--page-accent-lo), rgba(255, 255, 255, 0.62));
}

body.info-editorial .editorial-card--cool,
body.info-editorial .editorial-summary--cool,
body.info-editorial .editorial-note--cool {
  background: linear-gradient(145deg, var(--page-blue-lo), rgba(255, 255, 255, 0.62));
}

body.info-editorial .editorial-statement {
  padding: 30px;
}

body.info-editorial .editorial-statement blockquote {
  font-size: clamp(30px, 4vw, 50px);
}

body.info-editorial .editorial-document {
  padding: 38px 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(240, 235, 227, 0.94));
}

body.info-editorial .editorial-cta-panel {
  position: relative;
  overflow: hidden;
  padding: 40px;
  display: grid;
  gap: 18px;
  border: 1px solid var(--page-border);
  border-radius: var(--page-radius);
  background: linear-gradient(145deg, #181210 0%, #30251f 100%);
  box-shadow: var(--page-shadow);
  color: #faf7f2;
}

body.info-editorial .editorial-cta-panel::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -50px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 93, 58, 0.3), transparent 70%);
  pointer-events: none;
}

body.info-editorial .editorial-cta-panel::after {
  content: "";
  position: absolute;
  bottom: -70px;
  left: -50px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 91, 255, 0.22), transparent 70%);
  pointer-events: none;
}

body.info-editorial .editorial-cta-panel > * {
  position: relative;
  z-index: 1;
}

body.info-editorial .editorial-cta-panel h2 {
  font-family: "Instrument Serif", serif;
  font-size: clamp(40px, 6vw, 74px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.02em;
  max-width: 12ch;
}

body.info-editorial .editorial-cta-panel h2 em {
  color: var(--page-accent);
  font-style: italic;
}

body.info-editorial .editorial-cta-panel p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.75;
}

body.info-editorial .editorial-document-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.86fr);
  gap: 18px;
  align-items: start;
  padding-bottom: 26px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--page-border);
}

body.info-editorial .editorial-document-title {
  font-size: clamp(30px, 4.5vw, 42px);
}

body.info-editorial .editorial-note {
  padding: 22px;
  background: rgba(255, 255, 255, 0.7);
}

body.info-editorial .editorial-note h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--page-accent);
}

body.info-editorial .editorial-button,
body.info-editorial .editorial-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: fit-content;
  padding: 16px 24px;
  border-radius: 999px;
  background: var(--page-accent);
  color: #faf7f2;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 14px 28px rgba(232, 93, 58, 0.24);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

body.info-editorial .editorial-button:hover,
body.info-editorial .editorial-link-button:hover {
  transform: translateY(-2px);
  opacity: 0.92;
}

body.info-editorial .editorial-link {
  color: var(--page-accent);
  text-decoration: none;
  font-weight: 600;
}

body.info-editorial .editorial-support-card {
  min-height: 220px;
  text-decoration: none;
  color: var(--page-text);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

body.info-editorial .editorial-support-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 93, 58, 0.22);
  background: rgba(255, 255, 255, 0.76);
}

body.info-editorial .editorial-support-index {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(232, 93, 58, 0.3);
  color: var(--page-accent);
  background: var(--page-accent-lo);
  font-size: 13px;
  letter-spacing: 0.08em;
}

body.info-editorial .editorial-support-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--page-accent);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

body.info-editorial .editorial-document ul {
  padding-left: 18px;
}

body.info-editorial .editorial-document li::marker {
  color: var(--page-accent);
}

body.info-editorial .editorial-document address {
  font-style: normal;
}

body.info-editorial a {
  color: inherit;
}

body.info-editorial strong {
  color: var(--page-text);
}

@media (max-width: 1080px) {
  body.info-editorial .editorial-hero-grid,
  body.info-editorial .editorial-document-header {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  body.info-editorial .shell {
    padding-inline: 24px;
    padding-top: 112px;
  }

  body.info-editorial .site-brand {
    top: 22px;
  }

  body.info-editorial .site-brand img {
    height: 64px;
  }

  body.info-editorial .editorial-main {
    gap: 56px;
  }

  body.info-editorial .editorial-card-grid,
  body.info-editorial .editorial-two-up,
  body.info-editorial .editorial-support-grid,
  body.info-editorial .editorial-summary-grid {
    grid-template-columns: 1fr;
  }

  body.info-editorial .editorial-document {
    padding: 30px 24px;
  }

  body.info-editorial .editorial-cta-panel {
    padding: 32px 24px;
  }
}

@media (max-width: 500px) {
  body.info-editorial .shell {
    padding-inline: 20px;
    padding-top: 102px;
  }

  body.info-editorial .site-brand {
    top: 18px;
  }

  body.info-editorial .site-brand img {
    height: 56px;
  }

  body.info-editorial .editorial-main {
    gap: 44px;
  }

  body.info-editorial .editorial-title {
    font-size: clamp(44px, 15vw, 72px);
  }

  body.info-editorial .editorial-section-title,
  body.info-editorial .editorial-card h2,
  body.info-editorial .editorial-card h3,
  body.info-editorial .editorial-summary h2,
  body.info-editorial .editorial-summary h3,
  body.info-editorial .editorial-support-card h2,
  body.info-editorial .editorial-document-title {
    font-size: 28px;
  }

  body.info-editorial .editorial-lead,
  body.info-editorial .editorial-section-copy,
  body.info-editorial .editorial-card p,
  body.info-editorial .editorial-summary p,
  body.info-editorial .editorial-document p,
  body.info-editorial .editorial-document ul,
  body.info-editorial .editorial-document address,
  body.info-editorial .editorial-support-card p,
  body.info-editorial .editorial-caption,
  body.info-editorial .editorial-note,
  body.info-editorial .editorial-note p,
  body.info-editorial .editorial-statement p {
    font-size: 15px;
  }

  body.info-editorial .editorial-card,
  body.info-editorial .editorial-summary,
  body.info-editorial .editorial-note,
  body.info-editorial .editorial-support-card,
  body.info-editorial .editorial-statement {
    padding: 22px;
  }
}

body.info-editorial .editorial-footer {
  margin-top: 24px;
  padding: 32px;
  border: 1px solid var(--page-border);
  border-radius: var(--page-radius);
  background: var(--page-surface);
  box-shadow: var(--page-shadow);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
}

body.info-editorial .editorial-footer h3 {
  font-family: "Instrument Serif", serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

body.info-editorial .editorial-footer p {
  color: var(--page-dim);
  font-size: 15px;
  line-height: 1.7;
  max-width: 42ch;
}

body.info-editorial .editorial-footer-links {
  display: grid;
  grid-auto-flow: column;
  gap: 16px;
  align-items: center;
}

body.info-editorial .editorial-footer-links a {
  color: var(--page-dim);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

body.info-editorial .editorial-footer-links a:hover {
  color: var(--page-accent);
}

@media (max-width: 680px) {
  body.info-editorial .editorial-footer {
    grid-template-columns: 1fr;
  }

  body.info-editorial .editorial-footer-links {
    grid-auto-flow: row;
    justify-items: start;
  }
}


@media print {
  body[data-page] .site-nav,
  body[data-page] .site-brand,
  body[data-page] .floating-toolbar {
    display: none !important;
  }

  body[data-page] .shell {
    padding-top: 0;
  }
}
