:root {
  --ink: #251e1b;
  --paper: #f4e9d7;
  --paper-light: #fbf6ec;
  --fig: #66384a;
  --fig-dark: #472634;
  --olive: #5e6548;
  --red: #a34736;
  --amber: #e0a63a;
  --line: rgba(37, 30, 27, 0.24);
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-light);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

a { color: inherit; }
.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  padding: .75rem 1rem;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

.site-header {
  width: min(calc(100% - 3rem), var(--max));
  min-height: 90px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  width: max-content;
  font-size: .84rem;
  font-weight: 750;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
}
.brand-mark {
  width: 31px;
  height: 31px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  padding: 5px;
  border: 1px solid currentColor;
  border-radius: 50%;
  transform: rotate(4deg);
}
.brand-mark i { display: block; border-radius: 999px 999px 4px 4px; }
.brand-mark i:first-child { background: var(--fig); transform: translateY(2px); }
.brand-mark i:last-child { background: var(--amber); transform: translateY(-2px); }
nav { display: flex; align-items: center; gap: 2rem; }
nav a { font-size: .88rem; font-weight: 650; text-decoration: none; }
nav a:hover, nav a:focus-visible, .text-link:hover { color: var(--red); }
.header-cta {
  justify-self: end;
  padding: .7rem 1rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 750;
  text-decoration: none;
}
.header-cta:hover { color: white; background: var(--ink); }

