/* The supplied specification defines the palette, type scale, spacing,
   48px glass radius, 1.5px icon strokes, and mobile-first breakpoints. */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, p { margin: 0; }
button { padding: 0; }
html, body {
  font-family: 'Helvetica Neue Light', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --paper: #f5f4f0;
  --white: #fafaf8;
  --ink: #1c1c1a;
  --muted: #63635d;
  --line: rgba(28, 28, 26, 0.16);
}
html { width: 100%; min-height: 100%; overflow-x: clip; background: var(--paper); }
body { width: 100%; min-height: 100%; overflow-x: clip; background: var(--paper); color: var(--ink); }
html.menu-open, body.menu-open { overflow: hidden; }

.bg-video {
  position: fixed; top: 0; left: 0;
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
  pointer-events: none;
}


.hero {
  position: relative; z-index: 10;
  display: flex; flex-direction: column;
  width: 100%; height: 100vh; height: 100dvh;
  color: #000;
  pointer-events: none;   /* only interactive children opt back in */
}
.icon { flex: none; }

.rule { position: absolute; top: 0; bottom: 0; display: none; flex-direction: column; align-items: center; }
.rule--left  { left: 1.25rem; }
.rule--right { right: 1.25rem; }
.rule__seg { width: 1px; background: rgba(0, 0, 0, 0.2); }
.rule__seg--end { height: 15%; }
.rule__seg--mid { flex: 1 1 0%; }
.rule__plus { font-size: 0.75rem; line-height: 1; color: rgba(0, 0, 0, 0.4); padding: 0.25rem 0; }
@media (min-width: 768px) { .rule { display: flex; } }

