:root {
  --ink: #1c211f;
  --ink-soft: #303733;
  --sage: #97a18f;
  --sage-light: #dbe0d7;
  --paper: #f3f0e9;
  --paper-bright: #faf9f5;
  --line: rgba(28, 33, 31, 0.16);
  --background: var(--paper);
  --foreground: var(--ink);
  --card: var(--paper-bright);
  --card-foreground: var(--ink);
  --popover: var(--paper-bright);
  --popover-foreground: var(--ink);
  --primary: var(--ink);
  --primary-foreground: var(--paper-bright);
  --secondary: var(--sage-light);
  --secondary-foreground: var(--ink);
  --muted: #e7e4dc;
  --muted-foreground: #667069;
  --accent: var(--sage-light);
  --accent-foreground: var(--ink);
  --destructive: #a83a3a;
  --border: var(--line);
  --input: rgba(28, 33, 31, 0.22);
  --ring: var(--sage);
  --radius: 0.75rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

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

button,
textarea,
input {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

button:disabled,
textarea:disabled,
input:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
  transform: translateY(-160%);
}

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

svg {
  stroke-width: 1.7;
}

.page-shell {
  width: min(100% - 36px, 1160px);
  margin-inline: auto;
}

.section-pad {
  padding-block: clamp(76px, 10vw, 132px);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #1b1e1d;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: 58% center;
  animation: reveal-image 1.2s ease both;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(15, 18, 17, 0.93) 0%, rgba(15, 18, 17, 0.78) 42%, rgba(15, 18, 17, 0.12) 78%),
    linear-gradient(0deg, rgba(15, 18, 17, 0.68) 0%, transparent 38%, rgba(15, 18, 17, 0.16) 100%);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.48em;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.wordmark span {
  font-size: 0.68em;
  font-weight: 500;
  opacity: 0.76;
}

.header-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.header-link svg {
  width: 18px;
  height: 18px;
}

.hero-content {
  display: flex;
  min-height: calc(100svh - 162px);
  flex-direction: column;
  justify-content: center;
  padding-block: 72px 130px;
}

.eyebrow,
.section-label,
.channel-meta {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.68rem;
  font-weight: 800;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.hero h1,
.intro-section h2,
.section-heading h2,
.channel-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.hero h1 {
  max-width: 720px;
  margin: 24px 0 0;
  font-size: clamp(2.75rem, 7.6vw, 6.75rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
  animation: rise-in 0.8s 0.12s ease both;
}

.hero-copy {
  max-width: 510px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin-top: 38px;
}

.button,
.text-link,
.channel-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  font-size: 0.82rem;
  font-weight: 800;
}

.button {
  padding-inline: 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: transform 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-light {
  background: #f8f6f0;
  color: var(--ink);
}

.button svg,
.text-link svg,
.channel-action svg {
  width: 17px;
  height: 17px;
}

.text-link {
  min-height: 44px;
  color: rgba(255, 255, 255, 0.88);
}

.hero-note {
  position: absolute;
  right: 0;
  bottom: 34px;
  left: 0;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.62);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
  font-style: italic;
}

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

.intro-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(48px, 10vw, 132px);
  align-items: start;
}

.section-label {
  color: #697369;
}

.intro-section h2,
.section-heading h2 {
  margin: 22px 0 0;
  font-size: clamp(2.35rem, 5vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.intro-copy {
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.intro-copy p {
  margin: 0;
  color: #4f5752;
  font-size: 1.02rem;
  line-height: 1.8;
}

.intro-copy p + p {
  margin-top: 22px;
}

.featured-stories {
  overflow: hidden;
  background: var(--paper-bright);
}

.featured-heading {
  display: grid;
  max-width: 920px;
  grid-template-columns: minmax(0, 1.2fr) minmax(250px, 0.55fr);
  column-gap: clamp(42px, 8vw, 96px);
  align-items: end;
}

.featured-heading .section-label {
  grid-column: 1 / -1;
}

.featured-heading h2 {
  margin: 22px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.55rem, 5.8vw, 5.4rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.featured-heading > p:last-child {
  margin: 22px 0 4px;
  color: #58615b;
  line-height: 1.7;
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(48px, 7vw, 82px);
}

.reel-card {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  content-visibility: auto;
  contain-intrinsic-size: auto 760px;
}

.reel-card-topline,
.reel-card-topline a,
.reel-open-link {
  display: flex;
  align-items: center;
}

.reel-card-topline {
  min-height: 44px;
  justify-content: space-between;
  gap: 16px;
  padding: 0 5px 10px;
  color: #697369;
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.reel-card-topline a {
  gap: 5px;
  min-height: 36px;
  color: var(--ink);
}

.reel-card-topline svg,
.reel-open-link svg {
  width: 15px;
  height: 15px;
}

.reel-frame {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border: 0;
  border-radius: 2px;
  background:
    linear-gradient(145deg, rgba(28, 33, 31, 0.92), rgba(63, 72, 66, 0.86)),
    var(--ink);
}

.reel-frame iframe {
  display: block;
  width: 100%;
  height: 680px;
  border: 0;
  background: #fff;
}

.reel-open-link {
  justify-content: space-between;
  gap: 16px;
  min-height: 54px;
  padding: 12px 5px 0;
  font-size: 0.78rem;
  font-weight: 800;
}

.channels-section {
  color: #fff;
  background: var(--ink);
}

.section-heading {
  max-width: 800px;
}

.section-label-light {
  color: #aab4aa;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(48px, 7vw, 82px);
}

.channel-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.035);
  transition: background-color 220ms ease, transform 220ms ease;
}

a.channel-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.08);
}

.channel-card-muted {
  opacity: 0.72;
}

.channel-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}

.channel-icon svg {
  width: 21px;
  height: 21px;
}

.channel-meta {
  color: #aeb7af;
}

.channel-card strong {
  max-width: 420px;
  margin-top: 18px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.channel-action {
  justify-content: flex-start;
  margin-top: auto;
  padding-top: 48px;
  color: #dfe4dd;
}

.channel-action-muted {
  color: #9ea69f;
}

.manifesto-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #bec6be;
}

.manifesto-line svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.manifesto-line p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.story-section {
  background: var(--sage-light);
}

.story-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(48px, 9vw, 118px);
  align-items: start;
}

