:root {
  --bg: #11100d;
  --bg-2: #17140f;
  --ink: #fbf1df;
  --muted: #dbcab0;
  --soft: #9e8f78;
  --accent: #f13d72;
  --accent-2: #c69649;
  --line: rgba(198, 150, 73, 0.66);
  --line-soft: rgba(198, 150, 73, 0.28);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
  --page: min(1180px, calc(100vw - 88px));
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", "Helvetica Neue", sans-serif;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 16%, rgba(241, 61, 114, 0.14), transparent 24rem),
    radial-gradient(circle at 64% 58%, rgba(198, 150, 73, 0.12), transparent 24rem),
    linear-gradient(180deg, var(--bg) 0%, #0d0c0a 100%);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
}

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

img,
svg,
video {
  display: block;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 5px 7px;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 78%);
}

.site-header,
.hero,
.intro-panel,
.feature-band,
.split-story,
.page-hero,
.links,
.signup,
.about-body,
.model-profile,
.project-ledger,
.gallery-board,
.gallery-stage,
.gallery-current,
.gallery-library,
.gallery-member-vault,
.gallery-queue,
.gallery-showcase,
.gallery-strip,
.gallery-next,
.support-story,
.member-gate,
.member-room,
.legal-page,
.home-about,
.home-projects,
.members-callout,
.site-footer {
  width: var(--page);
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.55rem 0 1.35rem;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.045em;
}

.nav-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0.65rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.mobile-nav-open .nav-toggle {
  color: var(--accent);
}

.nav-toggle-line {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform-origin: center;
  transition:
    opacity 160ms ease,
    transform 180ms ease;
}

.nav-toggle-line + .nav-toggle-line {
  margin-top: 0.42rem;
}

.mobile-nav-open .nav-toggle-line:nth-child(2) {
  transform: translateY(0.42rem) rotate(45deg);
}

.mobile-nav-open .nav-toggle-line:nth-child(3) {
  opacity: 0;
}

.mobile-nav-open .nav-toggle-line:nth-child(4) {
  transform: translateY(-0.42rem) rotate(-45deg);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2.5vw, 2rem);
  color: var(--ink);
  font-size: 0.95rem;
}

.nav a {
  position: relative;
  padding: 0.45rem 0;
}

.nav a.current {
  color: var(--accent);
}

.nav a.current::after,
.nav a:focus-visible::after,
.nav a:hover::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
}

