:root {
  color-scheme: light;
  --ink: #111111;
  --muted: #8a8a8a;
  --paper: #ffffff;
  --soft: #f5f5f2;
  --line: #e6e3dd;
  --accent: #b08d57;
  --max: 1400px;
  --outer: clamp(22px, 6.5vw, 160px);
  --sans: Inter, "Helvetica Neue", "HarmonyOS Sans SC", "Source Han Sans SC",
    "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

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

p,
h1,
h2,
h3,
figure,
dl,
dd {
  margin: 0;
}

p {
  color: var(--muted);
  line-height: 1.85;
}

h1,
h2,
h3 {
  font-weight: 300;
  line-height: 0.98;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 30px);
  min-height: 78px;
  padding: 18px var(--outer);
  color: #fff;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled,
.page-shell .site-header,
body.menu-open .site-header {
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  backdrop-filter: blur(16px);
}

.brand {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.8vw, 44px);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
}

.nav a {
  position: relative;
  padding: 8px 0;
}

.nav a::after,
.text-link::after,
.footer-links a::after,
.footer-services a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 180ms ease;
}

.nav a:hover::after,
.text-link:hover::after,
.footer-links a:hover::after,
.footer-services a:hover::after {
  width: 100%;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid currentColor;
  border-radius: 999px;
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.language-switch button {
  min-width: 34px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font: inherit;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

.language-switch button:not(.is-active) {
  opacity: 0.62;
}

.language-switch button.is-active,
.language-switch button:hover {
  background: currentColor;
  color: var(--ink);
  opacity: 1;
}

.site-header.is-scrolled .language-switch button.is-active,
.page-shell .site-header .language-switch button.is-active,
body.menu-open .site-header .language-switch button.is-active,
.site-header.is-scrolled .language-switch button:hover,
.page-shell .site-header .language-switch button:hover,
body.menu-open .site-header .language-switch button:hover {
  color: #fff;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
}

.float-contact {
  position: fixed;
  right: 22px;
  top: 50%;
  z-index: 70;
  display: grid;
  gap: 8px;
  transform: translateY(-50%);
}

.float-contact a,
.float-contact button {
  width: 48px;
  min-height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(18px);
  font: inherit;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.float-contact a:hover,
.float-contact button:hover {
  background: var(--ink);
  border-color: var(--accent);
  color: #fff;
  transform: translateX(-3px);
}

.float-qr {
  position: absolute;
  right: 60px;
  top: 50%;
  width: 164px;
  padding: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
  transform: translateY(-50%);
}

.float-qr img {
  width: 100%;
  border: 1px solid var(--line);
}

.float-qr span {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-size: 0.78rem;
  text-align: center;
}

.page-title {
  min-height: 58vh;
  display: grid;
  align-content: end;
  gap: 22px;
  padding: clamp(120px, 14vw, 190px) var(--outer) clamp(54px, 8vw, 96px);
  background: var(--soft);
}

.page-title h1 {
  max-width: 1100px;
  font-size: clamp(3.2rem, 7.4vw, 7.4rem);
  line-height: 1;
}

.page-title p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.02rem;
}

.projects-page .projects-hero {
  min-height: auto;
  grid-template-columns: minmax(160px, 0.8fr) minmax(0, 2.2fr);
  align-items: end;
  align-content: end;
  gap: clamp(34px, 6vw, 96px);
  padding-top: clamp(132px, 13vw, 176px);
  padding-bottom: clamp(62px, 7vw, 92px);
}

.projects-hero__meta {
  display: grid;
  gap: 16px;
}

.projects-hero__meta span {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.projects-hero__copy {
  display: grid;
  gap: clamp(18px, 2.2vw, 28px);
  max-width: 900px;
}

.projects-page .projects-hero h1 {
  max-width: 760px;
  font-size: clamp(3.4rem, 7.6vw, 7.4rem);
  line-height: 0.98;
}

.projects-page .projects-hero p:not(.eyebrow) {
  max-width: 620px;
  color: #626262;
  font-size: clamp(0.98rem, 1.15vw, 1.12rem);
  line-height: 2.05;
}

.text-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}

.text-layout.section {
  margin: clamp(64px, 8vw, 120px) auto;
  padding: 0;
}

.text-panel {
  min-height: 300px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(28px, 4vw, 58px);
  background: var(--paper);
}

.text-panel h2,
.text-panel h3 {
  font-size: clamp(1.7rem, 3vw, 3.8rem);
  line-height: 1.08;
}

.text-panel ol,
.text-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 1.1em;
  color: var(--muted);
  line-height: 1.85;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 24px;
}

.section-actions a {
  position: relative;
  padding-bottom: 6px;
  color: var(--ink);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
}

.section-actions a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
}

