@font-face {
  font-family: "Bricolage";
  src: url("../fonts/bricolage-variable.woff2") format("woff2");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #11110f;
  --paper: #f7f1e8;
  --white: #fffdf8;
  --coral: #ff5147;
  --blue: #173bd6;
  --yellow: #fff36b;
  --line: rgba(17, 17, 15, 0.2);
  --display: "Bricolage", Arial, sans-serif;
  --body: "Inter", Arial, sans-serif;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 520;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button, input, textarea, select { font: inherit; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button { color: inherit; }
::selection { background: var(--blue); color: white; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }
section[id] { scroll-margin-top: 110px; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--yellow);
  border: 2px solid var(--ink);
  transform: translateY(-160%);
}
.skip-link:focus { transform: none; }

.preview-bar {
  position: fixed;
  z-index: 90;
  inset: 0 0 auto;
  min-height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 8px 16px;
  background: var(--yellow);
  border-bottom: 2px solid var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}
.preview-bar a { text-decoration-thickness: 2px; }
.preview-bar + .site-header { top: 42px; }

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 20px clamp(20px, 4vw, 64px);
  background: rgba(247, 241, 232, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.wordmark,
.footer__mark {
  font-family: var(--display);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 790;
  line-height: 1;
  letter-spacing: -0.025em;
  font-kerning: normal;
  font-optical-sizing: auto;
  text-decoration: none;
}
.wordmark sup,
.footer__mark sup { color: var(--coral); font-size: 0.42em; vertical-align: super; }

.main-nav { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 32px); }
.main-nav a {
  font-size: 0.78rem;
  font-weight: 790;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-bottom: 2px solid transparent;
  transition: border-color .18s var(--ease), color .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease);
}
.main-nav a:not(.nav-cta):hover,
.main-nav a:not(.nav-cta)[aria-current="location"] { border-bottom-color: currentColor; }
.main-nav .nav-cta {
  padding: 11px 15px;
  background: var(--blue);
  color: white;
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}
.main-nav .nav-cta:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.main-nav .nav-cta[aria-current="location"] { box-shadow: 0 0 0 3px var(--yellow), 4px 4px 0 var(--ink); }
.nav-toggle { display: none; min-width: 44px; min-height: 44px; padding: 10px; border: 0; background: transparent; font-size: 0.78rem; font-weight: 800; text-transform: uppercase; }

.eyebrow {
  margin: 0 0 22px;
  font-size: clamp(0.72rem, 0.9vw, 0.88rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: min(940px, 100svh);
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  align-items: center;
  gap: clamp(20px, 3vw, 52px);
  padding: clamp(44px, 6vw, 76px) clamp(20px, 4vw, 64px) 64px;
  border-bottom: 2px solid var(--ink);
}

.hero__copy { position: relative; z-index: 2; padding-top: 20px; }
.hero h1 {
  max-width: 8.6ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.4rem, 8.4vw, 9.8rem);
  font-weight: 790;
  line-height: 0.84;
  letter-spacing: -0.02em;
  font-kerning: normal;
  font-optical-sizing: auto;
  text-wrap: balance;
}
.hero__accent {
  width: max-content;
  max-width: 100%;
  margin: 16px 0 0;
  padding: 0 4px 5px;
  border-bottom: clamp(5px, 0.65vw, 10px) solid var(--blue);
  font-family: var(--body);
  font-size: clamp(2.5rem, 5.2vw, 6rem);
  font-weight: 650;
  font-style: normal;
  line-height: 0.9;
}
.hero__intro { max-width: 25ch; margin: clamp(32px, 5vw, 68px) 0 0; font-size: clamp(1.05rem, 1.7vw, 1.5rem); line-height: 1.1; font-weight: 720; }
.hero__actions { display: flex; align-items: center; gap: 22px; margin-top: 24px; }

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 17px;
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.035em;
  text-decoration: none;
  text-transform: uppercase;
}
.button { border: 2px solid var(--ink); box-shadow: 4px 4px 0 var(--ink); transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.button:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.button--ink { background: var(--ink); color: white; }
.button--light { background: var(--white); color: var(--ink); }
.button--yellow { background: var(--yellow); color: var(--ink); }
.text-link { padding-inline: 0; border-bottom: 3px solid currentColor; }

.hero__visual {
  position: relative;
  margin: 0;
  align-self: center;
  clip-path: polygon(18% 0, 100% 4%, 92% 82%, 52% 100%, 0 74%, 7% 18%);
  background: var(--ink);
}
.hero__visual img { width: 100%; height: clamp(590px, 68vh, 760px); object-fit: cover; filter: contrast(1.08); }
.hero__note {
  position: absolute;
  right: clamp(18px, 4vw, 62px);
  bottom: 24px;
  max-width: 17ch;
  margin: 0;
  font-size: 0.92rem;
  font-weight: 650;
  font-style: normal;
  transform: rotate(-3deg);
}

.manifesto {
  display: grid;
  grid-template-columns: 0.65fr 1.25fr 0.8fr;
  align-items: end;
  gap: 28px;
  padding: clamp(56px, 8vw, 120px) clamp(20px, 7vw, 110px);
  background: var(--white);
  border-bottom: 2px solid var(--ink);
}
.manifesto .eyebrow { align-self: start; }
.manifesto h2,
.service-overview__intro h2,
.section-intro h2,
.process-section h2,
.about-section h2,
.faq-section h2,
.contact-section h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.4rem, 7vw, 8.2rem);
  font-weight: 790;
  line-height: 0.86;
  letter-spacing: -0.02em;
  font-kerning: normal;
  font-optical-sizing: auto;
  text-wrap: balance;
}
.manifesto > p:last-child { max-width: 28ch; margin: 0; font-family: var(--body); font-size: clamp(1.05rem, 1.55vw, 1.35rem); font-weight: 650; font-style: normal; line-height: 1.25; }

