@font-face {
  font-family: 'EB Garamond';
  src: url('/brand/EBGaramond-Regular.ttf') format('truetype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Outfit;
  src: url('/brand/Outfit-Regular.ttf') format('truetype');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
:root {
  color-scheme: light;
  --paper: #faf7ef;
  --teal: #183c35;
  --mint: #e3efe7;
  --honey: #d9b77d;
  --ink: #202420;
  --muted: #4d5d54;
  --line: #c5cec3;
  font-family: Outfit, Arial, sans-serif;
  font-size: 18px;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: var(--teal);
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}
a:hover {
  text-decoration-thickness: 2px;
}
a:focus-visible,
summary:focus-visible,
button:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 5px;
  border-radius: 2px;
}
p {
  line-height: 1.65;
  margin: 0 0 1.2em;
}
h1,
h2,
h3 {
  font-family: 'EB Garamond', Georgia, serif;
  font-weight: 400;
  color: var(--teal);
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0 0 0.4em;
}
h1 {
  font-size: clamp(3rem, 6.3vw, 5.5rem);
  max-width: 15ch;
}
h2 {
  font-size: clamp(2.25rem, 4.3vw, 3.7rem);
  max-width: 20ch;
}
h3 {
  font-size: clamp(1.65rem, 2.6vw, 2.4rem);
}
figure {
  margin: 0;
}
figcaption {
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--muted);
  margin-top: 18px;
}
.skip-link {
  position: absolute;
  left: 20px;
  top: -100px;
  padding: 12px;
  background: var(--paper);
  z-index: 30;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  max-width: 1440px;
  margin: auto;
  padding: 15px clamp(20px, 5vw, 80px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}
.brand {
  flex-shrink: 0;
  display: block;
}
.brand img {
  width: 180px;
  height: 90px;
}
.site-header nav {
  display: flex;
  gap: clamp(20px, 3vw, 44px);
  align-items: center;
}
.site-header nav > a:not(.button) {
  padding: 12px 0;
  text-decoration: none;
}
.site-header nav > a[aria-current],
.site-header nav > a:hover {
  text-decoration: underline;
}
.button {
  display: inline-flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 24px;
  border: 1px solid var(--teal);
  border-radius: 3px;
  background: var(--teal);
  color: var(--paper);
  font-size: 0.94rem;
  line-height: 1.3;
  text-decoration: none;
}
.button:hover {
  background: #285247;
  color: var(--paper);
  text-decoration: none;
}
.button:focus-visible {
  outline-offset: 4px;
}
.section {
  padding: 90px clamp(20px, 5vw, 80px);
}
.section__inner {
  max-width: 1200px;
  margin: auto;
}
.eyebrow {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--teal);
  margin-bottom: 20px;
  line-height: 1.6;
}
.lead {
  font-size: 1.16rem;
  line-height: 1.6;
  max-width: 620px;
}
.hero {
  padding-top: 65px;
  padding-bottom: 70px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}