.section {
  width: min(calc(100% - var(--outer) * 2), var(--max));
  margin: 0 auto;
  padding: clamp(86px, 11vw, 180px) 0;
}

.home-page .section {
  padding: clamp(56px, 7vw, 110px) 0;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.home-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #111;
  color: #fff;
}

.home-hero::before,
.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.home-hero::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.08) 42%, rgba(0, 0, 0, 0.54)),
    rgba(0, 0, 0, 0.1);
}

.home-hero::after {
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 0 0 10px rgba(255, 255, 255, 0.02),
    inset 0 -180px 180px rgba(0, 0, 0, 0.18);
}

.home-hero__image {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.78;
  transform: scale(1.01);
}

.home-page .home-hero__image {
  object-position: 50% 48%;
}

.home-hero__content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
  padding: 0 clamp(30px, 7vw, 132px) clamp(46px, 7vw, 86px);
}

.home-hero__copy {
  width: min(500px, 100%);
  display: grid;
  gap: 16px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.35);
}

.home-hero__sub,
.scroll-cue {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-hero h1 {
  color: #fff;
  font-size: clamp(1rem, 1.35vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
}

.home-hero__copy p:not(.home-hero__sub) {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.78rem, 0.8vw, 0.9rem);
  font-weight: 500;
  line-height: 1.9;
}

.home-hero__link {
  width: fit-content;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    transform 220ms ease;
}

.home-hero__link:hover {
  color: #fff;
  transform: translateX(4px);
}

.scroll-cue {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-bottom: 10px;
  font-size: 0.75rem;
  font-weight: 600;
}

.design-belief {
  position: relative;
  background: var(--paper);
}

.design-belief__inner {
  width: min(calc(100% - var(--outer) * 2), var(--max));
  margin: 0 auto;
  padding: clamp(62px, 7vw, 108px) 0 clamp(58px, 6.5vw, 96px);
  display: grid;
  grid-template-columns: minmax(170px, 0.24fr) minmax(0, 0.76fr);
  gap: clamp(34px, 7vw, 112px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.design-belief__meta {
  position: sticky;
  top: 110px;
  align-self: start;
  min-height: 220px;
  display: grid;
  align-content: space-between;
  gap: 24px;
  padding: 8px 0 6px;
  color: var(--ink);
}

.design-belief__meta::after {
  content: "";
  position: absolute;
  top: 0;
  right: calc(clamp(34px, 7vw, 112px) / -2);
  width: 1px;
  height: 100%;
  background: var(--line);
}

.design-belief__logo {
  width: min(100%, 246px);
  height: auto;
  opacity: 0.92;
}

.design-belief__meta p,
.design-belief__meta small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.7;
  text-transform: uppercase;
}

.design-belief__meta small {
  color: rgba(17, 17, 17, 0.5);
}

.design-belief__body {
  max-width: 980px;
  display: grid;
  gap: clamp(24px, 3vw, 42px);
}

.design-belief .eyebrow {
  color: rgba(176, 141, 87, 0.9);
}

.design-belief h2 {
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 4.6rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.08;
}

.design-belief__text {
  max-width: 780px;
  display: grid;
  gap: 12px;
  padding-left: clamp(18px, 3vw, 42px);
  border-left: 1px solid rgba(176, 141, 87, 0.38);
}

.design-belief__text p {
  color: rgba(17, 17, 17, 0.68);
  font-size: clamp(0.94rem, 0.95vw, 1.04rem);
  font-weight: 300;
  line-height: 2;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 680ms ease,
    transform 680ms ease;
}

.design-belief.is-visible .design-belief__text p {
  opacity: 1;
  transform: none;
}

.design-belief.is-visible .design-belief__text p:nth-child(1) {
  transition-delay: 70ms;
}

.design-belief.is-visible .design-belief__text p:nth-child(2) {
  transition-delay: 150ms;
}

.design-belief.is-visible .design-belief__text p:nth-child(3) {
  transition-delay: 230ms;
}

.design-belief.is-visible .design-belief__text p:nth-child(4) {
  transition-delay: 310ms;
}

.design-belief.is-visible .design-belief__text p:nth-child(5) {
  transition-delay: 390ms;
}

.design-belief.is-visible .design-belief__text p:nth-child(6) {
  transition-delay: 470ms;
}

.design-belief__link {
  position: relative;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 2px;
  padding-bottom: 8px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  transition:
    color 180ms ease,
    transform 220ms ease;
}

.design-belief__link::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
  transition:
    width 220ms ease,
    opacity 220ms ease;
}

.design-belief__link::after {
  content: "";
  position: absolute;
  left: 48px;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(176, 141, 87, 0.62);
  transform-origin: left;
  transition: transform 220ms ease;
}

.design-belief__link:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.design-belief__link:hover::before {
  width: 48px;
  opacity: 0.75;
}

.design-belief__link:hover::after {
  transform: scaleX(0.72);
}

.philosophy {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(34px, 5vw, 92px);
  align-items: end;
}

.philosophy h2,
.section-kicker h2,
.studio-copy h2,
.contact h2 {
  max-width: 1100px;
  font-size: clamp(2.35rem, 5.4vw, 5.8rem);
  line-height: 1.08;
}

.home-page .philosophy h2,
.home-page .section-kicker h2,
.home-page .studio-copy h2,
.home-page .contact h2 {
  font-size: clamp(1.85rem, 3.45vw, 3.55rem);
}

.home-page .studio-copy h2 {
  font-size: clamp(2.1rem, 3.55vw, 3.85rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.14;
}

.philosophy__copy {
  display: grid;
  gap: clamp(18px, 2.5vw, 32px);
  align-self: center;
}

.philosophy__copy p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(17, 17, 17, 0.58);
  font-size: clamp(0.94rem, 1vw, 1.05rem);
  line-height: 2.05;
}

.philosophy figure {
  width: 100%;
  margin: 0;
}

.philosophy figure img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.home-page .philosophy__visual--portrait {
  width: min(100%, 780px);
}

.home-page .philosophy figure,
.home-page .project-tile figure,
.home-page .service-preview,
.home-page .featured figure,
.home-page .studio figure {
  position: relative;
  isolation: isolate;
  background: var(--soft);
}

.home-page .philosophy figure::before,
.home-page .project-tile figure::before,
.home-page .service-preview::before,
.home-page .featured figure::before,
.home-page .studio figure::before,
.home-page .philosophy figure::after,
.home-page .project-tile figure::after,
.home-page .service-preview::after,
.home-page .featured figure::after,
.home-page .studio figure::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.home-page .philosophy figure::before,
.home-page .project-tile figure::before,
.home-page .service-preview::before,
.home-page .featured figure::before,
.home-page .studio figure::before {
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow:
    inset 0 0 0 1px rgba(17, 17, 17, 0.05),
    inset 0 -110px 120px rgba(0, 0, 0, 0.08);
  opacity: 0.92;
  transition: opacity 500ms ease;
}

.home-page .philosophy figure::after,
.home-page .project-tile figure::after,
.home-page .service-preview::after,
.home-page .featured figure::after,
.home-page .studio figure::after {
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.2);
  opacity: 0;
  transition: opacity 500ms ease;
}

