:root {
  color-scheme: dark;
  --ink: #090908;
  --ink-soft: #11110f;
  --paper: #f0ede5;
  --muted: #b8b5ad;
  --line: rgba(240, 237, 229, 0.18);
  --line-strong: rgba(240, 237, 229, 0.4);
  --content: 1240px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background:
    radial-gradient(circle at 77% 15%, rgba(255, 255, 255, 0.045), transparent 28rem),
    var(--ink);
  color: var(--paper);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-160%);
}

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

.site-header {
  width: min(calc(100% - 3rem), var(--content));
  margin: 0 auto;
  min-height: 6.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 2.75rem;
  text-decoration: none;
  font-family: "Arial Narrow", "Aptos Narrow", Impact, sans-serif;
  font-size: 1.08rem;
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
}

.wordmark img {
  width: 2.4rem;
  height: 2.55rem;
  object-fit: contain;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 4vw, 3rem);
}

.site-header nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header nav a:hover {
  color: var(--paper);
}

.hero {
  width: min(calc(100% - 3rem), var(--content));
  min-height: calc(100vh - 6.5rem);
  min-height: calc(100svh - 6.5rem);
  margin: 0 auto;
  padding: clamp(5rem, 11vw, 9rem) 0 clamp(5rem, 10vw, 8rem);
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(15rem, 0.6fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 8rem);
}

.eyebrow,
.section-label p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 12ch;
  margin: 1.5rem 0 2rem;
  font-family: "Arial Narrow", "Aptos Narrow", Impact, sans-serif;
  font-size: clamp(4rem, 8.4vw, 8rem);
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.88;
  text-wrap: balance;
}

.hero-lead {
  max-width: 45rem;
  margin: 0;
  color: #c3c0b8;
  font-size: clamp(1.08rem, 1.7vw, 1.34rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.8rem 1.2rem;
  background: var(--paper);
  border: 1px solid var(--paper);
  color: var(--ink);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 160ms ease, color 160ms ease;
}

.button:hover {
  background: transparent;
  color: var(--paper);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.75rem 0;
  color: var(--paper);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration-color: var(--line-strong);
  text-underline-offset: 0.45rem;
  text-transform: uppercase;
}

.text-link span {
  display: inline-block;
  margin-left: 0.4rem;
}

.hero-mark {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 25rem;
}

.hero-mark::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(70%, 20rem);
  aspect-ratio: 1;
  border: 1px solid var(--line);
  transform: translate(-50%, -50%) rotate(45deg);
}

.hero-mark img {
  position: relative;
  z-index: 1;
  width: min(20vw, 13.5rem);
  height: auto;
  opacity: 0.68;
  filter: grayscale(1) contrast(0.9);
}

.status {
  width: min(calc(100% - 3rem), var(--content));
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 8rem) 0;
  display: grid;
  grid-template-columns: minmax(10rem, 0.42fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 8vw, 8rem);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding-top: 0.6rem;
}

.status-dot {
  flex: 0 0 auto;
  width: 0.58rem;
  height: 0.58rem;
  margin-top: 0.25rem;
  border: 1px solid var(--paper);
  background: transparent;
}

.status-copy {
  max-width: 48rem;
}

.status h2 {
  margin: 0 0 2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.4vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-wrap: balance;
}

.status p {
  max-width: 43rem;
  margin: 0;
  color: #c5c2ba;
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
}

.status p + p {
  margin-top: 1rem;
}

.beliefs,
.future {
  width: min(calc(100% - 3rem), var(--content));
  margin: 0 auto;
  padding: clamp(6rem, 11vw, 10rem) 0;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(12rem, 0.42fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 8vw, 8rem);
}

.section-intro > .eyebrow {
  padding-top: 0.65rem;
}

.section-intro h2,
.work-inner h2,
.contact h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 5vw, 4.75rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.03;
  text-wrap: balance;
}

.section-intro > div > p {
  max-width: 45rem;
  margin: 2rem 0 0;
  color: #c5c2ba;
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
}

.section-intro > div > p + p {
  margin-top: 1rem;
}