.header-counter {
  flex: 0 0 auto;
  margin: 0;
  padding-left: clamp(0.9rem, 2vw, 1.35rem);
  border-left: 1px solid var(--line-soft);
  color: var(--soft);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-counter span {
  display: block;
  color: var(--accent-2);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.9;
  text-transform: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(20rem, 0.98fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: 650px;
  padding: clamp(3rem, 7vw, 6.4rem) 0 1.7rem;
}

.hero h1,
.page-hero h1,
.member-gate h1,
.member-room h1 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(4.9rem, 10.5vw, 8.2rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.identity {
  margin: -0.12em 0 0;
  color: var(--accent);
  font-family: var(--serif);
  font-size: clamp(3.3rem, 8vw, 6.2rem);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.lead {
  max-width: 18rem;
  margin: 1.7rem 0 2.35rem;
  color: #f5c86e;
  font-size: clamp(1.22rem, 2vw, 1.6rem);
  line-height: 1.2;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem 2.35rem;
  font-size: 1.08rem;
}

.hero-actions a:not(.button),
.text-link,
.gallery-next a {
  color: var(--accent);
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.95rem;
  min-height: 4.35rem;
  padding: 0 2.2rem;
  border: 0;
  background: linear-gradient(135deg, #e93c72, #ff5b83);
  box-shadow: 0 18px 40px rgba(241, 61, 114, 0.18);
  color: #fff8ef;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.button span,
.arrow {
  font-family: var(--sans);
  letter-spacing: -0.2em;
}

.portrait-frame {
  position: relative;
  z-index: 1;
  min-height: clamp(23rem, 44vw, 34rem);
  isolation: isolate;
}

.portrait-frame::after {
  position: absolute;
  inset: 2.1rem 0 1.6rem 5.2rem;
  z-index: -3;
  border: 1px solid var(--accent-2);
  content: "";
}

.portrait-frame img {
  position: absolute;
  right: 1.2rem;
  bottom: 1.55rem;
  width: min(49vw, 33rem);
  height: min(48vw, 32rem);
  object-fit: cover;
  object-position: 52% 48%;
  border: 1px solid rgba(198, 150, 73, 0.45);
  filter: contrast(1.04) saturate(1.06) brightness(0.94);
  box-shadow: var(--shadow);
}

.paint {
  position: absolute;
  z-index: -2;
  transform: rotate(-9deg);
  filter: saturate(1.08);
}

.paint-pink {
  top: 2rem;
  right: 4rem;
  width: min(34vw, 26rem);
  height: 10rem;
  background: linear-gradient(90deg, transparent, rgba(241, 61, 114, 0.88), rgba(241, 61, 114, 0.36), transparent);
  clip-path: polygon(0 38%, 78% 5%, 100% 28%, 18% 96%);
}

.paint-gold {
  right: 0;
  bottom: 8rem;
  width: min(36vw, 28rem);
  height: 8rem;
  background: linear-gradient(90deg, transparent, rgba(198, 150, 73, 0.78), rgba(198, 150, 73, 0.32), transparent);
  clip-path: polygon(12% 20%, 100% 0, 83% 74%, 0 100%);
}

.intro-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(18rem, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-panel h2,
.split-story h2,
.gallery-note h2,
.support-story h2,
.project-ledger h2,
.member-columns h2 {
  margin: 0;
  color: var(--accent-2);
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.intro-panel h2 {
  max-width: 11ch;
  font-size: clamp(3rem, 6vw, 5.3rem);
}

.intro-panel p,
.page-hero p,
.split-story p,
.gallery-note p,
.gallery-next p,
.statement p,
.support-story p,
.member-gate p,
.member-columns p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.feature-link {
  display: grid;
  align-content: start;
  min-height: 14rem;
  padding: 1.25rem clamp(1rem, 2vw, 2rem);
  border-right: 1px solid var(--line-soft);
}

.feature-link:last-child {
  border-right: 0;
}

.feature-link span,
.member-columns article span {
  color: var(--accent);
  font-weight: 800;
}

.feature-link strong {
  margin-top: 1.25rem;
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.feature-link em {
  margin-top: 0.7rem;
  color: var(--muted);
  font-style: normal;
}

.split-story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1.1fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.split-story h2 {
  max-width: 8ch;
  font-size: clamp(4rem, 8vw, 6rem);
  font-style: italic;
}

.split-story p {
  max-width: 26rem;
  margin-top: 1.35rem;
}

.archive-lines {
  color: var(--accent) !important;
  font-weight: 800;
}

.archive-card {
  display: grid;
  place-items: end center;
  min-height: 27rem;
  border-left: 1px solid var(--line);
  background:
    repeating-linear-gradient(170deg, rgba(251, 241, 223, 0.04) 0 9px, transparent 9px 21px),
    linear-gradient(135deg, rgba(236, 223, 197, 0.12), rgba(236, 223, 197, 0.02));
  overflow: hidden;
}

.archive-card img {
  width: min(45vw, 21rem);
  filter: contrast(1.05) saturate(1.05) brightness(0.94);
}

.home-links {
  border-top: 1px solid var(--line);
}

.home-about {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(18rem, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(3.2rem, 7vw, 5.5rem) 0;
  border-bottom: 1px solid var(--line);
}

.home-about h2,
.members-callout h2 {
  margin: 0;
  color: var(--accent-2);
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 6.1rem);
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.92;
}

.home-about-copy p,
.members-callout p {
  max-width: 29rem;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.home-about .archive-lines {
  color: var(--accent) !important;
  font-size: 1.18rem;
  line-height: 1.45;
}

.home-about-art {
  position: relative;
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  align-items: center;
  min-height: 27rem;
}

.about-spark {
  position: relative;
  width: 1px;
  height: 19rem;
  margin-inline: auto;
  background: var(--line);
}

.about-spark::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 1rem;
  background: var(--accent-2);
  content: "";
  transform: translate(-50%, -50%) rotate(45deg);
}

.home-archive-card {
  min-height: 25rem;
  border-left: 0;
}

.home-archive-card img {
  width: min(34vw, 17rem);
}

.home-projects {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  border-bottom: 1px solid var(--line);
}

.section-rule-title {
  display: grid;
  grid-template-columns: minmax(2rem, 1fr) auto minmax(2rem, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.section-rule-title span {
  height: 1px;
  background: var(--line);
}

.section-rule-title h2 {
  margin: 0;
  color: var(--accent-2);
  font-family: var(--serif);
  font-size: clamp(3.2rem, 6vw, 5rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}

.project-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 0;
}

.project-card {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 15rem;
  padding: 0.75rem clamp(1rem, 2vw, 2rem) 0;
  border-right: 1px solid var(--line-soft);
  text-align: center;
}

.project-card:last-child {
  border-right: 0;
}

.project-icon,
.project-at {
  display: grid;
  place-items: center;
  width: 4.2rem;
  height: 4.2rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.project-icon svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.project-at {
  font-family: var(--serif);
  font-size: 4.6rem;
  font-weight: 700;
  line-height: 0.8;
}

.project-card strong {
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}

.project-card span:not(.project-icon):not(.project-at) {
  max-width: 13rem;
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.35;
}

.project-card em {
  margin-top: 1.1rem;
  color: var(--accent);
  font-style: normal;
  font-size: 2rem;
  line-height: 1;
}

.members-callout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: clamp(2.4rem, 5vw, 4rem) 0;
}

.members-callout h2 {
  font-size: clamp(3rem, 6vw, 4.6rem);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
}

.page-hero h1,
.member-gate h1,
.member-room h1 {
  max-width: 8ch;
  font-size: clamp(4.4rem, 9vw, 7.4rem);
}

.page-hero p {
  max-width: 31rem;
  margin-top: 1.5rem;
  color: #f5c86e;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.2;
}

.about-page img {
  width: min(36vw, 22rem);
  aspect-ratio: 3 / 4;
  align-self: center;
  object-fit: cover;
  object-position: 48% 42%;
  border: 1px solid var(--line);
  filter: contrast(1.03) saturate(1.06) brightness(0.96);
  box-shadow: var(--shadow);
}

.wellness-page img {
  width: min(34vw, 24rem);
  max-height: 32rem;
  align-self: center;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 22%;
  filter: contrast(1.03) saturate(1.06) brightness(0.94);
}

.projects-page img {
  width: min(31vw, 18rem);
  aspect-ratio: 4 / 5;
  align-self: center;
  object-fit: cover;
  object-position: 52% 50%;
  border: 1px solid var(--line);
  filter: contrast(1.04) saturate(1.08) brightness(0.96);
  box-shadow: var(--shadow);
}

.project-page-ledger {
  border-bottom: 1px solid var(--line);
}

.about-body {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(18rem, 1.08fr);
  gap: clamp(2rem, 6vw, 5rem);
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  border-bottom: 1px solid var(--line);
}

.statement p {
  max-width: 28rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.35rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.statement p + p {
  margin-top: 1.5rem;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 1.08rem;
  letter-spacing: 0;
  line-height: 1.5;
}

.manifesto-lines {
  display: grid;
  align-content: center;
  gap: 1rem;
  border-left: 1px solid var(--line);
  padding-left: clamp(1.5rem, 4vw, 3rem);
}

.manifesto-lines p {
  margin: 0;
  color: var(--accent);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
}

.model-profile {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(28rem, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
  border-bottom: 1px solid var(--line);
}

.model-profile h2 {
  max-width: 8ch;
  margin: 0;
  color: var(--accent-2);
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.92;
}

.model-kicker {
  margin: 0 0 0.7rem;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.model-profile-copy p:not(.model-kicker) {
  max-width: 29rem;
  margin: 1.2rem 0 1.4rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.model-profile-visual {
  max-width: 18rem;
  margin: 2rem 0 0;
  border-top: 1px solid var(--line-soft);
  padding-top: 1rem;
}

.model-profile-visual img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 48%;
  filter: contrast(1.03) saturate(1.05) brightness(0.94);
}

.model-profile-visual figcaption {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.model-stats-panel {
  display: grid;
  gap: 1rem;
}

.model-stat-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--line-soft);
  border-left: 1px solid var(--line-soft);
}

.model-stat-list div {
  min-height: 7.1rem;
  padding: 1rem clamp(1rem, 2vw, 1.45rem);
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.model-stat-list .wide {
  grid-column: 1 / -1;
}

.model-stat-list dt {
  margin: 0 0 0.35rem;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.model-stat-list dd {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.05;
}

.model-stat-list dd.genre-list-wrap {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.3;
}

.genre-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem clamp(0.9rem, 2vw, 1.35rem);
  margin: 0.25rem 0 0;
  padding: 0;
  list-style: none;
}

.genre-list li {
  position: relative;
  min-width: 0;
  padding-left: 0.85rem;
  overflow-wrap: break-word;
}

.genre-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 0.36rem;
  height: 1px;
  background: var(--accent);
  content: "";
}

.project-ledger {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.project-ledger h2 {
  margin-bottom: 1.4rem;
  font-size: clamp(3rem, 6vw, 5rem);
}

.project-ledger a {
  display: grid;
  grid-template-columns: minmax(12rem, 0.34fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line-soft);
}

.project-ledger a:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.project-ledger strong {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
}

.project-ledger span {
  color: var(--muted);
}

.gallery-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(24rem, 1fr);
  gap: clamp(2.25rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(2.4rem, 5vw, 3.4rem) 0;
  border-bottom: 1px solid var(--line);
}

.gallery-stage-copy h1 {
  max-width: 8ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(5rem, 9vw, 8.1rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.86;
}

.gallery-stage-copy p {
  max-width: 26rem;
  margin: 1.35rem 0 2.2rem;
  color: #f5c86e;
  font-size: clamp(1.16rem, 2vw, 1.48rem);
  line-height: 1.2;
}

.gallery-actions {
  align-items: center;
}

.gallery-stage-image {
  position: relative;
  min-height: clamp(24rem, 36vw, 30rem);
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(251, 241, 223, 0.08), rgba(251, 241, 223, 0.02)),
    #11100d;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.gallery-stage-image img {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  filter: contrast(1.03) saturate(1.08) brightness(0.94);
}

.gallery-stage-image::after {
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, transparent, rgba(13, 12, 10, 0.88));
  content: "";
}

.gallery-current,
.gallery-member-vault,
.gallery-queue {
  padding: clamp(3rem, 6vw, 4.75rem) 0;
  border-bottom: 1px solid var(--line);
}

.gallery-rule-title {
  margin-bottom: clamp(1.6rem, 4vw, 2.7rem);
}

.gallery-rule-title h2 {
  font-size: clamp(2.8rem, 5vw, 4.7rem);
}

.gallery-library {
  padding: clamp(3rem, 6vw, 4.75rem) 0;
  border-bottom: 1px solid var(--line);
}

.gallery-library-heading {
  display: flex;
  justify-content: space-between;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
  margin-bottom: clamp(1.6rem, 4vw, 2.35rem);
}

.gallery-library-heading span,
.gallery-vault-copy em {
  color: var(--accent);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gallery-library-heading h2 {
  margin: 0.25rem 0 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.95;
}

.gallery-library-heading p {
  max-width: 34rem;
  margin: 0;
  color: #f5c86e;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.gallery-album-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.gallery-album-tabs button {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  min-height: 4.8rem;
  padding: 0.85rem 1rem;
  border: 0;
  border-right: 1px solid var(--line-soft);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.gallery-album-tabs button:last-child {
  border-right: 0;
}

.gallery-album-tabs button:hover,
.gallery-album-tabs button:focus-visible,
.gallery-album-tabs button.is-active {
  color: var(--accent);
  background: rgba(241, 61, 114, 0.08);
}

.gallery-album-tabs b {
  color: var(--accent-2);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0;
}

.gallery-vault-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line-soft);
}

.gallery-vault-card {
  position: relative;
  display: grid;
  grid-template-rows: minmax(22rem, 1fr) auto;
  min-width: 0;
  min-height: 31rem;
  overflow: hidden;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background:
    linear-gradient(135deg, rgba(251, 241, 223, 0.08), rgba(251, 241, 223, 0.018)),
    rgba(251, 241, 223, 0.035);
}

.gallery-vault-card:nth-child(4n),
.gallery-vault-card:last-child {
  border-right: 0;
}

.gallery-vault-card:first-child {
  grid-column: span 2;
}

.gallery-vault-media {
  position: relative;
  display: block;
  min-height: 22rem;
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(251, 241, 223, 0.07) 0 1px, transparent 1px 14px),
    rgba(251, 241, 223, 0.035);
}

.gallery-vault-media img {
  width: 100%;
  height: 100%;
  min-height: 22rem;
  object-fit: cover;
  filter: contrast(1.03) saturate(1.06);
  transition: filter 180ms ease, transform 180ms ease;
}

.gallery-vault-card:hover .gallery-vault-media img,
.gallery-vault-card:focus-visible .gallery-vault-media img {
  transform: scale(1.025);
  filter: contrast(1.06) saturate(1.12) brightness(1.02);
}

.gallery-vault-card.is-locked .gallery-vault-media img {
  filter: blur(18px) saturate(0.82) brightness(0.72);
  transform: scale(1.08);
}

.gallery-vault-card.is-locked:hover .gallery-vault-media img,
.gallery-vault-card.is-locked:focus-visible .gallery-vault-media img {
  filter: blur(13px) saturate(0.92) brightness(0.82);
  transform: scale(1.1);
}

.gallery-vault-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  background: linear-gradient(180deg, transparent, rgba(13, 12, 10, 0.9));
  content: "";
}

.gallery-vault-card.is-locked .gallery-vault-media::after {
  inset: 0;
  height: auto;
  background:
    linear-gradient(180deg, rgba(13, 12, 10, 0.1), rgba(13, 12, 10, 0.88)),
    repeating-linear-gradient(135deg, rgba(251, 241, 223, 0.07) 0 1px, transparent 1px 14px);
}

.gallery-vault-card.is-video .gallery-vault-media::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 0;
  height: 0;
  border-top: 1.1rem solid transparent;
  border-bottom: 1.1rem solid transparent;
  border-left: 1.65rem solid var(--ink);
  content: "";
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
  transform: translate(-38%, -50%);
}

.gallery-vault-kind,
.gallery-vault-state {
  position: absolute;
  z-index: 3;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gallery-vault-kind {
  top: 0.95rem;
  left: 1rem;
}

.gallery-vault-state {
  right: 1rem;
  bottom: 1rem;
  max-width: calc(100% - 2rem);
  padding-top: 0.55rem;
  border-top: 1px solid rgba(251, 241, 223, 0.46);
  color: var(--accent);
  text-align: right;
}

.gallery-vault-placeholder {
  position: absolute;
  inset: 1rem;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gallery-vault-copy {
  display: grid;
  gap: 0.4rem;
  min-height: 9rem;
  align-content: start;
  padding: 1rem;
  border-top: 1px solid var(--line-soft);
}

.gallery-vault-copy strong {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3vw, 2.45rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.95;
}

.gallery-vault-copy span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.gallery-vault-social {
  align-content: center;
  grid-template-rows: 1fr auto;
  min-height: 31rem;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.gallery-vault-social-mark {
  display: grid;
  align-content: center;
  color: var(--accent-2);
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4vw, 4rem);
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.9;
}

.gallery-viewer[hidden] {
  display: none;
}

.gallery-viewer {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 0.32fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: end;
  padding: clamp(1.2rem, 4vw, 3rem);
  background: rgba(13, 12, 10, 0.94);
  backdrop-filter: blur(16px);
}

body.gallery-viewer-open {
  overflow: hidden;
}

.gallery-viewer-close {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  z-index: 101;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  color: var(--accent);
  font: inherit;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
}

.gallery-viewer-media {
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: min(72vh, 48rem);
  border: 1px solid var(--line);
  background: #0d0c0a;
}

.gallery-viewer-media img,
.gallery-viewer-media video {
  width: 100%;
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
}

.gallery-viewer-copy {
  display: grid;
  gap: 0.7rem;
  align-self: stretch;
  align-content: end;
  padding: 0 0 1rem;
  border-bottom: 1px solid var(--line);
}

.gallery-viewer-copy span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.gallery-viewer-copy h2 {
  max-width: 9ch;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.9;
}

.current-gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) repeat(3, minmax(13rem, 0.72fr));
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.current-frame {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 25rem;
  overflow: hidden;
  border-right: 1px solid var(--line-soft);
  background: rgba(251, 241, 223, 0.035);
}

.current-frame:last-child {
  border-right: 0;
}

.current-frame img,
.current-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.03) saturate(1.06);
}

.current-frame video {
  display: block;
  background: #0d0c0a;
}

.current-frame-primary {
  min-height: 31rem;
}

.current-frame-primary img {
  object-position: center 42%;
}

.current-frame-archive {
  place-items: end center;
  padding-top: 2rem;
  background:
    repeating-linear-gradient(160deg, rgba(251, 241, 223, 0.04) 0 8px, transparent 8px 21px),
    rgba(251, 241, 223, 0.035);
}

.current-frame-archive img {
  width: min(74%, 16rem);
  height: auto;
  object-fit: contain;
}

.current-frame-outdoor img {
  object-position: center 48%;
}

.current-frame:not(.current-frame-social)::after,
.current-frame-primary::after,
.current-frame-archive::after,
.current-frame-outdoor::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(13, 12, 10, 0.92));
  content: "";
}

.current-frame:not(.current-frame-social) > span,
.current-frame-primary > span,
.current-frame-archive > span,
.current-frame-outdoor > span {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 1;
  display: grid;
  gap: 0.25rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(251, 241, 223, 0.42);
}

.current-frame strong {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.98;
}

.current-frame em {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.current-frame-social {
  align-content: center;
  gap: 0.55rem;
  padding: clamp(1.3rem, 3vw, 2rem);
}

.current-frame-social strong {
  color: var(--accent-2);
  font-size: clamp(2.6rem, 4vw, 3.55rem);
  font-style: italic;
}

.current-frame-social span {
  color: var(--accent);
  font-weight: 800;
}

.current-frame-social em {
  margin-top: 1.3rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--accent);
}

.member-vault-heading {
  display: flex;
  justify-content: space-between;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: end;
  margin-bottom: clamp(1.6rem, 4vw, 2.7rem);
}

.member-vault-heading span,
.member-media-copy span,
.member-lock-panel em {
  color: var(--accent);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.member-vault-heading h2 {
  margin: 0.25rem 0 0;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.95;
}

.member-vault-heading p {
  max-width: 33rem;
  margin: 0;
  color: #f5c86e;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.member-media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.member-media-card {
  min-width: 0;
  overflow: hidden;
  border-right: 1px solid var(--line-soft);
  background:
    linear-gradient(135deg, rgba(251, 241, 223, 0.08), rgba(251, 241, 223, 0.018)),
    rgba(251, 241, 223, 0.035);
}

.member-media-card:last-child {
  border-right: 0;
}

.member-media-unlocked {
  display: grid;
  grid-template-rows: minmax(25rem, 1fr) auto;
}

.member-media-unlocked > a,
.member-media-unlocked > video,
.member-media-pending {
  display: block;
  width: 100%;
  min-height: 25rem;
}

.member-media-unlocked img,
.member-media-unlocked video,
.member-media-pending img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #0d0c0a;
}

.member-media-pending img {
  filter: blur(8px) saturate(0.82) brightness(0.82);
  transform: scale(1.03);
}

.member-media-copy {
  display: grid;
  gap: 0.45rem;
  min-height: 9rem;
  padding: 1rem;
  border-top: 1px solid var(--line-soft);
}

.member-media-copy h3,
.member-lock-panel strong {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.95;
}

.member-media-copy p {
  margin: 0;
  color: var(--muted);
}

.member-media-lock-link {
  position: relative;
  display: block;
  min-height: 34rem;
  overflow: hidden;
}

.member-media-lock-link img {
  width: 100%;
  height: 100%;
  min-height: 34rem;
  object-fit: cover;
  filter: blur(18px) saturate(0.8) brightness(0.72);
  transform: scale(1.08);
}

.member-media-lock-link::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 12, 10, 0.12), rgba(13, 12, 10, 0.85)),
    repeating-linear-gradient(135deg, rgba(251, 241, 223, 0.07) 0 1px, transparent 1px 14px);
  content: "";
}

.member-lock-panel {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 1;
  display: grid;
  gap: 0.45rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(251, 241, 223, 0.48);
}

.member-lock-panel b {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
}

.member-media-lock-link:hover img,
.member-media-lock-link:focus-visible img {
  filter: blur(14px) saturate(0.92) brightness(0.82);
}

.collection-lanes {
  display: grid;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.collection-lane {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr) auto minmax(10rem, 16rem);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  min-height: 9.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-soft);
}

.collection-lane:last-child {
  border-bottom: 0;
}

.lane-number,
.lane-status {
  color: var(--accent);
  font-weight: 800;
}

.lane-number {
  font-family: var(--serif);
  font-size: 2.5rem;
  line-height: 1;
}

.collection-lane strong {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}

.collection-lane p {
  max-width: 31rem;
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.lane-status {
  min-width: 7.5rem;
  text-align: right;
}

.lane-preview {
  position: relative;
  min-height: 7.2rem;
  overflow: hidden;
  border-left: 1px solid var(--line);
  background: rgba(251, 241, 223, 0.035);
}

.lane-preview::before,
.lane-preview::after {
  position: absolute;
  content: "";
}

.lane-preview-image img {
  width: 100%;
  height: 100%;
  min-height: 7.2rem;
  object-fit: cover;
  object-position: center 39%;
  filter: contrast(1.03) saturate(1.06);
}

.lane-preview-appearance img {
  object-position: center 34%;
}

.lane-preview-private img {
  object-position: center 38%;
  filter: blur(7px) contrast(1.04) saturate(0.9) brightness(0.78);
  transform: scale(1.04);
}

.lane-preview-private::after {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 12, 10, 0.52), rgba(13, 12, 10, 0.08) 48%, rgba(13, 12, 10, 0.66)),
    repeating-linear-gradient(135deg, rgba(251, 241, 223, 0.06) 0 1px, transparent 1px 14px);
}

.lane-preview-paint::before {
  top: 1.7rem;
  right: -1rem;
  width: 14rem;
  height: 2.4rem;
  background: linear-gradient(90deg, transparent, rgba(241, 61, 114, 0.84), transparent);
  clip-path: polygon(0 42%, 90% 0, 100% 35%, 12% 100%);
  transform: rotate(-9deg);
}

.lane-preview-frame::before {
  inset: 1rem;
  border: 1px solid var(--accent-2);
}

.lane-preview-frame::after {
  right: 2rem;
  bottom: 1.5rem;
  width: 9rem;
  height: 2rem;
  background: linear-gradient(90deg, transparent, rgba(198, 150, 73, 0.76), transparent);
  clip-path: polygon(0 34%, 100% 4%, 88% 70%, 10% 100%);
  transform: rotate(-7deg);
}

.lane-preview-members::before {
  inset: 1.15rem 1.4rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.lane-preview-members::after {
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 1rem;
  background: var(--accent);
  transform: translate(-50%, -50%) rotate(45deg);
}

.gallery-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(18rem, 0.78fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: stretch;
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid var(--line);
}

.gallery-lead-card {
  position: relative;
  min-height: 42rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(251, 241, 223, 0.08), rgba(251, 241, 223, 0.02)),
    #11100d;
  isolation: isolate;
}

.gallery-lead-card img {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  filter: contrast(1.03) saturate(1.08) brightness(0.92);
}

.gallery-lead-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(13, 12, 10, 0.9));
  content: "";
}

