:root {
  --chalk: oklch(96% 0.008 230);
  --ice: oklch(89% 0.018 230);
  --graphite: oklch(20% 0.012 220);
  --ink: oklch(14% 0.01 220);
  --steel: oklch(61% 0.03 225);
  --copper: oklch(56% 0.105 46);
  --copper-light: oklch(69% 0.09 51);
  --light-text: oklch(94% 0.008 225);
  --dark-text: oklch(19% 0.014 220);
  --muted-light: oklch(76% 0.018 225);
  --muted-dark: oklch(43% 0.022 222);
  --line-light: oklch(42% 0.018 222 / 0.28);
  --line-dark: oklch(30% 0.018 222 / 0.18);
  --shadow: 0 30px 70px oklch(10% 0.01 220 / 0.28), 0 2px 8px oklch(10% 0.01 220 / 0.22);
  --shell: 1360px;
  --pad: clamp(1.25rem, 4vw, 4rem);
  --section: clamp(6rem, 11vw, 10rem);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--light-text);
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
}

p,
h1,
h2,
h3,
blockquote,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p,
li {
  text-wrap: pretty;
}

::selection {
  background: var(--copper);
  color: var(--light-text);
}

:focus-visible {
  outline: 2px solid var(--copper-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--chalk);
  color: var(--dark-text);
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform 220ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(100%, var(--shell));
  margin-inline: auto;
  padding-inline: var(--pad);
}

.light-section {
  background: var(--chalk);
  color: var(--dark-text);
}

.dark-section {
  background: var(--graphite);
  color: var(--light-text);
}

.kicker {
  color: var(--copper-light);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.19em;
  line-height: 1.5;
  text-transform: uppercase;
}

.light-section .kicker {
  color: var(--copper);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  background: oklch(14% 0.01 220 / 0.08);
  color: var(--light-text);
  transition-property: background-color, box-shadow;
  transition-duration: 300ms;
  transition-timing-function: var(--ease);
}

.site-header.is-scrolled {
  background: oklch(14% 0.01 220 / 0.94);
  box-shadow: 0 1px 0 oklch(85% 0.01 220 / 0.1);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 5.5rem;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 44px;
  text-decoration: none;
}

.brand img {
  width: clamp(9.25rem, 11vw, 10.5rem);
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.desktop-nav a,
.header-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: var(--copper-light);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  color: var(--copper-light);
}

.hero {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  background: var(--ink);
  padding-top: clamp(7rem, 11vh, 9rem);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.86fr);
  align-items: center;
  min-height: calc(100dvh - 13rem);
  gap: clamp(3rem, 7vw, 8rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-block: 4rem;
}

.hero h1 {
  max-width: 11ch;
  margin-top: 1.8rem;
  color: var(--light-text);
  font-family: "Newsreader", serif;
  font-size: clamp(3.7rem, 6.4vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.hero h1 span {
  color: var(--ice);
  font-style: italic;
}

.hero-lead {
  max-width: 54ch;
  margin-top: 2rem;
  color: var(--muted-light);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  margin-top: 2.5rem;
  gap: 1.4rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  gap: 2.5rem;
  padding: 0.95rem 1.2rem;
  border: 0;
  border-radius: 2px;
  font-family: "Manrope", sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.055em;
  line-height: 1.25;
  text-decoration: none;
  transform: scale(1);
  transition-property: background-color, color, transform, box-shadow;
  transition-duration: 260ms;
  transition-timing-function: var(--ease);
}

.button span {
  font-size: 1rem;
}

.button-primary {
  background: var(--copper);
  color: var(--light-text);
  box-shadow: 0 12px 28px oklch(12% 0.01 220 / 0.2);
}

.button-primary:hover {
  background: oklch(61% 0.11 46);
  box-shadow: 0 16px 34px oklch(12% 0.01 220 / 0.3);
  transform: translateY(-2px);
}

.button:active {
  transform: scale(0.96);
}

.button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.action-note {
  max-width: 20ch;
  color: var(--muted-light);
  font-size: 0.72rem;
  line-height: 1.55;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 620px;
  padding: 3rem 0 3.5rem;
}

.monogram-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 0 48% 48% 0;
  box-shadow: var(--shadow);
  outline: 1px solid oklch(96% 0.008 230 / 0.13);
  outline-offset: -1px;
}

.monogram-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, oklch(14% 0.01 220 / 0.22), transparent 44%);
  content: "";
}