.home-page .philosophy figure:hover::before,
.home-page .project-tile a:hover figure::before,
.home-page .service-preview:hover::before,
.home-page .featured figure:hover::before,
.home-page .studio figure:hover::before {
  opacity: 0.58;
}

.home-page .philosophy figure:hover::after,
.home-page .project-tile a:hover figure::after,
.home-page .service-preview:hover::after,
.home-page .featured figure:hover::after,
.home-page .studio figure:hover::after {
  opacity: 1;
}

.section-kicker {
  display: grid;
  grid-template-columns: 0.3fr 0.7fr;
  gap: clamp(28px, 5vw, 90px);
  align-items: start;
  margin-bottom: clamp(42px, 7vw, 110px);
}

.home-page .section-kicker {
  grid-template-columns: 0.22fr 0.78fr;
  gap: clamp(22px, 4vw, 64px);
  margin-bottom: clamp(30px, 4.5vw, 68px);
}

.project-editorial {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(18px, 2vw, 34px);
  align-items: start;
}

.project-tile a,
.archive-card a,
.journal-cover {
  display: grid;
  gap: 18px;
}

.project-tile figure,
.archive-card,
.journal-cover,
.featured figure,
.studio figure,
.contact-visual,
.detail-hero,
.photo-story figure {
  overflow: hidden;
}

