:root {
  --red: #751b1c;
  --red-dark: #751b1c;
  --gold: #d7ad49;
  --donate-highlight: #ffe1a6;
  --cream: #fbf4e6;
  --paper: #fffaf0;
  --graphite: #242221;
  --ink: #191716;
  --muted: #6e625b;
  --line: rgba(36, 34, 33, 0.18);
  --line-light: rgba(255, 250, 240, 0.24);
  --max: 1120px;
  --header-height: 76px;
}

@font-face {
  font-family: "AntonLocal";
  src: url("fonts/anton.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
}

a {
  color: inherit;
}

img,
svg {
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--gold);
  color: var(--ink);
  padding: 0.65rem 0.85rem;
  border-radius: 6px;
}

.skip-link:focus {
  transform: translateY(0);
}

.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 2.5rem);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 800;
}

.brand-wordmark {
  display: block;
  width: clamp(220px, 22vw, 300px);
  height: auto;
}

.brand-square-mark {
  display: block;
  width: clamp(48px, 6vw, 58px);
  height: clamp(48px, 6vw, 58px);
  object-fit: contain;
}

.site-header-square-brand {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}

.site-header-square-brand .brand {
  height: 44px;
  max-height: 44px;
}

.site-header-square-brand .brand-square-mark {
  width: auto;
  height: 100%;
  max-height: 100%;
}

.site-header-overflow-brand {
  --overflow-mark-size: clamp(120px, 30vw, 150px);
  --overflow-nav-offset: calc((var(--overflow-mark-size) - var(--header-height)) / 2);
  height: var(--header-height);
  min-height: var(--header-height);
  overflow: visible;
  transform: translateY(var(--overflow-nav-offset));
}

.site-header-overflow-brand::before {
  position: absolute;
  top: calc(-1 * var(--overflow-nav-offset));
  right: 0;
  left: 0;
  height: var(--overflow-nav-offset);
  background: var(--graphite);
  content: "";
  pointer-events: none;
}

.site-header-overflow-brand .brand {
  position: relative;
  z-index: 30;
  width: var(--overflow-mark-size);
  height: var(--header-height);
  flex: 0 0 var(--overflow-mark-size);
  overflow: visible;
}