.service-overview { background: var(--white); border-bottom: 2px solid var(--ink); }
.service-overview__intro { display: grid; grid-template-columns: 0.65fr 1.25fr 0.8fr; align-items: end; gap: 28px; padding: clamp(56px, 8vw, 120px) clamp(20px, 7vw, 110px); }
.service-overview__intro .eyebrow { align-self: start; }
.service-overview__intro > p:last-child { max-width: 28ch; margin: 0; font-size: clamp(1.05rem, 1.55vw, 1.35rem); font-weight: 650; line-height: 1.25; }
.service-picker { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 2px solid var(--ink); }
.service-choice { position: relative; min-width: 0; min-height: 270px; display: flex; flex-direction: column; padding: clamp(22px, 3vw, 40px); border-right: 2px solid var(--ink); text-decoration: none; overflow: hidden; transition: filter .2s var(--ease); }
.service-choice:last-child { border-right: 0; }
.service-choice--coral { background: var(--coral); }
.service-choice--blue { background: var(--blue); color: white; }
.service-choice--yellow { background: var(--yellow); }
.service-choice__number { font-size: .72rem; font-weight: 820; letter-spacing: .08em; }
.service-choice strong { display: block; margin-top: 26px; font-family: var(--display); font-size: clamp(2.4rem, 4.5vw, 5.8rem); font-weight: 770; line-height: .9; letter-spacing: -.015em; font-kerning: normal; font-optical-sizing: auto; overflow-wrap: anywhere; transition: transform .22s var(--ease); }
.service-choice__audience { max-width: 31ch; margin-top: 16px; font-size: .72rem; font-weight: 760; line-height: 1.4; text-transform: uppercase; }
.service-choice__bottom { display: flex; justify-content: space-between; gap: 16px; align-items: end; margin-top: auto; padding-top: 30px; font-size: .72rem; font-weight: 820; text-transform: uppercase; }
.service-choice__action { border-bottom: 2px solid currentColor; }
.service-choice:hover { filter: saturate(1.06); }
.service-choice:hover strong { transform: translateX(4px); }
.service-choice:focus-visible { z-index: 1; outline-offset: -7px; }
.service-choice--coral:focus-visible,
.service-choice--yellow:focus-visible { outline-color: var(--ink); }
.service-choice--blue:focus-visible { outline-color: var(--yellow); }