.gallery-paint {
  position: absolute;
  z-index: 1;
  transform: rotate(-9deg);
  opacity: 0.68;
  mix-blend-mode: multiply;
}

.gallery-paint-pink {
  top: 3rem;
  right: -1rem;
  width: 24rem;
  height: 8rem;
  background: linear-gradient(90deg, transparent, rgba(241, 61, 114, 0.92), transparent);
  clip-path: polygon(0 40%, 88% 5%, 100% 32%, 16% 100%);
}

.gallery-paint-gold {
  right: 2rem;
  bottom: 9rem;
  width: 25rem;
  height: 6rem;
  background: linear-gradient(90deg, transparent, rgba(198, 150, 73, 0.82), transparent);
  clip-path: polygon(8% 22%, 100% 0, 82% 78%, 0 100%);
}

.gallery-caption {
  position: absolute;
  right: clamp(1.2rem, 3vw, 2rem);
  bottom: clamp(1.2rem, 3vw, 2rem);
  left: clamp(1.2rem, 3vw, 2rem);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  padding-top: 1rem;
  border-top: 1px solid rgba(251, 241, 223, 0.45);
}

.gallery-caption strong {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.95;
}

.gallery-caption span {
  color: var(--muted);
  font-weight: 800;
}

.gallery-side {
  display: grid;
  align-content: center;
  gap: 1.3rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(1.5rem, 4vw, 2.5rem) 0;
}