.monogram-frame img {
  height: 100%;
  object-fit: cover;
  object-position: 48% 38%;
}

.hero-caption {
  position: absolute;
  right: 9%;
  bottom: 3.6rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: var(--light-text);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.7;
  text-transform: uppercase;
}

.cut-line {
  position: absolute;
  top: 50%;
  right: -22%;
  z-index: 3;
  width: 42%;
  height: 1px;
  background: var(--copper-light);
  transform: rotate(-24deg);
  transform-origin: left;
}

.evidence-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-bottom: 2rem;
  color: var(--muted-light);
}

.evidence-rail p {
  padding: 0.9rem 1.5rem;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  font-size: 0.72rem;
  letter-spacing: 0.035em;
}

.evidence-rail p + p {
  border-left: 1px solid var(--line-light);
}

.evidence-rail strong {
  color: var(--light-text);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

.js .hero-enter {
  opacity: 0;
  transform: translateY(22px);
}

.js body.is-ready .hero-enter {
  opacity: 1;
  transform: translateY(0);
  transition-property: opacity, transform;
  transition-duration: 950ms;
  transition-timing-function: var(--ease);
}

body.is-ready .enter-2 { transition-delay: 100ms; }
body.is-ready .enter-3 { transition-delay: 200ms; }
body.is-ready .enter-4 { transition-delay: 300ms; }

.recognition,
.method,
.profile,
.qualification,
.faq {
  padding-block: var(--section);
}

.recognition-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(4rem, 9vw, 10rem);
}

