:root {
  --bg: #fff;
  --text: #111;
  --white: #fff;
  --muted: #6f6f6f;
  --image-gray: #8d8d8d;
  --image-gray-dark: #747474;
  --serif: "Times New Roman", Times, "Pretendard", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, "Pretendard", sans-serif;
  --ko: "Pretendard", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--ko);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  background: #fff;
  color: var(--text);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.menu-open {
  overflow: hidden;
}

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

[lang="ko"],
[data-i18n]:lang(ko) {
  font-family: var(--ko);
}

button {
  border: 0;
  background: transparent;
  cursor: pointer;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  height: 92px;
  background: transparent;
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
  transition: transform 260ms ease, opacity 220ms ease;
}

.site-header.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-110%);
}

.site-header.menu-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero-logo-link {
  position: absolute;
  top: 47px;
  left: 40px;
  width: 173px;
}

.hero-logo {
  width: 100%;
  height: auto;
  filter: none;
}

.desktop-nav {
  position: absolute;
  top: 53px;
  left: 50%;
  display: grid;
  grid-template-columns: repeat(5, max-content);
  align-items: start;
  justify-content: space-between;
  gap: clamp(24px, 2.65vw, 42px);
  padding-right: 0;
  font-family: var(--ko);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  text-transform: none;
  transform: translateX(-50%);
  white-space: nowrap;
}

.desktop-nav a,
.desktop-nav button {
  position: relative;
  color: #111;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: 0;
  text-align: left;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"],
.desktop-nav button:hover,
.desktop-nav button:focus-visible,
.desktop-nav button.is-showing {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.coming-soon-link {
  position: relative;
  appearance: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.coming-soon-link::after {
  content: "Coming Soon!";
  position: absolute;
  left: 50%;
  top: calc(100% + 12px);
  z-index: 40;
  display: block;
  width: max-content;
  min-width: 92px;
  padding: 8px 10px;
  border: 1px solid #111;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-family: "Helvetica Neue", Helvetica, Arial, Pretendard, sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -4px);
  transition: opacity 150ms ease, transform 150ms ease;
}

.coming-soon-link:hover::after,
.coming-soon-link:focus-visible::after,
.coming-soon-link.is-showing::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.header-actions {
  position: absolute;
  top: 42px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.language-tabs {
  display: inline-flex;
  align-items: center;
  height: 30px;
  overflow: hidden;
  border: 1px solid #111;
  border-radius: 999px;
  color: #111;
  font-family: var(--ko);
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.language-tabs button {
  position: relative;
  min-width: 36px;
  height: 100%;
  padding: 0 10px;
  color: #111;
  line-height: 1;
  transition: background-color 160ms ease, color 160ms ease;
}

.language-tabs button + button {
  border-left: 1px solid #111;
}

.language-tabs button.is-active {
  background: #111;
  color: #fff;
}

.language-tabs button:not(.is-active):hover,
.language-tabs button:not(.is-active):focus-visible {
  background: #f3f3f3;
}

.contact-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 104px;
  min-height: 38px;
  padding: 0 22px;
  border-radius: 999px;
  background: #ffec74;
  color: #111;
  font-family: var(--ko);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

.search-button {
  display: none;
}

.menu-button {
  display: none;
  gap: 5px;
  width: 26px;
  padding: 0;
}

.menu-button:focus {
  outline: 0;
}

.menu-button:focus-visible {
  outline: 1px solid #111;
  outline-offset: 6px;
}

.menu-button span {
  display: block;
  height: 1.5px;
  background: #111;
  transform-origin: center;
  transition: opacity 160ms ease, transform 180ms ease;
}

.menu-panel {
  position: absolute;
  top: 56px;
  right: 0;
  left: 0;
  display: grid;
  gap: 0;
  padding: 16px 0 20px;
  background: #fff;
  color: #111;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1;
  text-align: left;
  text-transform: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.menu-panel a,
.menu-panel button {
  padding: 13px 0;
  letter-spacing: 0;
}

.site-header.menu-open .menu-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.menu-panel a,
.menu-panel button {
  pointer-events: auto;
}

.bgm-toggle {
  position: fixed;
  right: 40px;
  bottom: 34px;
  z-index: 24;
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid #111;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #111;
  line-height: 1;
  transition: background-color 160ms ease, color 160ms ease, opacity 160ms ease;
}

body.menu-open .bgm-toggle {
  opacity: 0;
  pointer-events: none;
}

.bgm-icon {
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid currentColor;
}

.bgm-toggle.is-playing .bgm-icon {
  width: 10px;
  height: 12px;
  margin-left: 0;
  border: 0;
  background:
    linear-gradient(currentColor 0 0) left center / 3px 12px no-repeat,
    linear-gradient(currentColor 0 0) right center / 3px 12px no-repeat;
}

.bgm-toggle:hover,
.bgm-toggle:focus-visible,
.bgm-toggle.is-playing {
  background: #111;
  color: #fff;
}

@media (min-width: 901px) {
  .menu-panel {
    display: none;
  }
}

.page {
  display: none;
}

.page.is-active {
  display: block;
}

.home-page {
  background: #fff;
}

.gray-image {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 34%),
    linear-gradient(180deg, var(--image-gray), var(--image-gray-dark));
}

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

.hero-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-statement {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(760px, calc(100vw - 44px));
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(34px, 4.1vw, 62px);
  font-weight: 300;
  line-height: 1.08;
  text-align: center;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%);
}

.project-section {
  display: grid;
  grid-template-columns: minmax(0, 1.54fr) minmax(320px, 0.85fr);
  min-height: 720px;
  background: #fff;
}

.project-media {
  min-height: 720px;
}

.project-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 92px 8vw 80px 76px;
  font-family: var(--sans);
}

.project-count {
  margin: 0 0 48px;
  font-size: 19px;
  line-height: 1;
}

.project-copy h2 {
  margin: 0 0 15px;
  font-family: var(--serif);
  font-size: clamp(33px, 4.2vw, 62px);
  font-weight: 300;
  line-height: 1.02;
}

.project-copy p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.35;
}

.disciplines {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 5.5vw;
  padding: 98px 58px 118px;
}

.disciplines article {
  max-width: 330px;
}

.disciplines h3 {
  margin: 0 0 33px;
  font-family: var(--serif);
  font-size: clamp(34px, 3.2vw, 52px);
  font-weight: 300;
  line-height: 1;
}

.disciplines p {
  margin: 0;
  font-family: var(--sans);
  font-size: 18px;
  line-height: 1.54;
}

.quote-section {
  display: grid;
  place-items: center;
  min-height: 410px;
  padding: 76px 28px 86px;
  text-align: center;
}

.quote-section blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(35px, 4vw, 58px);
  font-weight: 300;
  line-height: 1.13;
}

.quote-section p {
  margin: 28px 0 0;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.1;
}

.home-footer {
  display: flex;
  gap: 18px;
  justify-content: center;
  padding: 0 24px 42px;
  color: #111;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.3;
}

.empty-page {
  min-height: 100vh;
  padding: 128px 42px 42px;
  background: #fff;
}

.empty-page h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(72px, 16vw, 220px);
  font-weight: 300;
  line-height: 0.86;
}

