:root {
  --paper: #f5f3ed;
  --paper-soft: #ebe9e1;
  --ink: #1b211d;
  --ink-soft: #4f5952;
  --forest: #173d2d;
  --forest-deep: #0d2b20;
  --moss: #8c9b82;
  --cedar: #a35937;
  --fog: #cbd4d2;
  --line: rgba(27, 33, 29, 0.18);
  --white: #fff;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 90rem;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --section: clamp(5rem, 10vw, 9rem);
  --ease: cubic-bezier(.2, .75, .25, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .22em; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
p, ul, ol { margin-top: 0; }
h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.025em;
}
h1 { font-size: clamp(3.2rem, 8vw, 8.2rem); }
h2 { font-size: clamp(2.4rem, 5vw, 5rem); }
h3 { font-size: clamp(1.65rem, 2.5vw, 2.6rem); }
h4 { font-size: 1.25rem; }
::selection { background: var(--forest); color: var(--white); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: .75rem;
  left: .75rem;
  padding: .75rem 1rem;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
  transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(100%, var(--max)); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section); }
.section--tight { padding-block: clamp(3.5rem, 7vw, 6.5rem); }
.section--dark { background: var(--forest-deep); color: var(--paper); }
.section--soft { background: var(--paper-soft); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1.35rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .17em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 2.5rem; height: 1px; background: currentColor; opacity: .65; }
.lede { max-width: 46rem; color: var(--ink-soft); font-size: clamp(1.15rem, 2vw, 1.5rem); line-height: 1.55; }
.section--dark .lede { color: rgba(245, 243, 237, .72); }
.measure { max-width: 43rem; }
.fine-print { color: var(--ink-soft); font-size: .82rem; line-height: 1.55; }
.disclosure {
  padding: 1rem 1.15rem;
  border-left: 2px solid var(--cedar);
  background: rgba(163, 89, 55, .08);
  color: var(--ink-soft);
  font-size: .82rem;
}

.site-header {
  position: relative;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 243, 237, .94);
  backdrop-filter: blur(16px);
}
.home .site-header {
  position: absolute;
  inset: 0 0 auto;
  border-color: rgba(255,255,255,.32);
  background: linear-gradient(to bottom, rgba(8,18,14,.62), transparent);
  color: var(--white);
  backdrop-filter: none;
}
.nav-shell {
  display: flex;
  min-height: 5.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
}
.brand-mark {
  display: grid;
  width: 2rem;
  height: 2.9rem;
  place-items: center;
  border-right: 1px solid currentColor;
  font-family: var(--serif);
  font-size: 1.65rem;
  line-height: 1;
}
.brand-name {
  display: block;
  font-size: .83rem;
  font-weight: 650;
  letter-spacing: .27em;
  line-height: 1.25;
  text-transform: uppercase;
}
.brand-place { display: block; margin-top: .22rem; font-size: .62rem; letter-spacing: .16em; opacity: .7; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: clamp(1.1rem, 2.2vw, 2.4rem); }
.nav-links a { position: relative; font-size: .72rem; font-weight: 650; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; }
.nav-links a:not(.button)::after { content: ""; position: absolute; right: 0; bottom: -.45rem; left: 0; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .3s var(--ease); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.menu-button { display: none; padding: .6rem; border: 0; background: transparent; }
.menu-button span { display: block; width: 1.7rem; height: 1px; margin: .4rem 0; background: currentColor; transition: transform .25s, opacity .25s; }

.button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .9rem 1.25rem;
  border: 1px solid var(--forest);
  background: var(--forest);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .25s, color .25s, border-color .25s, transform .25s;
}
.button:hover { background: var(--forest-deep); transform: translateY(-2px); }
.button--light { border-color: var(--paper); background: var(--paper); color: var(--forest-deep); }
.button--light:hover { border-color: var(--white); background: var(--white); }
.button--ghost { border-color: currentColor; background: transparent; color: inherit; }
.button--ghost:hover { background: currentColor; color: var(--paper); }
.home .nav-links .button { border-color: rgba(255,255,255,.75); background: rgba(255,255,255,.08); }
.home .nav-links .button:hover { background: var(--white); color: var(--forest-deep); }

