:root {
  --brand: #574b3b;
  --brand-dark: #2f2924;
  --sand: #d3be9f;
  --sand-soft: #efe6d8;
  --sand-pale: #f7f1e8;
  --ink: #2f2924;
  --muted: rgba(47, 41, 36, 0.72);
  --paper: #f7f1e8;
  --paper-warm: #efe6d8;
  --cream: #fffaf1;
  --gold: #d3be9f;
  --temple-red: #574b3b;
  --sage: #574b3b;
  --line: rgba(87, 75, 59, 0.18);
  --shadow: 0 24px 70px rgba(47, 41, 36, 0.18);
  --icon-gap: 14px;
  --card-flow-gap: 16px;
  --title-flow-gap: 12px;
  color-scheme: light;
  font-family:
    Georgia, "Times New Roman", "Source Han Serif TC", "Source Han Serif",
    "Noto Serif CJK TC", "Noto Serif TC", "思源宋體", "思源宋体",
    "Songti TC", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Georgia, "Times New Roman", "Source Han Serif TC", "Source Han Serif",
    "Noto Serif CJK TC", "Noto Serif TC", "思源宋體", "思源宋体",
    "Songti TC", serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--cream);
  background: linear-gradient(180deg, rgba(47, 41, 36, 0.84), rgba(47, 41, 36, 0));
}

.subpage-nav {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  min-width: 0;
}

.subpage-toggle {
  display: grid;
  width: 32px;
  height: 30px;
  align-content: center;
  gap: 5px;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--cream);
  cursor: pointer;
}

.subpage-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.subpage-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: grid;
  width: min(340px, calc(100vw - 36px));
  gap: 14px;
  border: 1px solid rgba(87, 75, 59, 0.18);
  border-radius: 8px;
  background: var(--cream);
  padding: 14px;
  box-shadow: 0 18px 44px rgba(47, 41, 36, 0.18);
}

.subpage-menu[hidden] {
  display: none;
}

.subpage-menu-head {
  display: grid;
  gap: 4px;
  border-bottom: 1px solid var(--line);
  padding: 4px 4px 12px;
  color: var(--brand-dark);
}

.subpage-menu-head strong {
  font-size: 18px;
  font-weight: 900;
}

.subpage-menu-head span {
  color: var(--muted);
  font-size: 13px;
}

.subpage-menu-group {
  display: grid;
  gap: 6px;
}

.subpage-menu-group p {
  margin: 0 0 2px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.subpage-menu a {
  border-radius: 6px;
  color: var(--brand-dark);
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 900;
}

.subpage-menu a:hover {
  background: var(--sand-soft);
}

.subpage-menu .featured-link {
  display: grid;
  gap: 5px;
  border: 1px solid rgba(87, 75, 59, 0.16);
  background: var(--sand-soft);
}

.subpage-menu .featured-link span {
  font-size: 16px;
}

.subpage-menu .featured-link small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.subpage-menu-social {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.subpage-menu-social a {
  border: 1px solid rgba(87, 75, 59, 0.16);
  text-align: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--icon-gap);
  min-width: 0;
}

.brand-copy {
  display: grid;
  gap: 3px;
  line-height: 1;
}

.brand-copy strong,
nav,
.button,
.eyebrow,
.section-kicker,
.label,
.hero-note span,
.follow-link span,
footer {
  font-family:
    Georgia, "Times New Roman", "Source Han Serif TC Heavy",
    "Source Han Serif TC", "Noto Serif CJK TC", "Noto Serif TC",
    "思源粗宋", "思源宋體", serif;
}

.brand-copy strong {
  font-size: 17px;
  font-weight: 900;
}

.brand-copy small {
  color: rgba(255, 250, 241, 0.74);
  font-size: 13px;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 30px);
  color: rgba(255, 250, 241, 0.88);
  font-size: 14px;
  font-weight: 800;
}

nav a {
  border-bottom: 1px solid transparent;
  padding-block: 6px;
}