.gallery-side h2 {
  max-width: 8ch;
  margin: 0;
  color: var(--accent-2);
  font-family: var(--serif);
  font-size: clamp(3.3rem, 6vw, 5rem);
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.92;
}

.gallery-side p {
  max-width: 26rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.gallery-strip-item {
  display: grid;
  grid-template-rows: 18rem auto;
  min-width: 0;
  border-right: 1px solid var(--line-soft);
}

.gallery-strip-item:last-child {
  border-right: 0;
}

.gallery-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.03) saturate(1.06);
}

.gallery-strip-item:nth-child(1) img {
  object-position: center 36%;
}

.gallery-strip-item:nth-child(2) img {
  object-fit: contain;
  padding: 1rem 1rem 0;
  background:
    repeating-linear-gradient(170deg, rgba(251, 241, 223, 0.04) 0 9px, transparent 9px 21px),
    rgba(251, 241, 223, 0.04);
}

.gallery-strip-item:nth-child(3) img,
.gallery-strip-item:nth-child(4) img {
  object-position: center 35%;
}

.gallery-strip-item span {
  display: grid;
  gap: 0.25rem;
  min-height: 6.8rem;
  align-content: start;
  padding: 1rem;
}

.gallery-strip-item strong {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}

.gallery-strip-item em {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.gallery-board {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(17rem, 0.8fr);
  gap: clamp(1rem, 3vw, 2rem);
  padding: clamp(3rem, 6vw, 5rem) 0;
  border-bottom: 1px solid var(--line);
}

.gallery-item {
  position: relative;
  min-height: 34rem;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  background: rgba(251, 241, 223, 0.04);
}

.gallery-large {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.03) saturate(1.06);
}

