:root {
  font-synthesis: none;
  --bg: #0d0d0f;
  --bg-deep: #080808;
  --surface: #141313;
  --surface-2: #1c1b1b;
  --text: #f6f2ea;
  --muted: #b8b3aa;
  --muted-soft: rgba(184, 179, 170, 0.64);
  --line: rgba(246, 242, 234, 0.08);
  --line-strong: rgba(246, 242, 234, 0.16);
  --peach: #d69b7d;
  --copper: #c48161;
  --paper: #e9e4de;
  --ink: #0d0d0f;
  --font: "BR Firma", "Pretendard", "Helvetica Now", "Neue Haas Grotesk Text", Arial, sans-serif;
  --page: clamp(24px, 5.2vw, 80px);
  --stack-sm: clamp(48px, 6vw, 80px);
  --stack-md: clamp(88px, 10vw, 140px);
  --stack-lg: clamp(104px, 11vw, 150px);
  --max: 1380px;
}

@font-face {
  font-family: "BR Firma";
  src: url("../fonts/br-firma-light.otf") format("opentype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "BR Firma";
  src: url("../fonts/br-firma-regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "BR Firma";
  src: url("../fonts/br-firma-medium.otf") format("opentype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "BR Firma";
  src: url("../fonts/br-firma-semibold.otf") format("opentype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "BR Firma";
  src: url("../fonts/br-firma-bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-padding-top: 92px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

html:lang(ko),
html:lang(ja) {
  word-break: keep-all;
  line-break: strict;
}

html:lang(ko) body {
  font-family: "BR Firma", "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", Arial, sans-serif;
}

html:lang(ja) body {
  font-family: "BR Firma", "Hiragino Sans", "Yu Gothic", "Noto Sans JP", "Pretendard", Arial, sans-serif;
}

html:lang(ko) p,
html:lang(ko) li,
html:lang(ko) dd,
html:lang(ko) span,
html:lang(ko) input,
html:lang(ko) textarea,
html:lang(ko) select,
html:lang(ja) p,
html:lang(ja) li,
html:lang(ja) dd,
html:lang(ja) span,
html:lang(ja) input,
html:lang(ja) textarea,
html:lang(ja) select {
  overflow-wrap: break-word;
  text-wrap: pretty;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(246, 242, 234, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 242, 234, 0.014) 1px, transparent 1px);
  background-size: 80px 80px;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.13;
  background-image:
    linear-gradient(115deg, transparent 0 42%, rgba(214, 155, 125, 0.08) 48%, transparent 56%),
    linear-gradient(180deg, rgba(246, 242, 234, 0.03), transparent 34%);
}

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

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

button {
  color: inherit;
}

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

::selection {
  color: var(--ink);
  background: var(--peach);
}

:focus-visible {
  outline: 2px solid var(--peach);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 32px;
  align-items: center;
  width: 100%;
  padding: 28px var(--page);
  border-bottom: 1px solid rgba(246, 242, 234, 0.04);
  background: linear-gradient(180deg, rgba(13, 13, 15, 0.68), rgba(13, 13, 15, 0.22));
  backdrop-filter: blur(14px);
  transition:
    background 220ms ease,
    padding 220ms ease,
    border-color 220ms ease;
}

.site-header.is-scrolled {
  padding-top: 18px;
  padding-bottom: 18px;
  border-color: rgba(246, 242, 234, 0.09);
  background: rgba(13, 13, 15, 0.86);
}

.brand-mark {
  display: block;
  width: 92px;
}

.brand-mark img,
.site-footer__brand img,
.mobile-menu__top img {
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: clamp(28px, 4vw, 56px);
  color: var(--muted-soft);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.primary-nav a,
.site-footer nav a,
.language-switcher__link,
.mobile-menu__nav a {
  transition:
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.primary-nav a:hover,
.site-footer nav a:hover,
.language-switcher__link:hover,
.mobile-menu__nav a:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(184, 179, 170, 0.54);
  font-size: 12px;
  font-weight: 500;
}

.language-switcher__link.is-active {
  color: var(--peach);
}

.language-switcher__divider {
  color: rgba(184, 179, 170, 0.22);
}

.text-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}

.text-cta--small {
  min-height: 32px;
  font-size: 12px;
  text-transform: uppercase;
}

.text-cta--muted {
  color: var(--muted);
}

.text-cta i,
.submit-button i {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--peach);
  transition: transform 180ms ease;
}

.text-cta:hover i,
.submit-button:hover i {
  transform: scale(1.45);
}

.menu-toggle,
.mobile-menu,
.mobile-menu__close {
  display: none;
}

.section {
  padding: var(--stack-lg) var(--page);
}

.section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  max-width: var(--max);
  margin: 0 auto 64px;
}

.section-kicker,
.eyebrow,
.hero__meta,
.work-card__topline,
.work-card dt,
.metadata-list,
.service-card__index {
  color: var(--peach);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.section h2,
.hero h1,
.site-footer h2 {
  margin: 0;
  color: var(--text);
  font-weight: 400;
  line-height: 0.98;
}

.section__header h2 {
  font-size: clamp(38px, 3.8vw, 58px);
}

.section__header p:last-child {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 18px);
}

html:lang(ko) .section__header p:last-child,
html:lang(ja) .section__header p:last-child {
  max-width: 660px;
  line-height: 1.7;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  align-items: flex-end;
  overflow: hidden;
  padding: 160px var(--page) 108px;
  background: var(--bg-deep);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__media img {
  width: 100%;
  height: 112%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.16) saturate(0.78) brightness(0.52) contrast(1.12);
  transform: translateY(-4%);
}

.hero__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(0deg, rgba(13, 13, 15, 0.98) 0%, rgba(13, 13, 15, 0.64) 34%, rgba(13, 13, 15, 0.32) 62%, rgba(13, 13, 15, 0.7) 100%),
    linear-gradient(90deg, rgba(13, 13, 15, 0.86) 0%, rgba(13, 13, 15, 0.28) 58%, rgba(13, 13, 15, 0.54) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  color: var(--muted);
}

.hero__meta i {
  width: 32px;
  height: 1px;
  background: rgba(184, 179, 170, 0.36);
}

.hero h1 {
  max-width: 980px;
  font-size: clamp(54px, 7.2vw, 104px);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-top: 42px;
}

.hero__subtitle {
  max-width: 560px;
  margin: 0;
  color: rgba(246, 242, 234, 0.86);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
}

html:lang(ko) .hero__subtitle,
html:lang(ja) .hero__subtitle {
  max-width: 680px;
  line-height: 1.62;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  white-space: nowrap;
}

.section--surface {
  background:
    linear-gradient(180deg, rgba(246, 242, 234, 0.02), transparent 240px),
    var(--surface);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  max-width: var(--max);
  margin: 0 auto;
}

.service-card {
  position: relative;
  padding: 48px 0 64px;
  border-top: 1px solid var(--line);
  transition: border-color 220ms ease;
}

.service-card::after {
  position: absolute;
  right: -16px;
  top: 48px;
  bottom: 64px;
  width: 1px;
  content: "";
  background: rgba(246, 242, 234, 0.045);
}

.service-card:last-child::after {
  display: none;
}

.service-card:hover {
  border-color: rgba(214, 155, 125, 0.44);
}

.service-card h3 {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--text);
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 400;
  line-height: 1;
}

.service-card h3::after {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  content: "";
  background: var(--peach);
}

.service-card__index {
  display: block;
  float: right;
  color: rgba(184, 179, 170, 0.5);
}

.service-card__subtitle {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 15px;
}

.service-card p:not(.service-card__subtitle) {
  max-width: 350px;
  min-height: 96px;
  margin: 0 0 32px;
  color: var(--muted);
}

html:lang(ko) .service-card p:not(.service-card__subtitle),
html:lang(ja) .service-card p:not(.service-card__subtitle) {
  max-width: 100%;
  min-height: 0;
  line-height: 1.72;
}

.service-card span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(184, 179, 170, 0.72);
  font-size: 13px;
}

.service-card span::before {
  width: 22px;
  height: 1px;
  content: "";
  background: rgba(214, 155, 125, 0.48);
}

.section--works {
  overflow: hidden;
  overflow-anchor: none;
}

.section--works .section__header {
  display: grid;
  max-width: min(1040px, var(--max));
  gap: 20px;
  margin-bottom: clamp(40px, 5vw, 70px);
}

.section--works .section__header p:last-child {
  max-width: 720px;
}

.works-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  max-width: min(1040px, var(--max));
  margin: 0 auto;
}