.empty-page p {
  margin: 34px 0 0;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--muted);
}

.contact-page {
  display: none;
  place-items: center;
  min-height: 100vh;
  padding: 0 24px;
  background: #fff;
  text-align: center;
}

.contact-page.is-active {
  display: grid;
}

.contact-page a {
  font-family: var(--sans);
  font-size: clamp(14px, 1.25vw, 18px);
  font-weight: 400;
  line-height: 1.15;
  color: #111;
}

.contact-page a:hover,
.contact-page a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.works-page {
  min-height: 100vh;
  padding: 96px 34px 44px;
  background: #fff;
}

.works-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  min-height: calc(100vh - 140px);
}

.works-category-card {
  display: grid;
  place-items: center;
  min-height: 72vh;
  color: #111;
  font-family: var(--ko);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  transition: filter 160ms ease, transform 160ms ease;
}

.works-category-card span {
  max-width: 78%;
  line-height: 1.15;
  text-align: center;
}

.works-category-card:hover,
.works-category-card.is-active {
  filter: saturate(1.08) contrast(1.03);
  transform: translateY(-2px);
}

.works-photography {
  background: #eba0c0;
}

.works-branding {
  background: #f4ec96;
}

.works-web {
  background: #b9dfc4;
}

.works-marketing {
  background: #b8c8ee;
}

body.photo-portfolio-active .works-category-grid,
body.branding-active .works-category-grid,
body.web-active .works-category-grid,
body.marketing-active .works-category-grid,
body.branding-detail-active .works-category-grid,
body.photo-detail-active .works-category-grid {
  display: none;
}

.photo-portfolio,
.branding-portfolio,
.web-portfolio,
.marketing-page,
.branding-detail,
.photo-detail {
  display: none;
}

body.photo-portfolio-active .photo-portfolio,
body.branding-active .branding-portfolio,
body.web-active .web-portfolio,
body.marketing-active .marketing-page,
body.branding-detail-active .branding-detail,
body.photo-detail-active .photo-detail {
  display: block;
}

body.photo-portfolio-active .works-page,
body.branding-active .works-page,
body.web-active .works-page,
body.marketing-active .works-page,
body.branding-detail-active .works-page,
body.photo-detail-active .works-page {
  padding: 0 0 80px;
}

.photo-portfolio {
  padding: 126px 40px 90px;
}

.branding-portfolio {
  overflow: visible;
  padding-top: 146px;
  background: #fff;
  color: #9b9b9b;
  font-family: "Helvetica Neue", Helvetica, Arial, Pretendard, sans-serif;
}

.web-portfolio {
  min-height: 100vh;
  padding: 126px 36px 72px;
  background: #fff;
  color: #1c1c1c;
  font-family: Pretendard, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.web-standard-layout {
  display: grid;
  grid-template-columns: minmax(420px, 46vw) minmax(360px, 1fr);
  gap: 54px;
  align-items: start;
  width: 100%;
  min-height: calc(100vh - 198px);
}

.web-standard-list {
  width: 100%;
}

.web-standard-list h2 {
  margin: 0 0 14px;
  font-family: "Helvetica Neue", Helvetica, Arial, Pretendard, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-transform: lowercase;
  color: #111;
}

.web-standard-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 0 0 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.web-standard-filters button {
  appearance: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(0, 0, 0, 0.38);
  cursor: pointer;
  font-family: "Helvetica Neue", Helvetica, Arial, Pretendard, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
  padding: 0;
  text-align: left;
  text-transform: lowercase;
  transition: color 160ms ease;
}

.web-standard-filters button:hover,
.web-standard-filters button.is-active {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.web-standard-items {
  display: flex;
  flex-direction: column;
}

.web-standard-item {
  display: grid;
  grid-template-columns: minmax(150px, 0.92fr) minmax(230px, 1fr);
  gap: 24px;
  align-items: start;
  min-height: 46px;
  padding: 10px 0 11px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  color: rgba(0, 0, 0, 0.62);
  animation: webItemIn 380ms ease-out both;
  animation-delay: var(--delay, 0ms);
  transition: color 180ms ease, opacity 180ms ease, padding-left 220ms ease;
}

.web-standard-item.is-live {
  cursor: pointer;
}

.web-standard-item.is-muted {
  cursor: default;
  opacity: 0.42;
}

.web-standard-item:hover,
.web-standard-item:focus-visible,
.web-standard-item.is-active {
  color: #000;
}

.web-standard-item.is-live:hover,
.web-standard-item.is-live:focus-visible {
  padding-left: 8px;
}

.web-standard-thumb {
  display: none;
}

.web-standard-name {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: 0;
}

.web-standard-info {
  display: grid;
  grid-template-columns: minmax(96px, 0.45fr) minmax(130px, 1fr);
  gap: 16px;
  color: rgba(0, 0, 0, 0.46);
  font-family: "Helvetica Neue", Helvetica, Arial, Pretendard, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  transition: color 180ms ease;
}

.web-standard-item:hover .web-standard-info,
.web-standard-item:focus-visible .web-standard-info,
.web-standard-item.is-active .web-standard-info {
  color: rgba(0, 0, 0, 0.68);
}

.web-standard-preview {
  position: sticky;
  top: 126px;
  display: grid;
  gap: 14px;
  align-self: start;
}

.web-preview-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #f5f5f5;
}

.web-preview-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border: 10px solid rgba(255, 255, 255, 0.22);
}

.web-preview-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 260ms ease, transform 520ms cubic-bezier(0.25, 0.1, 0.25, 1);
}

.web-standard-preview.has-image img {
  opacity: 1;
  transform: scale(1);
}

