:root {
  --ink: #191817;
  --muted: #736f68;
  --paper: #f7f4ee;
  --sand: #ebe5da;
  --line: #d9d2c7;
  --red: #e6553f;
  --dark: #242321;
  --radius: 8px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font:
    15px/1.6 -apple-system,
    BlinkMacSystemFont,
    "PingFang SC",
    "Microsoft YaHei",
    sans-serif;
}
body:has(dialog[open]),
body:has(.search-overlay.open) {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
}
.wrap {
  width: min(1160px, calc(100% - 48px));
  margin: auto;
}
.skip-link {
  position: fixed;
  top: -50px;
  left: 20px;
  z-index: 1000;
  background: #fff;
  padding: 8px 14px;
}
.skip-link:focus {
  top: 10px;
}
.site-header {
  height: 74px;
  background: rgba(247, 244, 238, 0.94);
  border-bottom: 1px solid transparent;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  transition: 0.2s;
}
.site-header.scrolled {
  border-color: var(--line);
}
.nav-shell {
  height: 100%;
  width: min(1280px, calc(100% - 48px));
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.3px;
}
.brand em {
  color: var(--red);
  font-style: normal;
  font-weight: 600;
}
.brand-mark,
.dialog-mark {
  width: 28px;
  height: 28px;
  background: var(--red);
  border-radius: 50% 50% 50% 8px;
  transform: rotate(-45deg);
  display: grid;
  place-items: center;
}
.brand-mark span,
.dialog-mark span {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: #fff;
}
.desktop-nav {
  display: flex;
  gap: 34px;
  margin-left: 60px;
}
.desktop-nav a {
  font-size: 14px;
  color: var(--muted);
  padding: 26px 0;
  position: relative;
}
.desktop-nav a.active,
.desktop-nav a:hover {
  color: var(--ink);
}
.desktop-nav a.active:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  background: var(--red);
}
.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}
.icon-btn {
  height: 38px;
  width: 38px;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
  color: var(--ink);
  border-radius: 50%;
}
.icon-btn:hover {
  background: var(--sand);
}
.icon-btn svg {
  width: 19px;
}
.text-btn {
  border: 0;
  background: transparent;
  color: var(--ink);
  padding: 8px;
  font-size: 14px;
}
.primary-btn {
  border: 1px solid var(--red);
  background: var(--red);
  color: white;
  min-height: 42px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  transition: 0.2s;
}
.primary-btn:hover {
  background: #cd3e2b;
  border-color: #cd3e2b;
  transform: translateY(-1px);
}
.primary-btn svg,
.ghost-btn svg {
  width: 17px;
}
.menu-toggle,
.mobile-panel {
  display: none;
}
.home-hero {
  height: calc(100vh - 74px);
  min-height: 650px;
  position: relative;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 11, 11, 0.68) 0%,
    rgba(10, 11, 11, 0.32) 52%,
    rgba(10, 11, 11, 0.08)
  );
}
.hero-content {
  position: relative;
  padding-bottom: 5vh;
}
.hero-kicker,
.eyebrow {
  font-size: 11px;
  letter-spacing: 1.8px;
  font-weight: 800;
  margin: 0 0 18px;
}
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
}
.hero-kicker span {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(230, 85, 63, 0.25);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
.home-hero h1 {
  font-family: Georgia, "Times New Roman", "Songti SC", serif;
  font-size: clamp(62px, 8.5vw, 124px);
  line-height: 0.92;
  letter-spacing: 0;
  margin-bottom: 20px;
}
.hero-lead {
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  margin-bottom: 34px;
}
.hero-actions {
  display: flex;
  gap: 12px;
}
.primary-btn.light {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.primary-btn.light:hover {
  background: #f1eee9;
  border-color: #f1eee9;
}
.ghost-btn {
  min-height: 42px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: #fff;
  border-radius: 4px;
  font-weight: 700;
}
.ghost-btn:hover {
  background: rgba(255, 255, 255, 0.14);
}
.hero-now {
  position: absolute;
  top: calc(100% + 12vh);
  left: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}
.hero-now strong {
  font-size: 14px;
  color: white;
}
.live-dot {
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
}
.hero-scroll {
  position: absolute;
  bottom: 29px;
  left: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  width: 38px;
  height: 38px;
  border-radius: 50%;
}
.hero-scroll svg {
  width: 17px;
}
.category-bar {
  background: var(--dark);
  color: #fff;
}
.category-track {
  height: 94px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.category-track a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-right: 1px solid #44423e;
  color: #dedbd4;
  font-size: 14px;
  transition: 0.2s;
}
.category-track a:first-child {
  border-left: 1px solid #44423e;
}
.category-track a:hover {
  background: var(--red);
  color: #fff;
}
.category-track svg {
  width: 18px;
}
.section {
  padding: 126px 0;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 46px;
}
.eyebrow {
  color: var(--red);
  font-size: 10px;
}
.section-heading h2,
.manifesto-copy h2,
.creator-cta h2 {
  font-size: clamp(30px, 3.3vw, 48px);
  line-height: 1.15;
  letter-spacing: 0;
  font-family: Georgia, "Songti SC", serif;
  margin: 0;
}
.arrow-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  font-size: 14px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 3px;
}
.arrow-link svg {
  width: 16px;
}
.section-note {
  color: var(--muted);
  margin: 0;
  font-size: 14px;
}
.heading-note {
  margin-top: 12px;
  max-width: 620px;
  line-height: 1.8;
}
.editorial-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr;
  gap: 26px;
}
.video-card {
  cursor: pointer;
}
.card-image {
  aspect-ratio: 1.32;
  overflow: hidden;
  position: relative;
  background: var(--sand);
}
.featured .card-image {
  aspect-ratio: 0.93;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.video-card:hover img {
  transform: scale(1.045);
}
.video-duration {
  background: rgba(20, 20, 20, 0.82);
  color: #fff;
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 11px;
  padding: 2px 7px;
}
.card-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  border: 0;
  background: #fff;
  color: var(--ink);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: 0.25s;
}
.card-play svg {
  width: 17px;
  fill: currentColor;
}
.video-card:hover .card-play {
  opacity: 1;
  transform: translate(-50%, -50%);
}
.video-meta {
  display: flex;
  justify-content: space-between;
  color: var(--red);
  font-size: 11px;
  letter-spacing: 1px;
  margin-top: 16px;
}
.video-card h3 {
  font-size: 18px;
  line-height: 1.45;
  margin: 7px 0;
}
.video-card > p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px;
}
.video-author {
  border-top: 1px solid var(--line);
  padding-top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #4b4843;
  font-size: 12px;
}
.avatar {
  background: #ded5ca;
  color: #4c4036;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: inline-grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
  flex: 0 0 auto;
}
.view-count {
  margin-left: auto;
  display: flex;
  gap: 3px;
  align-items: center;
  color: var(--muted);
}
.view-count svg {
  width: 12px;
}
.manifesto-section {
  background: var(--sand);
  padding: 126px 0;
}
.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10vw;
}
.manifesto-copy h2 {
  font-size: clamp(48px, 5vw, 70px);
}
.manifesto-body > p {
  font-family: Georgia, "Songti SC", serif;
  font-size: 24px;
  line-height: 1.8;
  margin: 28px 0 50px;
}
.principles {
  border-top: 1px solid #c5bcae;
}
.principles > div {
  display: flex;
  gap: 26px;
  border-bottom: 1px solid #c5bcae;
  padding: 18px 0;
}
.principles strong {
  font-size: 12px;
  color: var(--red);
}
.principles span {
  font-size: 15px;
  font-weight: 700;
}
.principles small {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
}
.themes-section {
  background: #fcfbf8;
}
.theme-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 16px;
}
.theme-card {
  height: 410px;
  position: relative;
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: end;
  padding: 24px;
}
.theme-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.theme-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(0, 0, 0, 0.72));
}
.theme-card:hover img {
  transform: scale(1.05);
}
.theme-card > * {
  position: relative;
  z-index: 1;
}
.theme-no {
  align-self: flex-start;
  font:
    20px Georgia,
    serif;
}
.theme-card > div {
  margin-left: auto;
  width: 100%;
  padding-left: 16px;
}
.theme-card small {
  font-size: 11px;
  letter-spacing: 1px;
  opacity: 0.8;
}
.theme-card h3 {
  font:
    28px/1.15 Georgia,
    "Songti SC",
    serif;
  margin: 7px 0 0;
}
.theme-go {
  float: right;
  margin-top: -22px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}