.works-rail:has(.work-card:nth-child(7)) {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 18px);
  max-width: min(1180px, var(--max));
}

.work-card {
  min-width: 0;
  cursor: default;
}

.work-card:focus-visible {
  outline: 1px solid rgba(214, 155, 125, 0.72);
  outline-offset: 8px;
}

.work-card__visual {
  position: relative;
  isolation: isolate;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid rgba(246, 242, 234, 0.07);
  background: #0a0a0a;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
  transition:
    transform 280ms ease,
    border-color 280ms ease,
    filter 280ms ease;
}

.work-card__visual::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.72) 48%, rgba(0, 0, 0, 0.94)),
    radial-gradient(circle at 18% 12%, rgba(246, 242, 234, 0.12), transparent 30%);
  opacity: 0;
  transition: opacity 260ms ease;
}

.work-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.98) brightness(0.94) contrast(1.03);
  transform: scale(1.01);
  transition:
    filter 280ms ease,
    transform 420ms ease;
}

.work-card__fallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18%;
  background:
    linear-gradient(135deg, rgba(246, 242, 234, 0.055), transparent 42%),
    radial-gradient(circle at 76% 24%, rgba(214, 155, 125, 0.18), transparent 24%),
    #0a0a0a;
}

.work-card__fallback img {
  width: min(72%, 168px);
  height: auto;
  opacity: 0.92;
  transition:
    opacity 240ms ease,
    transform 320ms ease;
}