.project-tile img,
.archive-card img,
.journal-cover img,
.featured img,
.studio img,
.detail-hero img,
.photo-story img {
  height: 100%;
  object-fit: cover;
  transition:
    transform 700ms ease,
    opacity 260ms ease;
}

.home-page .philosophy img,
.home-page .project-tile img,
.home-page .service-preview img,
.home-page .featured img,
.home-page .studio img,
.home-page .archive-card img,
.home-page .journal-cover img {
  filter: saturate(0.86) contrast(0.96);
  transform: scale(1.01);
  transition:
    transform 950ms cubic-bezier(0.22, 0.61, 0.36, 1),
    filter 650ms ease,
    opacity 450ms ease;
}

.home-page .philosophy figure:hover img,
.home-page .project-tile a:hover img,
.home-page .service-preview:hover img,
.home-page .featured figure:hover img,
.home-page .studio figure:hover img,
.home-page .archive-card a:hover img,
.home-page .journal-cover:hover img {
  filter: saturate(1) contrast(1.02);
  transform: scale(1.045);
}

.home-page main .reveal figure:not(.contact-visual),
.home-page main figure.reveal:not(.contact-visual) {
  clip-path: inset(5% 0);
  transition:
    clip-path 900ms cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 700ms ease,
    transform 700ms ease;
}

.home-page main .reveal.is-visible figure:not(.contact-visual),
.home-page main figure.reveal.is-visible:not(.contact-visual) {
  clip-path: inset(0);
}

.project-tile a:hover img,
.archive-card a:hover img,
.journal-cover:hover img,
.client-wall a:hover {
  transform: scale(1.03);
}

.project-tile--large {
  grid-column: 1 / span 7;
}

.project-tile--large figure {
  aspect-ratio: 16 / 10;
}

.project-tile--portrait {
  grid-column: 9 / span 4;
  margin-top: 16vh;
}

.project-tile--portrait figure {
  aspect-ratio: 4 / 5;
}

.project-tile--wide {
  grid-column: 4 / span 8;
  margin-top: 8vh;
}

.project-tile--wide figure {
  aspect-ratio: 16 / 9;
}

.home-page .selected {
  padding-top: clamp(50px, 6vw, 96px);
}

.home-page .selected .project-editorial {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  grid-template-rows: repeat(2, clamp(220px, 20vw, 280px));
  gap: clamp(18px, 2vw, 28px);
  align-items: stretch;
}

.home-page .selected .project-tile {
  margin-top: 0;
}

.home-page .selected .project-tile--large {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.home-page .selected .project-tile--portrait {
  grid-column: 2;
  grid-row: 1;
}

.home-page .selected .project-tile--wide {
  grid-column: 2;
  grid-row: 2;
}

.home-page .selected .project-tile a {
  position: relative;
  height: 100%;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 14px;
}

.home-page .selected .project-tile figure {
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  background: var(--soft);
}

.home-page .selected .project-tile--large figure {
  min-height: 0;
}

.home-page .selected .project-caption {
  grid-template-columns: auto 1fr;
  gap: 10px 18px;
  align-items: end;
  padding-top: 4px;
  border-top: 1px solid var(--line);
}

.home-page .selected .project-caption h3 {
  font-size: clamp(1.25rem, 2.1vw, 2.25rem);
  line-height: 1.08;
}

.home-page .selected .project-caption p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

.home-page .selected .project-caption span {
  font-size: 0.68rem;
}

.project-caption {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 22px;
  align-items: baseline;
}

.project-caption span,
.archive-card span,
.journal-cover span,
.service-detail span {
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-caption h3,
.archive-card h3,
.journal-cover h3 {
  font-size: clamp(1.45rem, 2.8vw, 3rem);
}

.project-caption p {
  grid-column: 2;
  font-size: 0.88rem;
}

.service-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.48fr);
  gap: clamp(34px, 6vw, 120px);
  align-items: start;
}

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

.service-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  padding: clamp(22px, 3.4vw, 54px) 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  transition: color 160ms ease;
}