.chapter {
  position: relative;
  min-height: 92svh;
  padding: clamp(28px, 4vw, 58px) clamp(20px, 4vw, 64px) clamp(52px, 7vw, 100px);
  border-bottom: 2px solid var(--ink);
}
.chapter--coral { background: var(--coral); }
.chapter--blue { background: var(--blue); color: white; }
.chapter--yellow { background: var(--yellow); }
.chapter--coral :focus-visible,
.chapter--yellow :focus-visible,
.faq-section :focus-visible { outline-color: var(--ink); }
.chapter--blue :focus-visible,
.contact-section__bottom :focus-visible { outline-color: var(--yellow); }
.site-footer :focus-visible,
.lightbox :focus-visible { outline-color: var(--yellow); }
.chapter__head { display: flex; justify-content: space-between; gap: 20px; margin-bottom: clamp(34px, 6vw, 88px); font-size: 0.73rem; font-weight: 820; letter-spacing: .06em; text-transform: uppercase; }
.chapter__tags { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
.chapter__grid { display: grid; grid-template-columns: minmax(290px, 0.75fr) minmax(460px, 1.25fr); align-items: center; gap: clamp(32px, 6vw, 110px); }
.chapter__copy h2 { margin: 0 0 22px; font-family: var(--display); font-size: clamp(4.6rem, 9vw, 11rem); font-weight: 770; line-height: 0.84; letter-spacing: -0.02em; font-kerning: normal; font-optical-sizing: auto; text-wrap: balance; overflow-wrap: anywhere; }
.chapter__copy h2.chapter__title--split span { display: block; }
.chapter__copy h2.chapter__title--long { font-size: clamp(4rem, 5.5vw, 7rem); }
.chapter__audience { margin: 0 0 20px; font-family: var(--body); font-size: clamp(1.25rem, 2.3vw, 2.45rem); font-weight: 700; font-style: normal; line-height: 1.1; }
.chapter__text { max-width: 31ch; margin: 0 0 24px; font-size: clamp(1rem, 1.35vw, 1.22rem); line-height: 1.35; }
.chapter__chips { display: flex; flex-wrap: wrap; gap: 7px 16px; margin: 0 0 30px; padding: 0; list-style: none; }
.chapter__chips li { border-bottom: 2px solid currentColor; font-size: 0.72rem; font-weight: 790; text-transform: uppercase; }
.chapter__image { margin: 0; clip-path: polygon(4% 7%, 96% 0, 100% 91%, 8% 100%, 0 25%); }
.chapter--blue .chapter__image { clip-path: polygon(0 3%, 93% 0, 100% 24%, 95% 100%, 8% 94%); }
.chapter--yellow .chapter__image { clip-path: polygon(8% 0, 100% 6%, 94% 100%, 0 93%, 3% 14%); }
.chapter__image img { width: 100%; height: auto; aspect-ratio: 1.42; object-fit: cover; }
.chapter__note { position: absolute; right: clamp(22px, 5vw, 76px); bottom: 24px; margin: 0; font-family: var(--body); font-size: 0.95rem; font-weight: 650; font-style: normal; transform: rotate(-2deg); }

.work-section { padding: clamp(72px, 10vw, 150px) clamp(20px, 4vw, 64px); }
.section-intro { display: grid; grid-template-columns: 0.6fr 1.25fr 0.45fr; gap: 28px; align-items: end; margin-bottom: clamp(48px, 7vw, 100px); }
.section-intro > p:last-child { margin: 0; font-family: var(--body); font-size: clamp(1rem, 1.5vw, 1.35rem); font-weight: 650; font-style: normal; }
.section-intro--compact { grid-template-columns: .55fr 1.45fr; }

.work-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(34px, 6vw, 86px) clamp(20px, 3vw, 46px); }
.work-card:first-child { grid-column: 1 / -1; }
.work-card { position: relative; min-width: 0; }
.work-card__button { display: block; width: 100%; padding: 0; border: 0; background: transparent; text-align: left; cursor: pointer; }
.work-card__media { position: relative; display: block; overflow: hidden; background: var(--ink); }
.work-card__media img { width: 100%; height: auto; aspect-ratio: 1.38; object-fit: cover; transition: transform .6s var(--ease), filter .6s var(--ease); }
.work-card:first-child .work-card__media img { aspect-ratio: 1.9; }
.work-card__button:hover .work-card__media img,
.work-card__button:focus-visible .work-card__media img { transform: scale(1.02); filter: contrast(1.04); }
.work-card__affordance { position: absolute; left: 14px; bottom: 14px; padding: 9px 11px; border: 2px solid var(--ink); background: var(--yellow); color: var(--ink); box-shadow: 3px 3px 0 var(--ink); font-size: .68rem; font-weight: 820; text-transform: uppercase; transition: transform .18s var(--ease), box-shadow .18s var(--ease); }
.work-card__button:hover .work-card__affordance,
.work-card__button:focus-visible .work-card__affordance { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); }
.work-card__meta { display: flex; justify-content: space-between; gap: 20px; padding-top: 14px; border-top: 2px solid var(--ink); }
.work-card__meta strong { display: block; font-family: var(--display); font-size: clamp(1.6rem, 3vw, 3.3rem); font-weight: 760; letter-spacing: -.02em; font-kerning: normal; font-optical-sizing: auto; }
.work-card__meta small { display: block; margin-top: 4px; font-size: .72rem; font-weight: 760; text-transform: uppercase; }
.work-card__index { font-family: var(--body); font-size: 1.4rem; font-weight: 650; font-style: normal; }
.work-card__line { display: block; margin-top: 9px; font-size: .7rem; font-weight: 750; text-transform: uppercase; }
.work-card__status { display: inline-block; margin-top: 12px; padding: 6px 8px; border: 2px solid var(--ink); background: var(--yellow); font-size: .68rem; font-weight: 820; text-transform: uppercase; }
.work-card__draft { position: absolute; top: 10px; left: 10px; padding: 7px 9px; background: var(--yellow); border: 2px solid var(--ink); font-size: .68rem; font-weight: 820; text-transform: uppercase; }
.work-card__external { display: inline-block; margin-top: 10px; font-size: .72rem; font-weight: 800; text-transform: uppercase; }

