:root {
  --paper: #f4eedf;
  --paper-deep: #e9dfca;
  --paper-edge: #d4c6aa;
  --desk: #b4a68e;
  --ink: #29271f;
  --muted: #7b7466;
  --line: rgba(41, 39, 31, 0.2);
  --lime: #d6b84d;
  --coral: #bd6b51;
  --teal: #294740;
  --contact-bg: #2e302b;
  --white: #f8f2e6;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "DM Mono", "SFMono-Regular", Consolas, monospace;
  --max-width: 1280px;
}

:root[data-theme="dark"] {
  color-scheme: dark;
  --paper: #25251f;
  --paper-deep: #302f27;
  --paper-edge: #474439;
  --desk: #151714;
  --ink: #f3ecdd;
  --muted: #aaa18f;
  --line: rgba(243, 236, 221, 0.2);
  --teal: #17352f;
  --contact-bg: #171b18;
}

:root:not([data-theme="dark"]) { color-scheme: light; }

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  position: relative;
  isolation: isolate;
  margin: 0;
  color: var(--ink);
  background-color: var(--desk);
  background-image: radial-gradient(rgba(41, 39, 31, 0.13) 0.7px, transparent 0.7px), linear-gradient(115deg, rgba(255,255,255,0.08), transparent 35%, rgba(41,39,31,0.08));
  background-size: 7px 7px, 100% 100%;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  transition: color 450ms ease, background-color 450ms ease;
}

body::before {
  position: absolute;
  z-index: -1;
  inset: 18px max(18px, calc((100% - 1440px) / 2));
  min-height: calc(100% - 36px);
  background-color: var(--paper);
  background-image: radial-gradient(rgba(41, 39, 31, 0.08) 0.6px, transparent 0.7px), repeating-linear-gradient(0deg, transparent 0 39px, rgba(41, 39, 31, 0.035) 39px 40px);
  background-size: 6px 6px, 100% 40px;
  border: 1px solid rgba(41, 39, 31, 0.13);
  box-shadow: 0 20px 45px rgba(49, 42, 29, 0.2), 0 3px 8px rgba(49, 42, 29, 0.12);
  content: "";
}

:root[data-theme="dark"] body::before {
  background-image: radial-gradient(rgba(243, 236, 221, 0.055) 0.6px, transparent 0.7px), repeating-linear-gradient(0deg, transparent 0 39px, rgba(243, 236, 221, 0.035) 39px 40px);
  border-color: rgba(243, 236, 221, 0.12);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35), 0 3px 8px rgba(0, 0, 0, 0.25);
}

body, body * { transition: color 450ms ease, background-color 450ms ease, border-color 450ms ease; }

body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }

img { display: block; max-width: 100%; }

button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 5px;
}

.section-shell {
  width: min(calc(100% - 128px), 1200px);
  margin-inline: auto;
}

.mono-label {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 1rem;
  left: 1rem;
  padding: 0.7rem 1rem;
  color: #20251f;
  background: var(--lime);
  transform: translateY(-150%);
}

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

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 128px), 1344px);
  height: 112px;
  margin-inline: auto;
  border-bottom: 1px solid var(--line);
}

.brand, .site-nav, .header-actions { display: flex; align-items: center; }

.brand { gap: 0.75rem; }

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--paper);
  background: var(--ink);
  border-radius: 2px;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: -0.05em;
  transform: rotate(-4deg);
}

.brand-name { font-size: 0.85rem; font-weight: 600; letter-spacing: -0.02em; }

.site-nav { gap: 2.25rem; margin-left: auto; margin-right: 2.5rem; }