.service-row span {
  font-size: clamp(2.3rem, 6.2vw, 6.8rem);
  font-weight: 300;
  line-height: 0.9;
}

.home-page .service-row span {
  font-size: clamp(1.95rem, 4.2vw, 4.7rem);
}

.service-row small {
  padding-bottom: 0.5em;
  color: var(--muted);
  font-size: 0.9rem;
  white-space: nowrap;
}

.service-row:hover,
.service-row.is-active {
  color: var(--ink);
}

.service-preview {
  position: sticky;
  top: 110px;
  aspect-ratio: 4 / 5;
  background: var(--soft);
}

.service-preview img {
  height: 100%;
  object-fit: cover;
}

.service-notes {
  max-width: 820px;
  margin-top: clamp(38px, 6vw, 94px);
  margin-left: auto;
}

.featured,
.studio,
.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 0.64fr);
  gap: clamp(34px, 7vw, 120px);
  align-items: center;
}

.featured figure {
  aspect-ratio: 16 / 10;
}

.featured-copy,
.studio-copy,
.contact-copy {
  display: grid;
  gap: 24px;
}

.studio-copy {
  max-width: 720px;
  align-content: center;
  gap: clamp(18px, 2.6vw, 34px);
}

.studio-copy .eyebrow {
  margin-bottom: clamp(2px, 0.8vw, 10px);
}

.studio-title {
  display: grid;
  gap: 0.08em;
  max-width: 760px;
}

.studio-title span {
  display: block;
}

.studio-statement {
  max-width: 640px;
  padding-left: clamp(18px, 2.4vw, 32px);
  border-left: 1px solid rgba(176, 141, 87, 0.42);
  color: rgba(17, 17, 17, 0.54);
  font-size: clamp(0.9rem, 0.92vw, 1rem);
  line-height: 2;
}

.featured-copy h2,
.detail-intro h2 {
  font-size: clamp(2.1rem, 5vw, 5.6rem);
  line-height: 1.04;
}

.text-link {
  position: relative;
  width: fit-content;
  padding-bottom: 7px;
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.studio {
  align-items: end;
}

.studio figure {
  aspect-ratio: 4 / 5;
}

.archive-editorial,
.journal-covers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.2vw, 34px);
}

.archive-editorial--dense {
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
}

.case-carousel {
  display: grid;
  gap: clamp(18px, 2vw, 30px);
}

.case-carousel__viewport {
  position: relative;
  overflow: hidden;
}

.case-carousel__viewport::before,
.case-carousel__viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(26px, 7vw, 110px);
  pointer-events: none;
}

.case-carousel__viewport::before {
  left: 0;
  background: linear-gradient(90deg, var(--paper), rgba(255, 255, 255, 0));
}

.case-carousel__viewport::after {
  right: 0;
  background: linear-gradient(270deg, var(--paper), rgba(255, 255, 255, 0));
}

.case-carousel__track {
  display: flex;
  gap: 2.2%;
  opacity: 1;
  will-change: transform, opacity;
  transition:
    transform 1200ms cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 900ms ease;
}

.case-carousel.is-fading .case-carousel__track {
  opacity: 0.42;
}

.case-carousel__item {
  flex: 0 0 23.35%;
}

.case-carousel__item h3 {
  min-height: 2.05em;
}

.case-carousel__controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.case-carousel__controls button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  transition:
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.case-carousel__controls button:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.archive-card img {
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.archive-card a {
  height: 100%;
}

.archive-card p {
  font-size: 0.9rem;
}

.journal-cover img {
  aspect-ratio: 3 / 4;
}

.clients {
  display: grid;
  gap: 34px;
}

.client-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.client-wall a {
  display: grid;
  min-height: 142px;
  place-items: center;
  background: var(--paper);
  color: #aaa;
  font-size: clamp(1.1rem, 2vw, 2rem);
  transition:
    color 160ms ease,
    transform 260ms ease;
}

.client-wall a:hover {
  color: var(--ink);
}

.contact {
  width: min(calc(100% - var(--outer) * 2), var(--max));
  margin: 0 auto;
  padding: clamp(86px, 11vw, 180px) 0;
  border-top: 1px solid var(--line);
}

.home-page .contact {
  padding: clamp(56px, 7vw, 110px) 0;
}

.home-page .home-hero__brand {
  font-size: clamp(3.4rem, 10vw, 8.8rem);
}

.home-page .home-hero h1 {
  font-size: clamp(1rem, 1.25vw, 1.25rem);
}

.contact dl,
.project-data dl {
  display: grid;
  gap: 18px;
}

.contact dt,
.project-data dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact dd,
.project-data dd {
  color: var(--ink);
  line-height: 1.6;
}

.contact-visual {
  justify-self: end;
  width: min(280px, 100%);
}

.contact-visual img {
  border: 1px solid var(--line);
  padding: 14px;
}

.contact-visual figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.86rem;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 0.58fr 0.42fr;
  gap: clamp(32px, 6vw, 110px);
  align-items: start;
}