.work-card__fallback span {
  position: absolute;
  right: 18px;
  bottom: 16px;
  color: rgba(246, 242, 234, 0.34);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
}

.work-card__body {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: clamp(16px, 1.8vw, 22px);
  background: linear-gradient(180deg, transparent 4%, rgba(0, 0, 0, 0.28) 34%, rgba(0, 0, 0, 0.9) 100%);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition:
    opacity 240ms ease,
    transform 240ms ease;
}

.work-card:hover .work-card__visual,
.work-card:active .work-card__visual,
.work-card:focus .work-card__visual,
.work-card:focus-visible .work-card__visual {
  transform: translateY(-4px);
  border-color: rgba(214, 155, 125, 0.36);
  filter: saturate(1.05);
}

.work-card:hover .work-card__visual::before,
.work-card:active .work-card__visual::before,
.work-card:focus .work-card__visual::before,
.work-card:focus-visible .work-card__visual::before,
.work-card:hover .work-card__body,
.work-card:active .work-card__body,
.work-card:focus .work-card__body,
.work-card:focus-visible .work-card__body {
  opacity: 1;
  transform: translateY(0);
}

.work-card:hover .work-card__image,
.work-card:active .work-card__image,
.work-card:focus .work-card__image,
.work-card:focus-visible .work-card__image {
  filter: saturate(0.9) brightness(0.72) contrast(1.06);
  transform: scale(1.045);
}

.work-card:hover .work-card__fallback img,
.work-card:active .work-card__fallback img,
.work-card:focus .work-card__fallback img,
.work-card:focus-visible .work-card__fallback img {
  opacity: 0.16;
  transform: scale(0.96);
}

.work-card__body > span {
  color: var(--peach);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.72);
}

.work-card h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 400;
  line-height: 1.02;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.86);
}

html:lang(ko) .work-card h3,
html:lang(ja) .work-card h3 {
  line-height: 1.12;
}

.work-card dl {
  display: grid;
  gap: 7px;
  margin: 2px 0 0;
}

.work-card dl div {
  display: grid;
  gap: 1px;
}

.work-card dt {
  color: rgba(246, 242, 234, 0.46);
  font-size: 10px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.72);
}

.work-card dd {
  margin: 0;
  color: rgba(246, 242, 234, 0.82);
  font-size: 12px;
  line-height: 1.28;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.72);
}

.works-rail:has(.work-card:nth-child(7)) .work-card__body {
  gap: 7px;
  padding: clamp(12px, 1.15vw, 16px);
}

.works-rail:has(.work-card:nth-child(7)) .work-card__body > span {
  font-size: 10px;
}

.works-rail:has(.work-card:nth-child(7)) .work-card h3 {
  font-size: clamp(16px, 1.35vw, 22px);
  line-height: 1.05;
}

.works-rail:has(.work-card:nth-child(7)) .work-card dl {
  gap: 5px;
}