.process-strip { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--ink); color: white; border-block: 2px solid var(--ink); }
.process-strip span { padding: 24px clamp(18px, 4vw, 64px); border-right: 1px solid rgba(255,255,255,.3); font-family: var(--display); font-size: clamp(1.25rem, 2.5vw, 2.5rem); font-weight: 730; }

.process-section { padding: clamp(70px, 9vw, 130px) clamp(20px, 4vw, 64px); background: var(--ink); color: white; border-block: 2px solid var(--ink); }
.process-section :focus-visible { outline-color: var(--yellow); }
.process-section__intro { display: grid; grid-template-columns: .55fr 1.25fr .7fr; gap: 28px; align-items: end; margin-bottom: clamp(42px, 6vw, 80px); }
.process-section__intro > p:last-child { max-width: 28ch; margin: 0; font-size: clamp(1rem, 1.4vw, 1.3rem); font-weight: 650; line-height: 1.3; }
.process-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 0; padding: 0; border: 2px solid white; list-style: none; }
.process-list li { min-width: 0; padding: clamp(22px, 3vw, 38px); border-right: 2px solid white; }
.process-list li:last-child { border-right: 0; }
.process-list li > span { display: block; margin-bottom: 40px; color: var(--yellow); font-size: .72rem; font-weight: 820; letter-spacing: .08em; }
.process-list h3 { margin: 0; font-family: var(--display); font-size: clamp(2rem, 3.8vw, 4.6rem); font-weight: 760; line-height: .92; letter-spacing: -.018em; font-kerning: normal; font-optical-sizing: auto; }
.process-list p { max-width: 29ch; margin: 18px 0 0; font-size: .9rem; line-height: 1.45; }
.confidence-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 22px 0 0; padding: 0; border: 2px solid var(--ink); background: var(--yellow); color: var(--ink); list-style: none; }
.confidence-list li { display: grid; gap: 5px; padding: 18px clamp(18px, 3vw, 34px); border-right: 2px solid var(--ink); }
.confidence-list li:last-child { border-right: 0; }
.confidence-list strong { font-family: var(--display); font-size: 1.05rem; }
.confidence-list span { font-size: .74rem; line-height: 1.35; }