.contact-page-card {
  display: grid;
  gap: 22px;
  padding: clamp(28px, 4vw, 58px);
  border: 1px solid var(--line);
}

.contact-page-card img {
  width: min(260px, 100%);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px clamp(28px, 6vw, 120px);
  padding: 42px var(--outer);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

.footer-brand {
  display: grid;
  gap: 8px;
}

.footer-brand strong {
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.footer-links,
.footer-services,
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.footer-links a,
.footer-services a {
  position: relative;
  padding-bottom: 5px;
  color: #fff;
}

.footer-services {
  grid-column: 2;
}

.footer-legal {
  grid-column: 1 / -1;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.icp-link {
  color: rgba(255, 255, 255, 0.7);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.detail-hero {
  position: relative;
  min-height: 100vh;
  background: #111;
  color: #fff;
}

.detail-hero img {
  position: absolute;
  inset: 0;
  height: 100%;
  opacity: 0.72;
  filter: saturate(0.9) brightness(0.82);
}

.detail-hero::before,
.detail-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
}

.detail-hero::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.56) 0%, rgba(0, 0, 0, 0.28) 42%, rgba(0, 0, 0, 0.14) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.66) 0%, rgba(0, 0, 0, 0.28) 42%, rgba(0, 0, 0, 0.12) 100%);
}

.detail-hero::after {
  background: radial-gradient(circle at 28% 72%, rgba(0, 0, 0, 0.34), transparent 42%);
}

.detail-hero__copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 20px;
  align-content: end;
  min-height: 100vh;
  padding: 0 var(--outer) clamp(54px, 8vw, 110px);
  max-width: min(1320px, 100%);
}

.detail-hero h1 {
  max-width: 980px;
  color: #fff;
  font-size: clamp(3.1rem, 8.8vw, 8.6rem);
  line-height: 0.95;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.46);
}

.detail-hero__copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.84);
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.42);
}

.detail-intro {
  display: grid;
  grid-template-columns: 0.58fr 0.42fr;
  gap: clamp(36px, 7vw, 120px);
  align-items: start;
}

.detail-intro p:not(.eyebrow) {
  font-size: 1.02rem;
}

.project-data {
  padding-top: 0;
}

.project-data dl {
  grid-template-columns: repeat(4, 1fr);
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.photo-story {
  display: grid;
  gap: clamp(34px, 5vw, 90px);
  padding-top: 0;
}

.photo-wide {
  aspect-ratio: 16 / 10;
}

.story-split {
  display: grid;
  grid-template-columns: 0.32fr 0.68fr;
  gap: clamp(28px, 5vw, 86px);
  align-items: end;
}

.story-split figure {
  aspect-ratio: 4 / 5;
}

.photo-offset {
  width: min(72%, 960px);
  aspect-ratio: 3 / 2;
  margin-left: auto;
}

.case-narrative {
  max-width: 840px;
  margin-left: var(--outer);
  padding-top: 0;
}

.case-narrative p:not(.eyebrow) {
  color: var(--ink);
  font-size: clamp(1.25rem, 2.1vw, 2rem);
  line-height: 1.65;
}

.case-gallery {
  display: grid;
  gap: clamp(44px, 7vw, 112px);
  padding-top: 0;
}

.case-gallery__row {
  display: grid;
  gap: clamp(18px, 3vw, 44px);
}

.case-gallery__pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 44px);
  align-items: start;
  width: min(100%, 1180px);
  margin-inline: auto;
}

.case-figure {
  margin: 0;
  overflow: visible;
  background: transparent;
}

.case-figure--wide {
  width: 100%;
}

.case-figure--landscape {
  width: min(88%, 1180px);
  margin-inline: auto;
}