.hero h1 {
  max-width: 10ch;
}
.hero .lead {
  max-width: 510px;
  margin: 24px 0 30px;
}
.reassurance {
  font-size: 0.78rem;
  line-height: 1.65;
  max-width: 440px;
  margin-top: 18px;
  color: var(--muted);
}
.reassurance a {
  display: inline-block;
  margin-left: 4px;
}
.hero-art {
  width: 100%;
  align-self: center;
}
.hero-art figcaption {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
}
.fine-rule {
  width: 30px;
  height: 1px;
  background: var(--honey);
}
.section-heading {
  margin-bottom: 36px;
}
.showcase {
  border-top: 1px solid var(--line);
}
.showcase h2 {
  max-width: 20ch;
}
.feature-design {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}
.art-link {
  display: block;
}
.feature-copy {
  max-width: 390px;
}
.feature-copy h3 {
  font-size: 2.4rem;
}
.feature-copy p:not(.eyebrow) {
  margin-top: 24px;
}
.text-link {
  display: inline-block;
  padding: 8px 0;
}
.medium-note {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 28px 0 0;
}
.workspace-section {
  background: var(--mint);
}
.first-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  padding: 0;
  margin: 46px 0;
  gap: 36px;
}
.first-steps li {
  border-top: 1px solid #9fb4a7;
  padding-top: 22px;
}
.first-steps span {
  font-size: 0.75rem;
  color: var(--teal);
  display: block;
  margin-bottom: 22px;
}
.first-steps h3 {
  font-size: 1.9rem;
}
.first-steps p {
  font-size: 0.95rem;
}
.workspace {
  margin-top: 38px;
}
.workspace img {
  width: 100%;
  border: 1px solid #6b7e70;
  border-radius: 5px;
}
.workspace figcaption {
  max-width: 700px;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
  align-items: center;
}
.texture {
  overflow: hidden;
  border-radius: 50% 50% 3px 3px;
}
.texture img {
  width: 100%;
}
.story-grid h2 {
  max-width: 14ch;
}
.making {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.narrow {
  max-width: 850px;
}
.making h2 {
  max-width: 18ch;
}
.making .lead {
  max-width: 750px;
}
.closing {
  text-align: center;
  background: var(--mint);
  padding-top: 90px;
  padding-bottom: 90px;
}
.closing h2 {
  max-width: none;
  margin-bottom: 30px;
}
.closing .reassurance {
  max-width: none;
}
.site-footer {
  padding: 50px clamp(20px, 5vw, 80px) 24px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
  align-items: start;
}
.footer-inner > p {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.4rem;
  line-height: 1.4;
  color: var(--teal);
  padding-top: 15px;
}
.footer-inner nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 15px;
  font-size: 0.8rem;
}
.footer-inner a {
  text-decoration: none;
}
.footer-inner a:hover {
  text-decoration: underline;
}
.footer-note {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.7rem;
  color: var(--muted);
}
.prose {
  max-width: 760px;
}
.prose h1 {
  max-width: 16ch;
  margin-bottom: 35px;
}
.prose h2 {
  font-size: 2.3rem;
  margin-top: 50px;
}
.prose > .lead {
  max-width: none;
  font-size: 1.4rem;
}
.prose > p {
  margin-bottom: 28px;
}
.inset {
  padding: 40px;
  background: var(--mint);
  margin: 60px -40px 0;
}
.inset h2 {
  margin-top: 0;
}
.inset p:last-child {
  margin-bottom: 0;
}
.gallery-hero {
  max-width: 760px;
  margin: 20px auto 0;
}
.stage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 65px;
}
.stage-grid article {
  min-width: 0;
}
.stage-grid img {
  margin-bottom: 28px;
}
.stage-grid .eyebrow {
  display: block;
  margin-bottom: 12px;
}
.stage-grid h3 {
  font-size: 1.9rem;
}
.stage-grid p {
  font-size: 0.94rem;
}
.refinement {
  margin-top: 80px;
  padding-top: 70px;
  border-top: 1px solid #9fb4a7;
}
.refinement .texture {
  border-radius: 3px;
}
.refinement h2 {
  max-width: 12ch;
}
details {
  margin-top: 28px;
  border-top: 1px solid #9fb4a7;
  border-bottom: 1px solid #9fb4a7;
}
summary {
  padding: 18px 3px;
  cursor: pointer;
  color: var(--teal);
}
.control-evidence {
  padding: 12px 0 22px;
  font-size: 0.9rem;
}
.control-evidence a {
  display: block;
  padding: 10px 0;
}
.pattern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-top: 40px;
}
.pattern-grid article {
  min-width: 0;
}
.pattern-grid img {
  width: 100%;
  max-width: 300px;
  margin: 0 auto 28px;
  border-radius: 3px;
}
.pattern-grid h3 {
  font-size: 1.85rem;
}
.pattern-grid p {
  font-size: 0.95rem;
}
.guide-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 40px 0;
}
.guide-links > a {
  display: block;
  background: var(--mint);
  padding: 24px;
  text-decoration: none;
}
.guide-links h2 {
  font-size: 1.8rem;
  margin-top: 0;
}
.guide-links p {
  margin-bottom: 0;
}
.guide-links > a:hover h2 {
  text-decoration: underline;
}
.pattern-example {
  margin: 45px 0;
}
.pattern-example img {
  margin: auto;
}
.pattern-example figcaption {
  text-align: center;
}
@media (max-width: 900px) {
  .hero-grid {
    gap: 15px;
  }
  .hero h1 {
    font-size: 3.6rem;
  }
  .feature-design,
  .story-grid {
    gap: 35px;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .first-steps {
    gap: 24px;
  }
  .site-header nav {
    gap: 20px;
  }
  .site-header .brand img {
    width: 150px;
    height: 75px;
  }
  .section {
    padding-top: 65px;
    padding-bottom: 65px;
  }
  .stage-grid {
    gap: 20px;
  }
}
@media (max-width: 650px) {
  :root {
    font-size: 17px;
  }
  .site-header {
    padding: 12px 20px;
    gap: 12px;
    align-items: center;
    flex-direction: column;
  }
  .site-header .brand img {
    width: 142px;
    height: 71px;
  }
  .site-header nav {
    width: 100%;
    justify-content: center;
    gap: 22px;
    font-size: 0.9rem;
  }
  .site-header .button {
    padding: 10px 14px;
    min-height: 44px;
    font-size: 0.82rem;
    gap: 10px;
  }
  .hero-grid,
  .feature-design,
  .story-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 44px;
    padding-bottom: 44px;
  }
  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.1rem);
    max-width: 10ch;
  }
  .hero .lead {
    margin-top: 22px;
    font-size: 1.06rem;
  }
  .hero-art {
    max-width: 480px;
    margin: 10px auto 0;
  }
  .hero-art figcaption {
    font-size: 0.7rem;
  }
  .section {
    padding-left: 22px;
    padding-right: 22px;
  }
  .section-heading {
    margin-bottom: 24px;
  }
  h2 {
    font-size: 2.5rem;
  }
  .feature-design {
    gap: 22px;
  }
  .feature-copy {
    max-width: none;
  }
  .feature-copy h3 {
    font-size: 2rem;
  }
  .first-steps {
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 35px 0;
  }
  .first-steps li {
    display: grid;
    grid-template-columns: 35px 1fr;
    column-gap: 10px;
    padding-top: 20px;
  }
  .first-steps span {
    grid-row: 1/3;
    padding-top: 6px;
  }
  .first-steps h3 {
    font-size: 1.7rem;
  }
  .first-steps p {
    grid-column: 2;
    margin-bottom: 0;
  }
  .workspace {
    margin-top: 24px;
  }
  .story-grid {
    gap: 35px;
  }
  .texture {
    max-width: 430px;
  }
  .story-grid h2 {
    max-width: 15ch;
  }
  .closing h2 {
    font-size: 2.5rem;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .footer-inner .brand img {
    width: 140px;
    height: 70px;
  }
  .footer-inner > p {
    font-size: 1.2rem;
    padding-top: 10px;
  }
  .footer-inner nav {
    font-size: 0.82rem;
  }
  .prose h1 {
    font-size: 3.2rem;
  }
  .prose > .lead {
    font-size: 1.25rem;
  }
  .inset {
    padding: 28px 22px;
    margin: 45px -22px 0;
  }
  .stage-grid,
  .pattern-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .stage-grid article {
    max-width: 450px;
    margin: auto;
  }
  .stage-grid img {
    margin-bottom: 22px;
  }
  .stage-grid h3 {
    font-size: 1.9rem;
  }
  .stage-grid p {
    font-size: 1rem;
  }
  .refinement {
    padding-top: 45px;
    margin-top: 45px;
  }
  .pattern-grid article {
    max-width: 350px;
    width: 100%;
    margin: auto;
  }
  .guide-links {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
@media (forced-colors: active) {
  .button {
    border: 2px solid ButtonText;
  }
  .fine-rule {
    background: CanvasText;
  }
}
.brand img {
  width: 145px;
  height: 102px;
}
.hero h1 {
  font-size: clamp(3rem, 5.3vw, 4.7rem);
  max-width: 12ch;
}
.hero {
  padding-top: 45px;
  padding-bottom: 55px;
}
@media (max-width: 900px) {
  .site-header .brand img {
    width: 130px;
    height: 91px;
  }
}
@media (max-width: 650px) {
  .site-header .brand img {
    width: 112px;
    height: 78px;
  }
  .hero h1 {
    font-size: clamp(3rem, 13vw, 4.1rem);
  }
}

.stage-comparison[hidden] {
  display: none;
}
.comparison-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: center;
  padding: 25px 0;
}
.stage-choices {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}
.stage-choices button {
  font: inherit;
  font-size: 0.9rem;
  text-align: left;
  padding: 15px;
  border: 1px solid var(--teal);
  border-radius: 3px;
  background: var(--paper);
  color: var(--teal);
  cursor: pointer;
}
.stage-choices button[aria-pressed='true'] {
  background: var(--teal);
  color: var(--paper);
}
#stage-description {
  font-size: 0.95rem;
}
@media (max-width: 650px) {
  .comparison-layout {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