.gallery-feature img {
  filter: contrast(1.03) saturate(1.08);
  object-position: center;
}

.gallery-secondary {
  grid-column: 1 / -1;
  min-height: 20rem;
}

.gallery-secondary img {
  filter: contrast(1.03) saturate(1.05);
  object-position: center 36%;
}

.gallery-cutout {
  display: grid;
  place-items: end center;
  min-height: 20rem;
}

.gallery-cutout img {
  width: min(70%, 14rem);
  height: auto;
  object-fit: contain;
  filter: contrast(1.03) saturate(1.06);
}

.gallery-item div {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(251, 241, 223, 0.42);
}

.gallery-item strong {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.gallery-item span {
  color: var(--muted);
  font-weight: 700;
}

.gallery-note {
  display: grid;
  align-content: center;
  gap: 1.3rem;
  min-height: 20rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.gallery-note h2 {
  font-size: clamp(2.7rem, 5vw, 4.3rem);
}

.gallery-next {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  padding: 2rem 0 clamp(4rem, 7vw, 5.5rem);
}

.gallery-next p {
  max-width: 40rem;
}

.links {
  border-bottom: 1px solid var(--line);
}

.link-row {
  display: grid;
  grid-template-columns: clamp(4.25rem, 8vw, 6.5rem) 1fr auto;
  gap: 1.8rem;
  align-items: center;
  min-height: 6.4rem;
  border-bottom: 1px solid var(--line-soft);
}

.link-row:last-child {
  border-bottom: 0;
}

.social-text {
  color: var(--accent);
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
}

.social-logo-mark {
  display: block;
  width: 5.4rem;
  max-width: 5.4rem;
  height: 2.75rem;
  max-height: 2.75rem;
  object-fit: contain;
  object-position: left center;
}

.social-logo-icon {
  width: 2.65rem;
  max-width: 2.65rem;
  height: 2.65rem;
  max-height: 2.65rem;
}

.social-logo-light {
  opacity: 0.94;
}

.social-logo-tiktok {
  width: 5.65rem;
  max-width: 5.65rem;
  height: 2rem;
  max-height: 2rem;
}

.social-logo-modelmayhem {
  width: 6.2rem;
  max-width: 6.2rem;
  height: 1.2rem;
  max-height: 1.2rem;
}

.link-label {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.8vw, 2.85rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.link-label em {
  color: var(--accent);
  font-family: var(--sans);
  font-size: 0.48em;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.arrow {
  color: var(--accent);
  font-size: clamp(2rem, 4vw, 3rem);
}

.signup {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(20rem, 1.22fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(3.2rem, 6vw, 5rem) 0;
}

.signup h2 {
  max-width: 8ch;
  margin: 0;
  color: var(--accent-2);
  font-family: var(--serif);
  font-size: clamp(3.7rem, 7vw, 5.75rem);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.signup-copy p {
  max-width: 24rem;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.lead-form,
.member-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.lead-form > input[name="website"] {
  position: absolute;
  left: -100vw;
  width: 1px;
  height: 1px;
}

.lead-form label,
.member-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-form label em {
  color: var(--soft);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.lead-form input,
.lead-form textarea,
.member-form input,
.member-form select,
.member-form textarea {
  width: 100%;
  border: 1px solid var(--line-soft);
  border-radius: 0;
  background: rgba(251, 241, 223, 0.08);
  color: var(--ink);
  font: inherit;
}

.member-form select option {
  background: var(--bg);
  color: var(--ink);
}

.lead-form input,
.member-form input,
.member-form select {
  min-height: 3.75rem;
  padding: 0 1rem;
}

.lead-form textarea,
.member-form textarea {
  min-height: 7rem;
  padding: 1rem;
  resize: vertical;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder,
.member-form input::placeholder,
.member-form textarea::placeholder {
  color: rgba(219, 202, 176, 0.54);
}

.lead-form .wide,
.member-form .wide {
  grid-column: 1 / -1;
}

.lead-form .check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--soft);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.45;
  text-transform: none;
}

.lead-form .check input {
  flex: 0 0 auto;
  width: 1.15rem;
  min-height: 1.15rem;
  margin-top: 0.12rem;
  accent-color: var(--accent);
}

.form-status {
  min-height: 1.5rem;
  margin: -0.2rem 0 0;
  color: #f5c86e;
  font-weight: 800;
}

.support-story {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.support-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.72fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  border-bottom: 1px solid var(--line);
}

.support-story h2 {
  font-size: clamp(3rem, 6vw, 5rem);
}

.support-feature p {
  max-width: 28rem;
  margin-top: 1.2rem;
}

.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.35rem;
  align-items: center;
}

.support-actions .button {
  flex: 1 1 15rem;
}

.support-payment-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(8rem, 1fr));
  gap: 1.05rem clamp(1.4rem, 3vw, 2.35rem);
  align-items: start;
}

.support-payment-link {
  display: grid;
  gap: 0.35rem;
  align-content: start;
  min-height: 4.75rem;
  padding: 0.25rem 0 0.7rem;
  border-bottom: 1px solid rgba(203, 154, 79, 0.32);
}

.support-payment-link .payment-logo {
  height: clamp(2rem, 4vw, 2.85rem);
}

.support-payment-link .payment-logo-applepay {
  max-width: 7.4rem;
}

.support-payment-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 0.35rem;
}

.support-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 5vw, 4rem);
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.support-panels article {
  display: grid;
  align-content: start;
  gap: 1.1rem;
  min-height: 18rem;
}

.support-panels article + article {
  border-left: 1px solid var(--line);
  padding-left: clamp(1.5rem, 4vw, 3rem);
}

.support-panels h2 {
  font-size: clamp(2.65rem, 5vw, 4.2rem);
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
}

.inline-links a {
  color: var(--accent);
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

.offer-logo-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(8.5rem, 1fr));
  gap: 1.1rem clamp(1.4rem, 3vw, 2.25rem);
  align-items: center;
  margin-top: 0.15rem;
}

.offer-logo-link {
  display: flex;
  align-items: center;
  min-height: 3.1rem;
  padding: 0.25rem 0;
  border-bottom: 1px solid rgba(203, 154, 79, 0.32);
}

.offer-logo-link img {
  display: block;
  width: auto;
  max-width: min(100%, 9.75rem);
  height: auto;
  max-height: 2.35rem;
  object-fit: contain;
  object-position: left center;
}

.offer-logo-link-kikoff img,
.offer-logo-link-dave img,
.offer-logo-link-self img,
.offer-logo-link-underdog img {
  filter: brightness(0) invert(0.94) sepia(0.15) saturate(1.35);
}

.offer-logo-link-draftkings img {
  max-height: 3.15rem;
}

.offer-logo-link-dabble img {
  max-width: min(100%, 8.8rem);
  max-height: 2.1rem;
}

.offer-logo-link-underdog img {
  max-width: min(100%, 9rem);
  max-height: 2.1rem;
}

.creator-logo-list {
  margin-top: 0.35rem;
}

.creator-logo-link img {
  max-width: min(100%, 10.4rem);
  max-height: 2.3rem;
}

.creator-logo-link-throne img {
  max-height: 2rem;
}

.creator-logo-link-modelmayhem img {
  max-width: min(100%, 10.8rem);
  max-height: 1.65rem;
}

.creator-logo-link-tiktok img {
  max-width: min(100%, 9.6rem);
  max-height: 2.55rem;
}

.offer-logo-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 0.35rem;
}