.about-section { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 7vw, 120px); align-items: center; padding: clamp(72px, 10vw, 150px) clamp(20px, 4vw, 64px); background: var(--white); border-block: 2px solid var(--ink); }
.about-section__text { max-width: 34ch; margin: 34px 0 0; font-size: clamp(1.15rem, 1.8vw, 1.65rem); line-height: 1.35; }
.about-section__text .hl { color: var(--blue); font-family: var(--body); font-size: 1.12em; font-weight: 720; font-style: normal; }
.about-section__image { margin: 0; clip-path: polygon(10% 0, 100% 8%, 91% 100%, 0 90%, 4% 20%); }
.about-section__image img { width: 100%; height: clamp(520px, 46vw, 680px); object-fit: cover; }
.margin-note { width: max-content; max-width: 25ch; margin: 28px 0 0 auto; padding-bottom: 4px; border-bottom: 5px solid var(--blue); font-family: var(--body); font-size: 1rem; font-weight: 650; font-style: normal; transform: rotate(-2deg); }

.faq-section { padding: clamp(72px, 10vw, 140px) clamp(20px, 7vw, 110px); background: var(--coral); border-bottom: 2px solid var(--ink); }
.faq-list { max-width: 980px; margin-left: auto; border-top: 2px solid var(--ink); }
.faq-item { border-bottom: 2px solid var(--ink); }
.faq-item summary { position: relative; padding: 24px 70px 24px 0; font-family: var(--display); font-size: clamp(1.4rem, 2.6vw, 2.6rem); font-weight: 730; letter-spacing: -.015em; font-kerning: normal; font-optical-sizing: auto; cursor: pointer; list-style: none; }
.faq-item summary:focus-visible { outline-offset: -4px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 10px; top: 19px; font-family: var(--display); font-size: 2.2rem; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { max-width: 58ch; margin: 0; padding: 0 70px 28px 0; font-size: 1rem; line-height: 1.5; }

.contact-section { background: var(--paper); }
.contact-section__top { display: grid; grid-template-columns: 1fr .9fr; gap: clamp(30px, 7vw, 120px); align-items: center; padding: clamp(72px, 10vw, 150px) clamp(20px, 4vw, 64px); }
.contact-section__copy { max-width: 32ch; margin: 34px 0 0; font-size: clamp(1.1rem, 1.75vw, 1.5rem); line-height: 1.35; }
.contact-section__top figure { margin: 0; clip-path: polygon(8% 0, 100% 6%, 94% 92%, 23% 100%, 0 78%, 3% 18%); }
.contact-section__top img { width: 100%; height: clamp(500px, 44vw, 650px); object-fit: cover; }
.contact-section__bottom { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(30px, 7vw, 110px); padding: clamp(54px, 8vw, 110px) clamp(20px, 7vw, 110px); background: var(--blue); color: white; border-block: 2px solid var(--ink); }
.contact-direct { display: grid; align-content: start; gap: 16px; }
.contact-direct a { width: max-content; max-width: 100%; font-family: var(--display); font-size: clamp(1.3rem, 2.3vw, 2.5rem); font-weight: 720; letter-spacing: -.015em; font-kerning: normal; font-optical-sizing: auto; text-decoration-thickness: 2px; overflow-wrap: anywhere; }
.contact-form { display: grid; gap: 18px; }
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: grid; gap: 8px; font-size: .75rem; font-weight: 800; text-transform: uppercase; }
.contact-topic { min-width: 0; margin: 0; padding: 0; border: 0; }
.contact-topic legend { margin-bottom: 8px; padding: 0; font-size: .75rem; font-weight: 800; text-transform: uppercase; }
.contact-topic__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.contact-form .contact-topic__option { position: relative; display: block; min-width: 0; cursor: pointer; }
.contact-topic__option input { position: absolute; width: 1px; height: 1px; margin: 0; padding: 0; overflow: hidden; border: 0; opacity: 0; clip-path: inset(50%); }
.contact-topic__option span { min-height: 54px; display: flex; align-items: center; justify-content: center; padding: 10px; border: 2px solid white; text-align: center; line-height: 1.15; transition: background .18s var(--ease), color .18s var(--ease), transform .18s var(--ease), box-shadow .18s var(--ease); }
.contact-topic__option:hover span { background: rgba(255, 255, 255, .1); }
.contact-topic__option input:checked + span { background: var(--yellow); color: var(--ink); box-shadow: 4px 4px 0 var(--ink); transform: translate(-2px, -2px); }
.contact-topic__option input:focus-visible + span { outline: 3px solid var(--yellow); outline-offset: 4px; }
.contact-topic__option--quiet span { border-style: dashed; }
.contact-topic__status { min-height: 1.2em; margin: 9px 0 0; color: var(--yellow); font-size: .72rem; font-weight: 780; }
.contact-form input:not([type="radio"]),
.contact-form select,
.contact-form textarea { width: 100%; border: 2px solid white; border-radius: 0; background: transparent; color: white; padding: 14px; outline: 0; }
.contact-form input:not([type="radio"]):focus,
.contact-form select:focus,
.contact-form textarea:focus { background: white; color: var(--ink); box-shadow: 5px 5px 0 var(--yellow); }
.contact-form select option { color: var(--ink); }
.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-form textarea::placeholder { color: white; opacity: 1; }
.contact-form textarea:focus::placeholder { color: rgba(17, 17, 15, .55); }
.contact-form__trap { position: absolute; left: -9999px; }
.contact-form__legal { margin: 0; font-size: .72rem; }
.form-status { padding: 18px; border: 2px solid var(--ink); background: var(--yellow); color: var(--ink); font-weight: 800; }
.form-status--error { background: var(--coral); }

