:root {
  --orange: #dd4826;
  --orange-bright: #f25731;
  --ink: #0b0d0c;
  --cream: #f2efe8;
  --paper: #faf9f5;
  --line: rgba(11, 13, 12, 0.18);
  --line-dark: rgba(255, 255, 255, 0.18);
  --muted: #6d6d68;
  --max: 1440px;
  --pad: clamp(1.25rem, 4vw, 4.5rem);
  --font-display: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --font-body: "DM Sans", "Helvetica Neue", Arial, sans-serif;
}

/* Multi-page structure */
.site-nav a[aria-current="page"]:not(.nav-cta) {
  color: var(--orange);
}

.site-nav .nav-cta[aria-current="page"] {
  background: var(--orange);
}

.page-main {
  min-height: 100vh;
}

.page-hero {
  display: flex;
  min-height: calc(82svh - 82px);
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(4rem, 7vw, 7rem) var(--pad) clamp(3rem, 5vw, 5rem);
}

.page-hero-top,
.page-hero-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.page-hero-top p,
.page-hero-bottom p,
.page-hero-bottom span {
  margin: 0;
}

.page-hero-top > p:last-child,
.page-hero-bottom span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-hero-top .kicker {
  margin: 0;
}

.page-hero h1 {
  max-width: 1300px;
  margin: clamp(4rem, 7vw, 7rem) 0;
  font-family: var(--font-display);
  font-size: clamp(5rem, 10.5vw, 12rem);
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.82;
}

.page-hero-bottom p {
  max-width: 600px;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.65;
}

.page-hero-dark {
  color: var(--paper);
  background: var(--ink);
  border-bottom: 1px solid var(--line-dark);
}

.page-hero-dark .kicker,
.page-hero-dark .page-hero-top > p:last-child,
.page-hero-dark .page-hero-bottom span {
  color: #8e8e89;
}

.page-hero-paper {
  background: var(--cream);
}

.page-hero-paper .page-hero-top > p:last-child,
.page-hero-paper .page-hero-bottom span {
  color: var(--muted);
}

.page-hero-orange {
  color: white;
  background: var(--orange);
}

.page-hero-orange .kicker,
.page-hero-orange .page-hero-top > p:last-child,
.page-hero-orange .page-hero-bottom span {
  color: rgba(255, 255, 255, 0.7);
}

.page-hero-orange em,
.approach-page em {
  color: var(--ink);
}

.home-manifesto {
  padding: clamp(6rem, 12vw, 12rem) var(--pad);
}

.home-manifesto > .kicker,
.home-manifesto-grid {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.home-manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: clamp(4rem, 9vw, 10rem);
  align-items: end;
}

.home-manifesto h2,
.home-paths h2,
.deliverables h2,
.service-scope h2,
.principles h2,
.studio-story h2,
.about-location h2,
.contact-expect h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.3rem, 6.5vw, 7.5rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.home-manifesto-copy p {
  margin-bottom: 2.5rem;
  color: #aaa9a4;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.7;
}

.home-paths {
  padding: clamp(6rem, 10vw, 10rem) var(--pad);
  background: var(--paper);
}

.home-paths-heading,
.home-path-grid {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.home-paths-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.home-paths-heading .kicker {
  margin: 0;
}

.home-path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.home-path-card {
  position: relative;
  min-height: 330px;
  padding: clamp(1.5rem, 3vw, 3rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 220ms ease, background 220ms ease;
}

.home-path-card > span {
  color: var(--muted);
  font-size: 0.68rem;
}

.home-path-card h3 {
  margin: 4rem 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.06em;
}

.home-path-card p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
}

.home-path-card b {
  position: absolute;
  top: 2rem;
  right: 2rem;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: white;
  background: var(--orange);
  border-radius: 50%;
  font-weight: 400;
  transition: transform 220ms ease, color 220ms ease, background 220ms ease;
}

.home-path-card:hover {
  color: white;
  background: var(--ink);
}

.home-path-card:hover p,
.home-path-card:hover > span {
  color: #aaa9a4;
}

.home-path-card:hover b {
  transform: rotate(45deg);
  color: var(--ink);
  background: white;
}

.page-cta {
  padding: clamp(4rem, 7vw, 7rem) var(--pad);
}

.page-cta .kicker {
  margin-bottom: 2rem;
}

.page-cta > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8vw, 9rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.95;
}

.page-cta > a b {
  display: grid;
  width: clamp(70px, 9vw, 125px);
  height: clamp(70px, 9vw, 125px);
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: clamp(1.5rem, 2vw, 2.5rem);
  font-weight: 400;
  transition: transform 220ms ease, color 220ms ease, background 220ms ease;
}

.page-cta > a:hover b {
  transform: rotate(45deg);
  color: var(--orange);
  background: white;
}

.page-cta-orange {
  color: white;
  background: var(--orange);
}

.page-cta-orange .kicker {
  color: rgba(255, 255, 255, 0.68);
}

.page-cta-dark {
  color: white;
  background: var(--ink);
}

.page-cta-dark .kicker {
  color: #8e8e89;
}

.work-page {
  padding-top: clamp(3rem, 6vw, 6rem);
}

.work-note {
  display: grid;
  min-height: 620px;
  place-items: center;
  padding: clamp(6rem, 10vw, 10rem) var(--pad);
  text-align: center;
}

.work-note .kicker {
  margin-bottom: 0;
}

.work-note blockquote {
  margin: 1rem 0 2rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 8rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 1;
}

.services-page {
  padding-top: clamp(6rem, 10vw, 10rem);
}

.deliverables {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  gap: clamp(4rem, 8vw, 9rem);
  padding: clamp(6rem, 10vw, 10rem) var(--pad);
}

.deliverables-intro {
  align-self: center;
}