.hero {
  width: min(calc(100% - 3rem), var(--max));
  min-height: calc(100vh - 90px);
  margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 9rem) 0 6rem;
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(350px, .66fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}
.eyebrow {
  margin: 0 0 1.5rem;
  color: var(--red);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, blockquote {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.035em;
}
h1 {
  max-width: 860px;
  margin-bottom: 2rem;
  font-size: clamp(3.8rem, 7.2vw, 7.3rem);
  line-height: .92;
}
h1 em { color: var(--fig); font-weight: 400; }
.hero-intro {
  max-width: 730px;
  margin-bottom: 2.25rem;
  font-size: clamp(1.12rem, 1.5vw, 1.32rem);
  line-height: 1.65;
}
.hero-actions { display: flex; align-items: center; gap: 1.7rem; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: .85rem 1.35rem;
  border-radius: 3px;
  font-weight: 750;
  text-decoration: none;
}
.button-primary { color: white; background: var(--fig); }
.button-primary:hover { background: var(--fig-dark); }
.text-link { font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 5px; }

.full-frame {
  position: relative;
  margin: 0;
  padding: 1.5rem;
  background: var(--paper);
  border: 1px solid var(--ink);
  box-shadow: 13px 13px 0 var(--amber), 14px 14px 0 var(--ink);
  transform: rotate(1.2deg);
}
.full-frame::before {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  top: -6px;
  left: calc(50% - 6px);
  background: var(--red);
  border-radius: 50%;
}
.frame-heading, .frame-foot {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.frame-heading { padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.frame-number { color: var(--red); }
.full-frame > p {
  margin: 0;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.16rem, 1.55vw, 1.45rem);
  line-height: 1.3;
}
.frame-foot { padding-top: 1.1rem; color: var(--olive); }

.section { padding: clamp(5rem, 9vw, 9rem) max(1.5rem, calc((100vw - var(--max)) / 2)); }
.section-label {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  color: var(--red);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.premise { display: grid; grid-template-columns: 1fr 3fr; gap: clamp(3rem, 8vw, 8rem); background: var(--paper); }
.premise-copy { max-width: 900px; }
h2 { font-size: clamp(2.8rem, 5vw, 5.4rem); line-height: 1.03; }
.large-copy { font-size: clamp(1.35rem, 2vw, 1.8rem); line-height: 1.45; }
.premise-copy > p:last-child { max-width: 680px; margin: 2rem 0 0 auto; }

.commitments { background: var(--paper-light); }
.commitment-grid { margin-top: 3rem; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--ink); }
.commitment-grid article { min-height: 350px; padding: clamp(1.5rem, 3vw, 2.6rem); }
.commitment-grid article + article { border-left: 1px solid var(--ink); }
.card-index { color: var(--red); font-size: .78rem; font-weight: 800; }
.commitment-grid h3 { margin: 5.5rem 0 1.5rem; font-family: Georgia, "Times New Roman", serif; font-size: 2rem; font-weight: 400; line-height: 1.1; }
.commitment-grid p { margin: 0; }

.work { color: #fffaf1; background: var(--fig-dark); }
.section-label.light { color: var(--amber); border-color: rgba(255,255,255,.3); }
.work-intro { padding: 4rem 0; display: grid; grid-template-columns: 1.6fr 1fr; gap: 5rem; align-items: end; }
.work-intro h2 { margin-bottom: 0; }
.work-intro p { margin-bottom: .6rem; font-size: 1.12rem; }
.work-list { border-top: 1px solid rgba(255,255,255,.35); }
.work-list article {
  padding: 2.2rem 0;
  display: grid;
  grid-template-columns: 90px 1fr;
  border-bottom: 1px solid rgba(255,255,255,.35);
}
.work-list article > span { color: var(--amber); font-weight: 800; }
.work-list h3 { margin-bottom: .45rem; font-family: Georgia, "Times New Roman", serif; font-size: 1.8rem; font-weight: 400; }
.work-list p { max-width: 740px; margin: 0; color: rgba(255,250,241,.78); }

.about { background: var(--paper); }
.about-grid { margin-top: 4rem; display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(4rem, 10vw, 10rem); }
blockquote { margin: 0; color: var(--fig); font-size: clamp(2.6rem, 5vw, 5.2rem); line-height: 1.04; }
.about-copy { padding-top: .7rem; }
.about-copy p { margin-bottom: 1.4rem; }
.signature { margin-top: 3rem; font-weight: 800; }
.signature span { display: block; color: var(--red); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }

.newsletter {
  padding: clamp(5rem, 9vw, 8rem) max(1.5rem, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(3rem, 9vw, 8rem);
  align-items: end;
  color: white;
  background: var(--olive);
}
.newsletter h2 { margin-bottom: 1.5rem; font-size: clamp(3rem, 5.4vw, 5.8rem); }
.newsletter-copy > p:last-child { max-width: 650px; color: rgba(255,255,255,.84); font-size: 1.1rem; }
.newsletter .eyebrow { color: #f6d17d; }
.signup-form fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
.signup-form label { display: block; margin-bottom: .7rem; font-size: .82rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.form-row { display: flex; }
.form-row input {
  min-width: 0;
  flex: 1;
  min-height: 55px;
  padding: .9rem 1rem;
  border: 1px solid white;
  border-radius: 3px 0 0 3px;
  background: white;
  color: var(--ink);
  font: inherit;
}
.form-row button {
  min-height: 55px;
  padding: .9rem 1.25rem;
  border: 1px solid var(--ink);
  border-radius: 0 3px 3px 0;
  color: white;
  background: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.form-row button:hover { background: #000; }
.signup-form :disabled { cursor: not-allowed; }
.form-row input:disabled { color: rgba(37,30,27,.62); background: rgba(255,255,255,.8); }
.form-row button:disabled { color: rgba(255,255,255,.8); background: rgba(37,30,27,.72); }
.form-note { margin: .75rem 0 0; font-size: .8rem; color: rgba(255,255,255,.76); }

footer {
  padding: 2rem max(1.5rem, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  color: white;
  background: var(--ink);
}
footer p { margin: 0; font-size: .78rem; color: rgba(255,255,255,.68); }
footer p:last-child { justify-self: end; }
.footer-brand .brand-mark i:first-child { background: #b56981; }

.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; }
  nav { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 5rem; }
  .full-frame { max-width: 580px; }
  .premise { grid-template-columns: 1fr; }
  .work-intro, .about-grid, .newsletter { grid-template-columns: 1fr; }
  .work-intro { gap: 1.5rem; }
  .about-grid { gap: 3rem; }
  footer { grid-template-columns: 1fr; }
  footer p:last-child { justify-self: start; }
}

@media (max-width: 680px) {
  .site-header { width: min(calc(100% - 2rem), var(--max)); min-height: 76px; }
  .brand { font-size: .7rem; letter-spacing: .04em; }
  .brand-mark { width: 27px; height: 27px; }
  .header-cta { padding: .55rem .75rem; font-size: .72rem; }
  .hero { width: min(calc(100% - 2rem), var(--max)); padding: 4.5rem 0 5rem; gap: 3.5rem; }
  h1 { font-size: clamp(3.35rem, 17vw, 5rem); }
  .full-frame { margin-right: 10px; padding: 1.2rem; box-shadow: 9px 9px 0 var(--amber), 10px 10px 0 var(--ink); }
  .section { padding-left: 1rem; padding-right: 1rem; }
  .commitment-grid { grid-template-columns: 1fr; }
  .commitment-grid article { min-height: 0; }
  .commitment-grid article + article { border-left: 0; border-top: 1px solid var(--ink); }
  .commitment-grid h3 { margin-top: 3rem; }
  .work-list article { grid-template-columns: 48px 1fr; gap: .5rem; }
  .newsletter { padding-left: 1rem; padding-right: 1rem; }
  .form-row { flex-direction: column; gap: .7rem; }
  .form-row input, .form-row button { border-radius: 3px; }
}

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