.nav { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem; }
.nav__item {
  display: inline-flex; align-items: center; gap: 0.625rem;
  color: #000; background: none; border: 0; font: inherit; text-decoration: none;
  cursor: pointer; pointer-events: auto; transition: opacity 300ms;
}
.nav__item:hover { opacity: 0.6; }
.nav__label { font-size: 0.875rem; line-height: 1.25rem; letter-spacing: 0.025em; }
.nav__label--menu { display: none; }          /* hamburger is icon-only on mobile */
.nav__dot { width: 8px; height: 8px; border-radius: 9999px; background: #000; }

@media (min-width: 640px) { .nav { padding: 1.25rem 1.5rem; } .nav__label--menu { display: inline; } }
@media (min-width: 768px) { .nav { padding: 1.5rem 3rem; } }

.hero-bottom {
  position: relative; z-index: 2;
  margin-top: auto;
  display: flex; flex-direction: column; gap: 1.5rem;
  padding: 0 1.25rem 1.5rem;     /* matches .nav so columns align with the navbar */
}
@media (min-width: 640px) { .hero-bottom { padding: 0 1.5rem 2rem; } }
@media (min-width: 768px) {
  .hero-bottom {
    flex: 1; margin-top: 0;
    flex-direction: row; align-items: stretch; justify-content: space-between;
    gap: 3rem; padding: 2rem 3rem 3rem;
  }
  .lede { align-self: flex-start; }   /* copy pinned top-left */
  .card { align-self: flex-end; }     /* card pinned bottom-right */
}

.lede { max-width: 24rem; }
.lede__title { font-size: 1.25rem; font-weight: 300; line-height: 1.25; letter-spacing: -0.025em; color: #000; }
.lede__body  { margin-top: 0.75rem; max-width: 280px; font-size: 0.75rem; line-height: 1.625; color: rgba(0, 0, 0, 0.6); }

@media (min-width: 640px)  { .lede__title { font-size: 1.5rem; }   .lede__body { font-size: 0.875rem; } }
@media (min-width: 768px)  { .lede__title { font-size: 1.875rem; } .lede__body { margin-top: 1rem; } }
@media (min-width: 1024px) { .lede__title { font-size: 2.25rem; } }

.chamfer {
  position: relative; display: flex; align-items: center; justify-content: space-between;
  width: 220px; height: 44px; margin-top: 1.5rem; padding: 0 1.25rem;
  color: #000; text-decoration: none; pointer-events: auto; transition: opacity 300ms;
}
.chamfer:hover { opacity: 0.7; }

/* mobile-only frosted backing, clipped to the same chamfer silhouette */
.chamfer__glass {
  position: absolute; inset: 0;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.2);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}
.chamfer__outline { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.chamfer__label { position: relative; font-size: 0.75rem; letter-spacing: 0.025em; }
.chamfer .icon { position: relative; }

@media (min-width: 640px) {
  .chamfer { width: 260px; height: 48px; padding: 0 1.5rem; }
  .chamfer__label { font-size: 0.875rem; }
  .chamfer__glass { background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; border-color: transparent; }
}
@media (min-width: 768px) { .chamfer { margin-top: 2rem; } }

.card {
  position: relative;
  display: flex; flex-direction: column; justify-content: space-between;
  width: 340px; max-width: 100%; height: 460px;
  padding: 2rem;
  border-radius: 48px;
  overflow: hidden;
  background: transparent;
  border: 1px solid rgba(47, 47, 47, 0.15);
  pointer-events: auto;
  animation: fade-slide-up-card 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes fade-slide-up-card {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Keep the glass treatment bounded to the card, with no canvas readback. */
.card__frost {
  position: absolute; inset: 0; z-index: 1;
  border-radius: 48px; pointer-events: none;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: inset 0 1.5px 2px rgba(255, 255, 255, 0.3),
              inset 0 -1px 2px rgba(0, 0, 0, 0.15);
  transition: background 400ms;
}
.card.group:hover .card__frost { background: rgba(255, 255, 255, 0.1); }

.card__head, .card__body, .card__wave { position: relative; z-index: 2; }

.card__head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
              padding-bottom: 0.75rem; border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
.card__title { font-size: 1rem; font-weight: 500; letter-spacing: -0.025em; }
.card__index { font-size: 0.75rem; color: rgba(0, 0, 0, 0.4); }
.card__body { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
.finding__title { font-size: 0.875rem; font-weight: 600; letter-spacing: -0.025em; }
.finding__text { margin-top: 0.25rem; font-size: 0.75rem; line-height: 1.625; color: rgba(0, 0, 0, 0.5); }
.card__wave { display: block; width: 100%; height: auto; margin-top: 1.25rem; }

@media (min-width: 640px) { .card__title { font-size: 1.125rem; } }
@media (min-width: 768px) {
  .card__head { padding-bottom: 1rem; }
  .card__title { font-size: 1.25rem; }
  .card__body { gap: 1.25rem; margin-top: 1.25rem; }
  .finding__title { font-size: 1rem; }
  .finding__text { font-size: 0.875rem; margin-top: 0.375rem; }
  .card__wave { margin-top: 1.5rem; }
}

.menu { position: fixed; inset: 0; z-index: 50; visibility: hidden; pointer-events: none;
        transition: visibility 0s linear 500ms; }
.menu.is-open { visibility: visible; pointer-events: auto; transition-delay: 0s; }

.menu__backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.4);
                  opacity: 0; transition: opacity 500ms; }
.menu.is-open .menu__backdrop { opacity: 1; }

.menu__panel { position: absolute; top: 0; left: 0; display: flex; flex-direction: column;
               width: 100%; height: 100%; padding: 1.5rem 2rem; background: #f5f4f0;
               transform: translateX(-100%);
               transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1); }
.menu.is-open .menu__panel { transform: translateX(0); }
@media (min-width: 640px) { .menu__panel { width: 380px; padding: 1.5rem 2.5rem; } }

.menu__close { display: inline-flex; align-items: center; gap: 0.625rem; align-self: flex-start;
               margin-bottom: 3rem; background: none; border: 0; font: inherit; font-size: 0.875rem;
               color: #000; cursor: pointer; transition: opacity 300ms; }
.menu__close:hover { opacity: 0.6; }

.menu__nav { display: flex; flex-direction: column; }
.menu__link { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0;
              border-bottom: 1px solid rgba(0, 0, 0, 0.1); color: #000; text-decoration: none;
              opacity: 0; transform: translateY(20px); transition: opacity 500ms, transform 500ms; }
.menu__linkText { font-size: 1.5rem; font-weight: 300; letter-spacing: -0.025em; transition: transform 300ms; }
.menu__link:hover .menu__linkText { transform: translateX(8px); }
.menu__arrow { opacity: 0; transform: translateX(8px); transition: opacity 300ms, transform 300ms; }
.menu__link:hover .menu__arrow { opacity: 1; transform: translateX(0); }
@media (min-width: 640px) { .menu__linkText { font-size: 1.875rem; } }

.menu.is-open .menu__link { opacity: 1; transform: translateY(0); }
.menu.is-open .menu__link:nth-child(1) { transition-delay: 150ms; }
.menu.is-open .menu__link:nth-child(2) { transition-delay: 225ms; }
.menu.is-open .menu__link:nth-child(3) { transition-delay: 300ms; }
.menu.is-open .menu__link:nth-child(4) { transition-delay: 375ms; }
.menu.is-open .menu__link:nth-child(5) { transition-delay: 450ms; }

.menu__foot { margin-top: auto; padding: 1.5rem 0 2rem; border-top: 1px solid rgba(0, 0, 0, 0.1);
              opacity: 0; transform: translateY(20px); transition: opacity 500ms, transform 500ms; }
.menu.is-open .menu__foot { opacity: 1; transform: translateY(0); transition-delay: 600ms; }
.menu__footLabel { display: block; margin-bottom: 0.75rem; font-size: 0.75rem; text-transform: uppercase;
                   letter-spacing: 0.025em; color: rgba(0, 0, 0, 0.4); }
.menu__mail { font-size: 0.875rem; color: rgba(0, 0, 0, 0.7); text-decoration: none; transition: color 300ms; }
.menu__mail:hover { color: #000; }

/* The hero remains a complete composition at smaller viewport heights. */
.nav, .lede { flex-shrink: 0; }
.hero-bottom { min-height: 0; }
.card__head, .card__body, .card__wave { flex-shrink: 0; }

/* Keep keyboard focus visible without changing the resting design. */
a:focus-visible, button:focus-visible { outline: 2px solid currentColor; outline-offset: 5px; }
.menu__close, .menu__link, .menu__mail { pointer-events: auto; }
.menu__link:focus-visible .menu__arrow { opacity: 1; transform: translateX(0); }

@media (prefers-reduced-motion: reduce) {
  .card { animation: none; }
}

@media (prefers-reduced-motion: reduce) { * { transition-duration: 0.01ms !important; } }

/* Shared navigation and the live scene. The five source files remain build-free. */
#scene-root { position: fixed; inset: 0; z-index: 0; pointer-events: none; opacity: 0; }
#scene-root canvas { display: block; width: 100%; height: 100%; }
body[data-scene-ready] .bg-video { visibility: hidden; }
body:not([data-page="home"]) .bg-video,
body:not([data-page="home"]) #scene-root { display: none; }
#app { position: relative; z-index: 10; outline: none; }
.site-header { position: fixed; inset: 0 0 auto; z-index: 30; border-bottom: 1px solid transparent; }
.site-header.is-scrolled, body:not([data-page="home"]) .site-header { background: var(--paper); border-color: var(--line); }
.nav__brand { position: absolute; left: 50%; transform: translateX(-50%); font-size: 16px; color: inherit; text-decoration: none; letter-spacing: -0.04em; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 100; padding: 12px 16px; background: var(--paper); color: var(--ink); transform: translateY(-150%); }
.skip-link:focus { transform: none; }
.hero { height: 100svh; min-height: 780px; padding-top: 68px; }
.hero-bottom { padding-bottom: 64px; }
.hero__scroll { position: absolute; left: 20px; bottom: 22px; display: inline-flex; align-items: center; gap: 16px; font-size: 12px; color: inherit; text-decoration: none; pointer-events: auto; }
.finding__title a { color: inherit; text-decoration: none; }
.finding__title a:hover { text-decoration: underline; text-underline-offset: 3px; }
.menu__home { color: inherit; text-decoration: none; font-size: 13px; margin: 24px 0 32px; }
.menu__panel { overflow-y: auto; overscroll-behavior: contain; }
.menu__foot { flex-shrink: 0; }
.menu__link[aria-current="page"] .menu__linkText { text-decoration: underline; text-underline-offset: 6px; }

/* Open type, simple rows, and a small, consistent spacing scale. */
.content-section { padding: 56px 20px; background: var(--white); }
.content-section--paper { background: var(--paper); }
.content-section--ink { background: var(--ink); color: var(--paper); }
.content-section > *, .contact-strip > *, .site-footer > * { max-width: 1280px; }
.section-layout { display: grid; gap: 32px; max-width: 1280px; margin: 0 auto; }
.section-label { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; }
.section-label h2, .section-heading h2, .page-section > h2 { font-size: 24px; line-height: 1.2; font-weight: 400; letter-spacing: -0.03em; }
.section-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; margin: 0 auto; }
.section-heading + .section-intro { margin-top: 20px; }
.statement { font-size: 30px; line-height: 1.22; letter-spacing: -0.035em; max-width: 740px; }
.reading-text { font-size: 16px; line-height: 1.7; max-width: 660px; color: var(--muted); margin: 24px 0 32px; }
.desktop-break { display: none; }
.principle-row { display: grid; gap: 12px; border-top: 1px solid var(--line); padding: 24px 0; }
.principle-row h3 { font-size: 16px; font-weight: 500; letter-spacing: -0.02em; }
.principle-row p { font-size: 15px; line-height: 1.65; color: var(--muted); }
.text-link, .back-link { display: inline-flex; align-items: center; gap: 12px; color: inherit; font-size: 13px; line-height: 1.5; text-decoration: none; }
.text-link:hover span, .back-link:hover span { text-decoration: underline; text-underline-offset: 4px; }
.back-link .icon { order: -1; transform: rotate(180deg); }
.section-intro { font-size: 18px; line-height: 1.5; color: var(--muted); margin: 20px auto 32px; }
.record-list { margin: 0 auto; }
.record { display: grid; grid-template-columns: minmax(0, 1fr) 18px; align-items: center; gap: 16px; color: inherit; text-decoration: none; padding: 28px 0; border-top: 1px solid var(--line); }
.record h3 { font-size: 20px; line-height: 1.3; font-weight: 400; letter-spacing: -0.025em; }
.record p { font-size: 14px; line-height: 1.65; color: var(--muted); margin-top: 10px; max-width: 620px; }
.record:hover h3 { text-decoration: underline; text-underline-offset: 5px; text-decoration-thickness: 1px; }
.record__meta { grid-row: 2; font-size: 12px; color: var(--muted); }
.record > .icon { grid-column: 2; grid-row: 1; }
.project-columns { display: grid; gap: 40px; max-width: 1280px; margin: 40px auto 0; }
.project-summary { border-top: 1px solid rgba(245, 244, 240, 0.25); padding-top: 24px; }
.project-summary h3 { font-size: 24px; line-height: 1.25; font-weight: 400; letter-spacing: -0.025em; }
.project-summary p { max-width: 420px; margin: 16px 0 24px; color: #bdbdb5; font-size: 15px; line-height: 1.7; }
.content-section#journal .record { margin: 0 auto; }
.content-section#journal .section-heading { margin-bottom: 32px; }
.contact-strip { position: relative; padding: 48px 20px; border-top: 1px solid var(--line); background: var(--paper); }
.contact-strip h2 { font-size: 28px; font-weight: 400; letter-spacing: -0.03em; }
.contact-strip p { margin: 16px 0 24px; max-width: 520px; color: var(--muted); font-size: 15px; line-height: 1.65; }
.site-footer { position: relative; z-index: 10; display: flex; flex-wrap: wrap; gap: 24px 40px; align-items: center; padding: 32px 20px; border-top: 1px solid var(--line); background: var(--paper); font-size: 12px; }
.site-footer a { color: inherit; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; text-underline-offset: 4px; }
.site-footer .footer-brand { font-size: 18px; letter-spacing: -0.04em; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 20px; }

/* The inner pages share a normal document layout with real, addressable routes. */
.page-content { padding: 116px 20px 56px; background: var(--white); min-height: 100svh; }
.page-content > * { max-width: 1184px; margin-left: auto; margin-right: auto; }
.page-heading { padding-bottom: 48px; border-bottom: 1px solid var(--line); }
.page-heading h1 { font-size: 44px; line-height: 1.1; font-weight: 300; letter-spacing: -0.045em; }
.page-heading p { font-size: 19px; line-height: 1.5; color: var(--muted); max-width: 640px; margin-top: 24px; }
.page-section { padding: 40px 0; border-bottom: 1px solid var(--line); }
.page-section:last-child { border-bottom: 0; padding-bottom: 8px; }
.prose { font-size: 16px; line-height: 1.75; color: var(--muted); }
.prose > * + * { margin-top: 24px; }
.prose h2, .prose h3 { color: var(--ink); font-weight: 400; letter-spacing: -0.025em; }
.prose h2 { font-size: 26px; line-height: 1.3; }
.prose h3 { font-size: 18px; }
.prose ul { padding-left: 20px; }
.prose li + li { margin-top: 10px; }
.prose .lead-paragraph { font-size: 23px; line-height: 1.5; color: var(--ink); letter-spacing: -0.02em; }
.filter-bar { display: flex; gap: 24px; padding-top: 32px; border-bottom: 1px solid var(--line); }
.filter-bar button { border: 0; border-bottom: 2px solid transparent; background: transparent; color: var(--muted); font: inherit; font-size: 13px; padding: 12px 0; cursor: pointer; }
.filter-bar button[aria-pressed="true"] { border-color: var(--ink); color: var(--ink); }
.filter-status { font-size: 12px; color: var(--muted); min-height: 18px; margin-top: 12px; }
.study { display: grid; gap: 24px; padding: 36px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 100px; }
.study[hidden] { display: none; }
.study__heading h2 { font-size: 24px; font-weight: 400; letter-spacing: -0.03em; }
.study__heading span, .project-kind { display: block; margin-top: 12px; color: var(--muted); font-size: 13px; }
details { border-top: 1px solid var(--line); }
summary { padding: 16px 0; color: var(--ink); font-size: 14px; cursor: pointer; }
.details-body { padding: 8px 0 16px; }
.details-body h3 { margin-top: 16px; }
.details-body h3:first-child { margin-top: 0; }
.details-body p { margin-top: 8px; }
.listening-room { display: grid; gap: 32px; padding: 40px 0 0; scroll-margin-top: 100px; }
.listening-room h2 { font-size: 26px; font-weight: 400; letter-spacing: -0.03em; }
.listening-room p { margin-top: 16px; font-size: 15px; line-height: 1.6; max-width: 560px; }
.listening-room .muted, .muted { color: var(--muted); font-size: 13px; }
.audio-study { align-self: center; }
.audio-study audio { width: 100%; max-width: 440px; }
[hidden] { display: none !important; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 16px; min-height: 44px; padding: 10px 16px; background: transparent; color: var(--ink); border: 1px solid var(--line); border-radius: 4px; font: inherit; font-size: 14px; line-height: 1.5; text-decoration: none; cursor: pointer; transition: background 150ms, color 150ms; }
.button:hover { background: #eae9e3; }
.button--solid { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.button--solid:hover { background: #353531; }
.project-detail { display: grid; gap: 24px; scroll-margin-top: 100px; }
.project-detail h2 { font-size: 26px; font-weight: 400; letter-spacing: -0.03em; line-height: 1.3; }
.notebook { margin-left: 0; margin-right: 0; }
.notebook > div { display: grid; grid-template-columns: 90px minmax(0, 1fr); gap: 16px; padding: 16px 0; border-top: 1px solid var(--line); }
.notebook dt { color: var(--ink); font-size: 14px; }
.notebook dd { margin: 0; font-size: 14px; }
.journal-list { margin-top: 16px; }
.journal-list .record:first-child { border-top: 0; }
.article-page { max-width: 900px; }
.article-heading { padding: 36px 0; border-bottom: 1px solid var(--line); }
.article-heading h1 { font-size: 38px; line-height: 1.13; font-weight: 300; letter-spacing: -0.04em; max-width: 780px; }
.article-heading > p { font-size: 13px; color: var(--muted); margin-top: 24px; }
.article-prose { max-width: 680px; margin: 40px auto 0; }
.article-prose h2 { margin-top: 40px; }
.article-next { padding-top: 28px; border-top: 1px solid var(--line); margin-top: 48px; }
.contact-layout { display: grid; gap: 40px; }
.contact-info h2 { font-size: 24px; font-weight: 400; letter-spacing: -0.03em; }
.contact-email { display: inline-block; color: inherit; font-size: 18px; margin: 20px 0 8px; text-underline-offset: 5px; }
.contact-info p { font-size: 15px; line-height: 1.65; max-width: 360px; margin-top: 16px; }
.contact-info p.muted { font-size: 13px; }
.contact-form { display: flex; flex-direction: column; gap: 24px; min-width: 0; }
.contact-form label { display: flex; flex-direction: column; gap: 10px; font-size: 14px; line-height: 1.5; }
.form-row { display: grid; gap: 24px; }
input, select, textarea { width: 100%; min-width: 0; padding: 12px; border: 1px solid #c7c7bf; border-radius: 4px; background: var(--white); color: var(--ink); font: inherit; font-size: 16px; line-height: 1.5; }
textarea { resize: vertical; }
input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.contact-form > .button { align-self: flex-start; }
.form-note { margin-top: -12px; font-size: 12px; color: var(--muted); }
.email-draft { padding-top: 24px; border-top: 1px solid var(--line); }
.email-draft h3 { font-size: 20px; font-weight: 400; }
.email-draft p { font-size: 14px; margin-top: 12px; color: var(--muted); }
.email-draft pre { white-space: pre-wrap; overflow-wrap: anywhere; padding: 20px; margin: 20px 0; background: var(--paper); font: inherit; font-size: 14px; line-height: 1.7; }
.draft-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Scroll controls the reveal directly; content stays available without scripting. */
.motion-enabled .reveal { opacity: var(--reveal-opacity, 1); transform: var(--reveal-transform, none); }
.motion-enabled .reveal.is-revealing { will-change: opacity, transform; }
.motion-enabled .reveal:focus-within { opacity: 1 !important; transform: none !important; filter: none !important; }
[id] { scroll-margin-top: 100px; }

@media (min-width: 640px) {
  .hero__scroll { left: 24px; }
  .content-section { padding: 64px 24px; }
  .page-content { padding: 128px 24px 64px; }
  .page-heading h1 { font-size: 56px; }
  .article-heading h1 { font-size: 54px; }
  .principle-row { grid-template-columns: 140px minmax(0, 1fr); gap: 32px; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .record { grid-template-columns: minmax(0, 1fr) 160px 18px; gap: 24px; padding: 32px 0; }
  .record__meta { grid-row: auto; }
  .record > .icon { grid-column: auto; grid-row: auto; }
  .record h3 { font-size: 24px; }
  .contact-strip { padding: 48px 24px; }
  .site-footer { padding: 32px 24px; }
}
@media (min-width: 768px) {
  .hero { min-height: 680px; }
  .hero-bottom { padding-bottom: 48px; }
  .hero__scroll { left: 48px; bottom: 48px; }
  .content-section { padding: 80px 48px; }
  .section-layout { grid-template-columns: minmax(180px, 1fr) minmax(0, 2fr); gap: 64px; }
  .section-label { display: block; }
  .section-label .text-link { margin-top: 24px; }
  .section-label h2, .section-heading h2, .page-section > h2 { font-size: 28px; }
  .statement { font-size: 38px; }
  .project-columns { grid-template-columns: 1fr 1fr; gap: 64px; }
  .project-summary h3 { font-size: 28px; }
  .page-content { padding: 148px 48px 80px; }
  .page-heading { padding-bottom: 56px; }
  .page-heading p { font-size: 22px; }
  .page-section { padding: 56px 0; }
  .study, .project-detail { grid-template-columns: minmax(180px, 1fr) minmax(0, 2fr); gap: 64px; }
  .study { padding: 48px 0; }
  .listening-room { grid-template-columns: 1fr 1fr; gap: 64px; padding-top: 48px; }
  .contact-layout { grid-template-columns: minmax(200px, 1fr) minmax(0, 1.4fr); gap: 64px; }
  .contact-strip { padding: 56px 48px; }
  .contact-strip h2 { font-size: 36px; }
  .site-footer { padding: 32px 48px; }
  .site-footer > a:last-child { margin-left: auto; }
}
@media (min-width: 1024px) {
  .statement { font-size: 44px; }
  .desktop-break { display: inline; }
}
@media (prefers-reduced-motion: reduce) {
  .motion-enabled .reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
  .card { animation: none; }
}
