:root {
  --paper: #f4f1ea;
  --ink: #17221d;
  --muted: #66706a;
  --line: rgba(23, 34, 29, 0.16);
  --accent: #e85d3f;
  --green: #1d3b2d;
  --white: #fffdf8;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  scroll-behavior: smooth;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background:
    linear-gradient(90deg, transparent calc(50% - .5px), rgba(23, 34, 29, .055) 50%, transparent calc(50% + .5px)),
    var(--paper);
}

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

.site-header,
main,
footer {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

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

.brand {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: .09em;
}

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

nav { display: flex; gap: 34px; }
nav a {
  color: var(--muted);
  font-size: .86rem;
  transition: color .2s ease;
}
nav a:hover,
nav a:focus-visible { color: var(--ink); }

.hero {
  min-height: 670px;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: center;
  gap: 72px;
  border-bottom: 1px solid var(--line);
}

.eyebrow,
.section-label,
.card-index,
.card-tag {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 32px;
  color: var(--muted);
}

.eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(232, 93, 63, .12);
}

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

h1 {
  margin-bottom: 34px;
  font-family: Georgia, "Songti SC", serif;
  font-size: clamp(3.4rem, 6.2vw, 6.2rem);
  line-height: 1.03;
  letter-spacing: -.055em;
  font-weight: 500;
}

h1 em {
  color: var(--accent);
  font-weight: 500;
}

.hero-intro {
  max-width: 480px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.9;
}

.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
  padding-bottom: 7px;
  border-bottom: 1px solid var(--ink);
  font-size: .85rem;
  font-weight: 700;
}

.text-link span { color: var(--accent); }

.hero-mark {
  position: relative;
  width: min(370px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.hero-mark::before,
.hero-mark::after {
  content: "";
  position: absolute;
  background: var(--line);
}
.hero-mark::before { width: 1px; height: 118%; }
.hero-mark::after { width: 118%; height: 1px; }

.monogram {
  position: relative;
  z-index: 2;
  width: 56%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-family: Georgia, serif;
  font-size: clamp(5rem, 9vw, 8rem);
  font-style: italic;
  box-shadow: 20px 24px 0 var(--accent);
}

.orbit { position: absolute; border: 1px solid var(--line); border-radius: 50%; }
.orbit-one { inset: 10%; }
.orbit-two { inset: 23%; }

.mark-note {
  position: absolute;
  right: -10px;
  bottom: 10%;
  z-index: 3;
  padding: 9px 11px;
  color: var(--muted);
  background: var(--paper);
  font-size: .58rem;
  line-height: 1.45;
  letter-spacing: .16em;
}

.statement,
.contact {
  display: grid;
  grid-template-columns: .42fr 1fr;
  gap: 64px;
  padding: 130px 0;
  border-bottom: 1px solid var(--line);
}

.section-label { color: var(--accent); }

.statement h2,
.section-heading h2,
.contact h2 {
  font-family: Georgia, "Songti SC", serif;
  font-weight: 500;
  letter-spacing: -.035em;
}

.statement h2,
.section-heading h2 { font-size: clamp(2.3rem, 4.5vw, 4.2rem); }
.statement p:not(.section-label) {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 2;
}

.focus { padding: 130px 0; border-bottom: 1px solid var(--line); }
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 62px;
}
.section-heading h2 { margin-bottom: 0; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); }
.card {
  min-height: 330px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-right: 0;
  transition: background .25s ease, transform .25s ease;
}
.card:last-child { border-right: 1px solid var(--line); }
.card:hover { background: var(--white); transform: translateY(-6px); }
.card-index { color: var(--accent); }
.card h3 {
  margin: 74px 0 18px;
  font-family: Georgia, "Songti SC", serif;
  font-size: 2rem;
  font-weight: 500;
}
.card p { color: var(--muted); line-height: 1.8; }
.card-tag { margin-top: auto; color: var(--muted); }

.contact { border-bottom: 0; }
.contact h2 { margin-bottom: 28px; font-size: clamp(2.8rem, 5.2vw, 5.2rem); line-height: 1.12; }
.contact p:not(.section-label) { color: var(--muted); line-height: 1.8; }

.copy-button {
  margin-top: 18px;
  padding: 14px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  cursor: pointer;
  font-weight: 700;
}
.copy-button span { margin-left: 9px; color: var(--accent); }

footer { border-top: 1px solid var(--line); padding: 38px 0 30px; }
.footer-top,
.filings { display: flex; align-items: center; justify-content: space-between; }
.footer-top p,
.filings { color: var(--muted); font-size: .76rem; }
.footer-top p { margin: 0; }
.filings { justify-content: flex-start; gap: 10px; margin-top: 34px; }
.filings a { text-decoration: underline; text-decoration-color: transparent; text-underline-offset: 4px; }
.filings a:hover,
.filings a:focus-visible { color: var(--ink); text-decoration-color: currentColor; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

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

@media (max-width: 820px) {
  .site-header, main, footer { width: min(100% - 32px, 680px); }
  .site-header { height: 78px; }
  nav { gap: 20px; }
  .hero { min-height: 0; grid-template-columns: 1fr; gap: 80px; padding: 92px 0 110px; }
  .hero-mark { width: min(310px, 84vw); justify-self: center; }
  .statement, .contact { grid-template-columns: 1fr; gap: 38px; padding: 92px 0; }
  .focus { padding: 92px 0; }
  .section-heading { display: block; }
  .section-heading .section-label { margin-bottom: 38px; }
  .cards { grid-template-columns: 1fr; }
  .card { min-height: 270px; border-right: 1px solid var(--line); border-bottom: 0; }
  .card:last-child { border-bottom: 1px solid var(--line); }
  .card h3 { margin-top: 48px; }
}

@media (max-width: 520px) {
  nav a:first-child { display: none; }
  h1 { font-size: clamp(3rem, 14.4vw, 4.5rem); }
  .hero-intro br { display: none; }
  .footer-top { align-items: flex-end; }
  .footer-top p { max-width: 210px; text-align: right; line-height: 1.6; }
  .filings { align-items: flex-start; flex-direction: column; gap: 8px; }
  .filings span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  :root { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