.web-preview-meta {
  display: grid;
  grid-template-columns: minmax(120px, 0.38fr) minmax(180px, 1fr);
  gap: 20px;
  color: rgba(0, 0, 0, 0.48);
  font-family: "Helvetica Neue", Helvetica, Arial, Pretendard, sans-serif;
}

.web-preview-meta h3,
.web-preview-meta p {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0;
}

.web-preview-meta h3 {
  color: #000;
  font-weight: 500;
}

.web-portfolio-toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 48px;
}

.web-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 820px;
}

.web-filter-group button {
  appearance: none;
  border: 0;
  border-radius: 0;
  background: #f7f7f7;
  color: rgba(0, 0, 0, 0.65);
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  padding: 10px 14px;
  transition: background 220ms ease, color 220ms ease;
}

.web-filter-group button:hover,
.web-filter-group button.is-active {
  background: #000;
  color: #fff;
}

.web-view-toggle {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 0;
  padding: 4px;
  background: #f8f8f8;
}

.web-view-toggle button {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: background 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.web-view-toggle button:hover,
.web-view-toggle button.is-active {
  background: #fff;
  color: #000;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

.web-view-toggle svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.web-view-toggle path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
}

.web-portfolio-grid.is-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 52px;
}

.web-portfolio-grid.is-grid.is-four-col {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.web-project-card {
  display: block;
  color: #111;
  animation: webItemIn 460ms cubic-bezier(0.25, 0.1, 0.25, 1) both;
  animation-delay: var(--delay, 0ms);
}

.web-project-card.is-muted {
  cursor: default;
}

.web-project-card.is-private {
  opacity: 0.42;
  filter: grayscale(1);
  transition: opacity 400ms ease, filter 400ms ease;
}

.web-project-card.is-private:hover {
  opacity: 0.6;
  filter: grayscale(0.45);
}

.web-project-media {
  position: relative;
  aspect-ratio: 16 / 10;
  margin: 0 0 15px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.03);
}

.web-project-media img,
.web-card-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.25, 0.1, 0.25, 1), filter 700ms ease;
}

.web-project-card:hover .web-project-media img,
.web-project-card:hover .web-card-placeholder {
  transform: scale(1.05);
}

.web-project-card.is-private .web-project-media img,
.web-project-card.is-private .web-card-placeholder {
  filter: blur(4px);
}

.web-project-media figcaption {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  opacity: 0;
  transition: opacity 260ms ease;
}

.web-project-card:hover .web-project-media figcaption {
  opacity: 1;
}

.web-project-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.web-project-meta p {
  margin: 0;
  color: rgba(0, 0, 0, 0.5);
  font-family: "Helvetica Neue", Helvetica, Arial, Pretendard, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
}

.web-project-meta h2 {
  margin: 0;
  color: #000;
  font-family: inherit;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
}

.web-portfolio-grid.is-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.web-list-item {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(150px, 0.24fr) minmax(230px, 0.26fr) minmax(150px, 0.18fr);
  align-items: center;
  gap: 20px;
  min-height: 58px;
  padding: 17px 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.055);
  color: #000;
  animation: webItemIn 360ms ease-out both;
  animation-delay: var(--delay, 0ms);
  transition: background 220ms ease, padding 300ms ease, opacity 220ms ease;
}

.web-list-item.is-live:hover {
  background: rgba(0, 0, 0, 0.02);
  padding-left: 16px;
}

.web-list-item.is-muted {
  opacity: 0.45;
  cursor: default;
}

.web-list-name {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
}

.web-list-category,
.web-list-industry,
.web-list-status {
  color: rgba(0, 0, 0, 0.5);
  font-family: "Helvetica Neue", Helvetica, Arial, Pretendard, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}

.web-list-status {
  text-align: right;
}

@keyframes webItemIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.marketing-page {
  min-height: 100vh;
  padding: 146px 0 92px;
  background: #fff;
  color: #111;
  font-family: "Helvetica Neue", Helvetica, Arial, Pretendard, sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.marketing-shell {
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

.marketing-hero {
  display: grid;
  grid-template-columns: 16.8% minmax(0, 33.2%) minmax(0, 50%);
  gap: 0;
  align-items: start;
  min-height: 214px;
  padding: 12px 40px 16px;
  border-top: 1px solid #b8b8b8;
}

.marketing-hero-copy {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 16.8% minmax(0, 33.2%) minmax(0, 50%);
}

.marketing-hero h2 {
  grid-column: 1;
  max-width: 100%;
  margin: 0;
  padding-right: 34px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: 0;
}

.marketing-hero p {
  grid-column: 2;
  max-width: 410px;
  margin: 0 0 12px;
  padding-top: 0;
  padding-right: 34px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.48;
}

.marketing-hero p + p {
  grid-column: 3;
  max-width: 520px;
}

.marketing-hero p + p + p {
  grid-column: 3;
}

.marketing-hero p + p + p + p {
  grid-column: 3;
}

.marketing-image {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(0, 0, 0, 0.05)),
    #d7d7d7;
}

.marketing-hero-image {
  grid-column: 3;
  justify-self: end;
  width: 100%;
  max-width: 650px;
  aspect-ratio: 2.35;
}

.marketing-section {
  display: grid;
  grid-template-columns: 16.8% 33.2% minmax(0, 50%);
  gap: 0;
  align-items: start;
  min-height: 202px;
  padding: 12px 40px 22px;
  border-top: 1px solid #b8b8b8;
}

.marketing-section:last-child {
  border-bottom: 1px solid #b8b8b8;
}

.marketing-section-title {
  display: block;
}

.marketing-section-title h3 {
  margin: 0;
  padding-right: 34px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.28;
  color: inherit;
  text-align: left;
  text-transform: none;
}

.marketing-focus-list h4 {
  margin: 0 0 7px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.28;
  color: inherit;
}

.marketing-lede {
  margin: 0;
  padding-top: 0;
  padding-right: 34px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.48;
  text-align: left;
}

.marketing-section-copy {
  grid-column: 2;
  max-width: 410px;
  padding-right: 34px;
}

.marketing-section-copy p {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.48;
  text-align: left;
}

.marketing-section-copy p:last-child {
  margin-bottom: 0;
}

.marketing-focus-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 28px;
  padding-top: 0;
}

.marketing-focus-list article {
  display: block;
}

.marketing-focus-list p {
  margin: 0;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.48;
}