.hero {
  position: relative;
  min-height: min(58rem, 100svh);
  overflow: hidden;
  background: var(--forest-deep);
  color: var(--white);
}
.hero-slides, .hero-slide, .hero-slide picture, .hero-slide img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-slide { opacity: 0; transition: opacity 1.2s var(--ease); }
.hero-slide.is-active { opacity: 1; }
.hero-slide img { object-fit: cover; }
.hero-slide:nth-child(1) img { object-position: 54% center; }
.hero-slide:nth-child(2) img { object-position: 52% center; }
.hero-slide:nth-child(3) img { object-position: 52% center; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,17,13,.8) 0%, rgba(7,17,13,.42) 38%, rgba(7,17,13,.05) 72%), linear-gradient(0deg, rgba(7,17,13,.36), transparent 50%); }
.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: min(58rem, 100svh);
  align-items: flex-end;
  padding-top: 8rem;
  padding-bottom: clamp(6rem, 11vh, 9rem);
}
.hero-copy { max-width: 54rem; }
.hero h1 { max-width: 52rem; font-size: clamp(3.4rem, 8vw, 8.4rem); text-wrap: balance; }
.hero-copy p { max-width: 38rem; margin: 1.6rem 0 2rem; color: rgba(255,255,255,.82); font-size: clamp(1.05rem, 1.6vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; }
.hero-controls {
  position: absolute;
  z-index: 4;
  right: var(--gutter);
  bottom: 2.2rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.hero-dot, .hero-pause {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  place-items: center;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 50%;
  background: rgba(0,0,0,.18);
  color: var(--white);
  cursor: pointer;
}
.hero-dot::before { content: ""; width: .36rem; height: .36rem; border-radius: 50%; background: currentColor; opacity: .45; }
.hero-dot[aria-current="true"]::before { width: .62rem; height: .62rem; opacity: 1; }
.hero-pause { font-size: .8rem; }

.intro-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(18rem, .6fr); gap: clamp(3rem, 8vw, 8rem); align-items: end; }
.intro-grid h2 { max-width: 58rem; }
.intro-aside { padding-top: 1.5rem; border-top: 1px solid var(--line); color: var(--ink-soft); }
.text-link { display: inline-flex; align-items: center; gap: .55rem; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; }
.text-link::after { content: "→"; transition: transform .25s; }
.text-link:hover::after { transform: translateX(.3rem); }

.service-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1rem; margin-top: clamp(3rem, 6vw, 5.5rem); }
.service-card { position: relative; min-height: 34rem; overflow: hidden; color: var(--white); text-decoration: none; }
.service-card:nth-child(1), .service-card:nth-child(4) { grid-column: span 7; }
.service-card:nth-child(2), .service-card:nth-child(3) { grid-column: span 5; }
.service-card img { position: absolute; inset: 0; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.service-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,16,12,.82), rgba(6,16,12,.04) 65%); }
.service-card:hover img { transform: scale(1.025); }
.service-card-content { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; padding: clamp(1.4rem, 3vw, 2.5rem); }
.service-card .number { display: block; margin-bottom: .5rem; font-size: .68rem; letter-spacing: .16em; opacity: .72; }
.service-card h3 { max-width: 28rem; font-size: clamp(2rem, 3vw, 3.6rem); }
.service-card p { max-width: 32rem; margin: .7rem 0 0; color: rgba(255,255,255,.75); }

.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 46rem; }
.split-image { min-height: 30rem; }
.split-image img { height: 100%; object-fit: cover; }
.split-copy { display: flex; align-items: center; padding: clamp(3rem, 7vw, 8rem); }
.split-copy-inner { max-width: 40rem; }
.split-copy p { margin-block: 1.4rem 2rem; color: rgba(245,243,237,.75); font-size: 1.12rem; }

.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 4rem; background: rgba(245,243,237,.2); }
.principle { min-height: 19rem; padding: clamp(1.5rem, 3vw, 2.6rem); background: var(--forest-deep); }
.principle strong { display: block; margin-bottom: 4rem; color: var(--moss); font-size: .68rem; letter-spacing: .15em; }
.principle h3 { font-size: 2rem; }
.principle p { margin-top: 1rem; color: rgba(245,243,237,.66); }

.cta-band { position: relative; overflow: hidden; padding-block: clamp(5rem, 10vw, 10rem); background: var(--fog); }
.cta-band::before, .topo::before {
  content: "";
  position: absolute;
  inset: -20%;
  opacity: .2;
  background: repeating-radial-gradient(ellipse at 75% 30%, transparent 0 24px, var(--forest) 25px 26px, transparent 27px 46px);
  transform: rotate(-8deg);
  pointer-events: none;
}
.cta-content { position: relative; display: grid; grid-template-columns: 1.3fr .7fr; gap: 3rem; align-items: end; }
.cta-content h2 { max-width: 58rem; }
.cta-action { justify-self: end; }

