:root {
  --ink: #171714;
  --ink-soft: #24231f;
  --paper: #f3f1ea;
  --paper-deep: #e6e0d5;
  --white: #fff;
  --accent: #c47b48;
  --line: rgba(23, 23, 20, 0.18);
  --line-light: rgba(255, 255, 255, 0.2);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --section-pad: clamp(5rem, 12vw, 10rem);
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.lightbox-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

.sr-only, .skip-link:not(:focus) {
  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:focus {
  position: fixed;
  inset: 1rem auto auto 1rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--white);
  color: var(--ink);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5rem;
  padding: 1rem var(--gutter);
  color: var(--white);
  transition: color 240ms ease, background 240ms ease, min-height 240ms ease;
}
.site-header::after {
  content: "";
  position: absolute;
  inset: auto var(--gutter) 0;
  height: 1px;
  background: var(--line-light);
}
.site-header.is-scrolled {
  min-height: 4.25rem;
  background: rgba(243, 241, 234, 0.94);
  color: var(--ink);
  backdrop-filter: blur(14px);
}
.site-header.is-scrolled::after { background: var(--line); }
.brand { position: relative; z-index: 2; display: flex; width: 9.25rem; }
.brand img { width: 100%; height: auto; object-fit: contain; }
.brand [data-logo-dark] { display: none; }
.brand [data-logo-light] { filter: brightness(0) invert(1); }
.site-header.is-scrolled .brand [data-logo-light] { display: none; }
.site-header.is-scrolled .brand [data-logo-dark] { display: block; }
.menu-toggle {
  position: relative;
  z-index: 3;
  width: 3rem;
  height: 3rem;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.menu-toggle span:not(.sr-only) {
  position: absolute;
  left: 0.6rem;
  width: 1.8rem;
  height: 1px;
  background: currentColor;
  transition: transform 220ms ease, top 220ms ease;
}
.menu-toggle span:nth-child(2) { top: 1.2rem; }
.menu-toggle span:nth-child(3) { top: 1.75rem; }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { top: 1.5rem; transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { top: 1.5rem; transform: rotate(-45deg); }
.site-nav {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.2rem;
  padding: 7rem var(--gutter) 3rem;
  background: var(--ink);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-1rem);
  transition: opacity 220ms ease, transform 220ms ease;
}
.site-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
.site-nav a { font-family: var(--serif); font-size: clamp(2rem, 10vw, 4rem); line-height: 1; }
.site-nav .nav-contact { margin-top: 1.2rem; color: var(--accent); }

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}
.hero-media, .hero-shade { position: absolute; inset: 0; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
  animation: hero-in 1.6s cubic-bezier(.2,.7,.2,1) both;
}
.hero-shade {
  background: linear-gradient(180deg, rgba(16, 16, 13, 0.27) 0%, rgba(16, 16, 13, 0.16) 35%, rgba(16, 16, 13, 0.86) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 10rem var(--gutter) 9.5rem;
}
.eyebrow {
  margin: 0 0 1.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow-dark { color: #6b675f; }
.hero h1, h2, blockquote {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.94;
}
.hero h1 { max-width: none; font-size: clamp(3.6rem, 15vw, 8.5rem); }
.hero h1 span, .hero h1 em { display: block; }
em { font-weight: 400; }
.hero-intro { display: grid; gap: 1.5rem; margin-top: 2rem; }
.hero-intro > p { max-width: 31rem; margin: 0; color: rgba(255,255,255,.82); font-size: clamp(1rem, 2vw, 1.18rem); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.9rem 1.35rem;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}
.button-light { background: var(--white); color: var(--ink); }
.button-light:hover { background: var(--accent); color: var(--white); }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: var(--accent); }
.button-accent { width: 100%; margin-top: 0.5rem; background: var(--accent); color: var(--white); cursor: pointer; }
.button-accent:hover { background: #a96136; }
.text-link {
  display: inline-flex;
  gap: 0.7rem;
  align-items: center;
  width: fit-content;
  padding-block: 0.35rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.text-link span { transition: transform 180ms ease; }
.text-link:hover span { transform: translate(0.18rem, -0.18rem); }
.text-link-light { color: var(--white); }
.hero-project {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  display: none;
  min-width: 20rem;
  padding: 1.4rem 2rem;
  background: var(--paper);
  color: var(--ink);
}
.hero-project span, .hero-project small { display: block; color: #6b675f; font-size: 0.7rem; letter-spacing: .1em; text-transform: uppercase; }
.hero-project strong { display: block; margin: .5rem 0 .25rem; font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
.scroll-cue { position: absolute; z-index: 2; right: var(--gutter); bottom: 2rem; display: flex; align-items: center; gap: .75rem; font-size: .67rem; letter-spacing: .14em; text-transform: uppercase; }
.scroll-cue i { width: 2.5rem; height: 1px; background: currentColor; }

.section { padding: var(--section-pad) var(--gutter); }
.section-label { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 3rem; }
.section-label span { font-family: var(--serif); color: var(--accent); font-size: 1rem; }
.section-label p { margin: 0; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.section-label-light p { color: var(--white); }
.intro { display: grid; gap: 3rem; }
.intro-copy h2, .work h2, .studio h2, .partners h2 { font-size: clamp(3rem, 10vw, 6.8rem); }
.lede { max-width: 39rem; margin: 2.2rem 0 1.4rem; font-family: var(--serif); font-size: clamp(1.25rem, 2.7vw, 1.75rem); line-height: 1.35; }
.body-copy { max-width: 34rem; margin: 0 0 2.2rem; color: #555149; }
.intro-image { margin: 0; }
.intro-image img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.intro-image figcaption { display: flex; justify-content: space-between; gap: 1rem; padding-top: .8rem; font-family: var(--serif); font-size: .92rem; }
.intro-image figcaption span { color: #6b675f; font-family: var(--sans); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }

.expertise { padding-top: var(--section-pad); background: var(--ink); color: var(--white); }
.expertise-head { padding-top: 0; padding-bottom: clamp(4rem, 8vw, 7rem); }
.expertise h2 { font-size: clamp(3.4rem, 11vw, 7.8rem); }
.service-list { border-top: 1px solid var(--line-light); }
.service {
  position: relative;
  display: grid;
  gap: .75rem;
  padding: 2rem var(--gutter);
  border-bottom: 1px solid var(--line-light);
  transition: background 220ms ease;
}
.service:hover { background: var(--ink-soft); }
.service-number { color: var(--accent); font-family: var(--serif); }
.service h3 { margin: 0; font-family: var(--serif); font-size: clamp(2rem, 7vw, 4rem); font-weight: 400; }
.service p { max-width: 33rem; margin: 0; color: rgba(255,255,255,.62); }
.service-arrow { position: absolute; top: 2rem; right: var(--gutter); color: var(--accent); font-size: 1.3rem; }

.work { background: var(--paper); }
.work-head { display: grid; margin-bottom: 3.5rem; }
.filters { display: flex; gap: .5rem; overflow-x: auto; padding-bottom: 1.4rem; scrollbar-width: none; }
.filters::-webkit-scrollbar { display: none; }
.filter { flex: 0 0 auto; padding: .72rem 1rem; border: 1px solid var(--line); background: transparent; font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; cursor: pointer; }
.filter.is-active { background: var(--ink); color: var(--white); }
.project-grid { display: grid; gap: 1rem; }
.project {
  position: relative;
  min-height: 25rem;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--ink);
  color: var(--white);
  text-align: left;
  cursor: zoom-in;
}
.project[hidden] { display: none; }
.project img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.project:hover img { transform: scale(1.035); }
.project-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 38%, rgba(12,12,10,.76)); }
.project-meta { position: absolute; inset: auto 1.3rem 1.3rem; display: grid; gap: .25rem; }
.project-meta small { font-size: .67rem; letter-spacing: .13em; text-transform: uppercase; }
.project-meta strong { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }
.project-open { position: absolute; top: 1rem; right: 1rem; display: grid; place-items: center; width: 3.1rem; height: 3.1rem; border-radius: 50%; background: rgba(255,255,255,.9); color: var(--ink); font-size: .65rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }

.statement { position: relative; display: grid; min-height: 42rem; overflow: hidden; background: var(--ink); color: var(--white); }
.statement-media { position: absolute; inset: 0; }
.statement-media img { width: 100%; height: 100%; object-fit: cover; }
.statement-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(16,16,13,.92), rgba(16,16,13,.42)); }
.statement-content { position: relative; z-index: 1; align-self: center; padding: var(--section-pad) var(--gutter); }
.statement blockquote { max-width: 14ch; margin-bottom: 2.5rem; font-size: clamp(2.8rem, 9vw, 6.5rem); }

.studio { display: grid; gap: 4rem; background: var(--paper-deep); }
.studio-copy .section-label { margin-bottom: 5rem; }
.team { border-top: 1px solid var(--line); }
.team article { display: grid; grid-template-columns: 4rem 1fr; align-items: center; gap: 1rem; padding: 1.4rem 0; border-bottom: 1px solid var(--line); }
.team article > span { display: grid; place-items: center; width: 3.25rem; aspect-ratio: 1; border-radius: 50%; background: var(--ink); color: var(--paper); font-family: var(--serif); }
.team h3 { margin: 0; font-family: var(--serif); font-size: 1.3rem; font-weight: 400; }
.team p { margin: .2rem 0 0; color: #6b675f; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }

.partners { overflow: hidden; padding: var(--section-pad) 0; background: var(--white); }
.partners-intro { padding: 0 var(--gutter) 4.5rem; }
.partner-marquee {
  overflow: hidden;
  padding-block: 1rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.partner-track {
  display: flex;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 7rem);
  width: max-content;
  padding-inline: clamp(2rem, 5vw, 5rem);
  animation: marquee 32s linear infinite;
}
.partner-track span {
  display: grid;
  flex: 0 0 clamp(10rem, 15vw, 15rem);
  place-items: center;
  min-height: 8.5rem;
}
.partner-track img {
  width: 100%;
  height: 6.5rem;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .58;
  transition: filter 220ms ease, opacity 220ms ease, transform 220ms ease;
}
.partner-track span:hover img { filter: grayscale(0); opacity: 1; transform: scale(1.035); }

.contact { display: grid; gap: 4rem; padding: var(--section-pad) var(--gutter); background: var(--ink); color: var(--white); }
.contact h2 { margin: 0; font-size: clamp(3rem, 10vw, 7rem); }
.contact-email { display: flex; align-items: center; justify-content: space-between; gap: 1rem; max-width: 37rem; margin-top: 3rem; padding-bottom: .75rem; border-bottom: 1px solid var(--line-light); font-size: clamp(1rem, 3vw, 1.4rem); }
address { margin-top: 3rem; color: rgba(255,255,255,.72); font-style: normal; }
address small { display: block; margin-bottom: .5rem; color: var(--accent); font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.enquiry-form { align-self: start; padding: 1.5rem; background: var(--paper); color: var(--ink); }
.field { position: relative; padding-top: 1.15rem; }
.field label { display: block; color: #5b574f; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: .65rem 0 .8rem;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); }
.form-note { margin: .8rem 0 0; color: #6b675f; font-size: .72rem; }

.site-footer { display: grid; gap: 2rem; padding: 3rem var(--gutter); border-top: 1px solid var(--line-light); background: var(--ink); color: rgba(255,255,255,.62); }
.site-footer img { width: 9.25rem; filter: brightness(0) invert(1); }
.site-footer p { margin: 0; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.5rem; color: var(--white); font-size: .82rem; }
.site-footer small { font-size: .7rem; }

/* Interior pages */
.inner-page { background: var(--paper); }
.inner-page .site-header:not(.is-scrolled) {
  background: rgba(243, 241, 234, .96);
  color: var(--ink);
  backdrop-filter: blur(14px);
}
.inner-page .site-header:not(.is-scrolled)::after { background: var(--line); }
.inner-page .site-header:not(.is-scrolled) .brand [data-logo-light] { display: none; }
.inner-page .site-header:not(.is-scrolled) .brand [data-logo-dark] { display: block; }
.site-nav [aria-current="page"] { color: var(--accent); }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-bottom: clamp(4rem, 10vw, 8rem);
  color: #6b675f;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.breadcrumb a { border-bottom: 1px solid currentColor; }
.breadcrumb-light { color: rgba(255,255,255,.58); }
.inner-hero {
  padding: clamp(10rem, 18vw, 14rem) var(--gutter) var(--section-pad);
  border-bottom: 1px solid var(--line);
}
.inner-hero h1, .service-hero h1, .contact-standalone h1 {
  margin: 0;
  max-width: 12ch;
  font-family: var(--serif);
  font-size: clamp(3.8rem, 13vw, 8.7rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .92;
}
.inner-lede {
  max-width: 39rem;
  margin: 2rem 0 0;
  color: #555149;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  line-height: 1.4;
}
.service-directory { background: var(--white); }
.service-feature { display: grid; border-bottom: 1px solid var(--line); }
.service-feature-media { overflow: hidden; }
.service-feature-media img { width: 100%; height: 100%; min-height: 24rem; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.service-feature:hover .service-feature-media img { transform: scale(1.035); }
.service-feature-copy { display: flex; flex-direction: column; justify-content: center; padding: 3rem var(--gutter); }
.service-feature-copy > span { color: var(--accent); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.service-feature-copy h2 { margin: 1.2rem 0; font-family: var(--serif); font-size: clamp(2.6rem, 8vw, 5.8rem); font-weight: 400; letter-spacing: -.045em; line-height: .95; }
.service-feature-copy p { max-width: 32rem; margin: 0; color: #555149; font-size: 1.05rem; }
.service-feature-copy strong { margin-top: 2rem; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.cta-banner { padding: var(--section-pad) var(--gutter); background: var(--accent); color: var(--white); }
.cta-banner h2 { margin: 0 0 3rem; max-width: 12ch; font-family: var(--serif); font-size: clamp(3rem, 10vw, 7rem); font-weight: 400; letter-spacing: -.05em; line-height: .94; }
.project-page { padding: 0 var(--gutter) var(--section-pad); }
.project-page .filters { padding-block: 2rem; }
.about-feature { display: grid; gap: 3rem; padding: var(--section-pad) var(--gutter); background: var(--white); }
.about-feature h2, .service-body h2 { margin: 0; max-width: 13ch; font-family: var(--serif); font-size: clamp(2.8rem, 8vw, 6rem); font-weight: 400; letter-spacing: -.045em; line-height: .98; }
.about-feature p:not(.eyebrow) { max-width: 38rem; color: #555149; }
.team-page { padding: var(--section-pad) var(--gutter); }
.values { display: grid; border-top: 1px solid var(--line); background: var(--paper-deep); }
.values article { padding: 3rem var(--gutter); border-bottom: 1px solid var(--line); }
.values span { color: var(--accent); font-family: var(--serif); }
.values h3 { margin: 3rem 0 .75rem; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.values p { max-width: 28rem; margin: 0; color: #555149; }
.contact-standalone { padding-top: clamp(10rem, 18vw, 14rem); }
.contact-standalone .contact-intro { max-width: 38rem; margin: 2rem 0 0; color: rgba(255,255,255,.68); font-family: var(--serif); font-size: clamp(1.15rem, 3vw, 1.55rem); }

/* Service detail pages */
.service-hero { display: grid; padding-top: 5rem; background: var(--white); }
.service-hero-copy { padding: clamp(5rem, 10vw, 8rem) var(--gutter); }
.service-hero-copy .breadcrumb { margin-bottom: clamp(3rem, 7vw, 6rem); }
.service-hero-copy .button { margin-top: 2.2rem; }
.service-hero-media { min-height: 34rem; overflow: hidden; }
.service-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.service-body { display: grid; gap: 3rem; padding: var(--section-pad) var(--gutter); }
.service-prose > p { max-width: 39rem; color: #555149; }
.service-prose > .lede { color: var(--ink); }
.feature-list { display: grid; gap: 0; margin: 2.5rem 0 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.feature-list li { position: relative; padding: 1rem 1rem 1rem 2rem; border-bottom: 1px solid var(--line); }
.feature-list li::before { content: "+"; position: absolute; left: 0; color: var(--accent); }
.featured-case { display: grid; background: var(--ink); color: var(--white); }
.featured-case-media { min-height: 28rem; }
.featured-case-media img { width: 100%; height: 100%; object-fit: cover; }
.featured-case-copy { display: flex; flex-direction: column; justify-content: center; padding: 4rem var(--gutter); }
.featured-case-copy h2 { margin: .5rem 0 1.5rem; font-family: var(--serif); font-size: clamp(3rem, 9vw, 6rem); font-weight: 400; letter-spacing: -.045em; line-height: .95; }
.featured-case-copy p:not(.eyebrow) { max-width: 33rem; margin: 0 0 2rem; color: rgba(255,255,255,.65); }
.service-nav { display: grid; background: var(--white); }
.service-nav > * { padding: 1.4rem var(--gutter); border-bottom: 1px solid var(--line); }
.service-nav > span { color: #6b675f; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.service-nav a { font-family: var(--serif); font-size: 1.5rem; transition: color 180ms ease; }
.service-nav a:hover { color: var(--accent); }
.not-found { min-height: 80svh; padding: clamp(12rem, 22vw, 17rem) var(--gutter) var(--section-pad); }
.not-found h1 { margin: 0; font-family: var(--serif); font-size: clamp(4rem, 13vw, 9rem); font-weight: 400; letter-spacing: -.05em; line-height: .9; }
.not-found > p:not(.eyebrow) { max-width: 34rem; margin: 2rem 0; color: #555149; font-size: 1.1rem; }
.not-found > div { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; }

.lightbox { width: 100%; max-width: none; height: 100%; max-height: none; padding: 0; border: 0; background: rgba(18,18,15,.97); color: var(--white); }
.lightbox::backdrop { background: rgba(0,0,0,.7); }
.lightbox-frame { display: grid; align-content: center; height: 100%; padding: 4.5rem 1.25rem 2rem; }
.lightbox-frame img { width: 100%; max-height: calc(100svh - 9rem); object-fit: contain; }
.lightbox-caption { display: flex; justify-content: space-between; gap: 1rem; width: 100%; max-width: 75rem; margin: .8rem auto 0; font-family: var(--serif); }
.lightbox-caption span { color: rgba(255,255,255,.62); font-family: var(--sans); font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
.lightbox-close { position: fixed; z-index: 2; top: 1rem; right: 1rem; width: 3rem; height: 3rem; border: 1px solid var(--line-light); border-radius: 50%; background: transparent; color: var(--white); font-size: 1.8rem; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(1.5rem); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes hero-in { from { transform: scale(1.05); opacity: .45; } to { transform: scale(1); opacity: 1; } }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (min-width: 48rem) {
  .hero h1 span { white-space: nowrap; }
  .hero-content { padding-bottom: 8rem; }
  .hero-intro { grid-template-columns: minmax(17rem, 31rem) auto; align-items: end; }
  .hero-actions { justify-content: flex-start; }
  .hero-project { display: block; }
  .scroll-cue { right: auto; left: var(--gutter); }
  .intro { grid-template-columns: minmax(10rem, .65fr) minmax(20rem, 1.3fr) minmax(18rem, 1fr); align-items: start; }
  .intro .section-label { writing-mode: vertical-rl; transform: rotate(180deg); }
  .intro-copy { padding-top: 4rem; }
  .intro-image { margin-top: 10rem; }
  .expertise-head { display: grid; grid-template-columns: .75fr 2fr; align-items: end; }
  .service { grid-template-columns: 5rem minmax(14rem, .8fr) minmax(18rem, 1fr); align-items: center; min-height: 10rem; }
  .service-arrow { top: 50%; transform: translateY(-50%); }
  .work-head { grid-template-columns: .75fr 2fr; align-items: end; }
  .project-grid { grid-template-columns: repeat(2, minmax(0,1fr)); grid-auto-rows: 26rem; }
  .project { min-height: 0; }
  .project-large { grid-row: span 2; }
  .project-wide { grid-column: span 2; }
  .studio { grid-template-columns: 1.25fr .75fr; align-items: end; }
  .team { margin-bottom: 1rem; }
  .partners-intro { display: grid; grid-template-columns: .75fr 2fr; }
  .partners-intro .eyebrow { padding-top: .8rem; }
  .contact { grid-template-columns: 1.15fr .85fr; }
  .enquiry-form { padding: 2.5rem; }
  .site-footer { grid-template-columns: 1.2fr 2fr 1fr; align-items: center; }
  .site-footer small { grid-column: 1 / -1; }
  .inner-hero-wide { display: grid; grid-template-columns: 1fr 1fr; align-items: end; column-gap: 4rem; }
  .inner-hero-wide .breadcrumb, .inner-hero-wide .eyebrow { grid-column: 1 / -1; }
  .service-feature { grid-template-columns: 1fr 1fr; min-height: 38rem; }
  .service-feature.reverse .service-feature-media { order: 2; }
  .about-feature, .service-body { grid-template-columns: .9fr 1.1fr; }
  .values { grid-template-columns: repeat(3, 1fr); }
  .values article { border-right: 1px solid var(--line); border-bottom: 0; }
  .service-hero { grid-template-columns: 1fr 1fr; min-height: 52rem; }
  .service-hero-copy { display: flex; flex-direction: column; justify-content: center; }
  .service-hero-media { min-height: 52rem; }
  .featured-case { grid-template-columns: 1.2fr .8fr; }
  .service-nav { grid-template-columns: 1.25fr repeat(3, 1fr); }
  .service-nav > * { border-right: 1px solid var(--line); }
}

@media (min-width: 64rem) {
  .menu-toggle { display: none; }
  .site-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 2.1rem;
    padding: 0;
    background: transparent;
    color: inherit;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .site-nav a { font-family: var(--sans); font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
  .site-nav .nav-contact { margin: 0 0 0 1rem; padding: .75rem 1rem; border: 1px solid currentColor; color: inherit; }
  .project-grid { grid-template-columns: repeat(12, minmax(0,1fr)); grid-auto-rows: 23rem; }
  .project { grid-column: span 4; }
  .project-large { grid-column: span 8; grid-row: span 2; }
  .project-tall { grid-column: span 4; grid-row: span 2; }
  .project-wide { grid-column: span 8; }
  .statement-media { inset: 0 0 0 38%; }
  .statement-media::after { background: linear-gradient(90deg, var(--ink) 0%, rgba(23,23,20,.72) 32%, rgba(23,23,20,.1) 100%); }
  .statement-content { width: 62%; }
  .lightbox-frame { padding-inline: 5rem; }
  .lightbox-frame img { max-width: 75rem; margin: 0 auto; }
}

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

@media print {
  .site-header, .filters, .scroll-cue, .project-open, .lightbox { display: none !important; }
  .hero { min-height: 60rem; }
  .reveal { opacity: 1; transform: none; }
}