nav a:hover {
  border-color: currentColor;
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 116px clamp(20px, 6vw, 78px) 74px;
  color: var(--cream);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("creator-temple-hero.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(47, 41, 36, 0.94), rgba(87, 75, 59, 0.64) 48%, rgba(87, 75, 59, 0.12)),
    linear-gradient(0deg, rgba(47, 41, 36, 0.58), rgba(47, 41, 36, 0.1) 54%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(800px, 100%);
}

.eyebrow,
.section-kicker,
.label {
  margin: 0;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-kicker {
  margin-bottom: clamp(14px, 1.8vw, 24px);
}

.hero .eyebrow,
.collab .eyebrow {
  color: var(--sand);
}

.hero .eyebrow {
  margin-bottom: clamp(18px, 2.4vw, 30px);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family:
    Georgia, "Times New Roman", "Source Han Serif TC Heavy",
    "Source Han Serif TC", "Noto Serif CJK TC", "Noto Serif TC",
    "思源粗宋", "思源宋體", serif;
  font-weight: 900;
}

h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: clamp(41px, 6.5vw, 80px);
  line-height: 1.08;
}

.hero-lede {
  max-width: 700px;
  margin-bottom: 34px;
  color: rgba(255, 250, 241, 0.86);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.9;
}

.hero-actions,
.collab-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
}

.button-icon {
  width: 20px;
  height: 20px;
}

.button svg,
.icon-shell svg,
.line-illustration svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button svg {
  stroke-width: 2;
}

.button.primary {
  border-color: var(--brand);
  background: var(--brand);
  color: var(--cream);
}

.button.secondary {
  border-color: rgba(211, 190, 159, 0.82);
  color: var(--cream);
  background: rgba(211, 190, 159, 0.12);
  backdrop-filter: blur(16px);
}

.hero-note {
  display: grid;
  gap: 7px;
  max-width: 320px;
  margin-top: 22px;
  border-left: 1px solid rgba(255, 250, 241, 0.42);
  padding-left: 18px;
  color: rgba(255, 250, 241, 0.72);
  line-height: 1.6;
}

.hero-note span {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-note strong {
  color: var(--cream);
  font-size: 20px;
  font-weight: 700;
}

.section {
  padding: clamp(72px, 10vw, 132px) clamp(20px, 6vw, 78px);
}

.intro {
  background: var(--paper);
  color: var(--ink);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.96fr) minmax(280px, 1fr);
  gap: clamp(32px, 7vw, 96px);
  margin-top: 18px;
}

.intro h2,
.section-heading h2,
.audience h2,
.collab h2 {
  margin-bottom: 0;
  font-size: clamp(31px, 4.2vw, 54px);
  line-height: 1.22;
}

.prose {
  color: var(--muted);
  font-size: 18px;
  line-height: 2;
}

.intro > .section-kicker {
  margin-bottom: clamp(14px, 1.8vw, 24px);
}

.intro > .section-kicker,
.series .section-kicker,
.recent .section-kicker,
.audience .section-kicker {
  color: #2f2924;
}

.prose p:last-child {
  margin-bottom: 0;
}

.creator-photo-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(34px, 5vw, 58px);
}

.creator-photo {
  display: grid;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(87, 75, 59, 0.18);
  border-radius: 8px;
  background: var(--brand);
  color: var(--cream);
  box-shadow: 0 18px 44px rgba(47, 41, 36, 0.14);
}

.creator-photo img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.creator-photo.portrait img {
  aspect-ratio: 4 / 5;
  object-position: center 42%;
}

.creator-photo.portrait {
  grid-column: span 1;
}

.creator-photo.content {
  grid-column: span 3;
}

.creator-photo.travel {
  grid-column: span 3;
}

.creator-photo.vlog-market,
.creator-photo.vlog-tea {
  grid-column: span 2;
}

.creator-photo.content img,
.creator-photo.travel img {
  aspect-ratio: 16 / 9;
  object-position: center;
}

.creator-photo.vlog-market img,
.creator-photo.vlog-tea img {
  aspect-ratio: 16 / 9;
}

.creator-photo.vlog-market img {
  object-position: center;
}

.creator-photo.vlog-tea img {
  object-position: center 48%;
}

.creator-photo figcaption {
  display: grid;
  gap: var(--title-flow-gap);
  padding: 18px 20px 20px;
}