.page-hero { position: relative; overflow: hidden; padding-block: clamp(6rem, 11vw, 11rem) clamp(5rem, 9vw, 8rem); }
.page-hero::after { content: ""; position: absolute; top: -10rem; right: -12rem; width: 38rem; height: 38rem; border: 1px solid var(--line); border-radius: 48% 52% 45% 55%; box-shadow: 0 0 0 3rem rgba(27,33,29,.025), 0 0 0 7rem rgba(27,33,29,.025); transform: rotate(17deg); }
.page-hero h1 { position: relative; z-index: 1; max-width: 73rem; font-size: clamp(3.5rem, 8vw, 8rem); }
.page-hero .lede { position: relative; z-index: 1; margin-top: 2rem; }
.page-hero-meta { display: flex; flex-wrap: wrap; gap: 1.25rem 2.5rem; margin-top: 2.5rem; font-size: .72rem; font-weight: 650; letter-spacing: .1em; text-transform: uppercase; }

.stack-list { margin: 3.5rem 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.stack-item { display: grid; grid-template-columns: 5rem minmax(0, .8fr) minmax(18rem, 1.2fr); gap: 2rem; padding-block: 2.6rem; border-bottom: 1px solid var(--line); }
.stack-number { color: var(--cedar); font-family: var(--serif); font-size: 1.5rem; }
.stack-item h3 { font-size: clamp(1.7rem, 3vw, 2.7rem); }
.stack-item p { margin: 0; color: var(--ink-soft); }

.process-list { counter-reset: process; margin: 4rem 0 0; padding: 0; list-style: none; }
.process-step { counter-increment: process; display: grid; grid-template-columns: 6rem minmax(0, .8fr) minmax(18rem, 1.2fr); gap: 2rem; padding: 3rem 0; border-top: 1px solid rgba(245,243,237,.24); }
.process-step::before { content: "0" counter(process); color: var(--moss); font-family: var(--serif); font-size: 2rem; }
.process-step h3 { font-size: clamp(1.8rem, 3vw, 3rem); }
.process-step p { color: rgba(245,243,237,.7); }
.process-step .deliverable { margin-top: 1rem; color: var(--paper); font-size: .75rem; font-weight: 650; letter-spacing: .1em; text-transform: uppercase; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3.5rem; }
.feature-card { padding: clamp(1.5rem, 3vw, 2.6rem); border: 1px solid var(--line); background: rgba(255,255,255,.2); }
.feature-card h3 { font-size: 1.8rem; }
.feature-card p { margin-top: 1rem; color: var(--ink-soft); }

.image-break { position: relative; min-height: clamp(28rem, 65vw, 52rem); }
.image-break img { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.image-break::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,17,13,.4), transparent 55%); }
.image-caption { position: absolute; z-index: 2; right: var(--gutter); bottom: 1.4rem; color: rgba(255,255,255,.8); font-size: .72rem; }

.about-grid { display: grid; grid-template-columns: minmax(0, .75fr) minmax(0, 1.25fr); gap: clamp(3rem, 9vw, 10rem); }
.about-facts { padding: 0; list-style: none; }
.about-facts li { padding: 1rem 0; border-bottom: 1px solid var(--line); }
.about-facts strong { display: block; margin-bottom: .2rem; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.about-story p { font-family: var(--serif); font-size: clamp(1.35rem, 2.2vw, 2rem); line-height: 1.5; }
.about-story p + p { margin-top: 1.5rem; }

.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 3.5rem; }
.article-card { display: flex; min-height: 24rem; flex-direction: column; padding: 1.6rem; border: 1px solid var(--line); background: rgba(255,255,255,.22); text-decoration: none; transition: background .25s, transform .25s; }
.article-card:hover { background: var(--white); transform: translateY(-3px); }
.article-card .tag { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.article-card h3 { margin-top: auto; font-size: clamp(1.7rem, 2.5vw, 2.6rem); }
.article-card p { margin-top: 1rem; color: var(--ink-soft); }
.article-card .status { margin-top: 1.5rem; color: var(--cedar); font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }

.faq-list { max-width: 67rem; margin: 3rem auto 0; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { display: grid; width: 100%; grid-template-columns: 1fr auto; gap: 1.5rem; padding: 1.7rem 0; border: 0; background: transparent; text-align: left; cursor: pointer; }
.faq-question span:first-child { font-family: var(--serif); font-size: clamp(1.25rem, 2vw, 1.7rem); }
.faq-icon { font-size: 1.4rem; transition: transform .25s; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.faq-answer > div { overflow: hidden; }
.faq-answer p { max-width: 52rem; padding-bottom: 1.7rem; color: var(--ink-soft); }
.faq-question[aria-expanded="true"] + .faq-answer { grid-template-rows: 1fr; }

.contact-layout { display: grid; grid-template-columns: minmax(17rem, .65fr) minmax(0, 1.35fr); gap: clamp(3rem, 8vw, 8rem); }
.contact-aside h2 { font-size: clamp(2.2rem, 4vw, 4rem); }
.contact-aside p { margin-top: 1.4rem; color: var(--ink-soft); }
.contact-detail { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-field { display: grid; gap: .45rem; }
.form-field--full { grid-column: 1 / -1; }
.form-field label, .form-legend { font-size: .68rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  padding: .8rem 0;
  outline: 0;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--cedar); box-shadow: 0 2px 0 var(--cedar); }
.form-field textarea { min-height: 10rem; resize: vertical; }
.form-actions { display: flex; grid-column: 1 / -1; flex-wrap: wrap; align-items: center; gap: 1rem; margin-top: 1rem; }
.form-status { min-height: 1.5rem; color: var(--ink-soft); font-size: .88rem; }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.legal { max-width: 54rem; }
.legal h2 { margin-top: 3.5rem; font-size: 2.2rem; }
.legal h3 { margin-top: 2.5rem; font-size: 1.6rem; }
.legal p, .legal li { color: var(--ink-soft); }

.site-footer { padding-block: 4rem 2rem; background: var(--ink); color: var(--paper); }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 3rem; }
.footer-title { max-width: 25rem; font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.8rem); line-height: 1.08; }
.footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: .65rem 1.5rem; align-content: start; }
.footer-nav a { color: rgba(245,243,237,.74); font-size: .82rem; text-decoration: none; }
.footer-nav a:hover { color: var(--white); }
.footer-contact { justify-self: end; max-width: 21rem; }
.footer-contact p { color: rgba(245,243,237,.7); }
.footer-scope { max-width: 68rem; margin: 3.5rem 0 0; padding-top: 1.5rem; border-top: 1px solid rgba(245,243,237,.18); color: rgba(245,243,237,.68); font-size: .82rem; line-height: 1.65; }
.footer-bottom { display: flex; margin-top: 4rem; padding-top: 1.5rem; border-top: 1px solid rgba(245,243,237,.18); justify-content: space-between; gap: 1.5rem; color: rgba(245,243,237,.52); font-size: .72rem; }
.footer-scope + .footer-bottom { margin-top: 1.5rem; }