.works-rail:has(.work-card:nth-child(7)) .work-card dd {
  font-size: 11px;
}

.section--studio {
  overflow-anchor: none;
  background: var(--surface);
}

.studio-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(48px, 7vw, 96px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}

.studio-portrait {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 20%, rgba(214, 155, 125, 0.14), transparent 20%),
    linear-gradient(145deg, rgba(246, 242, 234, 0.07), transparent 38%),
    linear-gradient(0deg, rgba(214, 155, 125, 0.08), transparent 48%),
    #080808;
}

.studio-portrait::before {
  position: absolute;
  inset: 28px;
  z-index: 2;
  content: "";
  border: 1px solid rgba(246, 242, 234, 0.09);
}

.studio-portrait__logo {
  position: absolute;
  left: 32px;
  bottom: 32px;
  z-index: 3;
  width: min(280px, 60%);
  opacity: 0.72;
}

.studio-portrait__photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.9) contrast(1.04);
}

.studio-portrait--image::after {
  content: "";
  display: none;
}

.studio-portrait--image::before {
  display: none;
}

.timecode {
  position: absolute;
  top: 32px;
  left: 32px;
  z-index: 3;
  color: var(--text);
  font-size: clamp(54px, 7vw, 104px);
  font-weight: 300;
  line-height: 1;
}

.portrait-lines {
  position: absolute;
  right: 32px;
  bottom: 32px;
  z-index: 3;
  display: grid;
  width: 120px;
  gap: 10px;
}

.portrait-lines span {
  height: 1px;
  background: rgba(246, 242, 234, 0.22);
}

.colon-stack {
  position: absolute;
  top: 36px;
  right: 36px;
  z-index: 3;
  display: grid;
  gap: 10px;
}

.colon-stack i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--peach);
}

.studio-copy h2,
.about-copy h2,
.contact-intro h2 {
  margin: 0;
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: 0.98;
}

.studio-copy__subheading {
  margin: 20px 0 32px;
  color: var(--peach);
  font-size: 14px;
  text-transform: uppercase;
}

.studio-copy p:not(.section-kicker, .studio-copy__subheading),
.about-copy p,
.contact-intro p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.5vw, 21px);
}

html:lang(ko) .studio-copy p:not(.section-kicker, .studio-copy__subheading),
html:lang(ko) .about-copy p,
html:lang(ko) .contact-intro p,
html:lang(ja) .studio-copy p:not(.section-kicker, .studio-copy__subheading),
html:lang(ja) .about-copy p,
html:lang(ja) .contact-intro p {
  max-width: 720px;
  line-height: 1.72;
}

.studio-copy strong {
  display: block;
  margin-top: 42px;
  color: var(--text);
  font-size: clamp(26px, 2.8vw, 42px);
  font-weight: 400;
  line-height: 1.05;
}

.metadata-list {
  display: grid;
  gap: 14px;
  padding: 42px 0 0;
  margin: 44px 0 0;
  color: var(--muted-soft);
  list-style: none;
  border-top: 1px solid var(--line);
}

.metadata-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.metadata-list li::before {
  width: 20px;
  height: 1px;
  content: "";
  background: rgba(214, 155, 125, 0.5);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(18px, 2.3vw, 32px);
  max-width: var(--max);
  padding: 0;
  margin: 0 auto;
  list-style: none;
}

.process-step {
  min-width: 0;
  text-align: center;
}

.process-step span {
  display: grid;
  width: clamp(54px, 5vw, 64px);
  height: clamp(54px, 5vw, 64px);
  margin: 0 auto 24px;
  place-items: center;
  color: var(--muted-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.34);
}

.process-step:last-child span {
  color: var(--peach);
  border-color: var(--peach);
}

.process-step h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.process-step p {
  max-width: 210px;
  margin: 0;
  margin-inline: auto;
  color: rgba(184, 179, 170, 0.55);
  font-size: 13px;
  line-height: 1.5;
}

html:lang(ko) .process-timeline,
html:lang(ja) .process-timeline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 48px;
}

html:lang(ko) .process-step,
html:lang(ja) .process-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px 20px;
  padding: 24px 0 0;
  text-align: left;
  border-top: 1px solid var(--line);
}

html:lang(ko) .process-step span,
html:lang(ja) .process-step span {
  grid-row: span 2;
  margin: 0;
}