.deliverables-intro p:last-child {
  max-width: 480px;
  margin-top: 2.5rem;
  color: #aaa9a4;
  line-height: 1.7;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.deliverables-grid article {
  min-height: 250px;
  padding: 2rem;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.deliverables-grid span {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4vw, 4.5rem);
  letter-spacing: -0.06em;
}

.deliverables-grid h3 {
  margin: 3.5rem 0 0.3rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
}

.deliverables-grid p {
  color: #888883;
  font-size: 0.78rem;
}

.service-scope {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(4rem, 9vw, 10rem);
  padding: clamp(6rem, 10vw, 10rem) var(--pad);
  background: var(--cream);
}

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

.scope-list div {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.scope-list dt {
  color: var(--orange);
  font-weight: 600;
}

.scope-list dd {
  margin: 0;
  color: var(--muted);
}

.approach-page {
  background: var(--orange);
}

.process-list small {
  display: block;
  margin-top: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.65rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.principles {
  padding: clamp(6rem, 10vw, 10rem) var(--pad);
  background: var(--paper);
}

.principles-heading {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(4rem, 7vw, 7rem);
}

.principles-heading .kicker {
  margin-bottom: 0;
}

.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.principle-grid article {
  min-height: 330px;
  padding: 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle-grid span {
  color: var(--orange);
  font-size: 0.7rem;
}

.principle-grid h3 {
  margin: 6rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.principle-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.about-page {
  min-height: calc(100svh - 82px);
}

.about-page .about-copy h1 {
  margin: 0 0 2.8rem;
  font-family: var(--font-display);
  font-size: clamp(3.3rem, 6.2vw, 7.2rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.studio-story {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(4rem, 9vw, 10rem);
  padding: clamp(7rem, 12vw, 12rem) var(--pad);
  color: var(--ink);
  background: var(--paper);
}

.studio-story-copy {
  align-self: end;
}

.studio-story-copy p {
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.8;
}

.studio-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--paper);
  background: var(--ink);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.studio-number {
  min-height: 320px;
  padding: clamp(1.5rem, 3vw, 3rem);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.studio-number strong {
  display: block;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.065em;
}

.studio-promises .studio-number strong {
  font-size: clamp(2.4rem, 4vw, 5rem);
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.studio-number p {
  max-width: 190px;
  margin-top: 7rem;
  color: #8e8e89;
  font-size: 0.78rem;
}

.testimonial-about {
  color: var(--ink);
}

.about-location {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(4rem, 9vw, 10rem);
  padding: clamp(7rem, 11vw, 11rem) var(--pad);
  color: var(--paper);
  background: var(--ink);
}

.about-location-copy {
  align-self: end;
}

.about-location-copy > p {
  max-width: 500px;
  color: #aaa9a4;
  font-size: 1.1rem;
  line-height: 1.7;
}

.about-location dl {
  margin: 3rem 0 0;
  border-top: 1px solid var(--line-dark);
}

.about-location dl div {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line-dark);
}

.about-location dt {
  color: #777772;
  font-size: 0.68rem;
  text-transform: uppercase;
}

.about-location dd {
  margin: 0;
  font-size: 0.8rem;
}

.contact-page {
  min-height: calc(100svh - 82px);
  padding-top: clamp(5rem, 8vw, 8rem);
}

.contact h1 {
  margin: 0 0 2.5rem;
  font-family: var(--font-display);
  font-size: clamp(3.3rem, 6.5vw, 7.5rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.contact-expect {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(4rem, 9vw, 10rem);
  padding: clamp(7rem, 11vw, 11rem) var(--pad);
  background: var(--cream);
}

.contact-expect ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.contact-expect li {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-expect li span {
  color: var(--orange);
  font-size: 0.7rem;
}

.contact-expect li p {
  margin: 0;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
}

@media (max-width: 860px) {
  .site-nav a[aria-current="page"]:not(.nav-cta) {
    color: var(--orange);
  }

  .page-hero {
    min-height: calc(72svh - 68px);
  }

  .page-hero h1 {
    font-size: clamp(4.2rem, 16vw, 8rem);
  }

  .home-manifesto-grid,
  .deliverables,
  .service-scope,
  .studio-story,
  .about-location,
  .contact-expect {
    grid-template-columns: 1fr;
  }

  .home-paths-heading,
  .principles-heading {
    grid-template-columns: 1fr;
  }

  .deliverables-grid,
  .home-path-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .principle-grid {
    grid-template-columns: 1fr;
  }

  .principle-grid article {
    min-height: 260px;
  }

  .principle-grid h3 {
    margin-top: 4rem;
  }

  .studio-numbers {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-page {
    min-height: auto;
  }

  .contact-page {
    min-height: auto;
  }
}

@media (max-width: 600px) {
  .page-hero {
    min-height: 68svh;
    padding-top: 3rem;
  }

  .page-hero-top > p:last-child,
  .page-hero-bottom span {
    display: none;
  }

  .page-hero h1 {
    margin: 3rem 0;
    font-size: clamp(3.8rem, 18vw, 5.7rem);
  }

  .page-hero-bottom p {
    font-size: 1rem;
  }

  .home-manifesto h2,
  .home-paths h2,
  .deliverables h2,
  .service-scope h2,
  .principles h2,
  .studio-story h2,
  .about-location h2,
  .contact-expect h2,
  .about-page .about-copy h1,
  .contact h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .home-path-grid,
  .deliverables-grid,
  .studio-numbers {
    grid-template-columns: 1fr;
  }

  .home-path-card {
    min-height: 270px;
  }

  .page-cta > a {
    align-items: flex-end;
    gap: 0.75rem;
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .page-cta > a b {
    width: 52px;
    height: 52px;
  }

  .deliverables {
    min-width: 0;
  }

  .deliverables-grid {
    min-width: 0;
  }

  .deliverables-grid article,
  .studio-number {
    min-height: 230px;
  }

  .studio-number p {
    margin-top: 4rem;
  }

  .scope-list div,
  .about-location dl div {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .work-note {
    min-height: 520px;
  }

  .about-page .about-visual > img {
    aspect-ratio: 4 / 5;
  }
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

button {
  color: inherit;
}

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

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

/*
 * Device-independent interface arrows.
 *
 * These icons are drawn from CSS geometry rather than Unicode glyphs, so
 * mobile operating systems cannot substitute an emoji or platform font.
 */
.ui-arrow {
  --arrow-stroke: max(1.4px, 0.09em);
  position: relative;
  display: inline-block;
  width: 1.05em;
  height: 1.05em;
  flex: 0 0 auto;
  color: currentColor;
  font-size: 1em;
  line-height: 1;
  vertical-align: -0.13em;
}

.ui-arrow::before,
.ui-arrow::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.ui-arrow::before {
  top: calc(50% - (var(--arrow-stroke) / 2));
  left: 13%;
  width: 74%;
  height: var(--arrow-stroke);
  background: currentColor;
  border-radius: 999px;
}

.ui-arrow::after {
  top: 50%;
  right: 10%;
  width: 40%;
  height: 40%;
  box-sizing: border-box;
  border-top: var(--arrow-stroke) solid currentColor;
  border-right: var(--arrow-stroke) solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  transform-origin: center;
}

.ui-arrow--ne {
  transform: rotate(-45deg);
}

.ui-arrow--left {
  transform: rotate(180deg);
}

.ui-arrow--up {
  transform: rotate(-90deg);
}

.ui-arrow--down {
  transform: rotate(90deg);
}

.ui-chevron {
  display: inline-block;
  width: 0.55em;
  height: 0.55em;
  box-sizing: border-box;
  border-right: max(1.4px, 0.1em) solid currentColor;
  border-bottom: max(1.4px, 0.1em) solid currentColor;
  transform: rotate(45deg);
}

.footer-bottom .ui-arrow {
  margin-left: 0.35em;
}

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

::selection {
  color: var(--paper);
  background: var(--orange);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.65rem 1rem;
  transform: translateY(-150%);
  color: white;
  background: var(--ink);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  margin: 1rem clamp(1rem, 3vw, 3rem) 0;
  padding: 0 clamp(1.1rem, 2.5vw, 2.25rem);
  background: rgba(242, 239, 232, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  box-shadow: 0 14px 40px rgba(11, 13, 12, 0.08);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  backdrop-filter: blur(22px) saturate(145%);
  transition: height 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
  height: 62px;
  background: rgba(242, 239, 232, 0.88);
  box-shadow: 0 18px 46px rgba(11, 13, 12, 0.13);
}

.brand {
  order: 1;
  width: clamp(176px, 18vw, 232px);
}

.brand img,
.footer-brand img {
  width: 100%;
}

.site-nav {
  order: 2;
  display: flex;
  align-items: center;
  gap: clamp(1.3rem, 2.4vw, 2.8rem);
  margin-left: auto;
  font-size: 0.83rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.language-switcher {
  position: relative;
  z-index: 130;
  order: 3;
  margin-left: 1rem;
}

.language-button {
  display: flex;
  min-width: 54px;
  height: 42px;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0 0.75rem;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.language-button:hover,
.language-button[aria-expanded="true"] {
  color: white;
  background: var(--orange);
  border-color: var(--orange);
}

.language-button i {
  margin-top: -0.15rem;
  font-size: 0.85rem;
  font-style: normal;
  transition: transform 180ms ease;
}

.language-button[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  width: 180px;
  padding: 0.4rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(11, 13, 12, 0.14);
}

.language-menu[hidden] {
  display: none;
}

.language-menu button {
  display: grid;
  width: 100%;
  grid-template-columns: 40px 1fr;
  align-items: center;
  padding: 0.7rem 0.65rem;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.language-menu button:hover,
.language-menu button[aria-pressed="true"] {
  background: var(--cream);
}

.language-menu button[aria-pressed="true"] {
  color: var(--orange);
  font-weight: 600;
}

.language-menu button span {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}

.site-nav > a:not(.nav-cta) {
  position: relative;
}

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

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 1.15rem;
  color: white;
  background: var(--ink);
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease;
}

.nav-cta span {
  margin-left: 1.4rem;
}

.nav-cta:hover {
  background: var(--orange);
}

@media (min-width: 861px) and (max-width: 1120px) {
  .brand { width: 155px; }
  .site-nav { gap: 0.85rem; font-size: 0.72rem; }
  .nav-cta { padding: 0 0.9rem; }
  .nav-cta span { margin-left: 0.8rem; }
  .language-switcher { margin-left: 0.65rem; }
}

.menu-toggle {
  order: 4;
  display: none;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.menu-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-icon {
  display: grid;
  gap: 5px;
  width: 24px;
}

.menu-icon i {
  display: block;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 49%) minmax(0, 51%);
  min-height: calc(100svh - 82px);
  max-width: 1920px;
  margin: 0 auto;
  background: var(--cream);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vh, 8rem) clamp(2rem, 5vw, 6.5rem) 2.5rem var(--pad);
}

.eyebrow,
.kicker {
  margin-bottom: clamp(1.8rem, 4vw, 4rem);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.eyebrow span {
  width: 9px;
  height: 9px;
  background: var(--orange);
}

.hero h1,
.section-heading h2,
.approach h2,
.about h2,
.contact h2,
.faq h2 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(4rem, 7.15vw, 8.6rem);
}

em {
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.hero-intro {
  max-width: 510px;
  margin: clamp(2rem, 5vw, 4.5rem) 0 2.25rem;
  color: #333431;
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  line-height: 1.55;
}

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

.hero-actions .button {
  min-width: 255px;
  justify-content: space-between;
}

.hero-actions .button > span {
  margin-left: 2.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 1.35rem;
  border: 1px solid transparent;
  border-radius: 0;
  font-weight: 600;
  cursor: pointer;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  color: white;
  background: var(--ink);
}

.button-dark:hover {
  background: var(--orange);
}

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

.button-light span,
.button-orange span {
  margin-left: 2.5rem;
}

.button-orange {
  color: white;
  background: var(--orange);
}

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

.text-link {
  padding: 0.35rem 0;
  border-bottom: 1px solid currentColor;
  font-size: 0.88rem;
  font-weight: 600;
}

.text-link span {
  display: inline-block;
  margin-left: 0.5rem;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: clamp(3rem, 9vh, 8rem);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-meta p {
  margin: 0;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 0.45rem;
  border-radius: 50%;
  background: #56a567;
  box-shadow: 0 0 0 4px rgba(86, 165, 103, 0.14);
}

.hero-visual {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  background: var(--ink);
}

.hero-carousel-track,
.hero-carousel-slide {
  position: absolute;
  inset: 0;
}

.hero-carousel-slide {
  display: block;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.035);
  transition: opacity 800ms ease, transform 1200ms cubic-bezier(0.2, 0.7, 0, 1);
}

.hero-carousel-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.hero-carousel-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.04);
  transition: transform 1.3s cubic-bezier(0.2, 0.7, 0, 1);
}

.hero-carousel-slide:first-child > img {
  object-position: center 42%;
}

.hero-visual:hover .hero-carousel-slide.is-active > img {
  transform: scale(1.02);
}

.hero-carousel-slide::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 42%, rgba(0, 0, 0, 0.58));
}

.hero-frame-corner {
  position: absolute;
  z-index: 2;
  width: 45px;
  height: 45px;
  border-color: rgba(255, 255, 255, 0.74);
}

.hero-frame-corner-top {
  top: 1.75rem;
  right: 1.75rem;
  border-top: 1px solid;
  border-right: 1px solid;
}

.hero-frame-corner-bottom {
  bottom: 1.75rem;
  left: 1.75rem;
  border-bottom: 1px solid;
  border-left: 1px solid;
}

.hero-carousel-copy {
  position: absolute;
  z-index: 2;
  top: 2rem;
  left: 2rem;
  display: grid;
  gap: 0.18rem;
  color: white;
}

.hero-carousel-copy small {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-carousel-copy strong {
  max-width: 8em;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5.4rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.hero-carousel-copy > span {
  margin-top: 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-carousel-copy i {
  margin-left: 0.5rem;
  color: var(--orange-bright);
  font-style: normal;
}

.hero-carousel-controls {
  position: absolute;
  z-index: 4;
  right: 1.75rem;
  bottom: 2rem;
  left: 2rem;
  display: grid;
  grid-template-columns: auto minmax(90px, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  color: white;
}

.hero-carousel-counter {
  min-width: 3.8rem;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.13em;
}

.hero-carousel-dots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.hero-carousel-dots button {
  position: relative;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hero-carousel-dots button::before,
.hero-carousel-dots button span {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  transform: translateY(-50%);
}

.hero-carousel-dots button::before {
  background: rgba(255, 255, 255, 0.38);
}

.hero-carousel-dots button span {
  background: white;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left;
}

.hero-carousel-dots button.is-active span {
  animation: hero-carousel-progress 5.2s linear forwards;
}

.hero-carousel-arrows {
  display: flex;
  gap: 0.45rem;
}

.hero-carousel-arrows button {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  color: white;
  background: rgba(11, 13, 12, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: color 180ms ease, background 180ms ease;
}

.hero-carousel-arrows button:hover {
  color: var(--ink);
  background: white;
}

@keyframes hero-carousel-progress {
  to { transform: translateY(-50%) scaleX(1); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-carousel-slide {
    transform: none;
    transition: opacity 180ms linear;
  }

  .hero-carousel-dots button.is-active span {
    animation: none;
    transform: translateY(-50%) scaleX(1);
  }
}

.ticker {
  overflow: hidden;
  padding: 0.75rem 0;
  color: white;
  background: var(--orange);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 2.7rem;
  animation: ticker 25s linear infinite;
}

.ticker span {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.2em;
}

.ticker i {
  font-style: normal;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

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

.work,
.services,
.approach,
.about,
.testimonial,
.contact,
.faq,
.site-footer {
  padding: clamp(5.5rem, 10vw, 10rem) var(--pad);
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 3rem;
  align-items: end;
  max-width: var(--max);
  margin: 0 auto clamp(3.5rem, 7vw, 7rem);
}

.kicker {
  margin-bottom: 1.6rem;
  color: var(--muted);
}

.section-dark .kicker,
.contact .kicker {
  color: #9a9a94;
}

.section-heading h2,
.approach h2,
.about h2,
.contact h2,
.faq h2 {
  font-size: clamp(3.3rem, 6.5vw, 7.5rem);
}

.section-lede {
  max-width: 480px;
  margin: 0 0 0 auto;
  color: #83837e;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.6;
}

.section-dark .section-lede {
  color: #adada7;
}

.filter-bar {
  display: flex;
  max-width: var(--max);
  margin: 0 auto 2rem;
  border-bottom: 1px solid var(--line-dark);
}

.filter-button {
  position: relative;
  padding: 1rem 1.4rem 1rem 0;
  color: #777772;
  background: none;
  border: 0;
  cursor: pointer;
}

.filter-button + .filter-button {
  padding-left: 1.4rem;
}

.filter-button sup {
  margin-left: 0.2rem;
  font-size: 0.55rem;
}

.filter-button::after {
  position: absolute;
  right: 1.4rem;
  bottom: -1px;
  left: 0;
  height: 2px;
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  background: var(--orange);
  transition: transform 180ms ease;
}

.filter-button.active {
  color: white;
}

.filter-button.active::after {
  transform: scaleX(1);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(3rem, 6vw, 7rem) clamp(1.3rem, 3vw, 3.5rem);
  max-width: var(--max);
  margin: 0 auto;
}

.project-card {
  min-width: 0;
  transition: opacity 240ms ease, transform 240ms ease;
}

.project-card.is-hidden {
  display: none;
}

.project-wide {
  grid-column: 1 / -1;
}

.project-open {
  display: block;
  width: 100%;
  padding: 0;
  color: inherit;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
}

.project-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 8.4;
  overflow: hidden;
  background: #1a1b1a;
}

.project-card:not(.project-wide) .project-media {
  aspect-ratio: 4 / 5;
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0, 1), filter 300ms ease;
}

.vault-crop img {
  object-position: center;
}

.einfach-crop img {
  object-position: center;
}

.hero-crop img {
  object-position: center 45%;
}

.date-crop img {
  object-position: center 18%;
}

.beamin-crop {
  background: #efefec;
}

.beamin-crop img {
  object-fit: cover;
  object-position: center;
}

.project-open:hover .project-media img {
  transform: scale(1.025);
  filter: brightness(0.74);
}

.project-number {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--ink);
  background: var(--paper);
  font-size: 0.68rem;
  font-weight: 600;
}

.project-view {
  position: absolute;
  right: 1.4rem;
  bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 0.75rem 0.65rem 1rem;
  transform: translateY(18px);
  opacity: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 0.74rem;
  font-weight: 600;
  transition: opacity 200ms ease, transform 200ms ease;
}

.project-view i {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: white;
  background: var(--orange);
  font-style: normal;
}

.project-open:hover .project-view,
.project-open:focus-visible .project-view {
  transform: translateY(0);
  opacity: 1;
}

.project-info {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.15rem;
}

.project-info > span {
  display: grid;
}

.project-info > span:last-child {
  text-align: right;
}

.project-info strong {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.25vw, 2.15rem);
  font-weight: 500;
  letter-spacing: -0.035em;
}

.project-info small {
  color: #8e8e89;
  font-size: 0.76rem;
}

.project-info b {
  margin-top: 0.2rem;
  color: #d4d4cf;
  font-size: 0.72rem;
  font-weight: 500;
}

.services {
  background: var(--paper);
}

.service-list {
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  grid-template-columns: 80px minmax(220px, 0.9fr) minmax(280px, 1fr) 50px;
  gap: 2rem;
  align-items: start;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--line);
  transition: color 200ms ease, padding 200ms ease;
}

.service-row:hover {
  padding-right: 1rem;
  padding-left: 1rem;
  color: var(--orange);
}

.service-index {
  color: var(--muted);
  font-size: 0.72rem;
}

.service-row h3 {
  margin: -0.25rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
}

.service-row p {
  max-width: 500px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.service-mark {
  font-size: 1.7rem;
  text-align: right;
}

.approach {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(480px, 1.05fr);
  gap: clamp(4rem, 8vw, 10rem);
  color: white;
  background: var(--orange);
}

.approach-heading {
  align-self: start;
  position: sticky;
  top: 8rem;
}

.approach .kicker {
  color: rgba(255, 255, 255, 0.67);
}

.approach h2 {
  max-width: 760px;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.38);
}

.process-list li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2rem 0 2.3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
}

.process-list > li > span {
  font-size: 0.72rem;
}

.process-list h3 {
  margin-bottom: 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.process-list p {
  max-width: 500px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: clamp(4rem, 8vw, 9rem);
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-visual > img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 66% center;
}

.about-caption {
  display: flex;
  justify-content: space-between;
  padding-top: 0.7rem;
  color: #92928c;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about h2 {
  margin-bottom: 2.8rem;
}

.about-copy > p:not(.kicker) {
  max-width: 580px;
  color: #aaa9a4;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.75;
}

.about-copy .button {
  margin-top: 1rem;
}

.about.about-page {
  display: flex;
  min-height: 100svh;
  align-items: flex-end;
  padding-top: clamp(10rem, 15vw, 15rem);
  padding-bottom: clamp(7rem, 10vw, 10rem);
}

.about-intro-copy {
  display: grid;
  width: 100%;
  max-width: var(--max);
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.7fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: end;
  margin: 0 auto;
}

.about-page .about-copy .about-intro-title {
  display: grid;
  grid-column: 1 / -1;
  gap: 0.08em;
  margin: 0;
  font-size: clamp(4.5rem, 9.4vw, 10.5rem);
  line-height: 0.83;
}

.about-title-line {
  display: block;
}

.about-intro-body {
  grid-column: 2;
  max-width: 620px;
}

.about-intro-body > p {
  color: #aaa9a4;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.75;
}

@media (max-width: 900px) {
  .about.about-page {
    min-height: auto;
    align-items: stretch;
    padding-top: clamp(9rem, 18vw, 12rem);
  }

  .about-intro-copy {
    grid-template-columns: 1fr;
  }

  .about-intro-body {
    grid-column: 1;
    max-width: 640px;
  }
}

@media (max-width: 600px) {
  .about.about-page {
    padding-top: 8rem;
    padding-bottom: 6rem;
  }

  .about-page .about-copy .about-intro-title {
    font-size: clamp(3.5rem, 17vw, 5.2rem);
    line-height: 0.88;
  }
}

.studio-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 4.5rem 0 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line-dark);
}

.studio-stats div {
  display: flex;
  flex-direction: column;
}

.studio-stats dt {
  color: var(--paper);
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 3.8vw, 4.2rem);
  letter-spacing: -0.06em;
}

.studio-stats dd {
  margin: 0;
  color: #8d8d88;
  font-size: 0.7rem;
  line-height: 1.4;
}

.testimonial {
  position: relative;
  display: grid;
  min-height: 690px;
  place-items: center;
  overflow: hidden;
  background: var(--cream);
  text-align: center;
}

.quote-mark {
  position: absolute;
  top: -5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(221, 72, 38, 0.09);
  font-family: Georgia, serif;
  font-size: 34rem;
  line-height: 1;
}

.testimonial blockquote {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0;
}

.testimonial blockquote > p {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5.1vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.06;
}

.testimonial footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.9rem;
  margin-top: 3rem;
  text-align: left;
}

.testimonial-avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: white;
  background: var(--orange);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 600;
}

.testimonial footer > span:last-child {
  display: grid;
}

.testimonial footer strong {
  font-size: 0.82rem;
}

.testimonial footer small {
  color: var(--muted);
  font-size: 0.72rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1.2fr);
  gap: clamp(4rem, 9vw, 10rem);
  color: white;
  background: var(--ink);
}

.contact h2 {
  margin-bottom: 2.5rem;
}

.contact-intro > p:not(.kicker) {
  max-width: 520px;
  color: #aaa9a4;
  line-height: 1.7;
}

.contact-email {
  display: inline-block;
  margin-top: 1.2rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--orange);
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
}

.contact-email span {
  margin-left: 1rem;
  color: var(--orange);
}

.contact-details {
  display: flex;
  gap: 3rem;
  margin-top: 5rem;
}

.contact-details p {
  margin: 0;
  font-size: 0.8rem;
}

.contact-details span {
  display: block;
  margin-bottom: 0.4rem;
  color: #777772;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-form {
  padding: clamp(1.5rem, 3vw, 3.5rem);
  border: 1px solid var(--line-dark);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem;
}

.project-form label {
  display: block;
  margin-bottom: 1.7rem;
}

.project-form label > span,
.project-form .form-field > label > span {
  display: block;
  margin-bottom: 0.45rem;
  color: #aaa9a4;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-form input,
.project-form textarea,
.project-form select {
  width: 100%;
  padding: 0.85rem 0;
  color: white;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #41423f;
  border-radius: 0;
  outline: none;
  transition: border-color 180ms ease;
}

.project-form input::placeholder,
.project-form textarea::placeholder {
  color: #666661;
}

.project-form input:-webkit-autofill,
.project-form input:-webkit-autofill:hover,
.project-form input:-webkit-autofill:focus,
.project-form textarea:-webkit-autofill,
.project-form textarea:-webkit-autofill:hover,
.project-form textarea:-webkit-autofill:focus {
  -webkit-text-fill-color: white;
  caret-color: white;
  box-shadow: 0 0 0 1000px var(--ink) inset;
  transition: background-color 9999s ease-out;
}

.project-form select {
  color-scheme: dark;
}

.project-form .form-field {
  min-width: 0;
  margin-bottom: 1.7rem;
}

.project-form .form-field > label {
  margin-bottom: 0;
}

.project-form select.native-select {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
  border: 0;
}

.custom-select {
  position: relative;
}

.custom-select-trigger {
  display: flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  color: #8c8c87;
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #41423f;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease;
}

.custom-select-trigger.has-value {
  color: white;
}

.custom-select-trigger:hover,
.custom-select-trigger:focus-visible,
.custom-select-trigger[aria-expanded="true"] {
  color: white;
  border-color: var(--orange);
  outline: none;
}

.custom-select-chevron {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-right: 0.2rem;
  transform: translateY(-2px) rotate(45deg);
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transition: transform 180ms ease;
}

.custom-select-trigger[aria-expanded="true"] .custom-select-chevron {
  transform: translateY(3px) rotate(225deg);
}

.custom-select-menu {
  position: absolute;
  z-index: 40;
  top: calc(100% + 0.55rem);
  right: 0;
  left: 0;
  max-height: 310px;
  padding: 0.4rem;
  overflow-y: auto;
  background: #151816;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45);
}

.custom-select-menu[hidden] {
  display: none;
}

.custom-select-option {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  color: #d8d7d1;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color 150ms ease, background 150ms ease;
}

.custom-select-option:hover,
.custom-select-option:focus-visible {
  color: white;
  background: rgba(255, 255, 255, 0.07);
  outline: none;
}

.custom-select-option[aria-selected="true"] {
  color: white;
  background: var(--orange);
}

.custom-select-option[aria-selected="true"]::after {
  content: "✓";
  font-size: 0.78rem;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.project-form input:focus,
.project-form textarea:focus,
.project-form select:focus {
  border-color: var(--orange);
}

.project-form textarea {
  resize: vertical;
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 1.3rem;
  margin-top: 0.5rem;
}

.form-submit-row p {
  max-width: 240px;
  margin: 0;
  color: #777772;
  font-size: 0.68rem;
}

.form-status {
  min-height: 1.3rem;
  margin: 1rem 0 0;
  color: #9ecba6;
  font-size: 0.78rem;
}

.form-status[data-state="sending"] {
  color: #b8b8b1;
}

.form-status[data-state="error"] {
  color: #f09c85;
}

.project-form button[type="submit"]:disabled {
  cursor: wait;
  opacity: 0.62;
}

.faq {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(3rem, 8vw, 8rem);
  background: var(--paper);
}

.faq h2 {
  font-size: clamp(3rem, 5vw, 5.5rem);
}

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

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

.faq summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.7vw, 1.45rem);
  font-weight: 500;
  list-style: none;
  cursor: pointer;
}

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

.faq summary span {
  color: var(--orange);
  font-size: 1.6rem;
  transition: transform 180ms ease;
}

.faq details[open] summary span {
  transform: rotate(45deg);
}

.faq details p {
  max-width: 690px;
  padding: 0 3rem 1.6rem 0;
  color: var(--muted);
  line-height: 1.7;
}

.site-footer {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background: var(--cream);
}

.footer-brand {
  display: block;
  width: min(750px, 75vw);
  margin-bottom: clamp(4rem, 10vw, 9rem);
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: clamp(4rem, 9vw, 9rem);
}

.footer-links > div {
  display: grid;
  gap: 0.35rem;
  min-width: 110px;
}

.footer-links span {
  margin-bottom: 0.5rem;
  color: var(--muted);
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a {
  width: fit-content;
  border-bottom: 1px solid transparent;
}

.footer-links a:hover {
  border-color: var(--orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

dialog {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
}

dialog::backdrop {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
}

dialog[open] {
  animation: dialog-in 260ms ease both;
}

@keyframes dialog-in {
  from { opacity: 0; transform: scale(0.985); }
}

.dialog-close {
  position: fixed;
  z-index: 20;
  top: 1.5rem;
  right: 1.7rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0;
  color: white;
  background: none;
  border: 0;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.dialog-close span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  font-size: 1.4rem;
}

.project-dialog {
  color: var(--ink);
  background: var(--paper);
}

.dark-close {
  color: var(--ink);
}

.dark-close span {
  border-color: var(--line);
}

.project-dialog-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(420px, 0.8fr);
  min-height: 100%;
}

.project-dialog-media {
  min-height: 100vh;
  background: var(--ink);
}

.project-dialog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-dialog-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem clamp(2rem, 5vw, 6rem);
}

.project-dialog-copy h2 {
  margin-bottom: 2rem;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.93;
}

.project-modal-summary {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.project-dialog-copy dl {
  margin: 2rem 0 3rem;
  border-top: 1px solid var(--line);
}

.project-dialog-copy dl div {
  display: grid;
  grid-template-columns: 100px 1fr;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.project-dialog-copy dt {
  color: var(--muted);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.project-dialog-copy dd {
  margin: 0;
  font-size: 0.85rem;
}

.project-dialog-copy .button {
  align-self: start;
}

.project-dialog-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
}

.project-dialog-actions [hidden] {
  display: none;
}

.project-episodes {
  padding: clamp(5rem, 9vw, 9rem) var(--pad) clamp(6rem, 10vw, 10rem);
  color: var(--paper);
  background: var(--ink);
}

.project-episodes[hidden] {
  display: none;
}

.project-episodes-heading {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.project-episodes-heading .kicker {
  margin: 0;
  color: #8e8e89;
}

.project-episodes-heading h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.episode-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
}

.episode-grid.episode-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.episode-card {
  display: grid;
  min-width: 0;
  border-top: 1px solid var(--line-dark);
}

.episode-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  margin-top: 1rem;
  overflow: hidden;
  background: #1a1b1a;
}

.episode-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0, 1), filter 250ms ease;
}

.episode-number,
.episode-play {
  position: absolute;
  display: grid;
  place-items: center;
}

.episode-number {
  top: 0.8rem;
  left: 0.8rem;
  width: 34px;
  height: 34px;
  color: var(--ink);
  background: var(--paper);
  font-size: 0.65rem;
  font-weight: 600;
}

.episode-play {
  right: 1rem;
  bottom: 1rem;
  width: 48px;
  height: 48px;
  color: white;
  background: var(--orange);
  border-radius: 50%;
  font-size: 0.8rem;
  transition: color 220ms ease, background 220ms ease;
}

.episode-copy {
  display: grid;
  gap: 1.5rem;
  padding: 1.25rem 0;
}

.episode-copy strong {
  min-height: 2.5em;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.episode-copy small {
  color: #8e8e89;
  font-size: 0.72rem;
}

.episode-copy i {
  margin-left: 0.5rem;
  color: var(--orange);
  font-style: normal;
}

.episode-card:hover .episode-media img {
  transform: scale(1.035);
  filter: brightness(0.78);
}

.episode-card:hover .episode-play {
  color: var(--orange);
  background: white;
}

@media (max-width: 860px) {
  .project-episodes-heading {
    grid-template-columns: 1fr;
  }

  .episode-grid {
    display: flex;
    margin-right: calc(var(--pad) * -1);
    padding-right: var(--pad);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .episode-grid::-webkit-scrollbar {
    display: none;
  }

  .episode-card {
    flex: 0 0 min(82vw, 480px);
    scroll-snap-align: start;
  }
}

.reveal {
  transform: translateY(24px);
  opacity: 0;
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0, 1);
}

.reveal-delay-1 { transition-delay: 90ms; }
.reveal-delay-2 { transition-delay: 180ms; }
.reveal-delay-3 { transition-delay: 270ms; }

.reveal.in-view {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 1100px) {
  .site-nav { gap: 1.4rem; }
  .hero { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: clamp(3.7rem, 7vw, 6rem); }
  .hero-copy { padding-right: 2.5rem; }
  .hero-meta { display: grid; }
  .service-row { grid-template-columns: 55px 0.9fr 1.1fr 30px; gap: 1.2rem; }
  .about { grid-template-columns: 0.9fr 1.1fr; }
  .approach { grid-template-columns: 0.9fr 1.1fr; gap: 4rem; }
  .project-dialog-grid { grid-template-columns: 1fr 0.85fr; }
}

.careers-main {
  background: var(--ink);
}

.careers-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
  min-height: calc(100svh - 86px);
  padding: clamp(6rem, 10vw, 10rem) var(--pad);
}

.careers-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 7.8vw, 9rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.careers-copy h1 em {
  color: var(--orange);
  font-family: Georgia, serif;
  font-weight: 400;
}

.careers-lede {
  max-width: 650px;
  margin: clamp(2.5rem, 5vw, 5rem) 0 0;
  color: #aaa9a4;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.7;
}

.careers-card {
  padding: clamp(2rem, 4vw, 4rem);
  color: var(--ink);
  background: var(--cream);
}

.careers-status {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: clamp(3.5rem, 7vw, 7rem);
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.careers-card h2 {
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.careers-card > p:not(.careers-status) {
  color: var(--muted);
  line-height: 1.75;
}

.careers-inline-email {
  color: var(--ink);
  border-bottom: 1px solid var(--orange);
  overflow-wrap: anywhere;
}

.careers-card .button {
  margin-top: 1.5rem;
}

.careers-details {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(4rem, 9vw, 10rem);
  padding: clamp(7rem, 11vw, 11rem) var(--pad);
  color: var(--ink);
  background: var(--cream);
}

.careers-details h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.3rem, 6.5vw, 7.5rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.95;
}

.careers-list {
  align-self: end;
  border-top: 1px solid var(--line);
}

.careers-list article {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 1.5rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--line);
}

.careers-list article > span {
  padding-top: 0.35rem;
  color: var(--orange);
  font-size: 0.68rem;
}

.careers-list h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  font-weight: 500;
}

.careers-list p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 860px) {
  .careers-hero,
  .careers-details {
    grid-template-columns: 1fr;
  }

  .careers-hero {
    min-height: auto;
  }

  .careers-card {
    max-width: 680px;
  }
}

@media (max-width: 600px) {
  .careers-hero {
    padding-top: 5.5rem;
  }

  .careers-copy h1,
  .careers-details h2 {
    font-size: clamp(3.2rem, 15vw, 4.8rem);
  }

  .careers-card .button {
    width: 100%;
    justify-content: space-between;
  }

  .careers-list article {
    grid-template-columns: 38px 1fr;
    gap: 0.75rem;
  }
}

@media (max-width: 860px) {
  .site-header {
    top: 0.75rem;
    height: 60px;
    margin: 0.75rem 0.75rem 0;
    padding: 0 1rem;
    background: rgba(242, 239, 232, 0.82);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    backdrop-filter: blur(18px) saturate(140%);
  }
  .site-header.scrolled {
    height: 56px;
  }
  .brand { width: clamp(150px, 43vw, 178px); }
  .language-switcher {
    order: 2;
    margin-right: 0.8rem;
    margin-left: auto;
  }
  .language-button {
    min-width: 48px;
    height: 38px;
    padding: 0 0.6rem;
  }
  .menu-toggle { order: 3; }
  .menu-toggle { display: flex; }
  .site-nav {
    order: 4;
    position: fixed;
    top: 5.25rem;
    right: 0.75rem;
    bottom: auto;
    left: 0.75rem;
    z-index: 100;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    padding: 0.7rem 1rem 1rem;
    transform: translateY(-110%);
    visibility: hidden;
    opacity: 0;
    overflow-y: visible;
    background: rgba(250, 249, 245, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(11, 13, 12, 0.16);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    transition: transform 300ms ease, opacity 200ms ease, visibility 300ms;
  }
  .menu-open .site-nav {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }
  .site-nav > a {
    min-width: 0;
    padding: 0.75rem 0.35rem;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: clamp(1.05rem, 4.4vw, 1.4rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    text-transform: none;
  }
  .site-nav > a::after { display: none; }
  .site-nav .nav-cta {
    grid-column: 1 / -1;
    justify-content: space-between;
    min-height: 44px;
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    color: white;
    font-family: var(--font-body);
    font-size: 0.86rem;
    letter-spacing: normal;
    background: var(--orange);
  }
  .menu-open .menu-icon i:first-child { transform: translateY(3px) rotate(45deg); }
  .menu-open .menu-icon i:last-child { transform: translateY(-3px) rotate(-45deg); }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-copy {
    min-height: calc(82svh - 68px);
    padding-top: 5rem;
  }
  .hero h1 { font-size: clamp(4rem, 14vw, 7.2rem); }
  .hero-intro { max-width: 580px; }
  .hero-meta { display: flex; }
  .hero-visual { min-height: 72svh; }
  .section-heading { grid-template-columns: 1fr; }
  .section-lede { margin: 0; }
  .project-grid { gap: 3.5rem 1rem; }
  .service-row { grid-template-columns: 45px 1fr 30px; }
  .service-row p { grid-column: 2 / 3; }
  .service-mark { grid-column: 3; grid-row: 1; }
  .approach { grid-template-columns: 1fr; }
  .approach-heading { position: static; }
  .about { grid-template-columns: 1fr; }
  .about-visual > img { aspect-ratio: 16 / 10; }
  .contact { grid-template-columns: 1fr; }
  .faq { grid-template-columns: 1fr; }
  .project-dialog-grid { grid-template-columns: 1fr; }
  .project-dialog-media { min-height: 62svh; }
  .project-dialog-copy { min-height: 65svh; }
  .dark-close {
    color: white;
    text-shadow: 0 1px 10px #000;
  }
  .dark-close span { border-color: rgba(255,255,255,.5); }
}

@media (max-width: 600px) {
  .hero-copy { min-height: calc(78svh - 68px); padding-right: var(--pad); }
  .hero h1 { font-size: clamp(3.55rem, 17.5vw, 5.2rem); }
  .eyebrow { margin-bottom: 2.4rem; }
  .hero-intro { margin: 2rem 0 1.5rem; }
  .hero-actions { align-items: stretch; gap: 1.2rem; }
  .hero-actions .text-link { align-self: center; }
  .hero-meta { display: grid; padding-top: 3.5rem; }
  .hero-visual { min-height: 72svh; }
  .hero-carousel-copy { top: 1.2rem; left: 1.2rem; }
  .hero-carousel-copy strong { font-size: clamp(2.7rem, 13vw, 4.5rem); }
  .hero-carousel-controls { right: 1.2rem; bottom: 1.2rem; left: 1.2rem; grid-template-columns: auto 1fr; }
  .hero-carousel-dots { grid-column: 1 / -1; grid-row: 1; }
  .hero-carousel-counter { grid-row: 2; }
  .hero-carousel-arrows { grid-row: 2; justify-self: end; }
  .hero-frame-corner-top { top: 1.2rem; right: 1.2rem; }
  .hero-frame-corner-bottom { bottom: 1.2rem; left: 1.2rem; }
  .ticker-track { gap: 1.7rem; }
  .work, .services, .approach, .about, .testimonial, .contact, .faq { padding-top: 5.5rem; padding-bottom: 5.5rem; }
  .section-heading h2, .approach h2, .about h2, .contact h2 { font-size: clamp(3rem, 15vw, 4.7rem); }
  .filter-bar { overflow-x: auto; scrollbar-width: none; }
  .filter-bar::-webkit-scrollbar { display: none; }
  .filter-button { flex: 0 0 auto; }
  .project-grid { grid-template-columns: 1fr; }
  .project-wide { grid-column: auto; }
  .project-card .project-media,
  .project-card:not(.project-wide) .project-media { aspect-ratio: 4 / 5; }
  .project-media img { object-position: center; }
  .project-info { display: grid; }
  .project-info > span:last-child { display: flex; justify-content: space-between; text-align: left; }
  .service-row { grid-template-columns: 34px 1fr 25px; padding: 1.5rem 0; }
  .service-row p { font-size: 0.9rem; }
  .process-list li { grid-template-columns: 40px 1fr; gap: 1rem; }
  .studio-stats { grid-template-columns: 1fr; }
  .studio-stats div { display: grid; grid-template-columns: 110px 1fr; align-items: center; padding-bottom: 0.7rem; border-bottom: 1px solid var(--line-dark); }
  .testimonial { min-height: 570px; }
  .quote-mark { font-size: 25rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-submit-row { align-items: flex-start; flex-direction: column; }
  .contact-details { display: grid; gap: 1rem; margin-top: 3.5rem; }
  .footer-brand { width: 100%; }
  .footer-links { justify-content: flex-start; }
  .footer-bottom { display: grid; gap: 0.5rem; }
  .dialog-close { top: 1rem; right: 1rem; }
  .dialog-close { font-size: 0; }
  .dialog-close span { font-size: 1.3rem; }
  .project-dialog-copy { padding: 5rem 1.25rem; }
}

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