.section-heading h2,
.method-intro h2,
.qualification-heading h2,
.profile-copy h2,
.thesis h2,
.atelier h2,
.closing h2 {
  font-family: "Newsreader", serif;
  font-size: clamp(2.7rem, 5.2vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.section-heading h2,
.qualification-heading h2 {
  margin-top: 1.6rem;
}

.scenes {
  display: flex;
  flex-direction: column;
}

.scene {
  display: grid;
  grid-template-columns: minmax(100px, 0.28fr) 1fr;
  gap: 2rem;
  padding-block: 2.4rem;
  border-top: 1px solid var(--line-dark);
}

.scene:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.scene-index {
  color: var(--muted-dark);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.scene h3 {
  max-width: 32ch;
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  font-weight: 500;
  line-height: 1.55;
}

.thesis {
  position: relative;
  overflow: hidden;
  padding-block: var(--section);
}

.thesis::after {
  position: absolute;
  right: -9vw;
  bottom: -28vw;
  width: 48vw;
  height: 48vw;
  border: 1px solid oklch(89% 0.018 230 / 0.11);
  border-radius: 0 50% 50% 0;
  content: "";
  transform: rotate(90deg);
}

.thesis-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.68fr;
  align-items: end;
  gap: clamp(4rem, 10vw, 11rem);
}

.thesis h2 {
  max-width: 13ch;
  margin-top: 1.8rem;
}

.thesis-copy {
  padding-top: 2rem;
  border-top: 1px solid var(--copper);
}

.thesis-copy p {
  max-width: 55ch;
  color: var(--muted-light);
}

.thesis-copy p + p {
  margin-top: 1.4rem;
}

.method-intro {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  align-items: end;
  gap: clamp(3rem, 9vw, 9rem);
}

.method-intro .section-heading h2 {
  max-width: 12ch;
}

.method-intro > p {
  max-width: 52ch;
  color: var(--muted-dark);
}

.method-list {
  margin: clamp(4rem, 8vw, 8rem) 0 0;
  padding: 0;
  list-style: none;
}

.method-step {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 160px;
  align-items: start;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding-block: 2.5rem;
  border-top: 1px solid var(--line-dark);
}

.method-step:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.step-number {
  color: var(--copper);
  font-size: 0.72rem;
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.method-step h3 {
  font-family: "Newsreader", serif;
  font-size: clamp(1.6rem, 3vw, 2.65rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.method-step p {
  max-width: 60ch;
  margin-top: 0.8rem;
  color: var(--muted-dark);
  font-size: 0.92rem;
}

.step-word {
  justify-self: end;
  color: var(--muted-dark);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.privacy-note {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  max-width: 870px;
  margin: 4rem 0 0 auto;
  gap: 2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--copper);
}

.privacy-note > p:last-child {
  color: var(--muted-dark);
}

.atelier {
  overflow: hidden;
  padding-block: var(--section);
}

.atelier-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(4rem, 8vw, 9rem);
}

.atelier-copy h2 {
  max-width: 10ch;
  margin-top: 1.6rem;
}

.atelier-copy > p:not(.kicker) {
  max-width: 50ch;
  margin-top: 2rem;
  color: var(--muted-light);
}

.atelier-copy .atelier-emphasis {
  color: var(--ice);
  font-family: "Newsreader", serif;
  font-size: 1.4rem;
  line-height: 1.35;
}

.atelier-gallery {
  position: relative;
  min-height: 700px;
}

.atelier-gallery figure {
  position: absolute;
  overflow: hidden;
  box-shadow: var(--shadow);
  outline: 1px solid oklch(96% 0.008 230 / 0.1);
  outline-offset: -1px;
}

.atelier-gallery img {
  height: 100%;
  object-fit: cover;
}

.measure-photo {
  inset: 0 14% 12% 0;
}

.curation-photo {
  right: 0;
  bottom: 0;
  width: 42%;
  height: 54%;
}

.gallery-label {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 2;
  padding: 0.6rem 0.8rem;
  background: var(--chalk);
  color: var(--dark-text);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.profile {
  overflow: hidden;
}

.profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.68fr);
  align-items: center;
  gap: clamp(4rem, 9vw, 10rem);
}

.profile-images {
  position: relative;
  min-height: 630px;
}

.profile-images img {
  position: absolute;
  height: 100%;
  object-fit: cover;
  outline: 1px solid oklch(14% 0.01 220 / 0.1);
  outline-offset: -1px;
}

.profile-wide {
  inset: 0;
  width: 100%;
  object-position: center 22%;
}

.profile-podcast {
  margin-top: 1.4rem;
  font-size: 0.95rem;
  opacity: 0.85;
}

.profile-podcast a {
  color: var(--copper);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.video-block {
  padding-block: var(--section);
}

.video-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: center;
}

.video-copy p:not(.kicker) {
  margin-top: 1.4rem;
  max-width: 44ch;
}

.video-frame video {
  display: block;
  width: min(100%, 340px);
  height: auto;
  margin-inline: auto;
  box-shadow: 0 24px 52px oklch(14% 0.01 220 / 0.35);
}

@media (max-width: 767px) {
  .video-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
}

.profile-portrait {
  right: 0;
  bottom: -3rem;
  width: 36%;
  max-height: 48%;
  box-shadow: 0 24px 52px oklch(14% 0.01 220 / 0.24);
}

.profile-copy h2 {
  margin-top: 1.4rem;
}

.profile-role {
  margin-top: 1.7rem;
  color: var(--copper);
  font-size: 1rem;
  font-weight: 600;
}

.profile-copy > p:not(.kicker, .profile-role) {
  max-width: 48ch;
  margin-top: 1.4rem;
  color: var(--muted-dark);
}

.profile-copy blockquote {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dark);
  color: var(--dark-text);
  font-family: "Newsreader", serif;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-style: italic;
  line-height: 1.4;
}

.qualification {
  padding-top: 0;
}

.qualification-heading {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  align-items: start;
  gap: 3rem;
  padding-top: var(--section);
  border-top: 1px solid var(--line-dark);
}

.qualification-heading h2 {
  max-width: 13ch;
}

.qualification-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  margin-top: 5rem;
  gap: 1px;
  background: var(--line-dark);
}

.fit-column {
  padding: clamp(2rem, 5vw, 4.5rem);
  background: var(--ice);
}

.fit-column.muted {
  background: oklch(92% 0.008 225);
}

.fit-column h3 {
  font-family: "Newsreader", serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 500;
}

.fit-column ul {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
}

.fit-column li {
  position: relative;
  padding: 1rem 0 1rem 1.6rem;
  border-top: 1px solid var(--line-dark);
  color: var(--muted-dark);
  font-size: 0.9rem;
}

.fit-column li::before {
  position: absolute;
  top: 1.55rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--copper);
  content: "";
}

.fit-column.muted li::before {
  background: var(--steel);
}

.faq {
  padding-top: 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(4rem, 9vw, 10rem);
  padding-top: var(--section);
  border-top: 1px solid var(--line-dark);
}

.faq-list {
  border-top: 1px solid var(--line-dark);
}

details {
  border-bottom: 1px solid var(--line-dark);
}

summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 2rem;
  padding-block: 1.35rem;
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 600;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  place-items: center;
  color: var(--copper);
  content: "+";
  font-family: "Newsreader", serif;
  font-size: 1.7rem;
  font-weight: 500;
  transform: rotate(0);
  transition: transform 260ms var(--ease);
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  max-width: 64ch;
  padding: 0 4.5rem 1.7rem 0;
  color: var(--muted-dark);
  font-size: 0.91rem;
}

.closing {
  padding-block: var(--section);
  scroll-margin-top: 5.5rem;
}

.closing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 0.88fr);
  align-items: start;
  gap: clamp(4rem, 8vw, 8rem);
}

.closing h2 {
  max-width: 13ch;
  margin-top: 1.5rem;
}

.closing-copy > p:last-child {
  max-width: 54ch;
  margin-top: 2rem;
  color: var(--muted-light);
}

.intake-assurance {
  display: grid;
  margin-top: 3rem;
  border-top: 1px solid var(--line-light);
}

.intake-assurance p {
  display: grid;
  grid-template-columns: minmax(120px, 0.45fr) 1fr;
  gap: 1rem;
  padding-block: 1rem;
  border-bottom: 1px solid var(--line-light);
  color: var(--muted-light);
  font-size: 0.76rem;
  line-height: 1.55;
}

.intake-assurance strong {
  color: var(--light-text);
  font-weight: 600;
}

.intake-panel {
  min-height: 640px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--chalk);
  color: var(--dark-text);
  box-shadow: var(--shadow);
}

.form-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 2rem;
}

.form-label,
.form-progress-label,
.form-time {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.5;
  text-transform: uppercase;
}

.form-label {
  color: var(--copper);
}

.form-progress-label,
.form-time {
  margin-top: 0.35rem;
  color: var(--muted-dark);
}

.form-progress {
  height: 2px;
  margin: 1.3rem 0 clamp(2rem, 4vw, 3rem);
  overflow: hidden;
  background: var(--line-dark);
}

.form-progress span {
  display: block;
  width: 20%;
  height: 100%;
  background: var(--copper);
  transition: width 420ms var(--ease);
}

.form-step {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.form-step[hidden] {
  display: none;
}

.form-step legend {
  max-width: 22ch;
  padding: 0;
  font-family: "Newsreader", serif;
  font-size: clamp(2rem, 3.4vw, 3.15rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.step-context {
  max-width: 54ch;
  margin-top: 1rem;
  color: var(--muted-dark);
  font-size: 0.82rem;
  line-height: 1.6;
}

.choice-list {
  display: grid;
  margin-top: 2rem;
  border-top: 1px solid var(--line-dark);
}

.choice {
  position: relative;
  display: flex;
  min-height: 54px;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 0.75rem;
  border-bottom: 1px solid var(--line-dark);
  cursor: pointer;
  font-size: 0.86rem;
  line-height: 1.45;
  transition: background-color 220ms var(--ease), color 220ms var(--ease);
}

.choice:hover {
  background: var(--ice);
}

.choice:has(input:checked) {
  background: var(--graphite);
  color: var(--light-text);
}

.choice input {
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
  margin: 0;
  accent-color: var(--copper);
}

.choice-list.is-invalid {
  outline: 1px solid oklch(54% 0.13 28);
  outline-offset: 5px;
}

.step-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 2rem;
  gap: 1rem;
}

.form-back {
  min-height: 44px;
  padding: 0.6rem;
  border: 0;
  background: transparent;
  color: var(--muted-dark);
  cursor: pointer;
  font: 600 0.72rem/1.4 "Manrope", sans-serif;
}

.form-next,
.form-submit {
  min-width: 190px;
}

.contact-step legend {
  max-width: 18ch;
}

.field {
  display: grid;
  margin-top: 1.1rem;
  gap: 0.45rem;
}

.field-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1rem;
}

.field label {
  color: var(--muted-dark);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.field label span {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line-dark);
  border-radius: 0;
  background: oklch(98% 0.005 230);
  color: var(--dark-text);
  font: 500 0.88rem/1.5 "Manrope", sans-serif;
}

.field textarea {
  min-height: 82px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--copper);
  outline: 2px solid oklch(56% 0.105 46 / 0.16);
  outline-offset: 0;
}

.field input[aria-invalid="true"] {
  border-color: oklch(54% 0.13 28);
}