.site-footer { display: grid; grid-template-columns: .7fr 1fr 1fr auto; gap: 24px; align-items: end; padding: 44px clamp(20px, 4vw, 64px); background: var(--ink); color: white; }
.site-footer p, .site-footer span { margin: 0; font-size: .78rem; text-transform: uppercase; }
.site-footer nav { display: flex; gap: 18px; font-size: .78rem; text-transform: uppercase; }

.lightbox[hidden] { display: none; }
.lightbox { position: fixed; z-index: 100; inset: 0; }
.lightbox__backdrop { position: absolute; inset: 0; background: rgba(17,17,15,.94); }
.lightbox__stage { position: relative; z-index: 2; width: 100%; height: 100%; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; grid-template-rows: auto 1fr; align-items: center; gap: 14px; padding: 18px; color: white; }
.lightbox__close { grid-column: 1 / -1; justify-self: end; padding: 10px 12px; border: 2px solid white; background: transparent; color: white; font-size: .72rem; font-weight: 800; text-transform: uppercase; cursor: pointer; }
.lightbox__nav { padding: 10px; border: 0; background: transparent; color: white; font-size: .72rem; font-weight: 800; text-transform: uppercase; cursor: pointer; }
.lightbox__figure { min-width: 0; margin: 0; text-align: center; }
.lightbox__img { max-width: 100%; max-height: calc(100svh - 110px); margin: 0 auto; object-fit: contain; }
.lightbox__caption { margin-top: 8px; font-size: .72rem; }

.fab-egg { position: fixed; z-index: 110; right: 18px; bottom: 18px; max-width: 360px; padding: 16px; border: 2px solid var(--ink); background: var(--yellow); box-shadow: 5px 5px 0 var(--ink); opacity: 0; transform: translateY(15px); transition: .25s var(--ease); }
.fab-egg.is-visible { opacity: 1; transform: none; }
.fab-egg__k, .fab-egg__v { display: block; }
.fab-egg__k { font-size: .7rem; font-weight: 800; text-transform: uppercase; }
.fab-egg__v { margin-top: 5px; font-family: var(--display); font-size: 1.3rem; font-weight: 740; }

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

