:root {
  --paper: #f6f3ea;
  --paper-soft: #fbfaf5;
  --ink: #151515;
  --muted: #5f625f;
  --line: #d8d2c3;
  --charcoal: #222529;
  --blue: #1f6f86;
  --brick: #9b3f2f;
  --green: #60735a;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 50;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 4px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: relative;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(90px, 1fr);
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(246, 243, 234, 0.88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(14px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(246, 243, 234, 0.96);
  border-bottom-color: var(--line);
}

.brand,
.nav a,
.header-cta,
.button,
.contact-link,
.index-list a {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 760;
}

.brand img {
  width: 34px;
  height: 34px;
}

.brand span {
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: var(--muted);
  font-size: 14px;
}

.nav a,
.header-cta {
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.nav a:hover,
.nav a:focus {
  color: var(--ink);
}

.header-cta {
  justify-self: end;
  padding: 9px 14px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.header-cta:hover,
.header-cta:focus {
  background: var(--ink);
  color: var(--paper);
}

.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: calc(var(--max) + 120px);
  margin: 0 auto;
  padding: 62px clamp(18px, 4vw, 56px) 46px;
}

.hero-kicker {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: clamp(28px, 6vw, 82px);
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
  text-transform: uppercase;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: end;
}

.eyebrow {
  color: var(--blue);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 920px;
  margin-top: 18px;
  font-size: clamp(52px, 8.4vw, 118px);
  line-height: 0.95;
  font-weight: 820;
}

.hero-aside {
  border-top: 2px solid var(--ink);
  padding-top: 18px;
}

.hero-aside p {
  color: var(--charcoal);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 760;
}

.button.primary {
  background: var(--ink);
  color: var(--paper);
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--paper-soft);
}

.work-index,
.deliverables,
.method,
.notes,
.contact-section,
.site-footer {
  max-width: calc(var(--max) + 120px);
  margin: 0 auto;
  padding: clamp(62px, 8vw, 104px) clamp(18px, 4vw, 56px);
}

.work-index {
  border-top: 1px solid var(--ink);
}

.work-index h2 {
  max-width: 700px;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1;
}

.index-list {
  margin-top: 36px;
  border-top: 1px solid var(--line);
}

.index-list a {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: clamp(20px, 2.5vw, 34px);
  line-height: 1.1;
  transition: color 160ms ease, padding-left 160ms ease;
}

.index-list a:hover,
.index-list a:focus {
  color: var(--brick);
  padding-left: 8px;
}

.index-list span,
.deliverable-list span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 820;
}

.studio-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: stretch;
  background: var(--charcoal);
  color: var(--paper);
}

.studio-media {
  min-height: 560px;
}

.studio-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.studio-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 6vw, 86px) clamp(18px, 5vw, 64px) clamp(42px, 6vw, 86px) 0;
}

.studio-copy .eyebrow {
  color: #b7d2cc;
}

.studio-copy h2,
.section-heading h2,
.method-intro h2,
.notes-heading h2,
.contact-section h2,
.not-found-copy h1 {
  font-size: clamp(36px, 5.2vw, 72px);
  line-height: 1;
  font-weight: 820;
}

.studio-copy h2,
.section-heading h2,
.method-intro h2,
.notes-heading h2,
.contact-section h2 {
  margin-top: 14px;
}

.studio-copy p:not(.eyebrow),
.contact-section p:not(.eyebrow) {
  margin-top: 26px;
  color: rgba(246, 243, 234, 0.78);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.6;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(260px, 0.28fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
}

.section-heading h2 {
  grid-column: 1 / -1;
  max-width: 920px;
}

.deliverable-list {
  margin-top: 46px;
  border-top: 1px solid var(--line);
}

.deliverable-list article {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: clamp(18px, 4vw, 56px);
  padding: clamp(24px, 4vw, 44px) 0;
  border-bottom: 1px solid var(--line);
}

.deliverable-list h3 {
  max-width: 760px;
  font-size: clamp(28px, 3.8vw, 58px);
  line-height: 1.02;
}

.deliverable-list p {
  max-width: 720px;
  margin-top: 12px;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.5;
}

.method {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 92px);
  background: var(--paper-soft);
}

.method-steps {
  border-top: 1px solid var(--ink);
}

.method-steps article {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.method-steps h3 {
  font-size: clamp(23px, 2.5vw, 36px);
  line-height: 1.08;
}

.method-steps p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.notes {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 92px);
}

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

.note-list p {
  padding: 21px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.note-list strong {
  color: var(--ink);
}

.contact-section {
  background: var(--ink);
  color: var(--paper);
}

.contact-section .eyebrow {
  color: #b7d2cc;
}

.contact-section h2 {
  max-width: 900px;
}

.contact-section p:not(.eyebrow) {
  max-width: 760px;
}

.contact-link {
  display: inline-flex;
  max-width: 100%;
  margin-top: 34px;
  overflow-wrap: anywhere;
  color: var(--paper);
  font-size: clamp(24px, 4vw, 56px);
  line-height: 1.05;
  font-weight: 820;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding-top: 26px;
  padding-bottom: 30px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 780;
}

.site-footer img {
  width: 28px;
  height: 28px;
}

.not-found {
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.45fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: end;
  max-width: calc(var(--max) + 120px);
  margin: 0 auto;
  padding: 62px clamp(18px, 4vw, 56px) 56px;
}

.not-found-copy h1 {
  max-width: 860px;
  margin-top: 16px;
}

.not-found-copy p:not(.eyebrow) {
  max-width: 660px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.55;
}

.not-found-note {
  padding-top: 18px;
  border-top: 2px solid var(--ink);
}

.not-found-note p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 16px;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .hero-grid,
  .studio-band,
  .method,
  .notes,
  .not-found {
    grid-template-columns: 1fr;
  }

  .studio-copy {
    padding: 42px 18px 56px;
  }

  .studio-media,
  .studio-media img {
    min-height: 360px;
  }

  .section-heading {
    display: block;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand span {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header-cta {
    padding: 8px 12px;
  }

  .hero {
    padding: 42px 16px 40px;
  }

  h1 {
    font-size: 48px;
  }

  .hero-kicker {
    padding-bottom: 42px;
  }

  .work-index,
  .deliverables,
  .method,
  .notes,
  .contact-section,
  .site-footer,
  .not-found {
    padding-left: 16px;
    padding-right: 16px;
  }

  .index-list a,
  .deliverable-list article {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .button {
    width: 100%;
  }
}

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

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