.case-figure--portrait,
.case-figure--square {
  width: min(62%, 760px);
  margin-inline: auto;
}

.case-gallery__pair .case-figure {
  width: 100%;
}

.case-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.related-projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  padding-top: 0;
}

.related-projects a {
  min-height: 160px;
  display: grid;
  place-items: center;
  padding: 28px;
  background: var(--paper);
  color: var(--ink);
  text-align: center;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.related-projects a:hover {
  background: var(--ink);
  color: #fff;
}

.service-detail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.service-detail article {
  min-height: 260px;
  display: grid;
  gap: 18px;
  align-content: start;
  padding: clamp(26px, 4vw, 54px);
  background: var(--paper);
}

.service-detail h3 {
  font-size: clamp(1.6rem, 3vw, 3rem);
}

.sitemap-main {
  padding-top: 78px;
}

.sitemap-hero {
  display: grid;
  gap: 22px;
  padding: clamp(72px, 10vw, 140px) var(--outer);
  background: var(--ink);
  color: #fff;
}

.sitemap-hero h1 {
  color: #fff;
  font-size: clamp(3.2rem, 10vw, 9rem);
}

.sitemap-hero p:not(.eyebrow) {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.68);
}

.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}

.sitemap-grid article {
  min-height: 320px;
  padding: clamp(28px, 4vw, 54px);
  background: var(--paper);
}

.sitemap-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sitemap-grid h2 {
  margin-bottom: 24px;
  font-size: clamp(1.6rem, 3vw, 3rem);
}

.sitemap-grid ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sitemap-grid a {
  color: var(--ink);
  line-height: 1.7;
  text-decoration: underline;
  text-decoration-color: rgba(176, 141, 87, 0.3);
  text-underline-offset: 5px;
}

.sitemap-grid a:hover {
  color: var(--accent);
}