.marketing-brand-grid {
  grid-column: 3;
  display: flex;
  flex-wrap: nowrap;
  align-items: start;
  gap: 8px;
  width: min(100%, 980px);
  justify-self: start;
  padding: 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
}

.marketing-brand-grid::-webkit-scrollbar {
  display: none;
}

.marketing-brand-card {
  position: relative;
  flex: 0 0 clamp(156px, 15vw, 230px);
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  background: #e8e8e8;
}

.marketing-brand-trigger {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.marketing-brand-label {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 1;
  display: inline-block;
  padding: 3px 6px 4px;
  background: rgba(255, 255, 255, 0.82);
  color: #111;
  font-family: "Helvetica Neue", Helvetica, Arial, Pretendard, sans-serif;
  font-size: 9px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
  opacity: 0.82;
  transition: opacity 160ms ease, background-color 160ms ease;
}

.marketing-brand-card:hover .marketing-brand-label,
.marketing-brand-card:focus-within .marketing-brand-label,
.marketing-brand-card.is-active .marketing-brand-label {
  background: #fff;
  opacity: 1;
}

.marketing-brand-grid img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.marketing-brand-caption {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 9px;
  padding: 13px;
  overflow: auto;
  background: rgba(255, 255, 255, 0.94);
  color: #111;
  font-family: "Helvetica Neue", Helvetica, Arial, Pretendard, sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.44;
  opacity: 0;
  pointer-events: none;
  text-align: left;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
  word-break: keep-all;
}

.marketing-brand-caption strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.16;
}

.marketing-brand-caption p {
  margin: 0;
}