.story-heading {
  position: sticky;
  top: 36px;
}

.story-mark {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  margin-bottom: 38px;
  border: 1px solid rgba(28, 33, 31, 0.22);
  border-radius: 50%;
}

.story-mark svg {
  width: 22px;
  height: 22px;
}

.story-heading h2 {
  margin: 22px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 400;
  line-height: 1.01;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.story-heading > p:last-child {
  max-width: 480px;
  margin: 28px 0 0;
  color: #4f5952;
  line-height: 1.75;
}

.story-form {
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid rgba(28, 33, 31, 0.16);
  background: rgba(250, 249, 245, 0.72);
  box-shadow: 0 22px 70px rgba(35, 43, 38, 0.08);
}

.form-field > label {
  display: block;
  margin-bottom: 14px;
  font-size: 0.84rem;
  font-weight: 800;
}

.story-form textarea {
  min-height: 270px;
  resize: vertical;
  border-color: rgba(28, 33, 31, 0.2);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.55);
  padding: 18px;
  box-shadow: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  line-height: 1.7;
}

.story-form textarea::placeholder {
  color: #7f887f;
}

.story-form textarea:focus-visible {
  border-color: #758173;
  box-shadow: 0 0 0 3px rgba(117, 129, 115, 0.2);
}

.form-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 10px;
  color: #6d766e;
  font-size: 0.7rem;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.privacy-note {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(28, 33, 31, 0.12);
  background: rgba(151, 161, 143, 0.12);
}

.privacy-note > svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  margin-top: 2px;
}

.privacy-note strong {
  display: block;
  font-size: 0.78rem;
}

.privacy-note p {
  margin: 7px 0 0;
  color: #5d665f;
  font-size: 0.74rem;
  line-height: 1.55;
}

.confirmation-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 22px;
}

.confirmation-row [data-slot="checkbox"] {
  width: 19px;
  height: 19px;
  margin-top: 2px;
  border-color: rgba(28, 33, 31, 0.38);
  border-radius: 3px;
  background: transparent;
}

.confirmation-row input[type="checkbox"] {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  margin: 2px 0 0;
  accent-color: var(--ink);
}

.confirmation-row label {
  color: #4f5852;
  font-size: 0.75rem;
  line-height: 1.55;
  cursor: pointer;
}

.story-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 54px;
  margin-top: 26px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 0.82rem;
}

.story-submit svg {
  width: 18px;
  height: 18px;
}

.story-submit[aria-busy="true"] svg {
  display: block;
}

.story-submit svg {
  display: none;
}

.story-submit:hover {
  background: #303733;
}

.form-status {
  display: flex;
  min-height: 24px;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: #9b3030;
  font-size: 0.76rem;
  line-height: 1.4;
}

.form-status-success {
  color: #426149;
}

.form-status svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.form-status:empty {
  margin-top: 0;
}

.spin {
  animation: spin 0.8s linear infinite;
}

.site-footer {
  background: #111412;
  color: #fff;
}

.footer-inner {
  display: flex;
  min-height: 148px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner p {
  margin: 0;
}

.footer-inner > p:last-child {
  color: #9ca49d;
  font-size: 0.8rem;
}

@keyframes reveal-image {
  from { opacity: 0; transform: scale(1.025); }
  to { opacity: 1; transform: scale(1); }
}

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

@keyframes spin {
  to { transform: rotate(360deg); }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 32px, 1160px);
  }

  .hero-image {
    object-position: 66% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(15, 18, 17, 0.93) 0%, rgba(15, 18, 17, 0.66) 70%, rgba(15, 18, 17, 0.2) 100%),
      linear-gradient(0deg, rgba(15, 18, 17, 0.84) 0%, transparent 54%, rgba(15, 18, 17, 0.2) 100%);
  }

  .site-header {
    min-height: 74px;
  }

  .header-link span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .hero-content {
    justify-content: flex-end;
    min-height: calc(100svh - 74px);
    padding-block: 110px 108px;
  }

  .hero h1 {
    max-width: 94%;
    margin-top: 18px;
    font-size: clamp(2.65rem, 13.2vw, 4.4rem);
  }

  .hero-copy {
    max-width: 92%;
    margin-top: 22px;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero-actions {
    gap: 13px 18px;
    margin-top: 28px;
  }

  .hero-note {
    bottom: 24px;
    font-size: 0.78rem;
  }

  .intro-grid,
  .channel-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .featured-heading {
    grid-template-columns: 1fr;
  }

  .featured-heading .section-label,
  .featured-heading h2,
  .featured-heading > p:last-child {
    grid-column: auto;
  }

  .featured-heading h2 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .reels-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-inline: -4px;
  }

  .reel-card {
    padding: 9px;
  }

  .reel-frame {
    min-height: 610px;
  }

  .reel-frame iframe {
    height: 650px;
  }

  .intro-copy {
    padding-top: 28px;
  }

  .channel-card {
    min-height: 330px;
  }

  .story-heading {
    position: static;
  }

  .story-heading h2 {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
  }

  .story-form {
    margin-inline: -4px;
    padding: 22px 18px;
  }

  .footer-inner {
    min-height: 132px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}

@media (min-width: 761px) and (max-width: 1040px) {
  .reels-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