.brand-overflow-mark {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: var(--overflow-mark-size);
  height: auto;
  max-width: none;
  filter:
    drop-shadow(0.5px 0 0 #fff)
    drop-shadow(-0.5px 0 0 #fff)
    drop-shadow(0 0.5px 0 #fff)
    drop-shadow(0 -0.5px 0 #fff)
    drop-shadow(0.5px 0.5px 0 #fff)
    drop-shadow(-0.5px 0.5px 0 #fff)
    drop-shadow(0.5px -0.5px 0 #fff)
    drop-shadow(-0.5px -0.5px 0 #fff);
  transform: translateY(-50%);
}

.site-header-overflow-brand .site-nav {
  top: var(--header-height);
  z-index: 20;
}

.brand-text-mark {
  display: inline-block;
  color: var(--ink);
  font-family: "AntonLocal", Impact, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-text-accent {
  color: var(--red);
}

.footer-wordmark {
  width: clamp(220px, 28vw, 340px);
}

.footer-text-mark {
  display: inline-block;
  color: var(--cream);
  font-family: "AntonLocal", Impact, sans-serif;
  font-size: clamp(2.25rem, 7.5vw, 3.2rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0;
  white-space: nowrap;
}

.footer-text-accent {
  color: #d23a31;
}

.menu-toggle {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  content: "";
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  position: absolute;
  left: 0;
}

.menu-toggle-lines::before {
  top: -7px;
}

.menu-toggle-lines::after {
  top: 7px;
}

.site-nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 25;
  display: grid;
  align-content: start;
  grid-template-columns: 1fr;
  gap: 0;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100dvh - var(--header-height));
  padding: 0.75rem;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 20px 30px rgba(36, 34, 33, 0.14);
  opacity: 0;
  overflow-y: auto;
  pointer-events: none;
  transform: translateY(-0.5rem);
  visibility: hidden;
  transition:
    opacity 160ms ease-in-out,
    transform 160ms ease-in-out,
    visibility 160ms ease-in-out;
}

.site-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.site-nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0.75rem 0.85rem;
  border-radius: 6px;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease, box-shadow 150ms ease;
}

.site-nav a:hover,
.site-nav a:focus,
.site-nav a[aria-current="page"] {
  background: rgba(117, 27, 28, 0.1);
}

.site-nav .nav-donate {
  background: var(--red);
  color: var(--cream);
}

.site-nav .nav-donate:hover,
.site-nav .nav-donate:focus {
  background: var(--red-dark);
}

body[data-page="home"] .nav-home {
  display: none;
}

.site-nav .nav-home {
  color: rgba(25, 23, 22, 0.8);
}

.section-dark {
  background: var(--graphite);
  color: var(--cream);
}

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

.hero {
  --hero-mobile-aspect: 4 / 5;
  --hero-desktop-aspect: 16 / 9;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(25, 23, 22, 0.96) 0%, rgba(25, 23, 22, 0.88) 42%, rgba(25, 23, 22, 0.58) 100%),
    radial-gradient(circle at 78% 18%, rgba(215, 173, 73, 0.68), transparent 29%),
    radial-gradient(circle at 83% 74%, rgba(117, 27, 28, 0.9), transparent 36%),
    linear-gradient(135deg, #751b1c 0%, #751b1c 42%, #d7ad49 100%);
  color: var(--cream);
}

.visual-banner {
  min-height: clamp(220px, 33.333vw, 640px);
}

.hero.visual-banner {
  width: 100%;
  height: min(calc(100vw * 1.25), calc(100vh - var(--header-height)));
  height: min(calc(100vw * 1.25), calc(100svh - var(--header-height)));
  min-height: 0;
  max-height: none;
  aspect-ratio: auto;
  background: var(--graphite);
}

@supports (height: 100dvh) {
  .hero.visual-banner {
    height: min(calc(100vw * 1.25), calc(100dvh - var(--header-height)));
  }
}

.hero::before,
.hero::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.hero::before {
  inset: 9% -12% 8% 48%;
  border: 1px solid rgba(251, 244, 230, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(251, 244, 230, 0.11), rgba(251, 244, 230, 0)),
    repeating-linear-gradient(90deg, rgba(251, 244, 230, 0.08) 0 1px, transparent 1px 72px);
}

.hero::after {
  right: -10%;
  bottom: -22%;
  width: min(58vw, 620px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(215, 173, 73, 0.28), transparent 68%);
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(25, 23, 22, 0.95) 0%, rgba(25, 23, 22, 0.8) 52%, rgba(25, 23, 22, 0.44) 100%),
    radial-gradient(circle at 82% 20%, rgba(215, 173, 73, 0.58), transparent 30%),
    radial-gradient(circle at 78% 80%, rgba(117, 27, 28, 0.82), transparent 38%),
    linear-gradient(135deg, #751b1c 0%, #751b1c 48%, #d7ad49 100%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.crt-logo.crt-tag {
  opacity: 0;
}

body[data-page="about"] .page-hero {
  background-image:
    linear-gradient(90deg, rgba(25, 23, 22, 0.12), rgba(25, 23, 22, 0.22)),
    url("images/about-banner.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

body[data-page="act"] .page-hero {
  background-image:
    linear-gradient(90deg, rgba(25, 23, 22, 0.08), rgba(25, 23, 22, 0.2)),
    url("images/act-banner.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero.visual-banner::after,
.page-hero::before {
  display: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  background: var(--graphite);
}

.hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

body[data-hero-test="b"] .hero-media img {
  object-position: left top;
}

.hero.visual-banner::before {
  display: block;
  inset: 0;
  z-index: 1;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(25, 23, 22, 0.82) 0%, rgba(25, 23, 22, 0.56) 46%, rgba(25, 23, 22, 0.14) 100%),
    linear-gradient(180deg, rgba(25, 23, 22, 0.02), rgba(25, 23, 22, 0.18));
}

body[data-hero-test="b"] .hero.visual-banner::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.0) 100%, rgba(0, 0, 0, .05) 50%, rgba(0, 0, 0, 0.5) 50%),
    linear-gradient(180deg, rgba(25, 23, 22, 0), rgba(0, 0, 0, 0.5));
}

.page-hero::before {
  position: absolute;
  inset: 14% -18% 14% 48%;
  border: 1px solid rgba(251, 244, 230, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(251, 244, 230, 0.11), rgba(251, 244, 230, 0)),
    repeating-linear-gradient(90deg, rgba(251, 244, 230, 0.08) 0 1px, transparent 1px 76px);
  content: "";
  pointer-events: none;
}

.hero-copy,
.banner-copy {
  position: absolute;
  inset: clamp(1rem, 4vw, 3.25rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: auto;
  color: var(--cream);
  isolation: isolate;
  pointer-events: none;
  text-align: center;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.95);
}

.hero-copy h1,
.banner-copy h1,
.hero-copy p,
.banner-copy p {
  pointer-events: auto;
}

.hero-copy {
  inset:
    clamp(1rem, 4vw, 3.25rem)
    clamp(1rem, 4vw, 3.25rem)
    clamp(5.5rem, 13vw, 8.25rem)
    clamp(1rem, 4vw, 3.25rem);
  align-items: center;
  justify-content: flex-end;
  text-align: center;
}

.hero-copy h1,
.banner-copy h1 {
  margin: 0;
  color: var(--cream);
  line-height: 0.96;
}

.hero-copy h1 {
  max-width: 17ch;
  font-size: clamp(1.85rem, 6.5vw, 3.6rem);
}

.hero-copy p {
  max-width: 35rem;
  margin: clamp(1.15rem, 2.8vw, 1.85rem) 0 0;
  font-size: clamp(0.95rem, 1.55vw, 1.12rem);
  line-height: 1.45;
}

body[data-hero-test="b"] .hero-copy {
  inset:
    clamp(1.25rem, 4vw, 3.25rem)
    clamp(1.25rem, 6vw, 5rem)
    clamp(5.5rem, 13vw, 8.25rem)
    clamp(1.25rem, 4vw, 3.25rem);
  align-items: flex-end;
  text-align: right;
}

body[data-hero-test="b"] .hero-copy h1,
body[data-hero-test="b"] .hero-copy p {
  margin-left: auto;
}

body[data-hero-test="b"] .hero-copy h1 {
  max-width: min(100%, 16ch);
}

body[data-hero-test="b"] .hero-copy p {
  max-width: min(100%, 35rem);
}

.banner-copy {
  justify-content: center;
  width: auto;
}

.banner-copy h1 {
  font-size: clamp(1.6rem, 4vw, 3.4rem);
}

.banner-copy p {
  margin: 0.85rem 0 0;
  font-size: clamp(0.95rem, 1.6vw, 1.12rem);
}

.banner-copy h1:empty,
.banner-copy p:empty {
  display: none;
}

.copy-editor-enabled .banner-copy h1,
.copy-editor-enabled .banner-copy p {
  display: block;
  min-height: 1.75em;
}

.copy-editor-enabled .hero-copy p,
.copy-editor-enabled .banner-copy p {
  width: min(100%, 35rem);
}

.copy-editor-enabled .banner-copy h1 {
  width: min(100%, 42rem);
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(3.25rem, 8vw, 6.5rem) clamp(1rem, 4vw, 2.5rem);
}

.split-grid {
  display: grid;
  gap: clamp(1.5rem, 5vw, 3rem);
}

.content-narrow {
  max-width: 760px;
}

body[data-page="about"] .content-narrow {
  max-width: none;
}

h1,
h2,
h3,
p,
blockquote {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 5rem);
}

h2 {
  font-size: clamp(1.65rem, 4vw, 3.2rem);
}

h3 {
  font-size: 1.1rem;
}

.lead {
  max-width: 62ch;
  margin: 1.2rem 0 0;
  font-size: 1.12rem;
}

.legal-copy {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.legal-copy h2 {
  margin-top: 1rem;
  font-size: clamp(1.2rem, 2.6vw, 1.65rem);
}

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

.legal-copy strong {
  color: var(--ink);
}

.legal-copy a {
  color: var(--red);
  font-weight: 700;
  text-decoration-color: rgba(117, 27, 28, 0.42);
  text-underline-offset: 0.16em;
}

.legal-copy a:hover,
.legal-copy a:focus-visible {
  color: var(--red-dark);
  text-decoration-color: currentColor;
}

body[data-page="about"] .lead,
body[data-page="about"] .content-narrow p {
  max-width: none;
}

.section-heading {
  margin-bottom: 1.8rem;
}

.section-heading p {
  max-width: 62ch;
  margin: 1rem 0 0;
  color: var(--muted);
}

.section-dark .section-heading p {
  color: rgba(251, 244, 230, 0.78);
}

.compact {
  max-width: none;
  margin-bottom: 1.25rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.button {
  --button-bg: transparent;
  --button-bg-hover: var(--button-bg);
  --button-fg: currentColor;
  --button-border: rgba(117, 27, 28, 0.72);
  --button-border-hover: var(--button-border);
  --button-shadow-rest: 0 2px 6px rgba(36, 34, 33, 0.12);
  --button-shadow-hover: 0 2px 4px rgba(25, 23, 22, 0.16), 0 8px 16px rgba(25, 23, 22, 0.18), 0 13px 28px rgba(25, 23, 22, 0.12);
  position: relative;
  z-index: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 1rem;
  border: 2px solid var(--button-border);
  border-radius: 8px;
  background: var(--button-bg);
  color: var(--button-fg);
  box-shadow: var(--button-shadow-rest);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  overflow: visible;
  transition: background-color 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.button::before,
.floating-donate::before {
  display: none;
  content: "";
}

.button-primary {
  --donate-gold: #dfb84f;
  --donate-gold-hover: var(--donate-highlight);
  --button-bg: var(--donate-gold);
  --button-bg-hover: var(--donate-gold-hover);
  --button-fg: var(--ink);
  --button-border: var(--donate-gold);
  --button-border-hover: var(--donate-gold-hover);
}

.button:hover,
.button:focus-visible,
.button.button-hover,
.floating-donate:hover,
.floating-donate:focus-visible,
.floating-donate.button-hover {
  background: var(--button-bg-hover);
  border-color: var(--button-border-hover);
  box-shadow: var(--button-shadow-hover);
}

.button-dark {
  --button-bg: var(--graphite);
  --button-bg-hover: var(--red);
  --button-fg: var(--cream);
  --button-border: var(--graphite);
  --button-border-hover: var(--red);
}

.button-secondary {
  --button-bg: transparent;
  --button-bg-hover: rgba(117, 27, 28, 0.36);
  --button-fg: var(--cream);
  --button-border: var(--line-light);
  --button-border-hover: rgba(251, 244, 230, 0.6);
}

.button-dark:hover,
.button-dark:focus-visible,
.button-dark.button-hover,
.button-secondary:hover,
.button-secondary:focus-visible,
.button-secondary.button-hover {
  color: var(--cream);
}

.button.donate-hint {
  border-color: var(--button-border);
  box-shadow: var(--button-shadow-rest);
}

.button.donate-hint:hover,
.button.donate-hint:focus-visible,
.button.donate-hint.button-hover {
  z-index: 2;
  background: var(--button-bg-hover);
  border-color: var(--button-border-hover);
  box-shadow: var(--button-shadow-hover);
}

.button:active {
  box-shadow: 0 2px 6px rgba(25, 23, 22, 0.22);
}

.banner-donate {
  position: absolute;
  left: 50%;
  bottom: clamp(1.25rem, 4vw, 2.5rem);
  z-index: 2;
  transform: translateX(-50%);
}

.banner-donate.donate-hint {
  transform: translateX(-50%);
}

.banner-donate.donate-hint:hover,
.banner-donate.donate-hint:focus-visible,
.banner-donate.donate-hint.button-hover {
  background: var(--button-bg-hover);
  border-color: var(--button-border-hover);
  box-shadow: var(--button-shadow-hover);
  transform: translateX(-50%);
}

body[data-hero-test="b"] .banner-donate,
body[data-hero-test="b"] .banner-donate.donate-hint,
body[data-hero-test="b"] .banner-donate.donate-hint:hover,
body[data-hero-test="b"] .banner-donate.donate-hint:focus-visible,
body[data-hero-test="b"] .banner-donate.donate-hint.button-hover {
  right: clamp(1.25rem, 6vw, 5rem);
  left: auto;
  transform: none;
}

.social-preview .section-inner {
  --social-section-y: clamp(3.25rem, 8vw, 6.5rem);
  width: 100%;
  padding-top: var(--social-section-y);
  padding-right: 0;
  padding-bottom: calc(var(--social-section-y) - 1.55rem);
  padding-left: 0;
}

.social-feed-host {
  --social-preload-height: max(420px, calc(100svh - var(--header-height) - (var(--social-section-y, 0px) * 2)));
  position: relative;
  width: 100%;
  height: var(--social-preload-height);
  min-height: var(--social-preload-height);
  overflow: hidden;
}

@supports (height: 100dvh) {
  .social-feed-host {
    --social-preload-height: max(420px, calc(100dvh - var(--header-height) - (var(--social-section-y, 0px) * 2)));
  }
}

.closing-sale h2 {
  overflow-wrap: normal;
  text-wrap: balance;
}

.curator-feed {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  min-height: 260px;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.curator-feed > * {
  width: 100%;
}

.curator-feed .crt-logo,
.curator-feed .crt-tag {
  z-index: 1 !important;
}

.social-feed-host.is-curator-ready .curator-feed {
  position: static;
  overflow: visible;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.social-feed-host.is-curator-ready {
  height: auto;
  min-height: 0;
  overflow: visible;
}

.social-feed-host.is-curator-ready .curator-status,
.social-feed-host.is-curator-ready .curator-static-follow,
.social-feed-host.is-curator-ready .curator-demo-grid {
  display: none;
}

.curator-demo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  height: 100%;
  min-height: var(--social-preload-height);
}

.curator-demo-tile {
  aspect-ratio: 1 / 1;
  min-width: 0;
  border: 1px solid rgba(36, 34, 33, 0.12);
  border-radius: 8px;
  background: #d8d8d8;
}

.curator-static-follow {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: clamp(1.5rem, 5vw, 3rem);
  color: var(--muted);
  line-height: 1.35;
  text-align: center;
}

.curator-static-follow a {
  color: var(--red);
  font-weight: 700;
  text-decoration-color: rgba(117, 27, 28, 0.42);
  text-underline-offset: 0.16em;
}

.curator-static-follow a:hover,
.curator-static-follow a:focus-visible {
  color: var(--red-dark);
  text-decoration-color: currentColor;
}

.social-feed-host.is-curator-loading .curator-static-follow,
.social-feed-host.is-curator-blocked .curator-static-follow {
  display: none;
}

.curator-status {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1.5rem, 5vw, 3rem);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.25;
  pointer-events: none;
  text-align: center;
}

.curator-status-tile {
  --curator-action-size: 3.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--curator-action-size);
  align-items: center;
  gap: clamp(0.85rem, 3vw, 1.35rem);
  width: min(42rem, 100%);
  min-height: 0;
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 10px 22px rgba(36, 34, 33, 0.1);
  font-weight: 400;
  text-align: left;
}

.curator-status-copy {
  display: grid;
  align-content: center;
  gap: 0.35rem;
  min-width: 0;
}

.curator-status-title,
.curator-status-text {
  margin: 0;
  font-weight: 400;
}

.curator-status-title {
  font-size: clamp(1.08rem, 2.4vw, 1.35rem);
  line-height: 1.15;
}

.curator-status-text {
  color: var(--muted);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.35;
}

.curator-status-action {
  display: grid;
  place-items: stretch;
  align-self: stretch;
  justify-self: end;
  width: var(--curator-action-size);
  height: var(--curator-action-size);
  min-width: 3.25rem;
  min-height: 3.25rem;
  aspect-ratio: 1 / 1;
}

.curator-status-action > * {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  min-width: 0;
  min-height: 0;
}

.social-feed-host.is-curator-loading .curator-status-loading {
  display: flex;
}

.social-feed-host.is-curator-blocked .curator-status-blocked {
  display: flex;
  pointer-events: auto;
}

.curator-status-tile-blocked {
  border-color: var(--line-light);
  background: var(--graphite);
  color: var(--cream);
  box-shadow: 0 20px 30px rgba(36, 34, 33, 0.14);
}

.curator-status-tile-blocked .curator-status-text {
  color: rgba(251, 244, 230, 0.82);
}

.social-feed-host.is-curator-blocked .curator-demo-grid {
  opacity: 0.42;
}

.curator-instagram-link {
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(251, 244, 230, 0.18);
  border-radius: 6px;
  background: rgba(255, 250, 240, 0.08);
  color: var(--cream);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}

.curator-instagram-link:hover,
.curator-instagram-link:focus-visible {
  color: var(--gold);
}

.curator-instagram-icon {
  width: 46%;
  height: 46%;
}

.curator-status-spinner {
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--red);
}

.curator-status-spinner::before {
  width: 42%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: conic-gradient(from 45deg, currentColor 0 12%, transparent 12% 25%, currentColor 25% 37%, transparent 37% 50%, currentColor 50% 62%, transparent 62% 75%, currentColor 75% 87%, transparent 87%);
  content: "";
  animation: curatorPinwheelSpin 0.9s linear infinite;
}

@keyframes curatorPinwheelSpin {
  to {
    transform: rotate(1turn);
  }
}

.tile-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.testimony-tile,
.action-card,
.email-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  color: var(--ink);
}

.testimony-tile,
.action-card {
  padding: 1rem;
}

.action-card p,
.email-panel p {
  color: var(--muted);
}

.action-card p {
  width: 100%;
  max-width: none;
}

.testimony-grid {
  align-items: stretch;
}

.section-dark .testimony-tile {
  background: rgba(255, 250, 240, 0.08);
  color: var(--cream);
  border-color: var(--line-light);
}

blockquote {
  margin: 0;
  font-size: 1.02rem;
}

.quote-name {
  margin: 1rem 0 0;
  color: var(--gold);
  font-weight: 800;
}

.copy-stack p,
.content-narrow p {
  max-width: 68ch;
}

.action-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.action-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 260px;
}

.action-card .button {
  margin-top: auto;
}

.highlight-card {
  background: var(--red-dark);
  color: var(--cream);
  border-color: var(--red-dark);
}

.highlight-card p {
  color: rgba(251, 244, 230, 0.8);
}

.email-panel {
  margin-top: 1rem;
  padding: 1.25rem;
}

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

.logo-tile {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  color: var(--muted);
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.logo-tile:hover,
.logo-tile:focus {
  color: var(--red-dark);
  border-color: var(--red);
}

.site-footer {
  position: relative;
  z-index: 2;
  background: var(--graphite);
  color: var(--cream);
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 2.35rem clamp(1rem, 4vw, 2.5rem) 5.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  text-align: center;
}

.footer-brand-column,
.footer-legal-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.footer-links {
  margin: 0;
  color: rgba(251, 244, 230, 0.7);
  font-size: 0.9rem;
  line-height: 1.45;
  text-align: center;
}

.footer-links a {
  color: rgba(251, 244, 230, 0.82);
  font-weight: 800;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-links a[aria-current="page"] {
  color: var(--gold);
}

.footer-socials {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(251, 244, 230, 0.18);
  border-radius: 6px;
  background: rgba(255, 250, 240, 0.08);
  color: var(--cream);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  text-decoration: none;
}

.social-icon {
  width: 1.18rem;
  height: 1.18rem;
  display: block;
}

.footer-socials a:hover,
.footer-socials a:focus {
  color: var(--gold);
}

.footer-legal {
  margin: 0;
  color: #9a948c;
  font-size: 0.9rem;
  line-height: 1.45;
}

.floating-donate {
  --donate-gold: #dfb84f;
  --donate-gold-hover: var(--donate-highlight);
  --button-bg: var(--donate-gold);
  --button-bg-hover: var(--donate-gold-hover);
  --button-border: var(--donate-gold);
  --button-border-hover: var(--donate-gold-hover);
  --button-shadow-rest: 0 2px 6px rgba(36, 34, 33, 0.12);
  --button-shadow-hover: 0 2px 4px rgba(25, 23, 22, 0.16), 0 8px 16px rgba(25, 23, 22, 0.18), 0 13px 28px rgba(25, 23, 22, 0.12);
  position: fixed;
  right: 1rem;
  bottom: var(--floating-donate-bottom, 1rem);
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 0.95rem;
  border: 2px solid var(--button-border);
  border-radius: 8px;
  background: var(--button-bg);
  color: var(--ink);
  box-shadow: var(--button-shadow-rest);
  font-weight: 900;
  text-decoration: none;
  overflow: visible;
  transition: background-color 150ms ease, border-color 150ms ease, box-shadow 150ms ease, opacity 160ms ease, transform 160ms ease;
}

.floating-donate::before {
  display: none;
}

.floating-donate.is-absorbed {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px) scale(0.94);
}

.copy-editor-enabled {
  padding-bottom: 3rem;
}

.copy-editor-enabled [data-copy-editable] {
  min-width: min(100%, 10rem);
  outline: 1px dashed rgba(117, 27, 28, 0.48);
  outline-offset: 3px;
}

.copy-editor-enabled .testimony-tile blockquote,
.copy-editor-enabled .testimony-tile .quote-name,
.copy-editor-enabled .footer-legal {
  width: 100%;
}

.copy-editor-enabled [data-copy-editable]:focus {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.copy-editor-enabled [data-copy-editable]:focus-within {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.copy-editor-field {
  display: block;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-align: inherit;
  overflow: hidden;
  resize: none;
}

.copy-editor-field:focus {
  outline: 0;
}

.copy-editor-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 42px;
  padding: 0.35rem 0.75rem;
  border-top: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.97);
  box-shadow: 0 -6px 18px rgba(36, 34, 33, 0.12);
}

.copy-editor-save {
  grid-column: 2;
  min-height: 30px;
  padding: 0.35rem 0.95rem;
  border: 1px solid var(--red-dark);
  border-radius: 6px;
  background: var(--graphite);
  color: var(--cream);
  font-weight: 800;
  cursor: pointer;
}

.copy-editor-dirty .copy-editor-save {
  background: var(--red);
}

.copy-editor-save:disabled {
  cursor: wait;
  opacity: 0.72;
}

.copy-editor-status {
  justify-self: end;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.copy-editor-enabled .floating-donate {
  bottom: calc(var(--floating-donate-bottom, 1rem) + 3rem);
}

@media (min-width: 560px) {
  .tile-grid,
  .action-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

}

@media (max-width: 819.98px) {
  .page-hero.visual-banner {
    min-height: 100%;
    aspect-ratio: 3 / 3;
  }

  body[data-page="privacy"] .legal-copy {
    padding-bottom: 4.5rem;
  }
}

@media (min-width: 820px) {
  .visual-banner {
    min-height: clamp(420px, 30vw, 640px);
  }

  .menu-toggle {
    display: none;
  }

  .site-header-square-brand .brand {
    height: clamp(70px, 9vw, 72px);
    max-height: clamp(70px, 9vw, 72px);
  }

  .site-header-overflow-brand .brand {
    width: var(--overflow-mark-size);
    height: var(--header-height);
    flex-basis: var(--overflow-mark-size);
  }

  .site-header-overflow-brand .brand-overflow-mark {
    width: var(--overflow-mark-size);
  }

  .site-header-overflow-brand .site-nav {
    top: auto;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    bottom: auto;
    gap: 0.25rem;
    min-height: 0;
    overflow: visible;
    opacity: 1;
    padding: 0;
    border: 0;
    background: var(--paper);
    box-shadow: none;
    pointer-events: auto;
    transform: none;
    visibility: visible;
    transition: none;
  }

  .site-nav a {
    min-height: 42px;
    padding: 0.65rem 0.75rem;
  }

  .site-nav .nav-donate {
    --nav-donate-plain-bg: var(--paper);
    --nav-donate-plain-border: var(--gold);
    margin-left: 0.25rem;
    padding-inline: 1rem;
    border: 1px solid var(--gold);
    background: var(--gold);
    color: var(--ink);
    box-shadow: 0 2px 6px rgba(36, 34, 33, 0.1);
  }

  .site-nav .nav-donate:hover,
  .site-nav .nav-donate:focus {
    background: var(--donate-highlight);
    color: var(--ink);
  }

  body[data-page="home"]:not(.hero-donate-passed) .site-nav .nav-donate {
    border-color: var(--nav-donate-plain-border);
    background: var(--nav-donate-plain-bg);
    box-shadow: none;
  }

  body[data-page="home"]:not(.hero-donate-passed) .site-nav .nav-donate:hover,
  body[data-page="home"]:not(.hero-donate-passed) .site-nav .nav-donate:focus {
    background: var(--gold);
    border-color: var(--gold);
  }

  .hero.visual-banner {
    height: min(calc(100vw * 0.5625), calc(100vh - var(--header-height)));
    height: min(calc(100vw * 0.5625), calc(100svh - var(--header-height)));
  }

  .hero.visual-banner::before {
    background:
      linear-gradient(180deg, rgba(25, 23, 22, 0.02), rgba(25, 23, 22, 0.12));
  }

  @supports (height: 100dvh) {
    .hero.visual-banner {
      height: min(calc(100vw * 0.5625), calc(100dvh - var(--header-height)));
    }
  }

  .split-grid {
    align-items: center;
  }

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

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

  .social-feed-host.is-curator-ready {
    overflow: hidden;
  }

  .social-feed-host.is-curator-ready .curator-feed {
    height: clamp(170px, 20vw, 300px);
    min-height: 0;
    overflow: hidden;
  }

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

  .floating-donate {
    display: none;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: minmax(220px, max-content) minmax(0, 78ch);
    align-items: center;
    justify-content: space-between;
    gap: 0.9rem clamp(1.5rem, 5vw, 4rem);
    padding-bottom: 2rem;
    text-align: initial;
  }

  .footer-brand-column {
    align-items: flex-start;
  }

  .footer-legal-column {
    justify-self: end;
    align-items: flex-end;
    text-align: right;
  }

  .footer-links {
    text-align: right;
  }
}

@media (min-width: 960px) {
  .closing-sale .split-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1rem, 3vw, 2rem);
  }

  .closing-sale h2 {
    font-size: clamp(1.65rem, 3.4vw, 2.85rem);
  }
}