@media (max-width: 980px) {
  .section-kicker,
  .philosophy,
  .service-stage,
  .featured,
  .studio,
  .contact,
  .detail-intro,
  .story-split {
    grid-template-columns: 1fr;
  }

  .project-tile--large,
  .project-tile--portrait,
  .project-tile--wide {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .home-page .selected .project-editorial {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .home-page .selected .project-tile--large,
  .home-page .selected .project-tile--portrait,
  .home-page .selected .project-tile--wide {
    grid-column: 1;
    grid-row: auto;
  }

  .home-page .selected .project-tile--large figure,
  .home-page .selected .project-tile figure {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .archive-editorial,
  .archive-editorial--dense,
  .journal-covers,
  .client-wall,
  .contact-page-grid,
  .project-data dl,
  .related-projects,
  .service-detail,
  .sitemap-grid {
    grid-template-columns: 1fr;
  }

  .service-preview {
    position: static;
    aspect-ratio: 16 / 10;
  }

  .footer-services {
    grid-column: auto;
  }

  .case-carousel__track {
    gap: 3%;
  }

  .case-carousel__item {
    flex-basis: 48.5%;
  }

  .design-belief__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .design-belief__meta {
    position: static;
    min-height: auto;
    grid-template-columns: minmax(140px, 220px) 1fr;
    align-items: end;
    align-content: initial;
    gap: 10px 22px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
  }

  .design-belief__meta::after {
    display: none;
  }

  .design-belief__logo {
    grid-row: 1 / span 2;
  }

  .projects-page .projects-hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .projects-hero__meta {
    gap: 10px;
  }
}

@media (max-width: 720px) {
  body {
    font-size: 15px;
  }

  .site-header {
    min-height: 68px;
    padding: 13px 18px;
    gap: 10px;
  }

  .brand {
    width: 96px;
  }

  .brand-logo {
    max-height: 38px;
  }

  .menu-button {
    display: block;
  }

  .language-switch {
    padding: 2px;
  }

  .language-switch button {
    min-width: 31px;
    height: 26px;
    font-size: 0.62rem;
  }

  .nav {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
  }

  body.menu-open .nav {
    display: flex;
  }

  .nav a {
    min-height: 52px;
    padding: 18px 22px;
    border-top: 1px solid var(--line);
  }

  .nav a::after {
    display: none;
  }

  .section,
  .contact {
    width: calc(100% - 36px);
    padding: 70px 0;
  }

  .home-page .section,
  .home-page .contact {
    padding: 54px 0;
  }

  .projects-page .projects-hero {
    min-height: auto;
    padding: 104px 18px 46px;
  }

  .projects-page .projects-hero h1 {
    max-width: 10em;
    font-size: clamp(2.9rem, 14vw, 4.4rem);
  }

  .projects-page .projects-hero p:not(.eyebrow) {
    max-width: 100%;
    font-size: 0.96rem;
    line-height: 1.95;
  }

  .home-hero__content {
    grid-template-columns: 1fr;
    padding: 0 18px 38px;
  }

  .home-hero__brand {
    font-size: clamp(4rem, 22vw, 5.8rem);
  }

  .scroll-cue {
    justify-items: start;
  }

  .design-belief__inner {
    width: calc(100% - 36px);
    padding: 54px 0 62px;
    gap: 28px;
  }

  .design-belief__body {
    gap: 22px;
  }

  .design-belief h2 {
    font-size: clamp(1.85rem, 8vw, 2.5rem);
    letter-spacing: 0.05em;
  }

  .design-belief__meta {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-bottom: 24px;
  }

  .design-belief__logo {
    grid-row: auto;
    width: min(74vw, 250px);
  }

  .design-belief__text {
    gap: 12px;
    padding-left: 18px;
  }

  .design-belief__text p {
    font-size: 0.96rem;
    line-height: 2;
  }

  .design-belief__link {
    margin-top: 4px;
  }

  .philosophy h2,
  .section-kicker h2,
  .studio-copy h2,
  .contact h2,
  .featured-copy h2,
  .detail-intro h2 {
    font-size: clamp(2.2rem, 12vw, 4.2rem);
  }

  .home-page .philosophy h2,
  .home-page .section-kicker h2,
  .home-page .studio-copy h2,
  .home-page .contact h2,
  .home-page .featured-copy h2 {
    font-size: clamp(1.75rem, 8.4vw, 2.9rem);
  }

  .home-page .studio-copy h2 {
    font-size: clamp(1.8rem, 8vw, 2.65rem);
    line-height: 1.18;
  }

  .studio-title {
    gap: 0.12em;
  }

  .studio-statement {
    padding-left: 18px;
    font-size: 0.92rem;
    line-height: 1.95;
  }

  .home-page .section-kicker {
    gap: 14px;
    margin-bottom: 28px;
  }

  .philosophy figure img {
    height: auto;
  }

  .project-editorial {
    display: grid;
    grid-template-columns: 1fr;
  }

  .project-caption {
    grid-template-columns: 1fr;
  }

  .project-caption p {
    grid-column: auto;
  }

  .home-page .selected .project-caption {
    grid-template-columns: auto 1fr;
  }

  .home-page .selected .project-caption p {
    grid-column: 2;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-row span {
    font-size: clamp(2.8rem, 15vw, 4.4rem);
  }

  .home-page .service-row span {
    font-size: clamp(2.35rem, 12vw, 3.7rem);
  }

  .detail-hero__copy {
    padding: 0 18px 42px;
  }

  .detail-hero h1 {
    font-size: clamp(3rem, 17vw, 5.4rem);
  }

  .photo-offset {
    width: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 34px 18px;
  }

  .case-carousel__viewport::before,
  .case-carousel__viewport::after {
    width: 28px;
  }

  .case-carousel__track {
    gap: 0;
  }

  .case-carousel__item {
    flex-basis: 100%;
  }

  .case-carousel__controls {
    justify-content: flex-start;
  }

  .footer-links,
  .footer-services,
  .footer-legal {
    gap: 10px 16px;
  }

  .sitemap-main {
    padding-top: 68px;
  }

  .sitemap-hero {
    padding: 58px 18px 42px;
  }

  .float-contact {
    left: auto;
    right: 14px;
    top: auto;
    bottom: 14px;
    display: flex;
    justify-content: flex-end;
    transform: none;
    pointer-events: none;
  }

  .float-contact a,
  .float-contact button {
    width: 46px;
    min-height: 46px;
    padding: 0;
    pointer-events: auto;
  }

  .float-qr {
    right: 0;
    top: auto;
    bottom: 52px;
    transform: none;
    pointer-events: auto;
  }

  .case-narrative {
    margin-left: auto;
  }

  .case-gallery {
    gap: 34px;
  }

  .case-gallery__pair {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .case-figure--landscape,
  .case-figure--portrait,
  .case-figure--square {
    width: 100%;
  }
}