.theme-go svg {
  width: 15px;
}
.creator-section {
  padding-bottom: 120px;
}
.creator-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.creator-row {
  background: var(--paper);
  padding: 22px;
  position: relative;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.creator-row > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.13;
  filter: grayscale(1);
  transition: 0.3s;
}
.creator-row:hover > img {
  opacity: 0.23;
  transform: scale(1.03);
}
.creator-row > *:not(img) {
  position: relative;
}
.creator-row .avatar {
  margin-bottom: auto;
}
.creator-row p {
  font-size: 10px;
  color: var(--red);
  letter-spacing: 1px;
  margin: 30px 0 5px;
}
.creator-row h3 {
  font:
    26px Georgia,
    "Songti SC",
    serif;
  margin: 0 0 7px;
}
.creator-row div > span {
  font-size: 12px;
  color: #5e5951;
}
.creator-follow {
  margin-top: 17px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
}
.creator-follow strong {
  font-size: 13px;
}
.creator-follow > span {
  font-size: 10px;
  grid-column: 1;
}
.follow-btn {
  grid-row: 1/3;
  grid-column: 2;
  border: 1px solid var(--ink);
  background: transparent;
  padding: 5px 10px;
  font-size: 12px;
}
.follow-btn:hover,
.follow-btn.following {
  background: var(--ink);
  color: #fff;
}
.creator-cta {
  background: var(--red);
  color: #fff;
  padding: 72px 0;
}
.creator-cta .eyebrow {
  color: #fff;
}
.creator-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.creator-cta h2 {
  max-width: 720px;
  font-size: 38px;
}
.site-footer {
  background: var(--dark);
  color: #e6e1d9;
  padding: 67px 0 20px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.45fr 0.7fr 0.7fr 1.1fr;
  gap: 40px;
}
.site-footer .brand {
  color: #fff;
}
.footer-brand p {
  color: #aaa59d;
  font-size: 13px;
  margin: 17px 0;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 13px;
}
.footer-links strong,
.footer-letter strong {
  margin-bottom: 8px;
  color: #fff;
}
.footer-links a {
  color: #aaa59d;
}
.footer-links a:hover {
  color: #fff;
}
.subscribe-form {
  display: flex;
  border-bottom: 1px solid #817b72;
  margin: 16px 0 7px;
}
.subscribe-form input {
  min-width: 0;
  flex: 1;
  background: transparent;
  border: 0;
  color: #fff;
  padding: 8px 0;
  outline: 0;
}
.subscribe-form input::placeholder {
  color: #aaa59d;
}
.subscribe-form button {
  border: 0;
  background: transparent;
  color: #fff;
}
.subscribe-form svg {
  width: 18px;
}
.footer-letter small {
  color: #77726b;
  font-size: 11px;
}
.footer-bottom {
  border-top: 1px solid #494640;
  margin-top: 55px;
  padding-top: 17px;
  display: flex;
  justify-content: space-between;
  color: #858078;
  font-size: 11px;
}
.footer-bottom div {
  display: flex;
  gap: 18px;
}
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(247, 244, 238, 0.98);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
}
.search-overlay.open {
  opacity: 1;
  visibility: visible;
}
.overlay-close {
  position: absolute;
  right: 4vw;
  top: 28px;
}
.search-panel {
  width: min(760px, calc(100% - 48px));
  margin-top: -70px;
}
.search-panel > label {
  font:
    40px/1.25 Georgia,
    "Songti SC",
    serif;
  display: block;
  margin-bottom: 25px;
}
.big-search {
  border-bottom: 2px solid var(--ink);
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 10px 0;
}
.big-search svg {
  width: 25px;
}
.big-search input {
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 22px;
  width: 100%;
  padding: 8px 0;
}
.search-suggestions {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  flex-wrap: wrap;
}
.search-suggestions button {
  border: 1px solid var(--line);
  padding: 5px 11px;
  background: transparent;
  border-radius: 20px;
  color: var(--muted);
  font-size: 12px;
}
.login-dialog,
.video-dialog {
  border: 0;
  padding: 0;
  color: var(--ink);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.25);
}
.login-dialog {
  width: min(430px, calc(100% - 32px));
  padding: 42px;
}
.login-dialog::backdrop,
.video-dialog::backdrop {
  background: rgba(18, 17, 15, 0.66);
  backdrop-filter: blur(3px);
}
.dialog-close,
.video-close {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
}
.dialog-mark {
  display: grid;
  margin-bottom: 27px;
}
.login-dialog h2 {
  font:
    30px Georgia,
    "Songti SC",
    serif;
  margin: 0 0 8px;
}
.login-dialog > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 13px;
}
.login-dialog form {
  margin: 25px 0 15px;
  display: grid;
  gap: 16px;
}
.login-dialog label {
  font-size: 13px;
  font-weight: 700;
}
.login-dialog input {
  margin-top: 7px;
  width: 100%;
  border: 1px solid var(--line);
  padding: 11px;
  outline-color: var(--red);
  background: #fff;
}
.code-field {
  display: flex;
  gap: 8px;
}
.code-field input {
  min-width: 0;
}
.send-code {
  margin-top: 7px;
  border: 1px solid var(--red);
  background: #fff;
  color: var(--red);
  white-space: nowrap;
  padding: 0 10px;
  font-size: 12px;
}
.login-dialog form .primary-btn {
  width: 100%;
  margin-top: 4px;
}
.login-dialog > small {
  font-size: 11px;
  color: var(--muted);
}
.video-dialog {
  width: min(900px, calc(100% - 32px));
  background: #f7f4ee;
}
.video-dialog-media {
  height: min(52vw, 480px);
  background: #1e1d1b;
  position: relative;
}
.video-dialog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dialog-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 50%;
}
.dialog-play svg {
  width: 22px;
  fill: currentColor;
}
.video-dialog-body {
  padding: 27px 34px 32px;
}
.video-dialog-body h2 {
  font:
    30px Georgia,
    "Songti SC",
    serif;
  margin: 7px 0;
}
.video-dialog-body > p:not(.eyebrow) {
  color: var(--muted);
}
.dialog-author {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}
.dialog-author .follow-btn {
  margin-left: auto;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translate(-50%, 20px);
  z-index: 120;
  background: var(--ink);
  color: white;
  padding: 10px 16px;
  border-radius: 4px;
  font-size: 13px;
  opacity: 0;
  transition: 0.2s;
  pointer-events: none;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s,
    transform 0.6s;
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (max-width: 800px) {
  .wrap,
  .nav-shell {
    width: min(100% - 32px, 1160px);
  }
  .desktop-nav,
  .nav-publish {
    display: none;
  }
  .menu-toggle {
    display: grid;
  }
  .mobile-panel {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 74px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: 0.25s;
  }
  .mobile-panel.open {
    max-height: 250px;
  }
  .mobile-panel nav {
    padding: 10px 16px 18px;
    display: grid;
  }
  .mobile-panel a {
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
  }
  .home-hero {
    height: 650px;
    min-height: 0;
  }
  .hero-content {
    padding-bottom: 70px;
  }
  .hero-now {
    position: static;
    margin-top: 44px;
  }
  .category-track {
    height: 80px;
    overflow-x: auto;
    display: flex;
    width: 100%;
    padding: 0 16px;
  }
  .category-track a {
    min-width: 112px;
    border-left: 0 !important;
    border-right: 1px solid #44423e !important;
    font-size: 12px;
  }
  .section,
  .manifesto-section {
    padding: 74px 0;
  }
  .section-heading {
    display: block;
    margin-bottom: 30px;
  }
  .section-note {
    margin-top: 10px;
  }
  .editorial-grid {
    grid-template-columns: 1fr 1fr;
    gap: 22px 14px;
  }
  .featured {
    grid-column: span 2;
  }
  .featured .card-image {
    aspect-ratio: 1.4;
  }
  .video-card h3 {
    font-size: 16px;
  }
  .video-card > p {
    display: none;
  }
  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .manifesto-body > p {
    font-size: 20px;
    margin: 12px 0 32px;
  }
  .theme-grid {
    grid-template-columns: 1fr 1fr;
  }
  .theme-wide {
    grid-column: span 2;
  }
  .theme-card {
    height: 290px;
  }
  .creator-list {
    grid-template-columns: 1fr 1fr;
  }
  .creator-row {
    min-height: 245px;
    padding: 18px;
  }
  .creator-cta-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
  .creator-cta h2 {
    font-size: 29px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-column: span 2;
  }
  .video-dialog-body {
    padding: 22px;
  }
  .search-panel > label {
    font-size: 31px;
  }
  .big-search input {
    font-size: 18px;
  }
}
@media (max-width: 430px) {
  .nav-actions {
    gap: 3px;
  }
  .text-btn {
    font-size: 13px;
  }
  .home-hero {
    height: 590px;
  }
  .home-hero h1 {
    font-size: 64px;
  }
  .hero-lead {
    font-size: 19px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .category-track a {
    min-width: 105px;
  }
  .editorial-grid {
    gap: 22px 12px;
  }
  .card-image {
    aspect-ratio: 1.1;
  }
  .featured .card-image {
    aspect-ratio: 1.3;
  }
  .video-meta {
    margin-top: 10px;
  }
  .video-author {
    font-size: 11px;
  }
  .theme-card {
    height: 250px;
  }
  .theme-card h3 {
    font-size: 24px;
  }
  .creator-list {
    grid-template-columns: 1fr;
  }
  .creator-row {
    min-height: 210px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-bottom div {
    gap: 10px;
    flex-wrap: wrap;
  }
  .login-dialog {
    padding: 33px 26px;
  }
  .video-dialog-media {
    height: 56vw;
  }
  .video-dialog-body h2 {
    font-size: 25px;
  }
}
.discover-hero {
  padding: 104px 0 86px;
  background: var(--sand);
}
.discover-hero h1 {
  font:
    clamp(42px, 5vw, 70px) / 1.1 Georgia,
    "Songti SC",
    serif;
  margin: 0 0 14px;
}
.discover-hero > div > p:last-child {
  color: var(--muted);
  margin: 0;
}
.discover-content {
  padding: 58px 0 120px;
}
.filter-row {
  display: flex;
  gap: 9px;
  overflow: auto;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.filter-row button {
  background: transparent;
  border: 1px solid var(--line);
  padding: 7px 15px;
  white-space: nowrap;
  color: var(--muted);
  font-size: 13px;
}
.filter-row button.on,
.filter-row button:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.discover-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 30px 0;
}
.discover-bar strong {
  font:
    25px Georgia,
    "Songti SC",
    serif;
}
.discover-bar > span {
  font-size: 12px;
  color: var(--muted);
}
.discover-bar select {
  margin-left: auto;
  border: 1px solid var(--line);
  padding: 8px 25px 8px 10px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
}
.discover-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 42px 20px;
}
.empty-state {
  color: var(--muted);
  text-align: center;
  padding: 60px;
}
.about-hero {
  height: 520px;
  position: relative;
  color: #fff;
  display: flex;
  align-items: end;
  overflow: hidden;
}
.about-hero > img,
.about-hero > div:not(.wrap) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-hero > div:not(.wrap) {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.65), transparent);
}
.about-hero .wrap {
  position: relative;
  padding-bottom: 68px;
}
.about-hero h1 {
  font:
    clamp(48px, 6vw, 82px) / 1.05 Georgia,
    "Songti SC",
    serif;
  margin: 0;
}
.about-hero .eyebrow {
  color: white;
}
.about-story {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  padding: 130px 0;
}
.about-story h2 {
  font:
    clamp(36px, 4vw, 57px) / 1.2 Georgia,
    "Songti SC",
    serif;
  margin: 0;
  grid-column: 1;
}
.about-story > div {
  grid-column: 2;
  grid-row: 1/3;
  margin-top: 34px;
}
.about-story div p {
  font-size: 17px;
  line-height: 2;
  color: #554f48;
}
.values {
  background: var(--dark);
  color: #fff;
  padding: 110px 0;
}
.values .eyebrow {
  color: #f0927d;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 46px;
  border-top: 1px solid #5a5751;
}
.value-grid article {
  padding: 28px 30px 10px 0;
  border-right: 1px solid #5a5751;
}
.value-grid article + article {
  padding-left: 30px;
}
.value-grid strong {
  color: #f0927d;
  font-size: 12px;
}
.value-grid h3 {
  font:
    32px Georgia,
    "Songti SC",
    serif;
  margin: 26px 0 10px;
}
.value-grid p {
  color: #bcb7ae;
  font-size: 14px;
  max-width: 240px;
}
.join-section {
  text-align: center;
  padding: 120px 0;
}
.join-section h2 {
  font:
    clamp(34px, 4vw, 54px) Georgia,
    "Songti SC",
    serif;
  margin: 0 0 15px;
}
.join-section > div > p:not(.eyebrow) {
  color: var(--muted);
}
.join-form {
  display: flex;
  gap: 8px;
  width: min(490px, 100%);
  margin: 32px auto 0;
}
.join-form input {
  min-width: 0;
  flex: 1;
  border: 1px solid var(--line);
  padding: 10px 13px;
  background: #fff;
  outline-color: var(--red);
}
.legal-page {
  padding: 100px 0 120px;
  max-width: 820px;
}
.legal-page h1 {
  font:
    clamp(40px, 5vw, 64px) / 1.15 Georgia,
    "Songti SC",
    serif;
  margin: 0;
}
.legal-updated {
  color: var(--muted);
  margin: 15px 0 65px;
}
.legal-page section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}
.legal-page section h2 {
  font:
    25px Georgia,
    "Songti SC",
    serif;
  margin: 0 0 15px;
}
.legal-page section p {
  color: #554f48;
  line-height: 2;
  margin: 0;
}
.legal-footer {
  margin-top: 0;
}
@media (max-width: 800px) {
  .discover-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 14px;
  }
  .about-story {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 75px 0;
  }
  .about-story > div {
    grid-column: auto;
    grid-row: auto;
    margin: 0;
  }
  .value-grid {
    grid-template-columns: 1fr;
  }
  .value-grid article,
  .value-grid article + article {
    padding: 23px 0;
    border-right: 0;
    border-bottom: 1px solid #5a5751;
  }
  .about-hero {
    height: 420px;
  }
  .join-section {
    padding: 75px 0;
  }
}
@media (max-width: 430px) {
  .discover-grid {
    gap: 28px 12px;
  }
  .discover-grid .video-card > p {
    display: none;
  }
  .discover-bar {
    margin: 22px 0;
  }
  .discover-bar strong {
    font-size: 21px;
  }
  .join-form {
    flex-direction: column;
  }
  .about-hero {
    height: 360px;
  }
}
.home-hero {
  height: calc(100vh - 124px);
  min-height: 620px;
}
@media (max-width: 800px) {
  .home-hero {
    height: 650px;
    min-height: 0;
  }
}
@media (max-width: 430px) {
  .home-hero {
    height: 590px;
  }
}
