@font-face {
  font-family: "Jost";
  src: url("./fonts/jost-user-variable.ttf") format("truetype-variations");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Covered By Your Grace";
  src: url("./fonts/covered-by-your-grace-user.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #11110f;
  --paper: #f2f0e9;
  --acid: #e6ff00;
  --line: rgba(17, 17, 15, .2);
  --font-script: "Covered By Your Grace", "Trebuchet MS", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 36px; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Jost", Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
}
body.notice-open { overflow: hidden; }
body::before {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  content: "";
  opacity: .1;
  background-image: radial-gradient(circle, var(--ink) 0 .5px, transparent .75px);
  background-size: 8px 9px;
  mix-blend-mode: multiply;
}
[hidden] { display: none !important; }
::selection { background: var(--acid); color: var(--ink); }
a { color: inherit; }
button { font: inherit; }
p { overflow-wrap: break-word; }
h1, h2, h3 { overflow-wrap: normal; word-break: normal; }

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--acid);
  color: var(--ink);
  transform: translateY(-180%);
}
.skip-link:focus { transform: none; }
.site-shell { transition: filter .3s ease, transform .3s ease; }
.site-shell.is-locked { filter: blur(10px); transform: scale(.99); pointer-events: none; user-select: none; }

.notice-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow-y: auto;
  background: rgba(10, 10, 8, .88);
  backdrop-filter: blur(8px);
  animation: fade-in .3s ease both;
}
.notice {
  position: relative;
  width: min(660px, 100%);
  margin: auto;
  padding: clamp(34px, 6vw, 68px);
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 12px 12px 0 var(--acid);
  transform: rotate(-.45deg);
  animation: notice-in .5s cubic-bezier(.16, 1, .3, 1) both;
}
.notice::before {
  position: absolute;
  top: -18px;
  left: 50%;
  width: 150px;
  height: 34px;
  content: "";
  background: var(--acid);
  transform: translateX(-50%) rotate(2deg);
  clip-path: polygon(2% 6%, 100% 0, 96% 94%, 0 100%);
}
.notice-label { font-size: .7rem; font-weight: 800; letter-spacing: .18em; }
.notice-x { position: absolute; top: 24px; right: 28px; font-size: 2rem; opacity: .25; }
.notice h2 {
  max-width: 520px;
  margin: 26px 0 24px;
  font-size: clamp(2.5rem, 6.5vw, 4.7rem);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.04em;
  text-transform: uppercase;
}
.notice p { max-width: 520px; margin: 0 0 30px; line-height: 1.65; }
.notice button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  border: 2px solid var(--ink);
  padding: 17px 21px;
  cursor: pointer;
  background: var(--acid);
  color: var(--ink);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .2s, color .2s, transform .2s;
}
.notice button:hover, .notice button:focus-visible {
  background: var(--ink);
  color: var(--acid);
  transform: translate(-3px, -3px);
  box-shadow: 5px 5px 0 var(--acid);
  outline: 2px solid var(--paper);
}
.notice small { display: block; margin-top: 20px; font-size: 1.18rem; text-align: center; }