.consent {
  display: flex;
  align-items: flex-start;
  margin-top: 1.25rem;
  gap: 0.65rem;
  color: var(--muted-dark);
  cursor: pointer;
  font-size: 0.7rem;
  line-height: 1.5;
}

.consent input {
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
  margin: 0.15rem 0 0;
  accent-color: var(--copper);
}

.form-status {
  min-height: 1.5rem;
  margin-top: 1rem;
  color: var(--muted-dark);
  font-size: 0.75rem;
}

.form-status.is-error {
  color: oklch(45% 0.13 28);
}

.form-fallback {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 600;
  text-underline-offset: 4px;
}

.form-fallback[hidden] {
  display: none;
}

.form-foot {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-dark);
  color: var(--muted-dark);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
}

.site-footer {
  background: var(--ink);
  color: var(--muted-light);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr auto auto;
  align-items: center;
  min-height: 8rem;
  gap: 2rem;
  border-top: 1px solid var(--line-light);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
}

.footer-inner > a:not(.brand) {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  text-underline-offset: 4px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition-property: opacity, transform;
  transition-duration: 820ms;
  transition-timing-function: var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.mobile-cta {
  display: none;
}

@media (min-width: 1600px) {
  .site-header .shell,
  .hero .shell {
    --shell: 1520px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(400px, 0.92fr);
    gap: clamp(4rem, 6vw, 7rem);
  }
}

@media (min-width: 1600px) and (max-height: 1000px) {
  .hero {
    padding-top: 6rem;
  }

  .hero-copy {
    padding-block: 2rem;
  }

  .hero h1 {
    margin-top: 1.4rem;
    font-size: 6.2rem;
  }

  .hero-lead {
    margin-top: 1.5rem;
    font-size: 1.05rem;
  }

  .hero-actions {
    margin-top: 1.75rem;
  }

  .hero-visual {
    min-height: 680px;
  }
}

@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.7fr);
    gap: 3rem;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 7vw, 5.5rem);
  }

  .hero-visual {
    min-height: 560px;
  }

  .atelier-gallery {
    min-height: 590px;
  }

  .profile-images {
    min-height: 520px;
  }
}