.offer-note {
  margin-top: 0.15rem;
  max-width: 31rem;
  color: rgba(246, 239, 222, 0.68);
  font-size: 0.82rem;
}

.legal-page {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(20rem, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  padding: clamp(3.2rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 6rem);
}

.legal-effective {
  grid-column: 1;
  grid-row: 1 / span 12;
  align-self: start;
  margin: 0;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-page article {
  grid-column: 2;
  display: grid;
  gap: 0.7rem;
  padding: 0 0 clamp(1.5rem, 3vw, 2rem);
  border-bottom: 1px solid var(--line-soft);
}

.legal-page article:first-of-type {
  border-top: 1px solid var(--line);
  padding-top: 0.8rem;
}

.legal-page h2 {
  margin: 0;
  color: var(--accent-2);
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.95;
}

.legal-page p {
  max-width: 44rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.legal-page a {
  color: var(--accent);
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

.member-gate {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 0.8fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  min-height: 32rem;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.member-gate-wide {
  grid-template-columns: minmax(0, 0.62fr) minmax(28rem, 1.18fr);
  align-items: start;
}

.member-form {
  padding: clamp(1.4rem, 3vw, 2rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.member-panel {
  align-content: start;
  background: rgba(251, 241, 223, 0.025);
}

.member-panel h2 {
  grid-column: 1 / -1;
  margin: 0 0 0.35rem;
  color: var(--accent-2);
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.95;
}

.member-gate p {
  max-width: 27rem;
  margin-top: 1.35rem;
}

.member-join-panel {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.2rem);
}

.member-auth-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(16rem, 0.8fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}

.member-payments {
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.4rem, 3vw, 2rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.member-payments-heading h2 {
  margin: 0;
  color: var(--accent-2);
  font-family: var(--serif);
  font-size: clamp(2.7rem, 5vw, 4.1rem);
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.92;
}

.member-payments-heading p {
  max-width: 27rem;
  margin: 0.8rem 0 0;
  color: var(--muted);
}

.payment-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem clamp(1.4rem, 4vw, 3rem);
}

.payment-option {
  display: grid;
  gap: 0.45rem;
  align-items: start;
  justify-self: start;
  min-width: 0;
  min-height: 4.45rem;
  padding: 0.15rem 0;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.payment-option:nth-child(2n) {
  border-right: 0;
}

.payment-option:nth-child(-n + 2) {
  border-bottom: 0;
}

.payment-option strong {
  color: var(--accent);
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}

.payment-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
}

.payment-logo {
  display: block;
  width: auto;
  max-width: min(100%, 12rem);
  height: clamp(2rem, 5vw, 3.1rem);
  object-fit: contain;
  object-position: left center;
}

.payment-logo-paypal {
  max-width: 10.8rem;
}

.payment-logo-venmo {
  max-width: 10.6rem;
}

.payment-logo-cashapp {
  max-width: 10.7rem;
}

.payment-logo-applepay {
  max-width: 8.3rem;
}

.payment-handle {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.payment-primary {
  background: transparent;
}

.member-form label,
.member-form .button,
.member-form .form-status,
.member-form .text-link,
.member-form .member-fineprint {
  grid-column: 1 / -1;
}

.member-fineprint {
  margin: 0;
  color: var(--soft);
  font-size: 0.92rem;
}

.member-room {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.member-room-heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.member-room-heading p {
  max-width: 34rem;
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.member-room-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
}

.member-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.member-columns article {
  display: grid;
  gap: 1rem;
  align-content: start;
  min-height: 17rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  border-right: 1px solid var(--line-soft);
}

.member-columns article:last-child {
  border-right: 0;
}

.member-columns h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.member-status-room {
  max-width: 980px;
}

.member-status-panel {
  display: grid;
  gap: 1.2rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.member-status-panel h2 {
  margin: 0;
  color: var(--accent-2);
  font-size: clamp(2.2rem, 4vw, 3.3rem);
}

.member-status-list,
.admin-member-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--line-soft);
}

.member-status-list div,
.admin-member-details div {
  min-width: 0;
  padding: 1rem;
  background: var(--bg);
}

.member-status-list dt,
.admin-member-details dt {
  color: var(--soft);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.member-status-list dd,
.admin-member-details dd {
  margin: 0.35rem 0 0;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.admin-room {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.admin-stats article {
  padding: 1.1rem;
  border-right: 1px solid var(--line-soft);
}

.admin-stats article:last-child {
  border-right: 0;
}

.admin-stats span {
  color: var(--accent);
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1;
}

.admin-stats p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-weight: 800;
}

.admin-list {
  display: grid;
  gap: 1rem;
}

.admin-member-card {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 1.8rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 241, 223, 0.025);
}

.admin-member-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
}

.admin-section-heading {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
}

.admin-section-heading h2 {
  margin: 0;
  color: var(--accent-2);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
}

.admin-section-heading p {
  max-width: 38rem;
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.admin-access-manager,
.admin-gallery-manager {
  display: grid;
  gap: 1.15rem;
  padding: clamp(1.5rem, 3vw, 2rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.admin-access-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-gallery-stats {
  border-color: var(--line-soft);
}

.admin-gallery-upload {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-gallery-list {
  display: grid;
  gap: 1rem;
}

.admin-gallery-card {
  display: grid;
  grid-template-columns: minmax(13rem, 0.36fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 1.5rem);
  align-items: stretch;
  padding: clamp(1rem, 3vw, 1.4rem) 0;
  border-top: 1px solid var(--line-soft);
}

.admin-gallery-card:last-child {
  border-bottom: 1px solid var(--line-soft);
}

.admin-gallery-thumb {
  position: relative;
  display: block;
  min-height: 18rem;
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(251, 241, 223, 0.07) 0 1px, transparent 1px 14px),
    rgba(251, 241, 223, 0.035);
}

.admin-gallery-thumb img {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
}

.admin-gallery-thumb > span {
  position: absolute;
  inset: 1rem;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.admin-gallery-thumb b {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(251, 241, 223, 0.42);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-gallery-form.member-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  padding: 0;
  border: 0;
}

.admin-gallery-form.member-form label,
.admin-gallery-form.member-form .button,
.admin-gallery-form.member-form .form-status,
.admin-gallery-form.member-form .text-link,
.admin-gallery-form.member-form .member-fineprint {
  grid-column: auto;
}

.admin-gallery-form.member-form .wide {
  grid-column: 1 / -1;
}

.admin-gallery-form textarea {
  min-height: 5.8rem;
}

.admin-gallery-delete {
  grid-column: 2;
  align-self: end;
}

.member-status-pill {
  display: inline-block;
  margin-right: 0.5rem;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-member-details .wide {
  grid-column: 1 / -1;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: end;
}

.admin-term-control {
  display: grid;
  gap: 0.35rem;
  min-width: min(100%, 12rem);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-term-control select,
.admin-actions button {
  min-height: 2.7rem;
  padding: 0 0.9rem;
  border: 1px solid var(--line-soft);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
}

.admin-term-control select {
  min-width: 100%;
  background: var(--bg);
}

.admin-actions button {
  cursor: pointer;
}

.admin-actions button:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.site-footer {
  display: grid;
  gap: 0.9rem;
  align-items: center;
  justify-items: center;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
  text-align: center;
}

.footer-credit {
  max-width: 58rem;
  margin: 0;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line-soft);
  color: rgba(251, 241, 223, 0.74);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.7;
}

.footer-credit a {
  color: var(--accent);
  text-decoration: none;
}

.footer-credit a:hover,
.footer-credit a:focus-visible {
  color: var(--ink);
}

.site-footer nav {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.site-footer .footer-legal {
  justify-content: center;
  gap: clamp(1rem, 4vw, 2.2rem);
  padding-top: 0.85rem;
  border-top: 1px solid var(--line-soft);
}

.footer-legal a {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--accent);
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  line-height: 1;
}

.footer-socials a:hover {
  color: var(--ink);
}

.footer-social-icon {
  display: block;
  width: 1.55rem;
  height: 1.55rem;
  object-fit: contain;
}

.cookie-notice {
  position: fixed;
  right: clamp(1rem, 4vw, 2rem);
  bottom: clamp(1rem, 4vw, 2rem);
  left: clamp(1rem, 4vw, 2rem);
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  max-width: 920px;
  margin-inline: auto;
  padding: 1rem clamp(1rem, 3vw, 1.35rem);
  border: 1px solid var(--line);
  background: rgba(17, 16, 13, 0.96);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.38);
}

.cookie-notice p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.cookie-actions {
  display: flex;
  gap: 0.9rem;
  align-items: center;
}

.cookie-actions a {
  color: var(--accent);
  border-bottom: 1px solid currentColor;
  font-size: 0.86rem;
  font-weight: 900;
}

.cookie-actions button {
  min-height: 2.6rem;
  padding: 0 1.15rem;
  border: 1px solid var(--accent);
  border-radius: 0;
  background: var(--accent);
  color: #fff8ef;
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 900;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
}

@media (max-width: 920px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.85rem 1rem;
  }

  .nav-toggle {
    display: grid;
    align-content: center;
    justify-self: end;
  }

  .nav {
    grid-column: 1 / -1;
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-start;
    column-gap: clamp(1.25rem, 7vw, 2.2rem);
    row-gap: 0.35rem;
  }

  .has-mobile-nav .site-header .nav {
    display: none;
  }

  .has-mobile-nav.mobile-nav-open .site-header .nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.35rem 1rem;
    padding: 0.9rem 0 0.2rem;
    border-top: 1px solid var(--line-soft);
  }

  .has-mobile-nav.mobile-nav-open .site-header .nav a {
    min-height: 2.4rem;
    display: inline-flex;
    align-items: center;
    width: max-content;
  }

  .header-counter {
    grid-column: 1 / -1;
    justify-self: start;
    padding: 0.65rem 0 0;
    border-top: 1px solid var(--line-soft);
    border-left: 0;
    text-align: left;
  }

  .hero,
  .intro-panel,
  .split-story,
  .page-hero,
  .about-body,
  .model-profile,
  .gallery-board,
  .gallery-stage,
  .gallery-library,
  .gallery-member-vault,
  .gallery-showcase,
  .signup,
  .support-feature,
  .member-gate,
  .legal-page,
  .home-about,
  .members-callout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 3.2rem;
  }

  .hero h1 {
    max-width: 7.8ch;
    font-size: clamp(3.15rem, 13.5vw, 5rem);
    letter-spacing: -0.065em;
  }

  .identity {
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .portrait-frame {
    margin-top: 2rem;
    min-height: 24rem;
  }

  .portrait-frame::after {
    inset: 1.5rem 0 0.7rem 3rem;
  }

  .portrait-frame img {
    right: 0;
    width: min(70vw, 23rem);
  }

  .paint-pink,
  .paint-gold {
    width: 70vw;
  }

  .feature-band,
  .project-rail,
  .gallery-strip,
  .support-panels,
  .member-media-grid,
  .member-columns,
  .member-auth-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-link:nth-child(2),
  .member-columns article:nth-child(2) {
    border-right: 0;
  }

  .feature-link,
  .member-columns article {
    border-bottom: 1px solid var(--line-soft);
  }

  .archive-card {
    min-height: 23rem;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .archive-card img {
    width: min(64vw, 19rem);
  }

  .about-page img {
    width: min(100%, 20rem);
    justify-self: start;
  }

  .wellness-page img {
    width: min(100%, 20rem);
    justify-self: start;
  }

  .projects-page img {
    width: min(56vw, 15rem);
  }

  .manifesto-lines {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 2rem 0 0;
  }

  .model-stat-list {
    grid-template-columns: 1fr;
  }

  .model-profile-visual {
    max-width: min(100%, 22rem);
  }

  .gallery-large {
    grid-row: auto;
  }

  .gallery-stage {
    min-height: 0;
    padding-top: 3.2rem;
  }

  .gallery-stage-copy h1 {
    max-width: 8ch;
    font-size: clamp(4rem, 13vw, 6.3rem);
  }

  .gallery-stage-image {
    min-height: 34rem;
  }

  .gallery-library-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-album-tabs,
  .gallery-vault-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-vault-card:first-child {
    grid-column: 1 / -1;
  }

  .gallery-vault-card:nth-child(4n) {
    border-right: 1px solid var(--line-soft);
  }

  .gallery-vault-card:nth-child(2n),
  .gallery-vault-card:last-child {
    border-right: 0;
  }

  .gallery-viewer {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .current-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .current-frame-primary {
    grid-column: 1 / -1;
  }

  .current-frame-archive {
    border-right: 1px solid var(--line-soft);
  }

  .current-frame-outdoor {
    border-right: 0;
  }

  .current-frame-social {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line-soft);
  }

  .member-vault-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .member-media-card:nth-child(2) {
    border-right: 0;
  }

  .member-media-card {
    border-bottom: 1px solid var(--line-soft);
  }

  .member-media-card:last-child {
    border-bottom: 0;
  }

  .collection-lane {
    grid-template-columns: 3.5rem minmax(0, 1fr) auto;
  }

  .lane-preview {
    grid-column: 1 / -1;
    min-height: 8rem;
    border-top: 1px solid var(--line-soft);
    border-left: 0;
  }

  .home-about-art {
    grid-template-columns: 1fr;
  }

  .about-spark {
    display: none;
  }

  .home-archive-card img {
    width: min(54vw, 18rem);
  }

  .project-card:nth-child(2) {
    border-right: 0;
  }

  .project-card:nth-child(-n + 2),
  .gallery-strip-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-soft);
  }

  .gallery-lead-card {
    min-height: 34rem;
  }

  .gallery-strip-item:nth-child(2) {
    border-right: 0;
  }

  .gallery-item {
    min-height: 28rem;
  }

  .gallery-cutout {
    min-height: 21rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer nav {
    justify-content: center;
    flex-wrap: wrap;
  }

  .legal-effective {
    grid-column: auto;
    grid-row: auto;
    max-width: max-content;
  }

  .legal-page article {
    grid-column: auto;
  }

  .member-auth-grid,
  .member-status-list,
  .admin-member-details {
    grid-template-columns: 1fr;
  }

  .admin-section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-gallery-card,
  .admin-gallery-upload,
  .admin-gallery-form.member-form {
    grid-template-columns: 1fr;
  }

  .admin-gallery-delete {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  :root {
    --page: calc(100vw - 40px);
  }

  .site-header,
  .hero,
  .intro-panel,
  .feature-band,
  .split-story,
  .page-hero,
  .links,
  .signup,
  .about-body,
  .model-profile,
  .project-ledger,
  .gallery-board,
  .gallery-stage,
  .gallery-current,
  .gallery-library,
  .gallery-member-vault,
  .gallery-queue,
  .gallery-showcase,
  .gallery-strip,
  .gallery-next,
  .support-story,
  .member-gate,
  .member-room,
  .legal-page,
  .home-about,
  .home-projects,
  .members-callout,
  .site-footer {
    width: var(--page);
  }

  .site-header {
    width: var(--page);
  }

  .model-profile h2 {
    font-size: 3.65rem;
  }

  .model-stat-list div {
    min-height: 0;
  }

  .model-stat-list dd {
    font-size: 1.55rem;
  }

  .model-stat-list dd.genre-list-wrap {
    font-size: 0.88rem;
  }

  .genre-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.22rem 1rem;
    justify-items: start;
    justify-content: start;
    width: 100%;
    min-width: 0;
    font-size: 0.93rem;
  }

  .hero-actions,
  .gallery-next,
  .member-room-heading {
    position: relative;
    z-index: 3;
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .lead {
    max-width: 17rem;
  }

  .button {
    width: 100%;
    min-height: 3.8rem;
  }

  .feature-band,
  .project-rail,
  .gallery-strip,
  .support-panels,
  .member-media-grid,
  .member-columns,
  .member-auth-grid,
  .admin-stats {
    grid-template-columns: 1fr;
  }

  .gallery-stage {
    gap: 2rem;
  }

  .gallery-stage-copy h1 {
    font-size: clamp(4rem, 18vw, 5.4rem);
  }

  .gallery-stage-copy p {
    max-width: 19rem;
    font-size: 1.08rem;
  }

  .gallery-stage-image {
    min-height: 28rem;
  }

  .gallery-album-tabs,
  .gallery-vault-grid {
    grid-template-columns: 1fr;
  }

  .gallery-album-tabs button,
  .gallery-vault-card,
  .gallery-vault-card:nth-child(2n),
  .gallery-vault-card:nth-child(4n) {
    border-right: 0;
  }

  .gallery-vault-card,
  .gallery-vault-card:first-child {
    grid-column: auto;
  }

  .gallery-vault-card,
  .gallery-vault-social {
    min-height: 26rem;
  }

  .gallery-vault-media,
  .gallery-vault-media img {
    min-height: 18rem;
  }

  .gallery-viewer {
    padding: 4.8rem 1rem 1rem;
  }

  .gallery-viewer-media {
    min-height: 52vh;
  }

  .gallery-viewer-copy h2 {
    max-width: 100%;
  }

  .current-gallery-grid {
    grid-template-columns: 1fr;
  }

  .current-frame,
  .current-frame-archive,
  .current-frame-social {
    min-height: 20rem;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .current-frame:last-child {
    border-bottom: 0;
  }

  .member-media-card,
  .member-media-card:nth-child(2) {
    border-right: 0;
  }

  .member-media-unlocked {
    grid-template-rows: minmax(20rem, 1fr) auto;
  }

  .member-media-unlocked > a,
  .member-media-unlocked > video,
  .member-media-pending,
  .member-media-lock-link,
  .member-media-lock-link img {
    min-height: 20rem;
  }

  .collection-lane {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 0;
    padding: 1.35rem 0;
  }

  .lane-status {
    text-align: left;
  }

  .lane-preview {
    grid-column: auto;
  }

  .feature-link,
  .feature-link:nth-child(2),
  .member-columns article,
  .member-columns article:nth-child(2),
  .project-card,
  .project-card:nth-child(2),
  .gallery-strip-item,
  .gallery-strip-item:nth-child(2) {
    border-right: 0;
  }

  .project-card,
  .project-card:nth-child(-n + 2),
  .gallery-strip-item,
  .gallery-strip-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-soft);
  }

  .project-card:last-child,
  .gallery-strip-item:last-child {
    border-bottom: 0;
  }

  .project-ledger a,
  .gallery-item div,
  .gallery-caption {
    grid-template-columns: 1fr;
  }

  .support-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .support-actions .button {
    flex-basis: auto;
  }

  .support-panels article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 2rem 0 0;
  }

  .gallery-item div {
    display: grid;
  }

  .gallery-caption {
    display: grid;
    align-items: start;
  }

  .gallery-lead-card {
    min-height: 30rem;
  }

  .gallery-strip-item {
    grid-template-rows: 19rem auto;
  }

  .link-row {
    grid-template-columns: 4rem minmax(0, 1fr) auto;
    gap: 1rem;
  }

  .social-text {
    font-size: 2.2rem;
  }

  .social-logo-mark {
    width: 3.85rem;
    max-width: 3.85rem;
    height: 2.25rem;
    max-height: 2.25rem;
  }

  .social-logo-icon {
    width: 2.35rem;
    max-width: 2.35rem;
    height: 2.35rem;
    max-height: 2.35rem;
  }

  .social-logo-modelmayhem {
    height: 0.9rem;
    max-height: 0.9rem;
  }

  .link-label {
    display: grid;
    gap: 0.15rem;
    font-size: clamp(1.6rem, 8vw, 2.1rem);
  }

  .link-label em {
    font-size: 0.56em;
  }

  .lead-form,
  .member-form {
    grid-template-columns: 1fr;
  }

  .admin-member-card,
  .member-status-panel {
    padding-inline: 0;
  }

  .admin-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .member-gate p,
  .member-payments-heading p {
    max-width: min(100%, 31ch);
    overflow-wrap: break-word;
  }

  .payment-options {
    grid-template-columns: 1fr;
  }

  .support-payment-list {
    grid-template-columns: 1fr;
  }

  .payment-option {
    justify-self: stretch;
  }

  .cookie-notice {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: space-between;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .portrait-frame,
  .intro-panel,
  .feature-link,
  .split-copy,
  .archive-card,
  .page-hero,
  .link-row,
  .signup-copy,
  .lead-form,
  .gallery-item,
  .gallery-note,
  .gallery-next,
  .member-gate,
  .member-room {
    animation: rise 700ms ease both;
  }

  .portrait-frame,
  .feature-link:nth-child(2),
  .gallery-note {
    animation-delay: 120ms;
  }

  .feature-link:nth-child(3),
  .archive-card {
    animation-delay: 190ms;
  }

  .feature-link:nth-child(4) {
    animation-delay: 260ms;
  }

  @keyframes rise {
    from {
      opacity: 0;
      transform: translateY(18px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