.belief-list {
  margin: clamp(4.5rem, 9vw, 8rem) 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.belief-list li {
  display: grid;
  grid-template-columns: 4.5rem minmax(12rem, 0.58fr) minmax(0, 1fr);
  gap: clamp(1rem, 4vw, 4rem);
  align-items: baseline;
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--line);
}

.belief-number {
  color: #8e8b84;
  font-family: "Arial Narrow", "Aptos Narrow", Impact, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.belief-list h3,
.ownership-note h3 {
  margin: 0;
  font-family: "Arial Narrow", "Aptos Narrow", Impact, sans-serif;
  font-size: clamp(1.45rem, 2.8vw, 2.35rem);
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1;
  text-transform: uppercase;
}

.belief-list p {
  max-width: 38rem;
  margin: 0;
  color: #c5c2ba;
  font-size: 1.03rem;
}

.ownership-note {
  margin: clamp(4rem, 8vw, 7rem) 0 0 clamp(12rem, 28vw, 25rem);
  padding: 2rem 0 2rem 2rem;
  display: grid;
  grid-template-columns: minmax(9rem, 0.42fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  border-left: 2px solid var(--paper);
}

.ownership-note h3 {
  text-transform: none;
}

.ownership-note p:not(.eyebrow) {
  max-width: 35rem;
  margin: 1rem 0 0;
  color: #c5c2ba;
}

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

.work-inner {
  width: min(calc(100% - 3rem), var(--content));
  margin: 0 auto;
  padding: clamp(6rem, 11vw, 10rem) 0;
  display: grid;
  grid-template-columns: minmax(12rem, 0.42fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 8vw, 8rem);
}

.work-inner > .eyebrow {
  padding-top: 0.65rem;
  color: #5e5c57;
}

.work-inner h2 {
  max-width: 14ch;
}

.work-inner p:not(.eyebrow) {
  max-width: 42rem;
  margin: 2rem 0 0;
  color: #4e4c47;
  font-size: clamp(1.05rem, 1.45vw, 1.2rem);
}

.button-dark {
  margin-top: 2.25rem;
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.button-dark:hover {
  background: transparent;
  color: var(--ink);
}

.work-section a:focus-visible {
  outline-color: var(--ink);
}

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

.contact {
  width: min(calc(100% - 3rem), var(--content));
  margin: 0 auto;
  padding: clamp(5.5rem, 10vw, 9rem) 0;
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(16rem, 0.75fr) minmax(0, 1fr);
  gap: clamp(3rem, 9vw, 9rem);
}

.contact h2 {
  margin-top: 1.4rem;
}

.contact-copy > p {
  max-width: 38rem;
  margin: 0;
  color: #c5c2ba;
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
}

.contact-links {
  margin-top: 2.25rem;
  border-top: 1px solid var(--line);
}

.contact-links a {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.contact-links span {
  color: #96938b;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-links strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-weight: 650;
}

.contact-links a:hover strong {
  text-decoration: underline;
  text-decoration-color: var(--line-strong);
  text-underline-offset: 0.35rem;
}

.site-footer {
  width: min(calc(100% - 3rem), var(--content));
  margin: 0 auto;
  padding: 0 0 2.5rem;
}

.safety-note {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.safety-note p {
  max-width: 75rem;
  margin: 0;
  color: #a29f97;
  font-size: 0.9rem;
  line-height: 1.65;
}

.safety-note strong {
  color: #c5c2ba;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 2rem;
  color: #96938b;
  font-size: 0.82rem;
}

.footer-row p {
  margin: 0;
}

.footer-row nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-row nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: #aaa79f;
  text-underline-offset: 0.25rem;
}

.company-link {
  color: inherit;
  text-decoration-color: var(--line-strong);
  text-underline-offset: 0.25rem;
}

.company-link:hover {
  color: var(--paper);
}

.legal-body {
  min-height: 100vh;
}

.legal-header,
.legal-main,
.legal-footer {
  width: min(calc(100% - 3rem), 880px);
  margin: 0 auto;
}

.legal-header {
  min-height: 6.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.back-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-underline-offset: 0.35rem;
  text-transform: uppercase;
}

.legal-main {
  padding: clamp(4.5rem, 10vw, 8rem) 0;
}

.legal-main h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.legal-meta {
  margin: 1.5rem 0 4rem;
  color: #96938b;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-section {
  display: grid;
  grid-template-columns: 11rem minmax(0, 1fr);
  gap: 2.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-section p {
  margin: 0;
  color: #c5c2ba;
}

.legal-section p + p {
  margin-top: 1rem;
}

.legal-footer {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  color: #96938b;
  font-size: 0.82rem;
}

@media (max-width: 880px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) 12rem;
    gap: 2.5rem;
  }

  .hero-mark {
    min-height: 18rem;
  }

  .hero-mark::before {
    width: 8.25rem;
  }

  .hero-mark img {
    width: 7.5rem;
  }

  .ownership-note {
    margin-left: 0;
  }
}

@media (min-width: 881px) and (max-height: 850px) {
  .hero {
    padding: 2.75rem 0 3rem;
  }

  .hero h1 {
    font-size: clamp(4rem, 6.4vw, 5.65rem);
  }

  .hero-actions {
    margin-top: 1.75rem;
  }

  .hero-mark {
    min-height: 20rem;
  }
}

@media (max-width: 680px) {
  .site-header,
  .hero,
  .status,
  .beliefs,
  .future,
  .contact,
  .site-footer,
  .work-inner,
  .legal-header,
  .legal-main,
  .legal-footer {
    width: min(calc(100% - 2rem), var(--content));
  }

  .site-header {
    min-height: 7.25rem;
    padding: 1rem 0;
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .site-header nav {
    order: 2;
    width: 100%;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .site-header nav a {
    font-size: 0.72rem;
  }

  .wordmark {
    font-size: 0.87rem;
    letter-spacing: 0.09em;
  }

  .wordmark img {
    width: 2rem;
    height: 2.1rem;
  }

  .hero {
    min-height: auto;
    padding: 4.75rem 0 5rem;
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .hero h1 {
    font-size: clamp(3.65rem, 18vw, 5rem);
    line-height: 0.9;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 0.9rem;
  }

  .button {
    width: 100%;
  }

  .text-link {
    width: fit-content;
  }

  .hero-mark {
    min-height: 11rem;
    justify-content: end;
  }

  .hero-mark::before {
    left: auto;
    right: 2rem;
    width: 12rem;
    transform: translateY(-50%) rotate(45deg);
  }

  .hero-mark img {
    width: 7.4rem;
    margin-right: 4.25rem;
  }

  .status,
  .section-intro,
  .work-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .status {
    padding: 4.5rem 0;
  }

  .beliefs,
  .future,
  .work-inner,
  .contact {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .section-intro > .eyebrow,
  .work-inner > .eyebrow {
    padding-top: 0;
  }

  .belief-list {
    margin-top: 4rem;
  }

  .belief-list li {
    grid-template-columns: 2.5rem minmax(0, 1fr);
    gap: 0.6rem 1rem;
    padding: 1.75rem 0;
  }

  .belief-list h3,
  .belief-list p {
    grid-column: 2;
  }

  .belief-list h3 {
    grid-row: 1;
  }

  .belief-list p {
    grid-row: 2;
  }

  .ownership-note {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding-left: 1.25rem;
  }

  .contact h2 {
    max-width: 12ch;
  }

  .footer-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .legal-header,
  .legal-main,
  .legal-footer {
    width: min(calc(100% - 2rem), 880px);
  }

  .legal-header {
    min-height: 5.25rem;
  }

  .legal-section {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

@media (max-width: 380px) {
  .site-header,
  .hero,
  .status,
  .beliefs,
  .future,
  .contact,
  .site-footer,
  .work-inner,
  .legal-header,
  .legal-main,
  .legal-footer {
    width: min(calc(100% - 1.5rem), var(--content));
  }

  .wordmark span {
    max-width: 9rem;
  }

  .hero h1 {
    font-size: 3.25rem;
  }

  .hero-mark::before {
    right: 1.35rem;
    width: 10rem;
  }

  .hero-mark img {
    width: 6.3rem;
    margin-right: 3.4rem;
  }

  .site-header nav a {
    letter-spacing: 0.08em;
  }

  .contact-links a {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