.creator-photo span {
  color: var(--sand);
  font-family:
    Georgia, "Times New Roman", "Source Han Serif TC Heavy",
    "Source Han Serif TC", "Noto Serif CJK TC", "Noto Serif TC",
    "思源粗宋", "思源宋體", serif;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.creator-photo strong {
  max-width: 720px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.series-grid span,
.collab-tags span {
  color: var(--temple-red);
  font-family:
    Georgia, "Times New Roman", "Source Han Serif TC Heavy",
    "Source Han Serif TC", "Noto Serif CJK TC", "Noto Serif TC",
    "思源粗宋", "思源宋體", serif;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.love-spirit {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(247, 241, 232, 0.98), rgba(211, 190, 159, 0.3)),
    var(--paper);
  color: var(--ink);
}

.love-mark {
  position: absolute;
  right: clamp(8px, 8vw, 110px);
  top: 50%;
  z-index: 0;
  color: rgba(87, 75, 59, 0.08);
  font-family:
    "Source Han Serif TC Heavy", "Source Han Serif TC", "Noto Serif CJK TC",
    "Noto Serif TC", "思源粗宋", "思源宋體", serif;
  font-size: clamp(190px, 30vw, 430px);
  font-weight: 900;
  line-height: 0.8;
  transform: translateY(-50%);
  user-select: none;
}

.love-content {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
}

.love-content h2 {
  margin: 0;
  color: var(--brand);
  font-size: clamp(42px, 7vw, 92px);
  line-height: 1.05;
}

.love-statement {
  margin: clamp(18px, 2.8vw, 32px) 0 0;
  color: var(--brand-dark);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.55;
}

.love-copy {
  display: grid;
  gap: 18px;
  max-width: 760px;
  margin-top: clamp(26px, 4vw, 42px);
  border-left: 1px solid rgba(87, 75, 59, 0.24);
  padding-left: clamp(20px, 3vw, 34px);
}

.love-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 2;
}

.content-pillars {
  position: relative;
  overflow: hidden;
  background: var(--brand);
  color: var(--cream);
}

.line-illustration {
  position: absolute;
  top: 28px;
  right: clamp(18px, 5vw, 70px);
  width: min(56vw, 620px);
  color: rgba(211, 190, 159, 0.28);
}

.line-illustration svg {
  stroke-width: 3;
}

.section-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.94fr) minmax(260px, 0.58fr);
  align-items: end;
  gap: clamp(28px, 6vw, 84px);
  margin-bottom: 38px;
}

.section-heading .section-kicker {
  margin-bottom: clamp(14px, 1.8vw, 24px);
}

.section-heading p {
  color: rgba(255, 250, 241, 0.76);
  font-size: 17px;
  line-height: 1.9;
}

.section-heading.light p {
  color: var(--muted);
}

.pillar-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
  gap: 18px;
}

.pillar-card {
  display: flex;
  min-height: 410px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: var(--card-flow-gap);
  border: 1px solid rgba(255, 250, 241, 0.62);
  border-radius: 8px;
  background: var(--cream);
  color: var(--brand-dark);
  padding: clamp(26px, 4vw, 44px);
  box-shadow: 0 18px 46px rgba(47, 41, 36, 0.16);
}

.pillar-card.featured {
  background: var(--cream);
  color: var(--brand-dark);
}

.icon-shell {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: auto;
  color: var(--temple-red);
}

.icon-shell svg {
  stroke-width: 1.7;
}

.pillar-card.featured .icon-shell,
.pillar-card.featured .label {
  color: var(--temple-red);
}

.pillar-card .label {
  color: var(--temple-red);
  font-size: 15px;
}

.pillar-card h3 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
}

.pillar-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.pillar-card.featured p {
  color: var(--muted);
}

.series {
  background:
    linear-gradient(180deg, rgba(247, 241, 232, 0.78), rgba(247, 241, 232, 1)),
    var(--paper);
  color: var(--ink);
}

.series-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.series-grid article {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: var(--card-flow-gap);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--brand);
  color: var(--cream);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: 0 18px 46px rgba(47, 41, 36, 0.16);
}

.series-grid article:nth-child(1),
.series-vlog {
  background: var(--brand);
}

.series-grid article:nth-child(2),
.series-temple {
  background: var(--brand);
}

.series-grid article:nth-child(3),
.series-dao {
  background: var(--brand);
}