html:lang(ko) .process-step p,
html:lang(ja) .process-step p {
  max-width: 360px;
  line-height: 1.65;
}

.section--about {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
  color: var(--ink);
  background: var(--paper);
}

.about-lockup {
  display: grid;
  min-height: 300px;
  padding: clamp(18px, 2vw, 28px);
  place-items: center;
  border: 1px solid rgba(13, 13, 15, 0.14);
  background: rgba(246, 242, 234, 0.52);
}

.about-lockup img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.section--about .section-kicker,
.section--contact .section-kicker {
  color: var(--copper);
}

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

.about-copy p {
  color: rgba(13, 13, 15, 0.72);
}

.about-copy p + p {
  margin-top: 24px;
}

.section--contact {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(44px, 7vw, 96px);
  background:
    linear-gradient(180deg, rgba(246, 242, 234, 0.018), transparent 260px),
    var(--surface);
}

.contact-intro h2 {
  color: var(--text);
}

.inquiry-form {
  align-self: start;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px 36px;
}

.form-grid__wide {
  grid-column: 1 / -1;
}

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

.inquiry-form label {
  display: grid;
  gap: 14px;
  color: rgba(184, 179, 170, 0.52);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.inquiry-form label small {
  margin-left: 8px;
  color: rgba(184, 179, 170, 0.36);
  font-size: 10px;
  font-weight: 500;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 0 18px;
  color: var(--text);
  border: 0;
  border-bottom: 1px solid rgba(246, 242, 234, 0.1);
  border-radius: 0;
  background: transparent;
}

.inquiry-form textarea {
  min-height: 110px;
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--peach);
  outline: 0;
}

.form-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  margin-top: 44px;
}

.submit-button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 56px;
  padding: 0 34px;
  color: var(--ink);
  border: 0;
  background: var(--paper);
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.58;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  color: var(--muted-soft);
  font-size: 13px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 0.65fr 0.65fr;
  gap: 40px;
  padding: 88px var(--page) 34px;
  border-top: 1px solid var(--line);
  background: #0a0a0a;
}

.site-footer__brand {
  width: 96px;
}

.site-footer h2 {
  font-size: 24px;
}

.site-footer p {
  max-width: 360px;
  margin: 12px 0 0;
  color: var(--muted-soft);
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 14px;
  color: var(--muted-soft);
  font-size: 13px;
  text-transform: uppercase;
}

.site-footer__legal {
  grid-column: 1 / -1;
  padding-top: 28px;
  margin-top: 30px;
  border-top: 1px solid var(--line);
  color: rgba(184, 179, 170, 0.34);
  font-size: 12px;
  text-transform: uppercase;
}

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

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

.redirect-page {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  background: var(--bg);
}

.redirect-page main {
  width: min(420px, calc(100% - 48px));
  text-align: center;
}

.redirect-page p {
  color: var(--muted);
}

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