.reveal { opacity: 0; transform: translateY(1.4rem); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .menu-button { display: block; }
  .nav-links {
    position: fixed;
    inset: 0 0 auto;
    display: flex;
    min-height: 100svh;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    padding: 7rem var(--gutter) 3rem;
    background: var(--forest-deep);
    color: var(--paper);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-1rem);
    transition: opacity .25s, transform .25s;
  }
  .nav-links.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .nav-links a { padding: .7rem 0; font-family: var(--serif); font-size: clamp(2rem, 8vw, 3.3rem); font-weight: 400; letter-spacing: -.02em; text-transform: none; }
  .nav-links .button { margin-top: 1rem; font-family: var(--sans); font-size: .75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
  .menu-button { position: relative; z-index: 2; }
  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(.45rem) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-.35rem) rotate(-45deg); }
  .intro-grid, .cta-content, .about-grid, .contact-layout { grid-template-columns: 1fr; }
  .cta-action, .footer-contact { justify-self: start; }
  .split { grid-template-columns: 1fr; }
  .split-copy { min-height: 32rem; }
  .principles, .feature-grid, .article-grid { grid-template-columns: 1fr 1fr; }
  .stack-item, .process-step { grid-template-columns: 4rem 1fr; }
  .stack-item p, .process-step > div:last-child { grid-column: 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-title { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .hero { min-height: 49rem; }
  .hero-content { min-height: 49rem; }
  .hero h1 { font-size: clamp(2.85rem, 14vw, 4.25rem); overflow-wrap: anywhere; }
  .hero .eyebrow { display: flex; max-width: 100%; letter-spacing: .11em; line-height: 1.45; white-space: normal; }
  .hero::after { background: linear-gradient(90deg, rgba(7,17,13,.72), rgba(7,17,13,.2)), linear-gradient(0deg, rgba(7,17,13,.58), transparent 65%); }
  .hero-slide img { object-position: 60% center; }
  .hero-controls { right: auto; bottom: 1.5rem; left: var(--gutter); }
  .brand-place { display: none; }
  .service-grid { display: block; }
  .service-card { display: block; min-height: 28rem; margin-bottom: 1rem; }
  .principles, .feature-grid, .article-grid, .footer-grid { grid-template-columns: 1fr; }
  .principle { min-height: auto; }
  .principle strong { margin-bottom: 2.5rem; }
  .stack-item, .process-step { grid-template-columns: 2.6rem 1fr; gap: 1rem; }
  .contact-form { grid-template-columns: 1fr; }
  .form-field--full, .form-actions { grid-column: 1; }
  .footer-title { grid-column: 1; }
  .footer-contact { justify-self: start; }
  .footer-bottom { flex-direction: column; }
  .page-hero::after { opacity: .45; }
}

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

@media print {
  .site-header, .site-footer, .hero-controls, .button { display: none !important; }
  body { background: white; color: black; }
  .section, .page-hero { padding-block: 2rem; }
}