.series-grid h3 {
  margin: 0;
  color: var(--cream);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.25;
}

.series-grid h3::after {
  display: block;
  width: 58px;
  height: 1px;
  margin-top: 16px;
  background: rgba(255, 250, 241, 0.38);
  content: "";
}

.series-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: auto;
  color: var(--cream);
}

.series-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.series-grid p {
  margin-bottom: 0;
  color: rgba(255, 250, 241, 0.78);
  font-size: 16px;
  line-height: 1.85;
}

.series-grid span:not(.series-icon) {
  color: var(--sand);
}

.recent {
  background: var(--paper);
}

.recent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.video-card {
  position: relative;
  display: grid;
  overflow: hidden;
  align-items: end;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--brand-dark);
  color: var(--cream);
  box-shadow: var(--shadow);
}

.video-card.large {
  min-height: auto;
}

.video-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.video-card:hover img {
  transform: scale(1.035);
}

.video-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(47, 41, 36, 0.92), rgba(47, 41, 36, 0.18) 64%);
}

.video-card div {
  position: relative;
  z-index: 1;
  padding: clamp(22px, 4vw, 36px);
}

.video-card span {
  display: inline-flex;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 250, 241, 0.34);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--sand);
  font-size: 13px;
}

.video-card h3 {
  margin-bottom: 10px;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.25;
}

.video-card p {
  margin-bottom: 0;
  color: rgba(255, 250, 241, 0.82);
  font-size: 15px;
  line-height: 1.65;
}

.audience {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(280px, 1fr);
  align-items: center;
  gap: clamp(30px, 7vw, 90px);
  background: var(--cream);
  color: var(--ink);
}

.audience-copy p {
  margin-top: clamp(20px, 2.4vw, 32px);
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.follow-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.follow-link {
  position: relative;
  display: grid;
  gap: var(--title-flow-gap);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  padding: clamp(24px, 4vw, 34px);
  box-shadow: 0 14px 34px rgba(87, 75, 59, 0.08);
}

.follow-link.youtube {
  background: var(--brand);
}

.follow-link.instagram {
  background: var(--brand);
}

.follow-link.tiktok {
  background: var(--brand);
}

.follow-link.facebook {
  background: var(--brand);
}

.follow-link > span {
  color: var(--sand);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.follow-link strong {
  color: var(--cream);
  font-family:
    Georgia, "Times New Roman", "Source Han Serif TC Heavy",
    "Source Han Serif TC", "Noto Serif CJK TC", "Noto Serif TC",
    "思源粗宋", "思源宋體", serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
}

.follow-link em {
  color: rgba(255, 250, 241, 0.78);
  font-style: normal;
  line-height: 1.7;
}

.collab {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  align-items: center;
  gap: clamp(28px, 6vw, 82px);
  padding: clamp(58px, 8vw, 96px) clamp(20px, 6vw, 78px);
  background: var(--brand-dark);
  color: var(--cream);
}

.collab-panel {
  display: grid;
  grid-template-columns: 1fr;
  justify-content: flex-end;
  justify-items: end;
  max-width: 820px;
  gap: 18px;
}

.collab > div:first-child .eyebrow {
  margin-bottom: clamp(14px, 1.8vw, 24px);
}

.collab-panel p {
  width: 100%;
  margin-bottom: 0;
  color: rgba(255, 250, 241, 0.72);
  line-height: 1.8;
}

.collab-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
}

.collab-card-grid article {
  display: grid;
  gap: var(--title-flow-gap);
  min-width: 0;
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: 8px;
  background: var(--cream);
  padding: clamp(20px, 3vw, 26px);
  color: var(--brand-dark);
}

.collab-card-grid span {
  color: var(--temple-red);
  font-family:
    Georgia, "Times New Roman", "Source Han Serif TC Heavy",
    "Source Han Serif TC", "Noto Serif CJK TC", "Noto Serif TC",
    "思源粗宋", "思源宋體", serif;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.collab-card-grid strong {
  color: var(--brand);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.35;
}

.collab-card-grid p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.collab-tags {
  display: grid;
  grid-template-columns: repeat(4, max-content);
  gap: 8px;
  width: 100%;
  align-items: center;
  justify-content: end;
}

.collab-tags span {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 250, 241, 0.22);
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--sand);
  font-size: 11px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
}

footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(220px, auto);
  align-items: center;
  gap: 22px 34px;
  padding: clamp(30px, 5vw, 46px) clamp(20px, 6vw, 78px);
  border-top: 1px solid var(--line);
  background: var(--sand-soft);
  color: var(--muted);
  font-size: 13px;
}

footer p {
  margin: 0;
}

.flow-card {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 620ms ease,
    transform 620ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
  transition-delay: var(--flow-delay, 0ms);
}

.flow-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: var(--icon-gap);
}

.footer-brand strong {
  display: block;
  margin-bottom: 6px;
  color: var(--brand);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.footer-links a {
  border: 1px solid rgba(87, 75, 59, 0.2);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--brand);
}

.footer-meta {
  display: grid;
  gap: 6px;
  justify-items: end;
  text-align: right;
}

.footer-meta a {
  color: var(--brand);
  font-weight: 900;
}

.back-to-top {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 250, 241, 0.32);
  border-radius: 999px;
  background: var(--brand);
  color: var(--cream);
  padding: 11px 14px;
  box-shadow: 0 16px 38px rgba(47, 41, 36, 0.22);
  font-weight: 900;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
  pointer-events: none;
  cursor: pointer;
}

.back-to-top span:first-child {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid rgba(255, 250, 241, 0.28);
  border-radius: 50%;
}

.back-to-top:hover {
  background: var(--brand-dark);
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 1020px) {
  .pillar-grid,
  .recent-grid,
  .series-grid,
  .collab-card-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card {
    min-height: 300px;
  }

  .video-card.large {
    min-height: auto;
  }

  .creator-photo-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .creator-photo.portrait,
  .creator-photo.content,
  .creator-photo.travel,
  .creator-photo.vlog-market,
  .creator-photo.vlog-tea {
    grid-column: span 1;
  }
}

@media (max-width: 860px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 92vh;
    padding-top: 110px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(51, 43, 34, 0.92), rgba(87, 75, 59, 0.54)),
      linear-gradient(0deg, rgba(51, 43, 34, 0.6), rgba(51, 43, 34, 0.12));
  }

  .hero-note {
    margin-top: 28px;
  }

  .intro-grid,
  .creator-photo-row,
  .section-heading,
  .audience,
  .collab {
    grid-template-columns: 1fr;
  }

  .line-illustration {
    top: 36px;
    width: min(82vw, 520px);
    opacity: 0.7;
  }

  .collab {
    align-items: start;
    gap: 26px;
    padding-block: 66px;
  }

  .collab-panel {
    justify-content: flex-start;
    justify-items: stretch;
    max-width: none;
    gap: 18px;
  }

  .collab > div:first-child .eyebrow {
    margin-bottom: 14px;
  }

  .collab-panel p {
    font-size: 16px;
    line-height: 1.9;
  }

  .collab-card-grid {
    gap: 12px;
  }

  .collab-card-grid article {
    gap: 10px;
    padding: 22px 20px;
  }

  .collab-card-grid span {
    font-size: 12px;
  }

  .collab-card-grid strong {
    font-size: 21px;
    line-height: 1.42;
  }

  .collab-card-grid p {
    font-size: 15px;
    line-height: 1.8;
  }

  .collab-tags {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    gap: 10px;
  }

  .collab-tags span {
    min-height: 38px;
    padding: 8px 10px;
    text-align: center;
    white-space: normal;
  }

  .follow-stack {
    grid-template-columns: 1fr;
  }

  footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-meta {
    justify-items: start;
    text-align: left;
  }

  .creator-photo.portrait,
  .creator-photo.content,
  .creator-photo.travel,
  .creator-photo.vlog-market,
  .creator-photo.vlog-tea {
    grid-column: auto;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: 38px;
  }

  .hero-actions,
  .collab-panel {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .video-card,
  .video-card.large {
    min-height: auto;
  }

  .collab {
    padding: 58px 18px;
  }

  .collab h2 {
    font-size: clamp(28px, 8vw, 36px);
    line-height: 1.32;
  }

  .collab-tags span {
    font-size: 10px;
  }
}

@media (max-width: 350px) {
  .collab-tags {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .flow-card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .video-card img {
    transition: none;
  }
}