.topbar {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  min-height: 82px;
  padding: 0 clamp(24px, 5vw, 78px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
  color: white;
}
.monogram { flex: 0 0 auto; font-size: 1.65rem; font-weight: 900; letter-spacing: -.05em; text-decoration: none; }
.monogram span { color: var(--acid); }
.topbar nav { display: flex; gap: clamp(20px, 3.4vw, 52px); }
.topbar nav a { position: relative; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; white-space: nowrap; }
.topbar nav a::after { position: absolute; left: 0; bottom: -8px; width: 0; height: 3px; content: ""; background: var(--acid); transition: width .2s ease; }
.topbar nav a:hover::after, .topbar nav a:focus-visible::after { width: 100%; }
.status { flex: 0 0 auto; border: 0; padding: 8px 0; cursor: pointer; background: transparent; color: inherit; font-size: .62rem; font-weight: 800; letter-spacing: .12em; }
.status:focus-visible { outline: 2px solid var(--acid); outline-offset: 6px; }
.status i { display: inline-block; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 12px var(--acid); animation: pulse 2s infinite; }

.hero {
  position: relative;
  min-height: 100svh;
  padding: 145px clamp(24px, 7vw, 112px) 70px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
  color: white;
}
.hero-grid { position: absolute; inset: 0; opacity: .15; background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px); background-size: 68px 68px; mask-image: linear-gradient(90deg, #000, transparent 82%); }
.hero-inner { position: relative; z-index: 1; width: min(1500px, 100%); margin: auto; }
.eyebrow { position: relative; margin: 0 0 clamp(28px, 4vw, 52px); padding-left: 45px; font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow::before { position: absolute; left: 0; top: .72em; width: 31px; height: 2px; content: ""; background: var(--acid); }
.hero h1 {
  max-width: 1400px;
  margin: 0;
  font-size: clamp(4.5rem, 10.4vw, 10.8rem);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.035em;
  text-transform: uppercase;
  cursor: default;
}
.hero h1 .hero-line { display: block; width: max-content; max-width: 100%; padding: 0; white-space: nowrap; }
.hero h1 .hero-line-accent { padding-left: clamp(0px, 7vw, 118px); color: var(--acid); }
.hero-bottom { margin-top: clamp(58px, 8vw, 110px); display: grid; grid-template-columns: 1fr minmax(320px, 530px); align-items: end; gap: 55px; }
.hero-intro { margin: 0; font-size: clamp(1.05rem, 1.5vw, 1.35rem); font-weight: 500; line-height: 1.65; }
.hero-cta { width: fit-content; display: flex; align-items: center; gap: 16px; font-size: .72rem; font-weight: 800; letter-spacing: .13em; text-decoration: none; text-transform: uppercase; }
.hero-cta span { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255,255,255,.5); border-radius: 50%; transition: background .2s, color .2s, transform .2s; }
.hero-cta:hover span { background: var(--acid); color: var(--ink); transform: translateY(5px); }
.hero-notes { margin-top: 50px; display: flex; align-items: center; justify-content: flex-end; gap: clamp(25px, 6vw, 85px); }
.handwritten { display: block; font-size: clamp(1.4rem, 2vw, 1.9rem); line-height: 1.2; }
.hero-notes .handwritten { transform: rotate(-5deg); }
.tape { display: inline-block; padding: 10px 28px; background: var(--acid); color: var(--ink); font-size: .68rem; font-weight: 900; letter-spacing: .11em; white-space: nowrap; box-shadow: 0 4px 7px rgba(0,0,0,.2); clip-path: polygon(1% 7%, 99% 0, 97% 94%, 0 100%); }
.hero-notes .tape { transform: rotate(3deg); }

.ticker { overflow: hidden; border-block: 2px solid var(--ink); padding: 12px 0 10px; background: var(--acid); }
.ticker div { display: flex; width: max-content; animation: ticker 28s linear infinite; }
.ticker span { font-size: .72rem; font-weight: 900; letter-spacing: .08em; white-space: nowrap; }
.section-pad { padding: clamp(100px, 12vw, 175px) clamp(24px, 7vw, 112px); }
.section-index { grid-column: 1 / -1; padding-bottom: 19px; border-bottom: 1px solid var(--line); font-size: .66rem; font-weight: 800; letter-spacing: .15em; }
.section-index.light { border-color: rgba(255,255,255,.22); color: rgba(255,255,255,.62); }

.about { position: relative; display: grid; grid-template-columns: minmax(260px, .72fr) minmax(270px, .62fr) 1.08fr; gap: 80px clamp(35px, 5vw, 80px); overflow: hidden; }
.about-heading { align-self: start; }
.about-heading .handwritten { margin: 0 0 18px 12px; transform: rotate(-4deg); }
.about h2 {
  margin: 0;
  font-size: clamp(4.5rem, 9vw, 9.2rem);
  font-weight: 900;
  line-height: .94;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
.about h2 span { color: transparent; -webkit-text-stroke: 2px var(--ink); }
.about-portrait { min-width: 0; margin: 8px 0 0; align-self: end; }
.portrait-stage { position: relative; height: clamp(480px, 48vw, 660px); display: flex; align-items: flex-end; justify-content: center; overflow: hidden; border: 2px solid var(--ink); background: var(--ink); box-shadow: 10px 10px 0 var(--acid); clip-path: polygon(2% 0, 100% 2%, 98% 100%, 0 97%); }
.portrait-stage::before { position: absolute; z-index: 0; top: -18%; left: 19%; width: 31%; height: 140%; content: ""; background: var(--acid); transform: rotate(8deg) skewX(-7deg); }
.portrait-stage::after { position: absolute; inset: 0; z-index: 1; pointer-events: none; content: ""; box-shadow: inset 0 0 75px 22px rgba(0,0,0,.52); }
.portrait-stage img { position: relative; z-index: 1; width: 100%; height: 100%; display: block; object-fit: contain; object-position: center bottom; transform: scale(1.2); transform-origin: center bottom; filter: contrast(1.16); }
.portrait-stage > span { position: absolute; z-index: 2; right: -38px; bottom: 74px; padding: 8px 42px; background: var(--ink); color: white; font-size: .55rem; font-weight: 800; letter-spacing: .14em; transform: rotate(-90deg); }
.about-portrait figcaption { margin: 20px 0 0 12px; font-size: 1.4rem; line-height: 1.25; transform: rotate(-2deg); }
.about-copy { align-self: start; padding-top: 40px; }
.lead { max-width: 580px; margin: 0 0 42px; font-size: clamp(1.4rem, 2.4vw, 2.15rem); font-weight: 700; line-height: 1.32; letter-spacing: -.015em; }
.role-cloud { display: flex; flex-wrap: wrap; gap: 11px; }
.role-cloud span, .imperfection { border: 1px solid var(--ink); padding: 9px 14px 8px; background: transparent; color: var(--ink); font-size: .83rem; font-weight: 700; line-height: 1.2; transition: background .16s, color .16s, transform .16s; }
.role-cloud span:nth-child(4n), .role-cloud span:hover { background: var(--ink); color: white; transform: rotate(-1deg) translateY(-2px); }
.role-cloud span:nth-child(7n) { background: var(--acid); color: var(--ink); }
.imperfection { cursor: pointer; text-decoration: line-through 2px; }
.imperfection.active { background: var(--acid); text-decoration: none; transform: rotate(2deg); }
.tiny-reveal { width: fit-content; margin: 18px 0 0 auto; font-size: 1.45rem; line-height: 1.25; transform: rotate(-2deg); }
.body-copy { max-width: 650px; margin: 65px 0 0; padding-left: 24px; border-left: 5px solid var(--acid); font-weight: 500; line-height: 1.8; }
.about-tape { position: relative; left: -20px; width: fit-content; grid-column: 1 / -1; margin-top: 5px; transform: rotate(-3deg); }

.projects { background: var(--ink); color: white; }
.projects-head { margin: 70px 0 85px; display: flex; align-items: flex-end; justify-content: space-between; gap: 55px; }
.projects-head h2 {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(4rem, 8.7vw, 8.7rem);
  font-weight: 900;
  line-height: .94;
  letter-spacing: -.04em;
  text-transform: uppercase;
}
.projects-head h2 em { color: var(--acid); line-height: 1; }
.projects-head > p { flex: 0 0 290px; margin: 0; font-size: .78rem; font-weight: 700; line-height: 1.7; letter-spacing: .07em; text-transform: uppercase; }
.project-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid rgba(255,255,255,.28); border-left: 1px solid rgba(255,255,255,.28); }
.project-card { position: relative; min-height: 390px; padding: 40px; overflow: hidden; border-right: 1px solid rgba(255,255,255,.28); border-bottom: 1px solid rgba(255,255,255,.28); transition: color .3s, transform .3s; }
.project-card::before { position: absolute; inset: auto 0 0; height: 0; content: ""; background: var(--acid); transition: height .35s cubic-bezier(.16,1,.3,1); }
.project-card:hover { color: var(--ink); transform: translate(-4px, -4px); box-shadow: 7px 7px 0 rgba(230,255,0,.22); }
.project-card:hover::before { height: 100%; }
.project-card > * { position: relative; z-index: 1; }
.project-number { font-size: .7rem; font-weight: 800; color: var(--acid); }
.project-card:hover .project-number { color: var(--ink); }
.project-kicker { margin: 50px 0 16px; font-size: .62rem; font-weight: 800; letter-spacing: .14em; opacity: .65; }
.project-card h3 { margin: 0 0 26px; font-size: clamp(2.7rem, 5vw, 5.1rem); font-weight: 900; line-height: 1; letter-spacing: -.035em; }
.project-card > p:last-of-type { max-width: 430px; margin: 0; padding-right: 50px; line-height: 1.65; opacity: .8; }
.project-stamp { position: absolute; right: 30px; bottom: 28px; border: 2px solid currentColor; border-radius: 50%; padding: 12px 10px; font-size: 1.15rem; line-height: 1; transform: rotate(-8deg); opacity: .78; }

.recipe { display: grid; grid-template-columns: .95fr 1fr; gap: 80px 9vw; }
.recipe-title { align-self: start; }
.recipe-title .handwritten { margin: 0 0 25px 35%; transform: rotate(-4deg); }
.recipe h2 {
  margin: 0;
  font-size: clamp(3.7rem, 7.3vw, 7.5rem);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.04em;
  text-transform: uppercase;
}
.recipe h2 mark { display: inline; padding: 0 .08em .03em; background: var(--acid); color: var(--ink); box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.recipe-title > p:last-child { max-width: 430px; margin: 50px 0 0; font-size: .75rem; line-height: 1.65; opacity: .66; }
.recipe-card { position: relative; align-self: start; margin-top: 15px; border: 2px solid var(--ink); padding: clamp(28px, 4vw, 52px); background: #ebe8df; box-shadow: 12px 12px 0 var(--ink); transform: rotate(.6deg); }
.recipe-card::before { position: absolute; top: -23px; left: 35%; width: 155px; height: 37px; content: ""; background: rgba(230,255,0,.86); transform: rotate(-3deg); }
.recipe-row { display: grid; grid-template-columns: 70px 1fr 1fr; align-items: baseline; gap: 10px; padding: 20px 0; border-bottom: 1px dashed rgba(17,17,15,.38); }
.recipe-row strong { font-size: 3.15rem; font-weight: 900; line-height: 1.1; }
.recipe-row span { font-size: .69rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.recipe-row b { font-size: 1.45rem; font-weight: 800; text-align: right; }
.plus { margin: 18px 0 5px; font-size: 3rem; line-height: 1; text-align: center; transform: rotate(7deg); }
.my-twist { position: relative; width: 100%; border: 0; padding: 21px 58px 21px 21px; cursor: pointer; background: var(--acid); color: var(--ink); font-weight: 700; line-height: 1.45; text-align: left; }
.my-twist span { display: block; margin-bottom: 6px; font-size: .58rem; font-weight: 900; letter-spacing: .16em; }
.my-twist i { position: absolute; right: 20px; top: 50%; font-size: 1.8rem; font-style: normal; transform: translateY(-50%); }
.recipe-reveal { margin: 0; padding: 20px; border: 1px solid var(--ink); border-top: 0; font-size: 1.35rem; line-height: 1.3; }
.recipe-end { margin: 34px 0 0; font-size: .76rem; font-weight: 800; line-height: 1.55; text-align: center; text-transform: uppercase; }
.recipe-print { width: 100%; margin-top: 22px; border: 2px solid var(--ink); padding: 13px 16px; cursor: pointer; background: transparent; color: var(--ink); font-size: .66rem; font-weight: 900; letter-spacing: .12em; transition: background .18s, color .18s, transform .18s; }
.recipe-print:hover, .recipe-print:focus-visible { background: var(--ink); color: var(--acid); transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--acid); }

.contact { background: var(--ink); color: white; }
.contact h2 {
  max-width: 1250px;
  margin: 75px 0 100px;
  font-size: clamp(4.2rem, 9vw, 9rem);
  font-weight: 900;
  line-height: .96;
  letter-spacing: -.04em;
  text-transform: uppercase;
}
.contact h2 span { color: var(--acid); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.45fr 1fr; gap: 55px; align-items: end; }
.contact address { font-size: 1.05rem; font-style: normal; font-weight: 500; line-height: 1.75; }
.contact address strong { font-size: 1.3rem; font-weight: 800; }
.contact-links { min-width: 0; display: grid; gap: 8px; }
.contact-links p { margin: 0 0 16px; font-size: .62rem; font-weight: 900; letter-spacing: .15em; color: var(--acid); }
.contact-links a, .contact-mail { width: fit-content; max-width: 100%; font-size: clamp(1.1rem, 2.1vw, 1.9rem); font-weight: 700; line-height: 1.35; overflow-wrap: anywhere; text-decoration-thickness: 1px; text-underline-offset: 7px; }
.contact-mail { user-select: all; }
.contact-mail b { color: var(--acid); font-weight: 900; }
.contact-links a:hover { color: var(--acid); }
.legal-note { max-width: 320px; font-size: .74rem; line-height: 1.65; color: rgba(255,255,255,.62); }
.legal-note a { color: white; }

footer { padding: 27px clamp(24px, 7vw, 112px); display: flex; align-items: center; justify-content: space-between; gap: 22px; border-top: 1px solid rgba(255,255,255,.2); background: var(--ink); color: rgba(255,255,255,.6); font-size: .62rem; font-weight: 700; letter-spacing: .11em; }
footer button { border: 0; cursor: pointer; background: transparent; color: rgba(255,255,255,.2); font-size: .56rem; }
footer button:hover { color: var(--acid); }
footer a { text-decoration: none; }
.egg-note { position: fixed; z-index: 900; right: 24px; bottom: 24px; width: min(340px, calc(100vw - 48px)); border: 2px solid var(--ink); padding: 20px 23px; cursor: pointer; background: var(--acid); color: var(--ink); font-size: 1.5rem; line-height: 1.25; box-shadow: 7px 7px 0 white; transform: rotate(-2deg); animation: egg-in .4s cubic-bezier(.16,1,.3,1); }

.error-page { min-height: 100svh; display: grid; place-items: center; padding: clamp(28px, 7vw, 90px); overflow: hidden; background: var(--ink); color: white; }
.error-page::before { opacity: .14; background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px); background-size: 58px 58px; mix-blend-mode: normal; }
.error-shell { position: relative; z-index: 1; width: min(1050px, 100%); }
.error-code { margin: 0 0 28px; color: var(--acid); font-size: .72rem; font-weight: 900; letter-spacing: .18em; }
.error-shell h1 { max-width: 980px; margin: 0; font-size: clamp(4rem, 11vw, 9rem); font-weight: 900; line-height: .9; letter-spacing: -.045em; text-transform: uppercase; }
.error-shell h1 mark { padding: 0 .08em; background: var(--acid); color: var(--ink); }
.error-copy { max-width: 650px; margin: 45px 0 34px; font-size: clamp(1.1rem, 2vw, 1.45rem); line-height: 1.65; }
.error-home { display: inline-flex; border: 2px solid var(--acid); padding: 14px 18px; color: var(--acid); font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-decoration: none; }
.error-home:hover, .error-home:focus-visible { background: var(--acid); color: var(--ink); }
.error-aside { margin: 45px 0 0; color: var(--acid); font-family: var(--font-script); font-size: clamp(1.4rem, 3vw, 2rem); transform: rotate(-2deg); }

.handwritten,
.notice small,
.about-portrait figcaption,
.tiny-reveal,
.projects-head h2 em,
.project-stamp,
.plus,
.recipe-reveal,
.contact h2 span,
.egg-note {
  font-family: var(--font-script) !important;
  font-style: normal !important;
  font-weight: 400 !important;
  font-synthesis: none;
  letter-spacing: .01em;
  text-transform: none !important;
}

@keyframes fade-in { from { opacity: 0; } }
@keyframes notice-in { from { opacity: 0; transform: translateY(30px) rotate(-1.5deg) scale(.97); } }
@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes pulse { 50% { opacity: .35; transform: scale(.7); } }
@keyframes egg-in { from { opacity: 0; transform: translateY(40px) rotate(2deg); } }

@media (max-width: 980px) {
  body { font-size: 17px; }
  .topbar { min-height: 72px; padding-inline: 24px; }
  .topbar nav { position: absolute; top: 72px; left: 0; width: 100%; padding: 14px 24px; overflow-x: auto; border-bottom: 1px solid rgba(255,255,255,.18); background: rgba(17,17,15,.94); }
  .status { display: none; }
  .hero { min-height: auto; padding-top: 175px; padding-bottom: 90px; }
  .hero h1 { font-size: clamp(4.2rem, 12.8vw, 8.2rem); line-height: .96; }
  .hero-bottom { grid-template-columns: 1fr; gap: 45px; }
  .hero-intro { max-width: 600px; }
  .hero-notes { justify-content: space-between; }
  .about { grid-template-columns: 1fr minmax(280px, .72fr); }
  .about-copy { grid-column: 1 / -1; padding-top: 0; }
  .portrait-stage { height: min(640px, 72vw); }
  .about-tape { left: auto; }
  .recipe { grid-template-columns: 1fr; }
  .projects-head { align-items: flex-start; flex-direction: column; }
  .projects-head > p { flex-basis: auto; }
  .contact-grid { grid-template-columns: 1fr 1.2fr; }
  .legal-note { grid-column: 1 / -1; margin-top: 25px; }
}

@media (max-width: 660px) {
  body { font-size: 16px; }
  .notice-backdrop { padding: 16px; }
  .notice { padding: 38px 28px 30px; box-shadow: 7px 7px 0 var(--acid); }
  .notice h2 { font-size: clamp(2.3rem, 12vw, 3.3rem); line-height: 1; }
  .hero { padding-inline: 22px; }
  .eyebrow { line-height: 1.45; }
  .hero h1 { font-size: clamp(3rem, 14.5vw, 5rem); line-height: 1; letter-spacing: -.025em; }
  .hero h1 .hero-line-accent { padding-left: 0; }
  .hero-bottom { margin-top: 65px; }
  .hero-notes { margin-top: 55px; align-items: flex-start; flex-direction: column; }
  .hero-notes .tape { max-width: 100%; white-space: normal; line-height: 1.35; }
  .section-pad { padding-block: 95px; }
  .about { grid-template-columns: 1fr; gap: 60px; }
  .about-portrait { width: min(430px, 92%); margin-inline: auto; }
  .portrait-stage { height: min(620px, 128vw); }
  .about-copy { grid-column: auto; }
  .about h2, .projects-head h2, .recipe h2, .contact h2 { line-height: 1; letter-spacing: -.035em; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card { min-height: 370px; padding: 30px; }
  .project-card > p:last-of-type { padding-right: 15px; }
  .recipe-title .handwritten { margin-left: 10%; }
  .recipe-row { grid-template-columns: 58px 1fr 1fr; }
  .recipe-card { box-shadow: 7px 7px 0 var(--ink); transform: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 55px; }
  .legal-note { grid-column: auto; margin-top: 0; }
  footer { align-items: flex-start; flex-direction: column; }
  footer button { order: 3; }
}

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

@media print {
  @page { margin: 18mm; }
  body { background: white !important; color: black !important; font-size: 12pt; }
  body::before, .notice-backdrop, .topbar, .hero, .ticker, .about, .projects, .contact, footer, .egg-note, .section-index, .recipe-title .handwritten, .recipe-print { display: none !important; }
  .site-shell, .site-shell.is-locked { filter: none !important; transform: none !important; pointer-events: auto; }
  .recipe { display: grid !important; grid-template-columns: .85fr 1fr; gap: 12mm; padding: 0 !important; }
  .recipe h2 { font-size: 34pt; }
  .recipe-card { margin: 0; box-shadow: none; transform: none; break-inside: avoid; }
  .my-twist { border: 1px solid black; background: white; }
}