.site-nav a {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav a { position: relative; color: var(--muted); transition: color 180ms ease; }

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.5rem;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header-actions { gap: 1.5rem; }

.theme-toggle {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: rgba(244, 238, 223, 0.2);
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
  transition: color 350ms ease, background-color 350ms ease, border-color 350ms ease, transform 180ms ease;
}

.theme-toggle:hover { color: var(--paper); background: var(--ink); transform: rotate(5deg); }
.theme-icon { width: 17px; height: 17px; }
.theme-icon-sun { display: none; }
:root[data-theme="dark"] .theme-icon-moon { display: none; }
:root[data-theme="dark"] .theme-icon-sun { display: block; }
:root[data-theme="dark"] .theme-toggle:hover { color: var(--ink); background: var(--paper); }

.menu-toggle { display: none; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(400px, 0.85fr);
  gap: 7vw;
  min-height: calc(100vh - 112px);
  padding-top: clamp(5rem, 12vh, 9rem);
  padding-bottom: 3rem;
}

.hero-copy { align-self: center; padding-bottom: 3rem; }

.eyebrow { display: flex; align-items: center; gap: 0.65rem; margin: 0 0 2rem; color: var(--muted); font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; }
.eyebrow-dot, .status-dot { display: inline-block; width: 7px; height: 7px; background: var(--coral); border-radius: 50%; }

h1, h2, h3, p { margin-top: 0; }

h1 {
  max-width: 740px;
  margin-bottom: 2rem;
  font-size: clamp(4.25rem, 7.3vw, 7.4rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.93;
}

h1 em, h2 em { font-family: var(--serif); font-weight: 500; letter-spacing: -0.06em; }

.hero-summary { max-width: 430px; margin-bottom: 2.35rem; color: var(--muted); font-size: 1.05rem; line-height: 1.65; }

.hero-actions { display: flex; align-items: center; gap: 1.75rem; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 1.25rem; min-height: 48px; padding: 0.8rem 1.1rem 0.8rem 1.25rem; border: 1px solid var(--ink); font-family: var(--mono); font-size: 0.67rem; letter-spacing: 0.08em; text-transform: uppercase; transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease; }
.button:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--ink); }
.button-dark { color: var(--paper); background: var(--ink); box-shadow: 4px 4px 0 var(--paper-edge); }
.button-dark:hover { color: #20251f; background: var(--lime); }
.button-light { color: var(--ink); background: var(--lime); }
.button-light:hover { background: var(--white); }
.arrow { font-size: 1.1rem; line-height: 1; }

.text-link { display: inline-flex; align-items: center; gap: 0.7rem; border-bottom: 1px solid var(--line); padding-bottom: 0.25rem; font-size: 0.84rem; transition: border-color 180ms ease, color 180ms ease; }
.text-link:hover { color: var(--coral); border-color: var(--coral); }

.hero-art { position: relative; min-height: min(63vw, 660px); overflow: hidden; background: var(--paper-deep); border: 1px solid var(--ink); box-shadow: 12px 12px 0 var(--paper-edge); transform: rotate(1.2deg); }
.hero-art::before { position: absolute; top: 18px; right: 18px; width: 74px; height: 20px; background: rgba(189, 107, 81, 0.38); content: ""; transform: rotate(45deg); }
.hero-art::after { position: absolute; inset: 12px; border: 1px solid rgba(41, 39, 31, 0.2); content: ""; pointer-events: none; }
.art-grid { position: absolute; inset: 0; opacity: 0.45; background-image: linear-gradient(rgba(41,39,31,0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(41,39,31,0.12) 1px, transparent 1px); background-size: 12.5% 12.5%; }
.art-orbit { position: absolute; z-index: 1; width: 88%; aspect-ratio: 1; border: 1px solid rgba(41,39,31,0.6); border-radius: 50%; transform: rotate(-27deg) skewX(-12deg); }
.art-orbit-one { top: 10%; left: -17%; }
.art-orbit-two { top: 25%; left: -17%; width: 115%; transform: rotate(44deg) skewX(8deg); }
.art-sun { position: absolute; top: 28%; left: 28%; width: 42%; aspect-ratio: 1; background: var(--lime); border-radius: 50%; box-shadow: 0 0 0 22px rgba(214,184,77,0.1), 0 0 100px rgba(214,184,77,0.18); }
.art-card { position: absolute; z-index: 2; color: var(--ink); background: var(--paper); border: 1px solid var(--ink); box-shadow: 5px 5px 0 rgba(41, 39, 31, 0.16); transition: color 450ms ease, background-color 450ms ease; }
.art-card-top { top: 8%; right: 8%; width: 145px; padding: 1.05rem; transform: rotate(4deg); }
.art-card-top .mono-label { display: block; margin-bottom: 1.6rem; color: var(--muted); font-size: 0.54rem; }
.art-card-top strong { display: block; font-family: var(--serif); font-size: 1.16rem; font-weight: 500; line-height: 1.05; }
.art-card-bottom { right: 9%; bottom: 9%; display: flex; justify-content: space-between; width: 98px; padding: 0.6rem 0.75rem; font-family: var(--mono); font-size: 0.62rem; }
.art-caption { position: absolute; z-index: 2; bottom: 9%; left: 9%; color: rgba(41,39,31,0.75); font-size: 0.57rem; }

.hero-foot { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; align-self: end; border-top: 1px solid var(--line); padding-top: 1.1rem; }
.availability { display: flex; align-items: center; gap: 0.6rem; margin: 0; color: var(--muted); font-size: 0.75rem; }
.status-dot { width: 6px; height: 6px; background: #65a64c; }
.hero-index { color: var(--muted); }
.hero-index span { margin-left: 0.6rem; color: var(--ink); font-size: 1rem; }

.section-kicker { padding-top: 0.4rem; }

.work { padding-bottom: clamp(8rem, 14vw, 13rem); }
.work-heading { display: grid; grid-template-columns: 1fr 3fr; gap: 4vw; margin-bottom: 4.5rem; }
.work-heading-copy { display: flex; align-items: end; justify-content: space-between; gap: 3rem; }
h2 { margin-bottom: 0; font-size: clamp(2.7rem, 5vw, 5.5rem); font-weight: 500; letter-spacing: -0.075em; line-height: 0.98; }
.work-heading-copy h2 { max-width: 600px; }
.work-heading-copy > p { max-width: 235px; margin-bottom: 0.3rem; color: var(--muted); font-size: 0.87rem; line-height: 1.5; }
.project-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.project-card { overflow: hidden; background: var(--paper); border: 1px solid var(--ink); box-shadow: 7px 7px 0 var(--paper-edge); transition: background-color 450ms ease, color 450ms ease, transform 180ms ease, box-shadow 180ms ease; }
.project-card:hover { transform: translate(-2px, -2px); box-shadow: 10px 10px 0 var(--paper-edge); }
.project-visual { position: relative; display: grid; height: 360px; place-items: center; overflow: hidden; }
.visual-lime { background: var(--lime); }
.visual-ink { background: var(--teal); }
.visual-coral { background: var(--coral); }
.visual-window { width: 79%; background: #f6f4ec; box-shadow: 15px 18px 0 rgba(32,37,31,0.1); transform: rotate(-4deg); }
.window-top { display: flex; align-items: center; gap: 0.33rem; height: 29px; padding: 0 0.7rem; border-bottom: 1px solid rgba(32,37,31,0.15); color: #8a8c83; font-family: var(--mono); font-size: 0.41rem; }
.window-top span { width: 5px; height: 5px; background: #bdc0b5; border-radius: 50%; }
.window-top b { margin-left: auto; font-weight: 400; }
.window-content { display: flex; min-height: 225px; }
.window-sidebar { display: flex; flex-direction: column; gap: 1.1rem; width: 17%; padding: 1.3rem 0.6rem; border-right: 1px solid rgba(32,37,31,0.1); }
.window-sidebar i { display: block; width: 100%; height: 4px; background: #d8d9d0; border-radius: 10px; }
.window-sidebar i:first-child { width: 70%; background: #a3a79a; }
.window-main { flex: 1; padding: 1.3rem 1.2rem; }
.visual-kicker { color: #7b8177; font-family: var(--mono); font-size: 0.43rem; letter-spacing: 0.1em; }
.visual-number { margin-top: 1rem; font-family: var(--serif); font-size: 4.5rem; line-height: 0.8; }
.visual-number span { color: var(--coral); font-family: var(--sans); font-size: 1.1rem; }
.visual-chart { display: flex; align-items: end; gap: 0.42rem; height: 65px; margin-top: 2.3rem; border-bottom: 1px solid #d7d9cf; }
.visual-chart i { display: block; width: 100%; background: var(--teal); }
.visual-chart i:nth-child(1) { height: 30%; opacity: 0.3; }.visual-chart i:nth-child(2) { height: 46%; opacity: 0.45; }.visual-chart i:nth-child(3) { height: 36%; opacity: 0.5; }.visual-chart i:nth-child(4) { height: 69%; opacity: 0.66; }.visual-chart i:nth-child(5) { height: 55%; opacity: 0.72; }.visual-chart i:nth-child(6) { height: 82%; opacity: 0.88; }.visual-chart i:nth-child(7) { height: 100%; }
.project-info { display: flex; flex-direction: column; justify-content: space-between; min-height: 235px; padding: 1.5rem 1.6rem 1.3rem; background-image: repeating-linear-gradient(0deg, transparent 0 31px, rgba(41,39,31,0.035) 31px 32px); }
.project-type { margin-bottom: 2rem; font-size: 0.57rem; }
.project-info h3 { margin-bottom: 0.7rem; font-size: 1.8rem; font-weight: 500; letter-spacing: -0.06em; }
.project-description { max-width: 290px; margin-bottom: 0; color: var(--muted); font-size: 0.83rem; line-height: 1.55; }
.project-meta { display: flex; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 0.8rem; color: var(--muted); font-family: var(--mono); font-size: 0.55rem; letter-spacing: 0.04em; text-transform: uppercase; }
.project-meta span:last-child { color: var(--ink); font-size: 1rem; }

.signal { position: absolute; width: 90%; aspect-ratio: 1; border: 1px solid rgba(241,240,234,0.65); border-radius: 50%; }
.signal-one { transform: scaleY(0.42) rotate(-32deg); }.signal-two { transform: scaleY(0.42) rotate(28deg); }.signal-three { width: 69%; transform: scaleY(0.42) rotate(88deg); }
.signal-center { position: relative; display: grid; width: 84px; height: 84px; place-items: center; color: var(--teal); background: var(--lime); border-radius: 50%; font-family: var(--serif); font-size: 3rem; box-shadow: 0 0 0 11px rgba(214,184,77,0.14); }
.signal-label { position: absolute; color: rgba(241,240,234,0.8); font-family: var(--mono); font-size: 0.52rem; letter-spacing: 0.08em; line-height: 1.5; }
.signal-label-top { top: 13%; left: 13%; }.signal-label-bottom { right: 12%; bottom: 13%; text-align: right; }

.code-sheet { position: relative; width: 67%; height: 61%; padding: 2rem 1.8rem; background: #f5e6d5; box-shadow: 12px 17px 0 rgba(32,37,31,0.12); transform: rotate(6deg); }
.code-line { display: block; width: 91%; height: 8px; margin-bottom: 1rem; background: rgba(32,37,31,0.22); border-radius: 3px; }
.code-line::before { display: block; width: 28%; height: 100%; background: var(--teal); border-radius: 3px; content: ""; }.code-line-short { width: 44%; }.code-line-indent { width: 78%; margin-left: 12%; background: rgba(32,37,31,0.12); }.code-line-indent::before { width: 45%; background: var(--coral); }.code-line-indent.short { width: 54%; }
.code-stamp { position: absolute; right: 1.3rem; bottom: 1.2rem; display: grid; width: 72px; height: 72px; place-items: center; color: var(--coral); border: 2px solid var(--coral); border-radius: 50%; font-family: var(--mono); font-size: 0.5rem; font-weight: 500; letter-spacing: 0.08em; line-height: 1.3; text-align: center; transform: rotate(-15deg); }

.archive { width: min(calc(100% - 128px), 1344px); margin-inline: auto; color: var(--ink); background: var(--paper-deep); border: 1px solid var(--ink); box-shadow: 7px 7px 0 var(--paper-edge); transition: background-color 450ms ease; }
.archive-inner { width: min(100%, 1200px); padding-top: clamp(5rem, 9vw, 8rem); padding-bottom: clamp(5rem, 8vw, 7rem); }
.archive-top { display: flex; justify-content: space-between; border-bottom: 1px solid var(--line); padding-bottom: 1.2rem; }
.archive-top .section-kicker, .archive-note { color: var(--muted); }
.archive-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; padding-top: 4.5rem; padding-bottom: 5rem; }
.archive-heading h2 { font-size: clamp(3.3rem, 6vw, 6.4rem); }
.archive-heading p { max-width: 355px; align-self: end; margin-bottom: 0.35rem; color: var(--muted); font-size: 0.93rem; line-height: 1.65; }
.photo-grid { display: grid; grid-template-columns: 1fr 1.35fr 0.8fr; grid-template-rows: 280px 220px; gap: 1rem; }
.photo-grid-empty { grid-column: 1 / -1; margin: 0; padding: 3rem 0; color: var(--muted); font-family: var(--serif); font-size: 1.4rem; font-style: italic; }
.photo { position: relative; display: flex; min-height: 0; flex-direction: column; margin: 0; overflow: visible; padding: 0.6rem 0.6rem 2.65rem; background: var(--paper); border: 1px solid var(--ink); box-shadow: 5px 6px 0 var(--paper-edge); transform: rotate(-1deg); }
.photo:nth-child(2) { transform: rotate(1.2deg); }.photo:nth-child(3) { transform: rotate(-0.6deg); }.photo:nth-child(4) { transform: rotate(1.6deg); }
.photo img { width: 100%; height: 100%; min-height: 0; flex: 1; object-fit: cover; filter: grayscale(0.85) sepia(0.18) contrast(1.08); opacity: 0.82; transition: transform 700ms cubic-bezier(0.2,0.7,0.2,1), opacity 300ms ease; }
.photo:hover img { opacity: 1; transform: scale(1.06); }
.photo::after { display: none; }
.photo-tall { grid-row: span 2; }.photo-wide { grid-column: span 2; }.photo-square { grid-column: 2; }
.photo-small { grid-column: 3; grid-row: 2; }
.photo figcaption { position: absolute; z-index: 1; right: 1rem; bottom: 0.75rem; left: 1rem; display: flex; justify-content: space-between; color: var(--ink); font-family: var(--mono); font-size: 0.56rem; letter-spacing: 0.06em; text-transform: uppercase; }
.archive-bottom { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--line); margin-top: 1rem; padding-top: 1.1rem; }
.archive-bottom p { margin: 0; color: var(--muted); font-family: var(--serif); font-size: 1.2rem; font-style: italic; }

.contact { display: flex; min-height: 650px; flex-direction: column; justify-content: space-between; padding-top: clamp(5rem, 8vw, 7rem); padding-bottom: 1.5rem; color: var(--white); background: var(--contact-bg); border: 1px solid var(--ink); box-shadow: 7px 7px 0 var(--paper-edge); transition: color 450ms ease, background-color 450ms ease; }
.contact-inner { width: 100%; padding-left: 16.6%; }
.eyebrow-light { color: rgba(241,240,234,0.62); }
.contact h2 { max-width: 900px; margin: 3.5rem 0 3rem; font-size: clamp(4rem, 8vw, 8.2rem); }
.contact-email { display: inline-flex; align-items: center; max-width: 100%; gap: 1rem; border-bottom: 1px solid rgba(241,240,234,0.38); padding-bottom: 0.35rem; overflow-wrap: anywhere; font-family: var(--serif); font-size: clamp(1.3rem, 2vw, 2rem); transition: color 180ms ease, border-color 180ms ease; }
.contact-email:hover { color: var(--lime); border-color: var(--lime); }
.contact-email .arrow { color: var(--coral); font-family: var(--sans); }
.contact-footer { display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; width: 100%; border-top: 1px solid rgba(241,240,234,0.22); padding-top: 1rem; color: rgba(241,240,234,0.54); font-family: var(--mono); font-size: 0.57rem; letter-spacing: 0.06em; text-transform: uppercase; }
.contact-footer p { margin: 0; }
.social-links { display: flex; gap: 1.8rem; color: var(--white); }
.social-links a { transition: color 180ms ease; }.social-links a:hover { color: var(--lime); }.social-links span { color: var(--coral); font-size: 0.8rem; }
.copyright { justify-self: end; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 110ms; }.reveal-delay-2 { transition-delay: 220ms; }

@media (max-width: 960px) {
  .section-shell, .site-header { width: min(calc(100% - 48px), var(--max-width)); }
  .archive { width: min(calc(100% - 48px), var(--max-width)); }
  .hero { grid-template-columns: 1fr 0.8fr; gap: 4vw; }
  h1 { font-size: clamp(3.8rem, 8vw, 6rem); }
  .hero-art { min-height: 560px; }
  .work-heading { grid-template-columns: 1fr; gap: 2.5rem; }
  .project-visual { height: 300px; }
  .project-info { min-height: 255px; padding: 1.3rem; }
  .archive-heading { gap: 4vw; }
  .contact-inner { padding-left: 8.3%; }
}

@media (max-width: 700px) {
  .section-shell, .site-header { width: min(calc(100% - 36px), var(--max-width)); }
  .archive { width: min(calc(100% - 36px), var(--max-width)); }
  .site-header { height: 76px; }
  .brand-name { font-size: 0.8rem; }
  .menu-toggle { position: relative; z-index: 12; display: flex; width: 44px; height: 44px; flex-direction: column; align-items: center; justify-content: center; gap: 6px; margin-left: auto; border: 0; color: var(--ink); background: transparent; cursor: pointer; }
  .menu-line { display: block; width: 20px; height: 1px; background: currentColor; transition: transform 180ms ease; }
  .menu-toggle[aria-expanded="true"] .menu-line:first-of-type { transform: translateY(3.5px) rotate(45deg); }.menu-toggle[aria-expanded="true"] .menu-line:last-of-type { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; display: flex; width: 100%; height: 100dvh; flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.8rem; padding: 36px; margin: 0; background: var(--paper); opacity: 0; pointer-events: none; transform: translateY(-10px); transition: color 450ms ease, background-color 450ms ease, opacity 220ms ease, transform 220ms ease; }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav a { color: var(--ink); font-family: var(--sans); font-size: 2.4rem; letter-spacing: -0.07em; text-transform: none; }
  .site-nav a::after { display: none; }
  .header-actions { gap: 0.35rem; }
  .theme-toggle { width: 44px; height: 44px; }
  .hero { display: block; min-height: auto; padding-top: 4rem; padding-bottom: 1.6rem; }
  .hero-copy { padding-bottom: 3.5rem; }
  h1 { max-width: 570px; margin-bottom: 1.6rem; font-size: clamp(3.7rem, 16vw, 6rem); }
  .hero-summary { font-size: 0.98rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 1.25rem; }
  .hero-art { min-height: 430px; }
  .hero-foot { margin-top: 1.8rem; }
  .hero-index { display: none; }
  .work { padding-bottom: 7rem; }
  .work-heading { margin-bottom: 3rem; }
  .work-heading-copy { display: block; }
  .work-heading-copy h2 { margin-bottom: 1.5rem; }
  .project-list { grid-template-columns: 1fr; }
  .project-visual { height: 330px; }
  .archive-inner { padding-top: 4.5rem; padding-bottom: 4.5rem; }
  .archive-heading { display: block; padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .archive-heading h2 { margin-bottom: 2rem; font-size: clamp(3.5rem, 15vw, 5.7rem); }
  .photo-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 320px 220px 220px; }
  .photo-tall { grid-column: 1; grid-row: span 2; }.photo-wide { grid-column: 2; grid-row: span 1; }.photo-square { grid-column: 2; grid-row: 2; }.photo-small { grid-column: 1 / -1; grid-row: 3; }
  .archive-bottom { align-items: flex-start; flex-direction: column; gap: 1.4rem; }
  .contact { min-height: 620px; }.contact-inner { padding-left: 0; }.contact h2 { margin-top: 3rem; margin-bottom: 2.5rem; font-size: clamp(3.6rem, 15vw, 6rem); }
  .contact-footer { grid-template-columns: 1fr 1fr; gap: 1.5rem; }.social-links { grid-column: 1 / -1; grid-row: 1; flex-wrap: wrap; gap: 1rem 1.4rem; }.copyright { justify-self: end; }
}

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