.has-preview .preview-bar { position: relative; min-height: auto; flex-wrap: wrap; }
.has-preview .site-header { position: sticky; top: 0; }
.has-preview .hero { padding-top: 64px; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: clamp(40px, 7vw, 72px); }
  .hero__visual { max-width: 720px; margin-left: auto; }
  .hero__visual img { height: 520px; }
  .manifesto, .service-overview__intro, .section-intro, .process-section__intro { grid-template-columns: 1fr; align-items: start; }
  .manifesto > p:last-child, .service-overview__intro > p:last-child, .process-section__intro > p:last-child { margin-left: auto; }
  .service-picker { grid-template-columns: 1fr; }
  .service-choice { min-height: 230px; border-right: 0; border-bottom: 2px solid var(--ink); }
  .service-choice:last-child { border-bottom: 0; }
  .chapter { min-height: auto; }
  .chapter__grid { grid-template-columns: 1fr; }
  .chapter__image { max-width: 820px; }
  .about-section, .contact-section__top { grid-template-columns: 1fr; }
  .about-section__image, .contact-section__top figure { max-width: 760px; margin-left: auto; }
  .contact-section__bottom { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  section[id] { scroll-margin-top: 88px; }
  .site-header { min-height: 72px; padding: 16px 18px; }
  .nav-toggle { display: block; }
  .main-nav { position: absolute; inset: 72px 0 auto; display: none; align-items: stretch; padding: 18px; background: var(--paper); border-block: 2px solid var(--ink); }
  .main-nav.is-open { display: grid; }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .main-nav .nav-cta { margin-top: 8px; text-align: center; }
  .preview-bar + .site-header .main-nav { top: 72px; }
  .hero { padding-inline: 18px; padding-bottom: 50px; }
  .has-preview .hero { padding-top: 50px; }
  .hero h1 { font-size: clamp(3.8rem, 18.2vw, 7rem); }
  .hero__accent { font-size: clamp(2.3rem, 12vw, 4rem); }
  .hero__visual img { height: 360px; }
  .hero__note { position: static; margin: 20px 0 0 auto; }
  .manifesto, .service-overview__intro, .chapter, .work-section, .about-section, .faq-section, .contact-section__top, .process-section { padding-inline: 18px; }
  .manifesto h2, .service-overview__intro h2, .section-intro h2, .process-section h2, .about-section h2, .faq-section h2, .contact-section h2 { font-size: clamp(3.2rem, 15vw, 6rem); }
  .service-choice strong { font-size: clamp(2.8rem, 14vw, 5rem); }
  .chapter__copy h2 { font-size: clamp(3.2rem, 16vw, 6rem); }
  .chapter__copy h2.chapter__title--long { font-size: clamp(3rem, 12vw, 4.8rem); }
  .chapter__grid { gap: 38px; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card:first-child { grid-column: auto; }
  .work-card:first-child .work-card__media img, .work-card__media img { aspect-ratio: 1.25; }
  .process-strip { grid-template-columns: 1fr; }
  .process-strip span { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.3); }
  .process-list, .confidence-list { grid-template-columns: 1fr; }
  .process-list li, .confidence-list li { border-right: 0; border-bottom: 2px solid currentColor; }
  .process-list li:last-child, .confidence-list li:last-child { border-bottom: 0; }
  .about-section__image img, .contact-section__top img { height: 360px; }
  .contact-section__bottom { padding-inline: 18px; }
  .contact-form__row { grid-template-columns: 1fr; }
  .contact-topic__grid { grid-template-columns: 1fr 1fr; }
  .site-footer { grid-template-columns: 1fr; align-items: start; padding-inline: 18px; }
  .lightbox__stage { grid-template-columns: 1fr 1fr; grid-template-rows: auto 1fr auto; }
  .lightbox__figure { grid-column: 1 / -1; grid-row: 2; }
  .lightbox__nav--prev { grid-column: 1; grid-row: 3; justify-self: start; }
  .lightbox__nav--next { grid-column: 2; grid-row: 3; justify-self: end; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
  .js-ready .reveal { opacity: 1; transform: none; }
  .button:hover,
  .main-nav .nav-cta:hover,
  .service-choice:hover strong,
  .work-card__button:hover .work-card__media img,
  .work-card__button:focus-visible .work-card__media img,
  .work-card__button:hover .work-card__affordance,
  .work-card__button:focus-visible .work-card__affordance,
  .contact-topic__option input:checked + span { transform: none; }
}