@media (max-width: 767px) {
  :root {
    --pad: 1.25rem;
    --section: 5.5rem;
  }

  html {
    scroll-padding-top: 5rem;
  }

  body {
    padding-bottom: calc(4.75rem + env(safe-area-inset-bottom));
  }

  .kicker {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
  }

  .site-header {
    position: absolute;
    background: transparent;
  }

  .site-header.is-scrolled {
    background: transparent;
    box-shadow: none;
  }

  .header-inner {
    min-height: 4.8rem;
  }

  .brand img {
    width: 8.25rem;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 5.5rem;
  }

  .hero-grid {
    display: flex;
    min-height: auto;
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-copy {
    width: 100%;
    padding: 3rem 0 1rem;
  }

  .hero h1 {
    max-width: 10ch;
    margin-top: 1.4rem;
    font-size: clamp(3.4rem, 17vw, 5rem);
  }

  .hero-lead {
    font-size: 0.96rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 2rem;
    gap: 0.9rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .action-note {
    max-width: none;
    font-size: 0.81rem;
  }

  .hero-visual {
    width: calc(100% + var(--pad));
    min-height: 500px;
    margin-right: calc(var(--pad) * -1);
    padding: 0;
  }

  .monogram-frame {
    border-radius: 0 44% 44% 0;
  }

  .monogram-frame img {
    object-position: 48% 40%;
  }

  .hero-caption {
    right: 12%;
    bottom: 1.6rem;
  }

  .cut-line {
    right: 0;
    width: 26%;
  }

  .evidence-rail {
    grid-template-columns: 1fr 1fr;
    padding-top: 2rem;
    padding-bottom: 1.5rem;
  }

  .evidence-rail p {
    padding: 0.9rem 0.6rem;
  }

  .evidence-rail p + p {
    border-left: 0;
  }

  .evidence-rail p:nth-child(even) {
    padding-left: 1rem;
    border-left: 1px solid var(--line-light);
  }

  .evidence-rail p:nth-child(n + 3) {
    border-top: 0;
  }

  .recognition-grid,
  .thesis-grid,
  .method-intro,
  .atelier-grid,
  .profile-grid,
  .qualification-heading,
  .faq-grid,
  .closing-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .section-heading h2,
  .method-intro h2,
  .qualification-heading h2,
  .profile-copy h2,
  .thesis h2,
  .atelier h2,
  .closing h2 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .scene {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .thesis::after {
    right: -30vw;
    bottom: -38vw;
    width: 85vw;
    height: 85vw;
  }

  .thesis-copy {
    margin-top: 0.5rem;
  }

  .method-intro {
    align-items: start;
  }

  .method-step {
    grid-template-columns: 42px 1fr;
    gap: 1rem;
  }

  .step-word {
    display: none;
  }

  .privacy-note {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .atelier-grid {
    align-items: start;
  }

  .atelier-gallery {
    min-height: 560px;
  }

  .measure-photo {
    inset: 0 10% 10% 0;
  }

  .curation-photo {
    width: 45%;
    height: 46%;
  }

  .gallery-label {
    top: 1rem;
    right: 0;
  }

  .profile-images {
    min-height: 500px;
  }

  .profile-wide {
    inset: 0 8% 0 0;
    object-position: 47% center;
  }

  .profile-portrait {
    bottom: -2rem;
    width: 42%;
    max-height: 44%;
  }

  .qualification-heading {
    gap: 1rem;
  }

  .qualification-grid {
    grid-template-columns: 1fr;
    margin-top: 3.5rem;
  }

  .faq-grid {
    gap: 3rem;
  }

  .closing-grid {
    align-items: start;
  }

  .intake-assurance p {
    grid-template-columns: 1fr;
    gap: 0.25rem;
    font-size: 0.8rem;
  }

  .intake-panel {
    min-height: 0;
    padding: 1.4rem 1.1rem;
  }

  .form-step legend {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .form-label,
  .form-progress-label,
  .form-time,
  .field label {
    font-size: 0.76rem;
  }

  .step-context {
    font-size: 0.88rem;
  }

  .choice {
    min-height: 58px;
    padding-inline: 0.6rem;
    font-size: 0.88rem;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-step legend {
    font-size: clamp(1.9rem, 9vw, 2.35rem);
    line-height: 0.98;
  }

  .contact-step .step-context {
    margin-top: 0.75rem;
  }

  .contact-step .field {
    margin-top: 0.85rem;
    gap: 0.35rem;
  }

  .contact-step .field input {
    min-height: 46px;
  }

  .contact-step .field textarea {
    min-height: 72px;
    height: 72px;
  }

  .contact-step .consent {
    margin-top: 1rem;
  }

  .contact-step .step-actions {
    margin-top: 1.25rem;
  }

  .step-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .form-next,
  .form-submit {
    width: 100%;
  }

  .form-back {
    align-self: flex-start;
    font-size: 0.78rem;
  }

  .consent,
  .form-status,
  .form-foot {
    font-size: 0.76rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 0.9rem;
    padding-block: 3rem;
    font-size: 0.75rem;
  }

  .mobile-cta {
    position: fixed;
    right: 0.75rem;
    bottom: calc(0.75rem + env(safe-area-inset-bottom));
    left: auto;
    z-index: 40;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(13rem, calc(100% - 1.5rem));
    min-height: 48px;
    padding: 0.72rem 0.9rem;
    border-radius: 2px;
    background: var(--copper);
    color: var(--light-text);
    box-shadow: 0 12px 34px oklch(10% 0.01 220 / 0.35);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.045em;
    text-decoration: none;
    transform: translateY(130%);
    transition: transform 360ms var(--ease);
  }

  .mobile-cta.is-visible {
    transform: translateY(0);
  }

  .mobile-cta.is-hidden {
    pointer-events: none;
    transform: translateY(130%);
  }

  .mobile-cta:active {
    transform: scale(0.96);
  }
}

@media (min-width: 360px) and (max-width: 767px) {
  .contact-step .field-row {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 0.75rem;
  }
}

@media (max-width: 359px) and (max-height: 700px) {
  .header-inner {
    min-height: 4rem;
  }

  .brand img {
    width: 7.4rem;
  }

  .hero {
    padding-top: 4.4rem;
  }

  .hero-copy {
    padding: 1.6rem 0 0.75rem;
  }

  .hero h1 {
    margin-top: 0.9rem;
    font-size: 3.05rem;
    line-height: 0.9;
  }

  .hero-lead {
    margin-top: 1.15rem;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .hero-actions {
    margin-top: 1.25rem;
    gap: 0.7rem;
  }

  .hero-actions .button {
    min-height: 52px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .hero-enter,
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}