@media (max-width: 1180px) {
  .works-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .works-rail:has(.work-card:nth-child(7)) {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .primary-nav,
  .header-actions {
    display: none;
  }

  .brand-mark {
    width: 82px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0;
    color: var(--text);
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 12px;
    text-transform: uppercase;
  }

  .menu-toggle i {
    display: block;
    width: 24px;
    height: 10px;
    border-top: 1px solid var(--text);
    border-bottom: 1px solid var(--text);
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: block;
    background: rgba(8, 8, 8, 0.9);
    backdrop-filter: blur(18px);
  }

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

  .mobile-menu__inner {
    display: grid;
    align-content: start;
    gap: 44px;
    min-height: 100%;
    padding: 24px var(--page) 40px;
    background: var(--surface);
  }

  .mobile-menu__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-menu__top img {
    width: 82px;
  }

  .mobile-menu__close {
    display: inline-flex;
    padding: 0;
    color: var(--muted);
    border: 0;
    background: transparent;
  }

  .mobile-menu__nav {
    display: grid;
    gap: 16px;
  }

  .mobile-menu__nav a {
    color: var(--text);
    font-size: clamp(44px, 14vw, 72px);
    line-height: 1;
  }

  .language-switcher--mobile {
    font-size: 15px;
  }

  .hero {
    min-height: 92vh;
    min-height: 92svh;
    padding-top: 128px;
    padding-bottom: 76px;
  }

  .hero__bottom,
  .section__header,
  .studio-layout,
  .section--about,
  .section--contact,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero__bottom {
    display: grid;
    gap: 28px;
  }

  .service-grid,
  .process-timeline,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .works-rail:has(.work-card:nth-child(7)) {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .service-card::after {
    display: none;
  }

  .service-card p:not(.service-card__subtitle) {
    min-height: 0;
  }

  .process-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .process-step {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    min-height: 172px;
    padding: 24px;
    text-align: left;
    border: 1px solid var(--line);
    background:
      linear-gradient(135deg, rgba(246, 242, 234, 0.035), transparent 46%),
      rgba(246, 242, 234, 0.012);
  }

  .process-step span {
    width: 52px;
    height: 52px;
    margin: 0;
    font-size: 12px;
  }

  .process-step h3 {
    margin-top: 2px;
    font-size: 15px;
  }

  .process-step p {
    grid-column: 2;
    max-width: none;
    margin-inline: 0;
    color: rgba(184, 179, 170, 0.68);
    font-size: 14px;
    line-height: 1.55;
  }

  .form-grid__wide,
  .site-footer__legal {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  :root {
    --page: 24px;
  }

  .site-header {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .hero h1 {
    font-size: clamp(46px, 13vw, 66px);
  }

  .hero__meta {
    flex-wrap: wrap;
    margin-bottom: 30px;
  }

  .hero__actions {
    display: grid;
    gap: 6px;
  }

  .section {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .section__header {
    display: grid;
    gap: 18px;
    margin-bottom: 44px;
  }

  .service-card {
    padding: 34px 0 46px;
  }

  .section--works {
    padding-right: 0;
  }

  .section--works .section__header {
    padding-right: var(--page);
  }

  .works-rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(230px, 76vw);
    grid-template-columns: none;
    gap: 16px;
    max-width: none;
    margin: 0;
    padding: 0 var(--page) 18px 0;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: auto;
    scroll-padding-left: 0;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
    -webkit-overflow-scrolling: touch;
  }

  .works-rail:has(.work-card:nth-child(7)) {
    grid-template-rows: repeat(2, minmax(0, 1fr));
    grid-auto-columns: minmax(152px, 42vw);
    gap: 14px;
  }

  .works-rail::-webkit-scrollbar {
    display: none;
  }

  .work-card {
    scroll-snap-align: start;
  }

  .work-card__visual {
    aspect-ratio: 1 / 1;
  }

  .work-card__body {
    padding: 16px;
  }

  .works-rail:has(.work-card:nth-child(7)) .work-card__body {
    padding: 13px;
  }

  .work-card h3 {
    font-size: 21px;
  }

  .works-rail:has(.work-card:nth-child(7)) .work-card h3 {
    font-size: clamp(16px, 4.8vw, 20px);
  }

  .work-card dl {
    display: none;
  }

  .reveal {
    transform: none;
    transition: opacity 260ms ease;
  }

  .studio-layout,
  .studio-portrait,
  .process-timeline,
  .section--about,
  .section--contact {
    overflow-anchor: none;
  }

  .process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-timeline::before {
    position: absolute;
    top: 12px;
    bottom: 12px;
    left: 26px;
    width: 1px;
    content: "";
    background: linear-gradient(180deg, rgba(214, 155, 125, 0.44), rgba(246, 242, 234, 0.08));
  }

  .process-step {
    position: relative;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
    min-height: 0;
    padding: 0 0 28px;
    border: 0;
    background: transparent;
  }

  .process-step:last-child {
    padding-bottom: 0;
  }

  .process-step span {
    position: relative;
    z-index: 1;
    width: 52px;
    height: 52px;
    color: rgba(246, 242, 234, 0.72);
    border-color: rgba(246, 242, 234, 0.14);
    background: var(--bg);
  }

  .process-step:last-child span {
    color: var(--ink);
    background: var(--peach);
  }

  .process-step h3 {
    margin: 1px 0 6px;
    font-size: 17px;
    line-height: 1.1;
  }

  .process-step p {
    grid-column: 2;
    max-width: none;
    color: rgba(184, 179, 170, 0.72);
    font-size: 14px;
    line-height: 1.55;
  }

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

  .about-lockup {
    min-height: 180px;
  }

  .submit-button {
    width: 100%;
    justify-content: center;
  }
}