.marketing-brand-close {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .marketing-brand-card:hover .marketing-brand-caption,
  .marketing-brand-card:focus-within .marketing-brand-caption {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

.marketing-brand-card.is-active .marketing-brand-caption {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.marketing-brand-card:hover img,
.marketing-brand-card:focus-within img,
.marketing-brand-card.is-active img {
  transform: scale(1.035);
}

.branding-portfolio *,
.branding-detail * {
  font-family: inherit;
}

.branding-portfolio {
  color: #111;
  font-family: "Helvetica Neue", Helvetica, Arial, Pretendard, sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.branding-list {
  border-top: 1px solid #cfcfcf;
}

.branding-table-head,
.branding-project {
  display: grid;
  grid-template-columns: 16.8% 16.5% 14.7% minmax(0, 52%);
  column-gap: 0;
  align-items: start;
  padding: 0 40px;
  border-top: 1px solid #cfcfcf;
}

.branding-table-head {
  min-height: 42px;
  border-top: 0;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.28;
  text-transform: uppercase;
}

.branding-table-head span {
  padding-top: 11px;
}

.branding-project:last-child {
  border-bottom: 1px solid #cfcfcf;
}

.branding-project {
  min-height: clamp(236px, 13.2vw, 276px);
  padding-top: 12px;
  padding-bottom: 16px;
}

.branding-row-title,
.branding-row-scope,
.branding-row-field {
  margin: 0;
  padding-right: 34px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.28;
  color: inherit;
}

.branding-row-title {
  text-transform: none;
}

.branding-row-title a:hover,
.branding-row-title a:focus-visible {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.branding-row-images {
  --branding-image-gap: 8px;
  --branding-image-width: clamp(128px, 9.35vw, 196px);
  position: relative;
  min-width: 0;
  width: calc((var(--branding-image-width) * 5) + (var(--branding-image-gap) * 4));
  max-width: 100%;
  padding: 0;
  justify-self: end;
}

.branding-image-window {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  scroll-behavior: smooth;
}

.branding-image-track {
  display: flex;
  gap: var(--branding-image-gap);
  align-items: flex-start;
  width: max-content;
}

.branding-image-link {
  flex: 0 0 auto;
  position: relative;
  display: block;
  width: var(--branding-image-width);
  overflow: hidden;
  color: #111;
  background: #e8e8e8;
  text-decoration: none;
}

.branding-image-track img {
  display: block;
  width: 100%;
  height: auto;
  background: #e8e8e8;
  cursor: pointer;
  transform: scale(1);
  transition:
    opacity 260ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.branding-image-link:hover img,
.branding-image-link:focus-visible img {
  opacity: 0.88;
  transform: scale(1.018);
}

#branding-row-igayu .branding-image-link {
  height: var(--branding-image-width);
}

#branding-row-igayu .branding-image-track img {
  height: 100%;
  object-fit: cover;
}

#branding-row-banal-spl .branding-image-link {
  height: calc(var(--branding-image-width) * 0.7);
}

#branding-row-banal-spl .branding-image-track img {
  height: 100%;
  object-fit: cover;
}

#branding-row-logo-folio {
  background: #fcfcfc;
}

.branding-see-more {
  position: absolute;
  right: 6px;
  bottom: 6px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 18px;
  padding: 3px 6px 2px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  background: rgba(255, 255, 255, 0.88);
  color: #111;
  font-family: "Helvetica Neue", Helvetica, Arial, "Pretendard", sans-serif;
  font-size: 9px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(3px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.branding-image-link:hover .branding-see-more,
.branding-image-link:focus-visible .branding-see-more {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: none) {
  .branding-see-more {
    opacity: 1;
    transform: none;
  }
}

.branding-hover-preview {
  position: fixed;
  z-index: 120;
  display: block;
  object-fit: cover;
  pointer-events: none;
  opacity: 0;
  background: #e8e8e8;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.14);
  transform: scale(0.98);
  transform-origin: center center;
  transition:
    opacity 180ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.branding-hover-preview.is-visible {
  opacity: 1;
  transform: scale(1.62);
}

.branding-carousel-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #111;
  font-family: inherit;
  line-height: 1;
  text-decoration: none;
  transform: translateY(-50%);
  transition: opacity 160ms ease, transform 160ms ease;
}

.branding-carousel-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.branding-carousel-button:hover,
.branding-carousel-button:focus-visible {
  opacity: 0.5;
}

.branding-carousel-prev {
  left: 4px;
}

.branding-carousel-next {
  right: 4px;
}

.branding-carousel-prev:hover,
.branding-carousel-prev:focus-visible {
  transform: translate(-2px, -50%);
}

.branding-carousel-next:hover,
.branding-carousel-next:focus-visible {
  transform: translate(2px, -50%);
}

.branding-project-head {
  display: grid;
  grid-template-columns: 28% 32% 20% 20%;
  gap: 0;
  min-height: 38px;
  align-items: start;
  padding: 3px 40px 8px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.28;
}

.branding-project-head h2,
.branding-project-head p,
.branding-project-head span {
  margin: 0;
}

.branding-project-head h2 {
  font-size: clamp(16px, 1.35vw, 22px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
}

.branding-project-head p {
  max-width: 480px;
  padding-right: 34px;
}

.branding-project-head span {
  text-transform: uppercase;
}

.branding-project-head h2 a:hover,
.branding-project-head h2 a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.branding-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px 12px;
  width: 100%;
  padding: 10px 40px 72px;
}

.branding-thumb {
  position: relative;
  z-index: 1;
  display: block;
  width: clamp(96px, 9vw, 132px);
  color: inherit;
  cursor: pointer;
  transition: z-index 0ms linear 120ms;
}

.branding-thumb img,
.branding-detail-grid img,
.brand-frame {
  width: 100%;
  height: auto;
  background: #e8e8e8;
}

.branding-thumb img,
.branding-detail-grid img {
  display: block;
}

.branding-thumb img {
  transition: transform 190ms ease, box-shadow 190ms ease;
}

.branding-thumb:hover,
.branding-thumb:focus-visible {
  z-index: 12;
  transition-delay: 0ms;
}

.branding-thumb:hover img,
.branding-thumb:focus-visible img {
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.18);
  transform: scale(2.25);
}

.branding-detail {
  min-height: 100vh;
  padding: 192px 40px 84px;
  background: #fff;
  color: #111;
  font-family: "Helvetica Neue", Helvetica, Arial, Pretendard, sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.branding-back {
  position: fixed;
  left: 40px;
  bottom: 34px;
  z-index: 18;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid #111;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #111;
  font-family: inherit;
  font-size: 13px;
  line-height: 1;
}

.branding-back:hover,
.branding-back:focus-visible {
  background: #111;
  color: #fff;
}

.branding-detail-head {
  display: grid;
  grid-template-columns: 28% 32% 20% 20%;
  gap: 0;
  min-height: 42px;
  align-items: start;
  margin-bottom: 22px;
  border-top: 1px solid #cfcfcf;
  padding-top: 3px;
  font-size: 13px;
  line-height: 1.28;
}

.branding-detail-head h1,
.branding-detail-head p,
.branding-detail-head span {
  margin: 0;
}

.branding-detail-head h1 {
  font-size: clamp(16px, 1.35vw, 22px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
}

.branding-detail-head p {
  max-width: 480px;
  padding-right: 34px;
}

.branding-detail-head span {
  text-transform: uppercase;
}

.branding-detail-grid {
  display: block;
  column-count: 4;
  column-gap: 10px;
}

.branding-detail-grid img {
  margin: 0 0 10px;
  break-inside: avoid;
  page-break-inside: avoid;
}

.brand-frame {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 20px;
  color: #111;
  font-family: inherit;
  font-size: clamp(32px, 5vw, 78px);
  font-weight: 400;
  line-height: 0.9;
  text-align: center;
}

.brand-frame::before,
.brand-frame::after {
  position: absolute;
  font-family: var(--sans);
  font-size: 9px;
  line-height: 1;
  text-transform: uppercase;
}

.brand-frame::before {
  top: 9px;
  left: 9px;
  content: "ESSI";
}

.brand-frame::after {
  right: 9px;
  bottom: 9px;
  content: "BRANDING HAUS";
}

.branding-strip-yellow .brand-frame {
  background: #fff112;
}

.branding-strip-pink .brand-frame {
  background: #eda4bf;
}

.branding-strip-blue .brand-frame {
  background: #b9c9ef;
}

.branding-strip-green .brand-frame {
  background: #bcd8b2;
}

.brand-frame-logo {
  font-style: italic;
}

.brand-frame-type,
.brand-frame-poster,
.brand-frame-editorial {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.brand-frame-copy,
.brand-frame-menu,
.brand-frame-note,
.brand-frame-index {
  font-size: clamp(25px, 3.1vw, 48px);
}

.brand-frame-pack,
.brand-frame-mark {
  font-family: var(--sans);
  font-size: clamp(46px, 7vw, 108px);
  font-weight: 700;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px 18px;
  background: #fff;
}

.photo-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  font-family: "Helvetica Neue", Helvetica, Arial, Pretendard, sans-serif;
}

.photo-filter-bar button {
  appearance: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(0, 0, 0, 0.38);
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0;
  padding: 0;
  text-align: left;
  transition: color 160ms ease;
}

.photo-filter-bar button:hover,
.photo-filter-bar button.is-active {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.photo-card {
  position: relative;
  display: grid;
  gap: 10px;
  color: #111;
  background: #fff;
  animation: webItemIn 360ms ease-out both;
}

.photo-card-media {
  position: relative;
  aspect-ratio: 0.75;
  margin: 0;
  overflow: hidden;
  background: #e5e5e5;
}

.photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms cubic-bezier(0.25, 0.1, 0.25, 1), filter 260ms ease;
}

.photo-card:hover img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.026);
}

.photo-card-copy {
  display: grid;
  gap: 3px;
  min-height: 58px;
  font-family: "Helvetica Neue", Helvetica, Arial, Pretendard, sans-serif;
}

.photo-card-copy strong,
.photo-card-copy em,
.photo-card-copy small {
  display: block;
  font-style: normal;
  letter-spacing: 0;
}

.photo-card-copy strong {
  color: #000;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.12;
  text-transform: none;
}

.photo-card-copy em {
  color: rgba(0, 0, 0, 0.58);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.18;
}

.photo-card-copy small {
  color: rgba(0, 0, 0, 0.36);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.18;
}

.photo-detail {
  min-height: 100vh;
  padding: 122px 16px 80px 308px;
}

.photo-detail-info {
  position: fixed;
  top: 122px;
  bottom: 20px;
  left: 40px;
  width: 258px;
  overflow-y: auto;
  padding-right: 14px;
  color: #111;
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.45;
}

.photo-detail-info h1 {
  margin: 0 0 28px;
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.22;
}

.photo-detail-info dl {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  column-gap: 12px;
  row-gap: 13px;
  margin: 0 0 24px;
  padding: 0;
}

.photo-detail-info dt {
  margin: 0;
  color: #6f6f6f;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.25;
}

.photo-detail-info dd {
  margin: 0;
  line-height: 1.25;
}

.photo-detail-info nav {
  display: grid;
  gap: 7px;
  padding-top: 2px;
  text-transform: uppercase;
}

.photo-detail-info nav a {
  color: #111;
  line-height: 1.12;
}

.photo-detail-info nav a.is-active,
.photo-detail-info nav a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.photo-detail-images {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 8px;
  gap: 16px;
  align-items: start;
}

.photo-detail-item {
  margin: 0;
}

.photo-detail-item img {
  width: 100%;
  height: auto;
  display: block;
  background: #eee;
}

.photo-detail-item.is-broken,
.photo-detail-item img.is-broken {
  display: none;
}

.about-page {
  display: none;
  place-items: start center;
  min-height: 100vh;
  padding: 0 24px 128px;
  background: #fff;
  color: #111;
}

.about-page.is-active {
  display: grid;
}

.about-profile {
  display: block;
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 0;
  text-align: left;
}

.about-copy {
  display: block;
  padding-top: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, Pretendard, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.28;
}

.about-intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(170px, 28%);
  grid-auto-rows: min-content;
  align-content: center;
  column-gap: 56px;
  width: min(100%, 980px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 132px 0 96px;
}

.about-copy p {
  grid-column: 1;
  margin: 0 0 16px;
  line-height: 1.62;
}

.about-featured {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: start;
  margin-top: 0;
  padding-top: 0;
  text-align: left;
}

.about-featured h2 {
  margin: 0 0 18px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.28;
}

.about-featured ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-featured li {
  color: #111;
}

.team-popover-trigger {
  display: inline;
  padding: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-align: left;
  text-decoration: underline;
  text-decoration-color: currentColor;
  text-underline-offset: 4px;
  transition: opacity 140ms ease, color 140ms ease;
}

.team-popover-trigger:hover,
.team-popover-trigger:focus-visible,
.team-popover-trigger.is-active {
  color: #111;
  opacity: 0.55;
}

.team-popover {
  position: absolute;
  top: calc(50% + 36px);
  right: 0;
  z-index: 9;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  width: min(640px, calc(100vw - 48px));
  margin-top: 0;
  padding: 12px;
  border: 1px solid #111;
  background: #fff;
  color: #111;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.48;
  text-align: left;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.team-popover-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  padding: 0;
  color: #111;
  font-family: inherit;
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.team-popover-close:hover,
.team-popover-close:focus-visible {
  opacity: 0.55;
}

.team-popover img {
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #e8e8e8;
}

.team-popover p {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
}

.team-popover[hidden] {
  display: none;
}

.about-featured em {
  font-style: italic;
}

.about-essay {
  position: relative;
  display: grid;
  grid-template-columns: minmax(170px, 28%) minmax(0, 620px);
  column-gap: 56px;
  width: min(100%, 980px);
  margin: 132px auto 0;
  padding-top: 42px;
  color: #111;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.62;
  text-align: left;
  word-break: keep-all;
}

.about-essay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 1px;
  background: #cfcfcf;
  transform: translateX(-50%);
}

.about-essay h2 {
  grid-column: 1;
  margin: 0;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.22;
  text-align: left;
}

.about-essay p {
  grid-column: 2;
  margin: 0 0 16px;
}

.about-essay p:last-child {
  margin-bottom: 0;
}

@media (min-width: 1600px) {
  .about-profile {
    width: min(100%, 1040px);
    margin: 0 auto;
    padding-top: 0;
  }

  .about-intro {
    width: min(100%, 1040px);
    padding-top: 148px;
    padding-bottom: 108px;
  }

  .about-copy {
    padding-top: 0;
    font-size: 13px;
    line-height: 1.3;
  }

  .about-copy p {
    margin-bottom: 18px;
  }

  .about-featured {
    margin-top: 0;
    padding-top: 0;
  }

  .about-featured h2 {
    margin-bottom: 16px;
    font-size: 13px;
  }

  .about-featured ul {
    gap: 8px;
  }

  .about-essay {
    margin-top: 148px;
    width: min(100%, 1040px);
    font-size: 13px;
    line-height: 1.66;
  }

  .about-essay h2 {
    font-size: 13px;
  }
}

@media (max-width: 1280px) {
  .about-profile {
    width: min(100%, 900px);
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 73px;
    padding: 0;
    background: transparent;
  }

  .site-header.menu-open {
    height: 100dvh;
    background: #fff;
  }

  .site-header::after {
    display: none;
  }

  .hero-logo-link {
    top: 25px;
    left: 20px;
    width: 167px;
  }

  .desktop-nav {
    display: none;
  }

  .search-button {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .menu-button {
    position: absolute;
    top: 25px;
    right: 20px;
    display: grid;
    width: 24px;
    height: 22px;
    align-content: center;
    gap: 5px;
    z-index: 3;
  }

  .menu-panel {
    position: fixed;
    inset: 73px 0 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 32px 20px 24px;
    border-top: 0;
    background: #fff;
    font-family: "Helvetica Neue", Helvetica, Arial, Pretendard, sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .menu-panel a,
  .menu-panel button {
    display: flex;
    align-items: center;
    min-height: 62px;
    padding: 0;
    border-bottom: 1px solid #d8d8d8;
    color: #111;
    letter-spacing: 0;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    text-align: left;
  }

  .menu-panel a[aria-current="page"] {
    text-decoration: underline;
    text-underline-offset: 6px;
  }

  .menu-panel .coming-soon-link::after {
    left: auto;
    right: 0;
    top: 50%;
    min-width: 104px;
    transform: translate(0, -50%);
    font-size: 11px;
  }

  .menu-panel .coming-soon-link:hover::after,
  .menu-panel .coming-soon-link:focus-visible::after,
  .menu-panel .coming-soon-link.is-showing::after {
    transform: translate(0, -50%);
  }

  .site-header.menu-open .menu-button span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .site-header.menu-open .menu-button span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .menu-button span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .mobile-language-tabs {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    gap: 2px;
    height: 34px;
    margin-top: auto;
    padding: 3px;
    overflow: visible;
    border: 1px solid #d0d0d0;
    border-radius: 999px;
    background: #f6f6f6;
    color: #111;
    font-size: 10px;
    font-weight: 600;
  }

  .menu-panel .mobile-language-tabs button {
    display: inline-grid;
    place-items: center;
    min-width: 40px;
    min-height: 26px;
    height: 26px;
    padding: 0 10px;
    border: 0;
    border-radius: 999px;
    color: rgba(17, 17, 17, 0.48);
    font-family: inherit;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.02em;
    text-align: center;
    transition: background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
  }

  .menu-panel .mobile-language-tabs button + button {
    border-left: 0;
  }

  .menu-panel .mobile-language-tabs button.is-active {
    background: #111;
    color: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
  }

  .menu-panel .mobile-language-tabs button:not(.is-active):hover,
  .menu-panel .mobile-language-tabs button:not(.is-active):focus-visible {
    background: #fff;
    color: #111;
  }

  .site-header.menu-open .menu-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-statement {
    font-size: 39px;
  }

  .hero-slider {
    min-height: 100vh;
  }

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

  .project-media {
    min-height: 72vh;
  }

  .project-copy {
    min-height: 390px;
    padding: 62px 26px 70px;
  }

  .project-count {
    margin-bottom: 34px;
  }

  .disciplines {
    grid-template-columns: 1fr;
    gap: 54px;
    padding: 76px 26px 86px;
  }

  .disciplines article {
    max-width: 100%;
  }

  .disciplines h3 {
    margin-bottom: 18px;
  }

  .disciplines p {
    font-size: 16px;
  }

  .empty-page {
    padding: 124px 26px 34px;
  }

  .works-page {
    padding: 88px 20px 24px;
  }

  .works-category-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: calc(100svh - 112px);
    align-content: start;
  }

  .works-category-card {
    min-height: clamp(86px, calc((100svh - 142px) / 4), 132px);
    font-size: 16px;
  }

  .branding-portfolio {
    padding-top: 84px;
  }

  .web-portfolio {
    padding: 84px 20px 64px;
  }

  .web-standard-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
  }

  .web-standard-list h2 {
    margin-bottom: 12px;
    font-size: 14px;
  }

  .web-standard-filters {
    gap: 8px 12px;
    margin-bottom: 18px;
    padding-bottom: 14px;
  }

  .web-standard-filters button {
    font-size: 11px;
  }

  .web-standard-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 10px;
  }

  .web-standard-item {
    display: block;
    min-width: 0;
    min-height: 0;
    padding: 0;
    border-bottom: 0;
    color: #111;
  }

  .web-standard-item.is-muted {
    opacity: 0.62;
  }

  .web-standard-item.is-live:hover,
  .web-standard-item.is-live:focus-visible {
    padding-left: 0;
  }

  .web-standard-thumb {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    margin: 0;
    overflow: hidden;
    background: #f1f1f1;
  }

  .web-standard-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), opacity 180ms ease;
  }

  .web-standard-thumb span {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 14px;
    color: rgba(0, 0, 0, 0.46);
    font-size: 11px;
    line-height: 1.25;
    text-align: center;
  }

  .web-standard-item.is-live:hover .web-standard-thumb img,
  .web-standard-item.is-live:focus-visible .web-standard-thumb img {
    transform: scale(1.025);
  }

  .web-standard-name {
    display: block;
    margin-top: 7px;
    font-size: 12px;
    line-height: 1.2;
  }

  .web-standard-info {
    display: none;
  }

  .web-standard-preview {
    display: none;
  }

  .web-preview-meta {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .web-preview-frame {
    aspect-ratio: 16 / 11;
  }

  .web-portfolio-toolbar {
    flex-direction: column;
    gap: 18px;
    margin-bottom: 34px;
  }

  .web-filter-group {
    gap: 7px;
  }

  .web-filter-group button {
    padding: 9px 12px;
    font-size: 12px;
  }

  .web-view-toggle {
    align-self: flex-start;
  }

  .web-portfolio-grid.is-grid,
  .web-portfolio-grid.is-grid.is-four-col {
    grid-template-columns: 1fr;
    row-gap: 38px;
  }

  .web-project-media {
    margin-bottom: 13px;
  }

  .web-project-media figcaption {
    position: static;
    display: block;
    padding: 8px 0 0;
    background: transparent;
    color: rgba(0, 0, 0, 0.6);
    font-size: 11px;
    opacity: 1;
    text-align: left;
  }

  .web-project-meta p {
    font-size: 11px;
  }

  .web-project-meta h2 {
    font-size: 16px;
  }

  .web-list-item {
    grid-template-columns: 1fr;
    gap: 4px;
    min-height: auto;
    padding: 15px 2px;
  }

  .web-list-item.is-live:hover {
    padding-left: 2px;
  }

  .web-list-name {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 15px;
  }

  .web-list-category,
  .web-list-industry,
  .web-list-status {
    font-size: 12px;
    text-align: left;
  }

  .marketing-page {
    padding: 84px 0 54px;
  }

  .marketing-shell {
    width: 100%;
    max-width: none;
  }

  .marketing-hero {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: auto;
    padding: 0 20px 28px;
    border-top: 1px solid #cfcfcf;
  }

  .marketing-hero-copy {
    display: block;
    grid-column: auto;
  }

  .marketing-hero h2 {
    grid-column: auto;
    grid-row: auto;
    max-width: 100%;
    margin-bottom: 16px;
    padding-top: 10px;
    padding-right: 0;
    font-size: 13px;
    line-height: 1.28;
  }

  .marketing-hero p {
    grid-column: auto;
    margin-bottom: 10px;
    padding-top: 0;
    padding-right: 0;
    font-size: 13px;
    line-height: 1.48;
  }

  .marketing-hero-image {
    grid-column: auto;
    max-width: none;
    margin-top: 12px;
    aspect-ratio: 1.5;
  }

  .marketing-section {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 10px 20px 28px;
  }

  .marketing-section-title {
    padding-top: 0;
  }

  .marketing-section-title::before,
  .marketing-section-title::after {
    display: none;
  }

  .marketing-section-title h3 {
    padding-right: 0;
    font-size: 13px;
    line-height: 1.28;
  }

  .marketing-lede,
  .marketing-section-copy,
  .marketing-focus-list {
    padding-top: 0;
  }

  .marketing-lede {
    margin-top: 10px;
    padding-right: 0;
    font-size: 13px;
    line-height: 1.48;
  }

  .marketing-section-copy {
    grid-column: 1;
    max-width: none;
    margin-top: 10px;
    padding-right: 0;
  }

  .marketing-section-copy p {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.48;
  }

  .marketing-focus-list article {
    display: block;
  }

  .marketing-focus-list {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 22px;
  }

  .marketing-focus-list h4,
  .marketing-focus-list p {
    font-size: 13px;
    line-height: 1.48;
  }

  .marketing-brand-grid {
    grid-column: 1;
    gap: 8px;
    width: 100%;
    justify-self: stretch;
    padding: 20px 0 0;
    overflow-x: auto;
  }

  .marketing-brand-card {
    flex-basis: clamp(128px, 42vw, 178px);
  }

  .marketing-brand-caption {
    position: fixed;
    inset: auto 20px 84px;
    max-height: min(360px, calc(100svh - 140px));
    padding: 36px 16px 16px;
    border: 1px solid #111;
    background: #fff;
    font-size: 12px;
    line-height: 1.52;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
  }

  .marketing-brand-caption strong {
    font-size: 13px;
  }

  .marketing-brand-close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline;
    padding: 0;
    color: #111;
    font-family: inherit;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    text-decoration: underline;
    text-underline-offset: 4px;
  }

  .branding-table-head {
    display: none;
  }

  .branding-project {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 0 20px 36px;
  }

  .branding-row-title,
  .branding-row-scope,
  .branding-row-field {
    padding-right: 0;
    font-size: 13px;
    line-height: 1.28;
  }

  .branding-row-title {
    padding-top: 6px;
    font-size: 13px;
    line-height: 1.28;
  }

  .branding-row-scope {
    margin-top: 8px;
  }

  .branding-row-field {
    margin-top: 3px;
  }

  .branding-row-images {
    margin-top: 16px;
    padding: 0 28px;
    width: 100%;
  }

  .branding-image-window {
    width: 100%;
  }

  .branding-image-track {
    gap: 8px;
  }

  .branding-image-link {
    width: 112px;
  }

  #branding-row-igayu .branding-image-link {
    height: 112px;
  }

  #branding-row-banal-spl .branding-image-link {
    height: 78px;
  }

  .branding-carousel-button {
    width: 22px;
    height: 22px;
  }

  .branding-carousel-button svg {
    width: 16px;
    height: 16px;
  }

  .branding-project-head {
    grid-template-columns: 1fr;
    row-gap: 6px;
    min-height: auto;
    padding: 0 20px 13px;
    font-size: 13px;
    line-height: 1.28;
  }

  .branding-project-head h2 {
    font-size: 16px;
    line-height: 1.12;
  }

  .branding-project-head p {
    max-width: 292px;
    padding-right: 0;
  }

  .branding-strip {
    gap: 8px;
    padding: 8px 20px 44px;
  }

  .branding-thumb {
    width: calc((100vw - 56px) / 3);
  }

  .branding-thumb:hover img,
  .branding-thumb:focus-visible img {
    transform: scale(1.75);
  }

  .branding-detail {
    padding: 150px 20px 70px;
  }

  .branding-back {
    right: 20px;
    bottom: 22px;
    left: auto;
    min-height: 32px;
    font-size: 11px;
  }

  .branding-detail-head {
    grid-template-columns: 1fr;
    row-gap: 6px;
    min-height: auto;
    margin-bottom: 16px;
    font-size: 13px;
    line-height: 1.28;
  }

  .branding-detail-head h1 {
    font-size: 16px;
    line-height: 1.12;
  }

  .branding-detail-head p {
    max-width: 292px;
    padding-right: 0;
  }

  .branding-detail-grid {
    column-count: 2;
    column-gap: 8px;
  }

  .branding-detail-grid img {
    margin-bottom: 8px;
  }

  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 12px;
  }

  .photo-portfolio {
    padding: 94px 20px 62px;
  }

  .photo-filter-bar {
    gap: 8px 12px;
    margin-bottom: 18px;
    padding-bottom: 14px;
  }

  .photo-filter-bar button {
    font-size: 11px;
  }

  .photo-card {
    gap: 8px;
  }

  .photo-card-copy {
    min-height: 54px;
  }

  .photo-card-copy strong {
    font-size: 13px;
  }

  .photo-card-copy em {
    font-size: 11px;
  }

  .photo-card-copy small {
    font-size: 10px;
  }

  .photo-detail {
    padding: 96px 20px 60px;
  }

  .photo-detail-info {
    position: static;
    width: auto;
    margin-bottom: 34px;
  }

  .photo-detail-info nav {
    display: none;
  }

  .photo-detail-images {
    grid-template-columns: 1fr;
    grid-auto-rows: 8px;
    gap: 12px;
  }

  .bgm-toggle {
    right: 20px;
    bottom: 22px;
    width: 32px;
    height: 32px;
  }

  .about-profile {
    display: block;
    width: min(100%, 640px);
    margin: 0 auto;
    padding: 0;
    text-align: left;
  }

  .about-copy {
    padding-top: 0;
    font-size: 13px;
    line-height: 1.3;
  }

  .about-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: min(100%, 560px);
    min-height: 100svh;
    padding: 104px 0 74px;
    text-align: left;
  }

  .about-copy p {
    margin: 0 0 16px;
    line-height: 1.48;
    text-align: left;
  }

  .about-featured {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    column-gap: 18px;
    width: min(100%, 360px);
    margin: 44px auto 0;
    padding-top: 16px;
    border-top: 1px solid #cfcfcf;
    text-align: left;
  }

  .about-featured h2 {
    margin: 0;
  }

  .about-featured ul {
    gap: 7px;
  }

  .team-popover-trigger {
    text-align: left;
  }

  .team-popover {
    top: calc(50% + 76px);
    right: auto;
    left: 50%;
    grid-template-columns: 1fr;
    gap: 13px;
    width: min(360px, calc(100vw - 40px));
    margin-top: 0;
    padding-top: 34px;
    transform: translateX(-50%);
  }

  .team-popover img,
  .team-popover p {
    grid-column: 1;
    grid-row: auto;
  }

  .about-essay {
    display: block;
    width: min(100%, 560px);
    margin-top: 124px;
    padding-top: 32px;
    font-size: 13px;
    line-height: 1.62;
  }

  .about-essay h2 {
    margin-bottom: 24px;
    font-size: 13px;
  }

  .about-essay p {
    margin-bottom: 16px;
  }

}

@media (max-width: 520px) {
  .site-header {
    height: 73px;
  }

  .hero-logo-link {
    width: min(167px, calc(100vw - 86px));
  }

  .hero-statement {
    top: 51%;
    font-size: 34px;
  }

  .slider-dots {
    bottom: 38px;
    gap: 18px;
  }

  .project-media {
    min-height: 64vh;
  }

  .project-copy h2 {
    font-size: 39px;
  }

  .home-footer {
    flex-wrap: wrap;
  }
}

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