@font-face {
  font-family: "Wearbeast Display";
  src: url("./assets/fonts/BagelFatOne-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Wearbeast Sans";
  src: url("./assets/fonts/IBMPlexSansKR-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Wearbeast Sans";
  src: url("./assets/fonts/IBMPlexSansKR-Medium.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: "Wearbeast Sans";
  src: url("./assets/fonts/IBMPlexSansKR-SemiBold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Wearbeast Sans";
  src: url("./assets/fonts/IBMPlexSansKR-Bold.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 700 800;
}

:root {
  --bg: #ff7228;
  --bg-deep: #f55b11;
  --bg-soft: #ff8d45;
  --cream: #fff3de;
  --cream-strong: #ffe7bf;
  --ink: #2d160a;
  --ink-soft: rgba(45, 22, 10, 0.72);
  --white: #fffaf2;
  --line: rgba(255, 245, 230, 0.24);
  --line-dark: rgba(45, 22, 10, 0.12);
  --yellow: #ffdd77;
  --shadow: 0 24px 60px rgba(110, 38, 0, 0.16);
  --shadow-soft: 0 16px 38px rgba(111, 42, 0, 0.11);
  --cream-surface: linear-gradient(180deg, rgba(255, 246, 230, 0.98) 0%, rgba(255, 231, 191, 0.96) 100%);
  --orange-glass: linear-gradient(180deg, rgba(255, 132, 66, 0.5) 0%, rgba(255, 102, 32, 0.24) 100%);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --max-width: 1180px;
  --font-body: "Wearbeast Sans", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  --font-display: "Wearbeast Display", "Wearbeast Sans", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(rgba(255, 250, 242, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 250, 242, 0.07) 1px, transparent 1px),
    radial-gradient(circle at 16% 2%, rgba(255, 221, 119, 0.22), transparent 28%),
    radial-gradient(circle at 86% 12%, rgba(255, 250, 242, 0.18), transparent 24%),
    linear-gradient(180deg, #ff9655 0%, var(--bg) 34%, var(--bg-deep) 100%);
  background-size: 5mm 5mm, 5mm 5mm, auto, auto, auto;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
}

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

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

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

.page-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 18% 12%, rgba(255, 250, 242, 0.1), transparent 24%),
    radial-gradient(circle at 80% 0%, rgba(45, 22, 10, 0.05), transparent 22%);
  opacity: 0.52;
  mix-blend-mode: soft-light;
}

.site-shell {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 52px;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 30;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  padding: 14px 20px 14px 18px;
  margin-bottom: 34px;
  border: 1px solid rgba(45, 22, 10, 0.1);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 246, 230, 0.97) 0%, rgba(255, 230, 190, 0.92) 100%);
  box-shadow:
    0 18px 44px rgba(110, 39, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand__mark {
  width: clamp(50px, 4.8vw, 68px);
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(92, 33, 0, 0.18));
  transition: transform 220ms ease;
}

.brand:hover .brand__mark,
.brand:focus-visible .brand__mark {
  transform: translateY(-2px) rotate(-4deg);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.4vw, 34px);
}

html[lang="ko"] .site-nav {
  gap: clamp(24px, 3.1vw, 46px);
}

.site-nav a,
.nav-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(45, 22, 10, 0.72);
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: color 220ms ease;
}

.site-nav a::after,
.nav-trigger::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  border-radius: 999px;
  background: var(--bg-deep);
  transition: transform 220ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"],
.nav-trigger:hover,
.nav-trigger:focus-visible,
.nav-trigger[aria-current="page"] {
  color: var(--ink);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after,
.nav-trigger:hover::after,
.nav-trigger:focus-visible::after,
.nav-trigger[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-group {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-trigger {
  gap: 6px;
}

.nav-trigger::before {
  content: "";
  width: 0.42em;
  height: 0.42em;
  margin-left: 2px;
  order: 2;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.72;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  z-index: 40;
  display: grid;
  min-width: 178px;
  padding: 10px;
  border: 1px solid rgba(45, 22, 10, 0.1);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 247, 233, 0.98) 0%, rgba(255, 230, 190, 0.96) 100%);
  box-shadow: 0 22px 42px rgba(94, 36, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -4px);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.nav-submenu a {
  justify-content: flex-start;
  padding: 12px 14px;
  border-radius: 14px;
  color: rgba(45, 22, 10, 0.7);
}

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

.nav-submenu a:hover,
.nav-submenu a:focus-visible,
.nav-submenu a[aria-current="page"] {
  background: rgba(255, 114, 40, 0.1);
  color: var(--ink);
}

.nav-group:hover .nav-submenu,
.nav-group:focus-within .nav-submenu,
.nav-group.is-open .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.header-side {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border-radius: 999px;
  background: rgba(45, 22, 10, 0.06);
  box-shadow: inset 0 0 0 1px rgba(45, 22, 10, 0.06);
}

.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(45, 22, 10, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lang-switch a.is-active {
  background: rgba(255, 250, 242, 0.94);
  color: var(--ink);
  box-shadow: 0 8px 16px rgba(91, 41, 0, 0.08);
}

.header-cta,
.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background-color 220ms ease;
}

.header-cta,
.button {
  background: linear-gradient(180deg, #ffe68e 0%, var(--yellow) 100%);
  color: var(--ink);
  box-shadow: 0 12px 24px rgba(99, 50, 0, 0.14);
}

.button-secondary {
  background: rgba(255, 248, 239, 0.12);
  color: var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 247, 235, 0.16);
}

.header-cta:hover,
.header-cta:focus-visible,
.button:hover,
.button:focus-visible,
.button-secondary:hover,
.button-secondary:focus-visible {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  place-items: center;
  gap: 5px;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 18px;
  background: rgba(45, 22, 10, 0.07);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.page-main {
  display: grid;
  gap: clamp(44px, 5vw, 72px);
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.72fr);
  gap: 24px;
  align-items: stretch;
}

.terms-hero {
  grid-template-columns: 1fr;
}

.terms-hero .hero-copy {
  display: flex;
  min-height: clamp(250px, 22vw, 340px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.terms-hero .hero-copy h1 {
  max-width: none;
  font-size: clamp(3rem, 4.8vw, 5rem);
  line-height: 1;
  white-space: nowrap;
}

.terms-hero .hero-copy p {
  max-width: 840px;
  margin-inline: auto;
}

.terms-hero .hero-copy::after {
  inset: auto 50% 28px auto;
  width: min(220px, 24vw);
  transform: translateX(50%);
}

.home-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.72fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  min-height: clamp(460px, 42vw, 540px);
  padding: clamp(28px, 4.2vw, 48px);
  border: 1px solid rgba(45, 22, 10, 0.1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--cream-surface);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.home-showcase::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(45, 22, 10, 0.07);
  border-radius: calc(var(--radius-xl) - 10px);
  pointer-events: none;
}

.home-showcase::after {
  content: "";
  position: absolute;
  right: -18%;
  bottom: -48%;
  width: min(58vw, 780px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 221, 119, 0.42) 0%, rgba(255, 114, 40, 0.08) 44%, transparent 72%);
  pointer-events: none;
}

.home-showcase__copy,
.home-showcase__visual {
  position: relative;
  z-index: 1;
}

.home-showcase__copy {
  align-self: center;
  max-width: 650px;
}

.home-showcase h1 {
  margin: 16px 0 14px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.9rem, 5.2vw, 5.1rem);
  line-height: 1.02;
  color: var(--ink);
}

.home-showcase p {
  max-width: 560px;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

.home-showcase .button-secondary {
  background: rgba(45, 22, 10, 0.06);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(45, 22, 10, 0.09);
}

.home-showcase__visual {
  min-height: 100%;
}

.home-showcase__character {
  position: absolute;
  right: clamp(-116px, -6vw, -58px);
  bottom: clamp(-124px, -8vw, -76px);
  width: min(45vw, 600px);
  max-width: none;
  filter: drop-shadow(0 34px 46px rgba(83, 36, 0, 0.2));
  opacity: 0;
  transform: translateX(54px) translateY(18px);
  animation: hero-character-enter 920ms cubic-bezier(0.16, 1, 0.3, 1) 180ms forwards;
}

.home-showcase__orb {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  animation: hero-orb-drift 5.8s ease-in-out infinite;
}

.home-showcase__orb--top {
  top: 26px;
  right: 18%;
  width: 108px;
  height: 108px;
  background: rgba(255, 221, 119, 0.34);
}

.home-showcase__orb--bottom {
  right: 4%;
  bottom: 66px;
  width: 170px;
  height: 170px;
  background: rgba(255, 114, 40, 0.14);
  animation-delay: 850ms;
}

.home-status {
  display: grid;
  grid-template-columns: 0.92fr 1.18fr 0.96fr 1fr;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(45, 22, 10, 0.1);
  border-radius: var(--radius-xl);
  background: var(--cream-surface);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.status-card {
  min-height: 178px;
  padding: 22px;
  border: 1px solid rgba(45, 22, 10, 0.08);
  border-radius: 24px;
  background: rgba(255, 250, 242, 0.58);
}

.status-card__label {
  display: block;
  color: rgba(45, 22, 10, 0.6);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.status-card strong {
  display: block;
  margin-top: 14px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 3vw, 3.05rem);
  line-height: 1;
  color: var(--ink);
  word-break: keep-all;
}

.status-card p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  line-height: 1.65;
}

.status-card--timer {
  background: linear-gradient(180deg, #ffe993 0%, var(--yellow) 100%);
  box-shadow: 0 18px 30px rgba(118, 67, 0, 0.12);
}

.status-card--timer strong {
  font-family: var(--font-body);
  font-size: clamp(1.6rem, 2.55vw, 2.45rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

@keyframes hero-character-enter {
  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

@keyframes hero-orb-drift {
  50% {
    transform: translateY(-12px) scale(1.04);
  }
}

.hero-copy,
.hero-side,
.panel,
.info-card,
.page-card,
.process-card,
.mini-panel,
.terms-highlight,
.terms-item {
  border: 1px solid rgba(255, 247, 235, 0.2);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 56px);
  border-radius: var(--radius-xl);
  background: var(--orange-glass);
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto 36px 28px auto;
  width: 120px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.22);
}

.hero-side {
  display: grid;
  gap: 16px;
  min-width: 0;
  padding: 24px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 248, 239, 0.2) 0%, rgba(255, 207, 156, 0.12) 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 248, 239, 0.12);
  color: rgba(255, 249, 242, 0.92);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow--dark {
  background: rgba(43, 22, 8, 0.08);
  color: var(--ink);
}

.hero-copy h1,
.section-head h2,
.panel h2,
.split-panel__text h2,
.footer-copy h2,
.terms-intro h2 {
  margin: 16px 0 14px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.55rem, 5vw, 4.35rem);
  line-height: 1.08;
}

.hero-copy p,
.hero-side p,
.section-head p,
.page-card p,
.panel p,
.process-card p,
.mini-panel p,
.split-panel__text p,
.footer-copy p,
.terms-intro p,
.terms-item__content p {
  margin: 0;
  color: rgba(255, 248, 239, 0.86);
  line-height: 1.8;
}

.hero-copy p + p,
.panel p + p,
.split-panel__text p + p,
.terms-item__content p + p {
  margin-top: 14px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.mini-panel {
  min-width: 0;
  padding: 20px 20px 22px;
  border-radius: 24px;
  background: rgba(255, 248, 239, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 247, 235, 0.14);
}

.mini-panel strong {
  color: var(--white);
}

.mini-panel__label {
  color: rgba(255, 247, 235, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mini-panel strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.04;
}

.mini-panel p {
  margin-top: 8px;
  overflow-wrap: anywhere;
}

.section-head {
  max-width: 780px;
  text-align: center;
  margin: 0 auto;
}

.service-brief {
  display: grid;
  gap: 28px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(45, 22, 10, 0.08);
  border-radius: var(--radius-xl);
  background: var(--cream-surface);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.service-list {
  display: grid;
  gap: 12px;
}

.service-item {
  border: 1px solid rgba(45, 22, 10, 0.08);
  border-radius: 24px;
  background: rgba(255, 250, 242, 0.54);
  overflow: hidden;
}

.service-item summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
}

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

.service-item summary::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: rgba(255, 114, 40, 0.1);
  color: var(--bg-deep);
  font-size: 1.2rem;
  font-weight: 800;
}

.service-item[open] summary::after {
  content: "-";
}

.service-item summary span {
  color: rgba(45, 22, 10, 0.46);
  font-size: 0.84rem;
  font-weight: 800;
}

.service-item summary strong {
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.service-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--ink-soft);
  line-height: 1.76;
}

.service-brief__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(45, 22, 10, 0.1);
}

.service-brief__cta p {
  max-width: 640px;
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

.section-head h2 {
  color: var(--white);
}

.section-head--cream h2,
.section-head--cream p {
  color: var(--ink);
}

.page-card-grid,
.feature-grid,
.process-grid,
.stats,
.link-grid,
.story-values,
.terms-highlights {
  display: grid;
  gap: 18px;
}

.page-card-grid,
.feature-grid,
.process-grid,
.link-grid,
.story-values,
.terms-highlights {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.commission-process-grid {
  grid-auto-rows: 1fr;
}

.page-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--cream-surface);
  color: var(--ink);
  border-color: rgba(45, 22, 10, 0.1);
  box-shadow: var(--shadow-soft);
}

.page-card h3,
.feature-card h3,
.process-card h3,
.mini-panel h3,
.terms-highlight h3,
.split-panel__text h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.page-card h3,
.feature-card h3,
.process-card h3,
.terms-highlight h3 {
  color: var(--ink);
}

.card-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(45, 22, 10, 0.07);
  color: rgba(45, 22, 10, 0.66);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.page-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--bg-deep);
  font-weight: 800;
}

.page-card p,
.feature-card p,
.process-card p {
  color: var(--ink-soft);
}

.page-card,
.feature-card,
.process-card,
.terms-highlight,
.terms-item {
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.page-card:hover,
.feature-card:hover,
.process-card:hover,
.terms-highlight:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(111, 42, 0, 0.14);
}

.stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-card {
  padding: 24px;
  min-height: 210px;
  border-radius: var(--radius-lg);
  background: rgba(255, 248, 239, 0.12);
  border: 1px solid rgba(255, 247, 235, 0.2);
  box-shadow: var(--shadow);
  text-align: center;
}

.stat-card__icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: rgba(255, 248, 239, 0.1);
}

.stat-card svg,
.feature-card svg,
.process-card svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.stat-card__value {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(3rem, 5vw, 4.2rem);
  line-height: 1;
}

.stat-card__label {
  display: block;
  margin-top: 10px;
  font-size: 1.04rem;
  font-weight: 600;
}

.build-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.build-card {
  --card-base: #42373b;
  --card-highlight: rgba(255, 255, 255, 0.14);
  --face: #f6f3ef;
  --ear: #1b1715;
  --eye: #ffb933;
  --outfit: #171616;
  --accent: #ff6734;
  position: relative;
  min-height: 460px;
  padding: 22px;
  border: 1px solid rgba(255, 247, 235, 0.24);
  border-radius: 32px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, transparent 20%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 30%),
    linear-gradient(180deg, color-mix(in srgb, var(--card-base) 86%, white 14%) 0%, var(--card-base) 100%);
  box-shadow: var(--shadow);
}

.build-card::before,
.build-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.build-card::before {
  inset: auto auto 116px 18px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--card-highlight) 0%, transparent 70%);
  filter: blur(5px);
}

.build-card::after {
  top: 24px;
  right: -18px;
  width: 110px;
  height: 110px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, transparent 72%);
}

.build-card__visual {
  position: relative;
  height: 320px;
}

.build-card__ear,
.build-card__mask,
.build-card__outfit,
.build-card__accent,
.build-card__eye {
  position: absolute;
}

.build-card__ear {
  top: 24px;
  width: 82px;
  height: 124px;
  background: var(--ear);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.18));
}

.build-card__ear--left {
  left: calc(50% - 100px);
  transform: rotate(-10deg);
}

.build-card__ear--right {
  left: calc(50% + 18px);
  transform: rotate(12deg);
}

.build-card__mask {
  left: 50%;
  top: 76px;
  width: 184px;
  height: 192px;
  transform: translateX(-50%);
  border-radius: 44% 44% 38% 38%;
  background:
    radial-gradient(circle at 36% 30%, rgba(255, 255, 255, 0.74), transparent 20%),
    linear-gradient(180deg, var(--face) 0%, color-mix(in srgb, var(--face) 72%, black 28%) 100%);
  box-shadow:
    inset 0 -10px 18px rgba(0, 0, 0, 0.1),
    0 24px 36px rgba(13, 5, 0, 0.2);
}

.build-card__eye {
  top: 146px;
  width: 36px;
  height: 18px;
  border-radius: 999px;
  background: var(--eye);
  box-shadow: 0 0 22px color-mix(in srgb, var(--eye) 62%, transparent);
}

.build-card__eye--left {
  left: calc(50% - 54px);
  transform: rotate(-12deg);
}

.build-card__eye--right {
  left: calc(50% + 16px);
  transform: rotate(12deg);
}

.build-card__outfit {
  left: 50%;
  bottom: 22px;
  width: 214px;
  height: 128px;
  transform: translateX(-50%);
  border-radius: 26px 26px 42px 42px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 30%),
    linear-gradient(180deg, color-mix(in srgb, var(--outfit) 78%, white 22%) 0%, var(--outfit) 100%);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.18);
}

.build-card__accent {
  left: calc(50% - 90px);
  top: 96px;
  width: 56px;
  height: 56px;
  border-radius: 18px 26px 18px 24px;
  background: var(--accent);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.16);
}

.build-card__body {
  position: relative;
  z-index: 1;
  padding-top: 12px;
}

.build-card__tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 248, 239, 0.14);
  color: rgba(255, 247, 239, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.build-card h3 {
  margin: 14px 0 10px;
  font-size: 1.7rem;
}

.build-card p {
  margin: 0;
  color: rgba(255, 247, 235, 0.82);
  line-height: 1.7;
}

.build-card--tactical {
  --card-base: #43363a;
  --card-highlight: rgba(255, 205, 143, 0.2);
  --face: #f5f6f8;
  --ear: #272426;
  --eye: #ffd25d;
  --outfit: #18191d;
  --accent: #ff6a26;
}

.build-card--tactical .build-card__mask {
  background:
    radial-gradient(circle at 30% 26%, rgba(255, 255, 255, 0.8), transparent 18%),
    linear-gradient(180deg, #f6f7f9 0%, #b9bdc7 100%);
}

.build-card--neon {
  --card-base: #5a2b6c;
  --card-highlight: rgba(255, 173, 255, 0.16);
  --face: #b8a1ea;
  --ear: #43284e;
  --eye: #ffcf44;
  --outfit: #281d39;
  --accent: #ff89cb;
}

.build-card--neon .build-card__mask {
  border-radius: 40% 46% 40% 36%;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.38), transparent 18%),
    linear-gradient(180deg, #b79de4 0%, #6f4ea1 100%);
}

.build-card--neon .build-card__accent {
  left: calc(50% + 40px);
  top: 182px;
  width: 38px;
  height: 78px;
  border-radius: 999px;
}

.build-card--ivory {
  --card-base: #7ca2a5;
  --card-highlight: rgba(255, 255, 255, 0.18);
  --face: #f4f1ea;
  --ear: #101010;
  --eye: #d6a83f;
  --outfit: #f1efe8;
  --accent: #7abce6;
}

.build-card--ivory .build-card__mask {
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.9), transparent 16%),
    linear-gradient(180deg, #f6f3ec 0%, #d7d4cb 100%);
}

.build-card--ivory .build-card__outfit {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.6), transparent 40%),
    linear-gradient(180deg, #fffdf8 0%, #ebe7dd 100%);
}

.build-card--ivory .build-card__accent {
  left: calc(50% + 46px);
  top: 104px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #6caee4;
}

.feature-card,
.process-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--cream-surface);
  color: var(--ink);
  border: 1px solid rgba(45, 22, 10, 0.1);
  box-shadow: var(--shadow-soft);
}

.commission-process-grid .process-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
}

.feature-card__icon,
.process-card__icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(255, 114, 40, 0.1);
  color: var(--bg-deep);
}

.panel {
  padding: clamp(28px, 4vw, 46px);
  border-radius: var(--radius-xl);
  background: var(--cream-surface);
  color: var(--ink);
  border: 1px solid rgba(45, 22, 10, 0.08);
}

.panel h2,
.panel h3,
.split-panel__text h2,
.split-panel__text h3,
.footer-copy h2,
.terms-intro h2 {
  color: var(--ink);
}

.panel p,
.panel li,
.split-panel__text p,
.split-panel__text li,
.footer-copy p {
  color: var(--ink-soft);
}

.panel-list {
  display: grid;
  gap: 12px;
  padding-left: 20px;
  margin: 18px 0 0;
}

.panel-list li {
  line-height: 1.75;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(260px, 0.94fr);
  gap: 22px;
}

.split-panel__text,
.split-panel__aside {
  padding: 32px;
  border-radius: var(--radius-xl);
}

.split-panel__text {
  background: var(--cream-surface);
  border: 1px solid rgba(45, 22, 10, 0.08);
}

.split-panel__aside {
  background: rgba(255, 248, 239, 0.16);
  border: 1px solid rgba(255, 247, 235, 0.2);
  box-shadow: var(--shadow);
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
}

.terms-layout {
  display: grid;
  gap: 22px;
}

.terms-intro {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: var(--cream-surface);
  color: var(--ink);
  box-shadow: var(--shadow);
  border: 1px solid rgba(45, 22, 10, 0.08);
}

.terms-intro p {
  color: var(--ink-soft);
}

.terms-kicker {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(43, 22, 8, 0.08);
  color: rgba(43, 22, 8, 0.74);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.terms-highlights {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.terms-highlight {
  padding: 22px 24px;
  border-radius: 28px;
  background: var(--cream-surface);
  color: var(--ink);
  border-color: rgba(45, 22, 10, 0.1);
  box-shadow: var(--shadow-soft);
}

.terms-highlight__label {
  color: rgba(45, 22, 10, 0.58);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.terms-highlight strong {
  display: block;
  margin-top: 10px;
  font-size: 1.7rem;
  line-height: 1.14;
}

.terms-highlight p {
  margin-top: 10px;
  color: var(--ink-soft);
}

.terms-list {
  display: grid;
  gap: 14px;
}

.terms-item {
  border-radius: 28px;
  background: var(--cream-surface);
  color: var(--ink);
  border-color: rgba(45, 22, 10, 0.1);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.terms-item summary {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
}

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

.terms-item__number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 114, 40, 0.12);
  color: var(--bg-deep);
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: 0;
}

.terms-item__title {
  font-size: clamp(1.05rem, 2vw, 1.26rem);
  font-weight: 700;
  line-height: 1.35;
}

.terms-item__toggle {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 114, 40, 0.12);
  color: var(--bg-deep);
}

.terms-item__toggle::before {
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
}

.terms-item[open] .terms-item__toggle::before {
  content: "-";
}

.terms-item__content {
  padding: 0 26px 26px;
}

.terms-item__content p {
  color: var(--ink-soft);
}

.site-footer {
  margin-top: 10px;
  padding: 34px 30px 24px;
  border-radius: 34px 34px 0 0;
  background: linear-gradient(180deg, #fff3df 0%, #ffe6be 100%);
  color: var(--ink);
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(200px, 320px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-art {
  width: min(100%, 340px);
}

.footer-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.footer-copy p {
  margin: 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding-top: 24px;
}

.footer-links h3 {
  margin: 0 0 14px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-links a,
.footer-links p {
  display: block;
  margin: 10px 0 0;
  color: rgba(45, 22, 10, 0.72);
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-row a,
.social-row span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(43, 22, 8, 0.06);
  color: rgba(45, 22, 10, 0.76);
}

.social-row .social-link__icon {
  display: inline-grid;
  place-items: center;
  width: 1.55em;
  height: 1.55em;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.78em;
  font-weight: 900;
  line-height: 1;
}

.social-row .social-link span:not(.social-link__icon) {
  display: inline;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
}

.site-footer__copyright {
  margin: 26px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  color: rgba(45, 22, 10, 0.62);
  text-align: center;
}

@media (max-width: 1100px) {
  .home-status {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-card-grid,
  .feature-grid,
  .process-grid,
  .link-grid,
  .story-values,
  .build-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 16px;
  }

  .brand {
    grid-column: 1;
  }

  .header-side {
    grid-column: 2;
    justify-self: center;
  }

  .menu-toggle {
    grid-column: 3;
    justify-self: end;
  }

  .menu-toggle {
    display: inline-grid;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: grid;
    gap: 12px;
    padding: 18px;
    border-radius: 24px;
    background: rgba(255, 239, 212, 0.98);
    border: 1px solid rgba(45, 22, 10, 0.08);
    box-shadow: 0 22px 50px rgba(92, 29, 0, 0.22);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition:
      opacity 220ms ease,
      transform 220ms ease,
      visibility 220ms ease;
  }

  .site-nav > a,
  .nav-trigger {
    justify-content: flex-start;
    width: 100%;
    padding: 12px 14px;
    border-radius: 16px;
  }

  .site-nav > a:hover,
  .site-nav > a:focus-visible,
  .site-nav > a[aria-current="page"],
  .nav-trigger:hover,
  .nav-trigger:focus-visible,
  .nav-trigger[aria-current="page"] {
    background: rgba(255, 114, 40, 0.08);
  }

  .site-nav > a::after,
  .nav-trigger::after {
    display: none;
  }

  .nav-group {
    display: grid;
    align-items: stretch;
  }

  .nav-trigger {
    justify-content: space-between;
  }

  .nav-submenu {
    position: static;
    display: none;
    min-width: 0;
    margin-top: 6px;
    padding: 8px;
    border-radius: 18px;
    background: rgba(45, 22, 10, 0.04);
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-group:hover .nav-submenu,
  .nav-group:focus-within .nav-submenu,
  .nav-group.is-open .nav-submenu {
    display: grid;
    transform: none;
  }

  html[lang="ko"] .site-nav {
    gap: 12px;
  }

  .menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

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

  .menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .page-hero,
  .split-panel,
  .footer-top {
    grid-template-columns: 1fr;
  }

  .home-showcase {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .home-showcase__copy {
    max-width: none;
  }

  .terms-hero .hero-copy h1 {
    max-width: 9em;
    white-space: normal;
    text-wrap: balance;
    word-break: keep-all;
  }

  .home-showcase__visual {
    min-height: 390px;
  }

  .home-showcase__character {
    right: -8%;
    bottom: -150px;
    width: min(78vw, 560px);
  }

  .page-card-grid,
  .feature-grid,
  .process-grid,
  .link-grid,
  .story-values,
  .stats,
  .build-grid,
  .footer-links,
  .terms-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 16px, 100%);
    padding-top: 12px;
  }

  .site-header {
    top: 10px;
    grid-template-columns: auto 1fr auto;
    padding: 12px 12px 12px 10px;
    border-radius: 28px;
  }

  .brand__mark {
    width: 54px;
  }

  .header-side {
    gap: 8px;
  }

  .lang-switch a {
    min-width: 50px;
    padding: 10px 12px;
    font-size: 0.72rem;
  }

  .hero-copy,
  .home-showcase,
  .hero-side,
  .panel,
  .service-brief,
  .terms-intro,
  .split-panel__text,
  .split-panel__aside,
  .site-footer,
  .page-card,
  .feature-card,
  .process-card,
  .mini-panel,
  .terms-highlight,
  .terms-item {
    border-radius: 28px;
  }

  .hero-copy,
  .home-showcase,
  .panel,
  .service-brief,
  .terms-intro,
  .split-panel__text,
  .split-panel__aside,
  .site-footer,
  .page-card,
  .feature-card,
  .process-card {
    padding: 24px;
  }

  .service-brief__cta {
    align-items: stretch;
    flex-direction: column;
  }

  .home-showcase::before {
    inset: 10px;
    border-radius: 22px;
  }

  .home-showcase h1 {
    font-size: 2.48rem;
  }

  .home-showcase__visual {
    min-height: 330px;
    margin-top: 0;
  }

  .home-showcase__character {
    right: -38%;
    bottom: -154px;
    width: min(122vw, 480px);
  }

  .home-showcase__orb--top {
    top: 20px;
    right: 18px;
    width: 78px;
    height: 78px;
  }

  .home-showcase__orb--bottom {
    right: -20px;
    bottom: 52px;
    width: 120px;
    height: 120px;
  }

  .home-status {
    grid-template-columns: 1fr;
    padding: 10px;
    border-radius: 28px;
  }

  .status-card {
    min-height: auto;
    padding: 20px;
  }

  .hero-copy h1,
  .section-head h2,
  .panel h2,
  .split-panel__text h2,
  .terms-intro h2 {
    font-size: 2.5rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button,
  .button-secondary {
    width: 100%;
  }

  .terms-item summary,
  .terms-item__content {
    padding-left: 22px;
    padding-right: 22px;
  }

  .footer-top {
    gap: 18px;
  }

  .footer-art {
    width: min(100%, 260px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Tabloid newspaper direction */
@font-face {
  font-family: "Wearbeast Masthead";
  src: url("./assets/fonts/ArchivoBlack-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 900;
}

:root {
  --bg: #f24a1d;
  --bg-deep: #d93a16;
  --bg-soft: #ff6b38;
  --paper: #f4ead9;
  --paper-warm: #ead7bd;
  --cream: #f4ead9;
  --cream-strong: #ead7bd;
  --ink: #2b1409;
  --ink-soft: rgba(43, 20, 9, 0.72);
  --white: #fff7eb;
  --line: rgba(242, 74, 29, 0.34);
  --line-dark: rgba(242, 74, 29, 0.55);
  --yellow: #f24a1d;
  --shadow: none;
  --shadow-soft: none;
  --cream-surface: linear-gradient(180deg, rgba(244, 234, 217, 0.96) 0%, rgba(238, 221, 195, 0.94) 100%);
  --orange-glass: linear-gradient(180deg, rgba(242, 74, 29, 0.08) 0%, rgba(242, 74, 29, 0.02) 100%);
  --radius-xl: 3px;
  --radius-lg: 2px;
  --radius-md: 2px;
  --max-width: 1220px;
  --font-masthead: "Wearbeast Masthead", Impact, "Arial Black", sans-serif;
}

body {
  background-color: var(--paper);
  background-image:
    url("./assets/paper-texture.svg"),
    linear-gradient(rgba(242, 74, 29, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 74, 29, 0.16) 1px, transparent 1px),
    radial-gradient(circle at 14% 0%, rgba(255, 255, 255, 0.45), transparent 22%),
    linear-gradient(180deg, #f7eddf 0%, #f4ead9 58%, #efdfc7 100%);
  background-size: 320px 320px, 28px 28px, 28px 28px, auto, auto;
  color: var(--ink);
}

.page-grain {
  background-image:
    radial-gradient(rgba(43, 20, 9, 0.18) 0.45px, transparent 0.45px),
    radial-gradient(rgba(242, 74, 29, 0.12) 0.55px, transparent 0.55px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
  background-position: 0 0, 11px 17px, 0 0;
  background-size: 9px 9px, 13px 13px, auto;
  opacity: 0.18;
  mix-blend-mode: multiply;
}

.site-shell {
  width: min(var(--max-width), calc(100% - 34px));
  padding: 18px 0 58px;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 50;
  isolation: isolate;
  overflow: visible;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0;
  align-items: stretch;
  padding: 0;
  margin-bottom: 30px;
  border: 2px solid var(--bg);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: blur(5px);
}

.masthead-brand,
.header-side,
.menu-toggle {
  position: relative;
  z-index: 2;
}

.site-nav {
  z-index: 3;
  overflow: visible;
}

.masthead-flight {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
}

.masthead-flight--trail {
  top: 26px;
  left: -34%;
  width: min(700px, 62vw);
  height: 78px;
  background:
    radial-gradient(ellipse at 5% 55%, rgba(242, 74, 29, 0.18) 0 2px, transparent 3px),
    radial-gradient(ellipse at 13% 52%, rgba(242, 74, 29, 0.14) 0 4px, transparent 5px),
    radial-gradient(ellipse at 23% 49%, rgba(242, 74, 29, 0.16) 0 3px, transparent 4px),
    radial-gradient(ellipse at 34% 46%, rgba(242, 74, 29, 0.12) 0 6px, transparent 7px),
    radial-gradient(ellipse at 46% 43%, rgba(242, 74, 29, 0.13) 0 4px, transparent 5px),
    radial-gradient(ellipse at 58% 40%, rgba(242, 74, 29, 0.11) 0 6px, transparent 7px),
    radial-gradient(ellipse at 71% 37%, rgba(242, 74, 29, 0.12) 0 4px, transparent 5px),
    linear-gradient(168deg, transparent 0 18%, rgba(242, 74, 29, 0.16) 19% 20%, transparent 22% 100%);
  filter: blur(0.55px);
  transform: translateX(-12vw) translateY(12px) rotate(-5deg);
  animation: contrail-pass 12s cubic-bezier(0.42, 0, 0.22, 1) infinite;
  animation-delay: -3.9s;
}

.masthead-flight--plane {
  top: 34px;
  left: -220px;
  width: clamp(168px, 14vw, 220px);
  height: clamp(70px, 6.4vw, 98px);
  background-image: url("./assets/light-plane.svg");
  background-repeat: no-repeat;
  background-size: contain;
  filter: drop-shadow(5px 5px 0 rgba(242, 74, 29, 0.12)) drop-shadow(0 10px 12px rgba(43, 20, 9, 0.08));
  transform: translateX(-12vw) translateY(14px) rotate(-5deg) scale(0.92);
  animation: plane-pass 12s cubic-bezier(0.42, 0, 0.22, 1) infinite;
  animation-delay: -3.6s;
}

@keyframes plane-pass {
  0%,
  10% {
    opacity: 0;
    transform: translateX(-12vw) translateY(24px) rotate(-6deg) scale(0.92);
  }

  16%,
  58% {
    opacity: 0.68;
  }

  72%,
  100% {
    opacity: 0;
    transform: translateX(calc(100vw + 300px)) translateY(-20px) rotate(-6deg) scale(1);
  }
}

@keyframes contrail-pass {
  0%,
  8% {
    opacity: 0;
    transform: translateX(-16vw) translateY(24px) rotate(-5deg) scaleX(0.55);
  }

  18%,
  50% {
    opacity: 0.72;
  }

  72%,
  100% {
    opacity: 0;
    transform: translateX(calc(100vw + 120px)) translateY(-28px) rotate(-5deg) scaleX(1.08);
  }
}

.masthead-brand {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.2vw, 16px);
  min-height: 116px;
  padding: 18px 230px 14px;
  border-bottom: 2px solid var(--bg);
  background: rgba(244, 234, 217, 0.78);
  color: var(--bg);
  font-family: var(--font-masthead);
  font-size: clamp(4.2rem, 8vw, 7.4rem);
  line-height: 0.82;
  letter-spacing: -0.085em;
  text-transform: uppercase;
  white-space: nowrap;
}

.masthead-brand::before,
.masthead-brand::after {
  position: absolute;
  z-index: 2;
  top: 20px;
  max-width: 180px;
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.masthead-brand > :not(.masthead-flight) {
  position: relative;
  z-index: 2;
}

.masthead-brand::before {
  content: "CUSTOM FURSUITS\A SHARP SILHOUETTES\A OPEN QUEUE 2026";
  left: 16px;
  white-space: pre-line;
}

.masthead-brand::after {
  content: "WEARABLE OBJECTS\A BUILT IN SMALL RUNS\A SEOUL / WORLDWIDE";
  right: 16px;
  text-align: right;
  white-space: pre-line;
}

.masthead-brand__mark {
  width: clamp(72px, 7.25vw, 112px);
  height: auto;
  margin: 0 0.02em;
  filter: contrast(1.08) drop-shadow(2px 2px 0 rgba(242, 74, 29, 0.22));
}

.masthead-brand span:last-of-type {
  position: relative;
  display: inline-block;
  padding-right: 0.2em;
}

.masthead-brand sup {
  position: absolute;
  top: -0.18em;
  right: -0.04em;
  display: block;
  margin: 0;
  font-size: 0.32em;
  line-height: 1;
  letter-spacing: 0;
  transform: none;
}

.site-nav {
  grid-column: 1;
  justify-content: center;
  gap: clamp(18px, 3vw, 48px);
  padding: 12px 16px;
  border-right: 2px solid var(--bg);
  background: rgba(244, 234, 217, 0.78);
}

html[lang="ko"] .site-nav {
  gap: clamp(22px, 3.4vw, 56px);
}

.site-nav a,
.nav-trigger {
  color: rgba(43, 20, 9, 0.78);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 900;
}

.site-nav a::after,
.nav-trigger::after {
  bottom: -12px;
  height: 3px;
  background: var(--bg);
}

.nav-submenu {
  top: calc(100% + 14px);
  z-index: 120;
  border: 2px solid var(--bg);
  border-radius: 0;
  background: rgba(244, 234, 217, 0.98);
  box-shadow: 6px 6px 0 rgba(242, 74, 29, 0.2);
}

.nav-submenu a {
  border-radius: 0;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible,
.nav-submenu a[aria-current="page"] {
  background: var(--bg);
  color: var(--paper);
}

.header-side {
  grid-column: 2;
  justify-self: stretch;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(244, 234, 217, 0.78);
}

.lang-switch {
  border: 1px solid var(--line-dark);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.lang-switch a,
.lang-switch a.is-active {
  border-radius: 0;
  box-shadow: none;
}

.lang-switch a.is-active {
  background: var(--bg);
  color: var(--paper);
}

.header-cta,
.button,
.button-secondary {
  border: 2px solid var(--bg);
  border-radius: 0;
  background: transparent;
  color: var(--bg);
  box-shadow: none;
}

.header-cta,
.button {
  background: var(--bg);
  color: var(--paper);
}

.button-secondary {
  color: var(--ink);
}

[data-commission-form-link][aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.64;
}

.header-cta:hover,
.header-cta:focus-visible,
.button:hover,
.button:focus-visible,
.button-secondary:hover,
.button-secondary:focus-visible {
  transform: translate(-3px, -3px);
  box-shadow: 5px 5px 0 rgba(242, 74, 29, 0.2);
}

.menu-toggle {
  border: 2px solid var(--bg);
  border-radius: 0;
  background: transparent;
}

.menu-toggle span {
  background: var(--bg);
}

.page-main {
  gap: 34px;
}

.home-showcase,
.home-status,
.panel,
.service-brief,
.terms-intro,
.terms-highlight,
.terms-item,
.page-card,
.feature-card,
.process-card,
.stat-card,
.split-panel__text,
.split-panel__aside,
.site-footer,
.hero-copy,
.hero-side,
.mini-panel {
  border: 2px solid var(--bg);
  border-radius: 0;
  background: rgba(244, 234, 217, 0.86);
  box-shadow: none;
  backdrop-filter: none;
}

.home-showcase {
  --showcase-pad: clamp(28px, 3.5vw, 42px);
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.58fr);
  gap: clamp(18px, 2.8vw, 38px);
  min-height: clamp(420px, 41.5vw, 546px);
  padding: var(--showcase-pad);
  overflow: hidden;
}

.home-showcase::before {
  inset: 0;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, transparent calc(100% - 1px), rgba(242, 74, 29, 0.22) calc(100% - 1px)),
    linear-gradient(rgba(242, 74, 29, 0.12) 1px, transparent 1px);
  background-size: 42px 100%, 100% 42px;
  opacity: 0.38;
}

.home-showcase::after {
  right: auto;
  left: 64%;
  top: 0;
  bottom: 0;
  width: 2px;
  aspect-ratio: auto;
  border-radius: 0;
  background: rgba(242, 74, 29, 0.65);
}

.home-showcase h1,
.hero-copy h1,
.section-head h2,
.panel h2,
.split-panel__text h2,
.terms-intro h2 {
  color: var(--bg);
  font-family: var(--font-display);
}

.home-showcase h1 {
  max-width: 760px;
  margin-top: 4px;
  font-size: clamp(3rem, 5.05vw, 5rem);
  line-height: 0.96;
}

.home-showcase p {
  max-width: 700px;
  word-break: keep-all;
}

.home-showcase p,
.panel p,
.mini-panel p,
.service-brief__cta p,
.service-item p,
.terms-intro p,
.terms-item__content p,
.page-card p,
.feature-card p,
.process-card p,
.footer-copy p {
  color: var(--ink-soft);
}

.home-showcase__character {
  position: absolute;
  right: calc(var(--showcase-pad) * -1);
  bottom: calc(var(--showcase-pad) * -1);
  width: auto;
  height: min(41.5vw, 546px);
  max-height: none;
  z-index: 1;
  opacity: 1;
  transform: none;
  animation: none;
  filter:
    saturate(0.92)
    contrast(1.04)
    drop-shadow(8px 8px 0 rgba(242, 74, 29, 0.16));
}

.home-showcase__copy {
  max-width: none;
  padding-right: clamp(22px, 3.2vw, 52px);
}

.home-showcase__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  overflow: visible;
  padding-left: clamp(8px, 2vw, 28px);
}

.home-showcase__heart {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 4;
  color: var(--heart-color);
  font-family: var(--font-display);
  font-size: var(--heart-size);
  line-height: 1;
  pointer-events: none;
  opacity: 0;
  text-shadow:
    1px 1px 0 rgba(255, 250, 242, 0.82),
    3px 3px 0 rgba(242, 74, 29, 0.12);
  transform: translate(-50%, -50%) scale(0.4);
  will-change: transform, opacity;
}

@keyframes hero-character-enter {
  to {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}

.home-showcase__orb {
  display: none;
}

.home-status {
  gap: 0;
  padding: 0;
}

.status-card {
  min-height: 150px;
  border: 0;
  border-right: 2px solid var(--bg);
  border-radius: 0;
  background: transparent;
}

.status-card:last-child {
  border-right: 0;
}

.status-card__label,
.mini-panel__label,
.terms-highlight__label,
.card-tag {
  color: var(--bg);
}

.brand-name {
  text-transform: none;
}

.status-card strong {
  color: var(--ink);
}

.status-card--timer {
  background: rgba(242, 74, 29, 0.08);
}

.hero-copy {
  background: var(--bg);
  color: var(--paper);
}

.hero-copy h1,
.hero-copy p,
.hero-copy .eyebrow,
.hero-copy .button-secondary {
  color: var(--paper);
}

.hero-copy .button {
  background: var(--paper);
  color: var(--bg);
}

.hero-copy .button-secondary {
  border-color: rgba(244, 234, 217, 0.9);
}

.hero-copy::after {
  background: rgba(244, 234, 217, 0.55);
}

.hero-side,
.mini-panel,
.stat-card {
  background: rgba(242, 74, 29, 0.1);
}

.commission-hero .hero-side {
  position: relative;
  display: block;
  min-height: 430px;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(244, 234, 217, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 234, 217, 0.14) 1px, transparent 1px),
    var(--bg);
  background-size: 34px 34px, 34px 34px, auto;
}

.commission-hero__figure {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: hidden;
  opacity: 1;
  mix-blend-mode: normal;
}

.commission-hero__figure img {
  width: 132%;
  height: 132%;
  object-fit: contain;
  object-position: 100% 100%;
  opacity: 1;
  transform: translate(-4%, 6%) rotate(7deg) scale(1.03);
  transform-origin: 72% 86%;
  filter:
    saturate(1.02)
    contrast(1.04)
    drop-shadow(10px 10px 0 rgba(43, 20, 9, 0.14));
}

.mini-panel strong,
.stat-card__value,
.build-card h3 {
  color: var(--bg);
}

.feature-card__icon,
.process-card__icon,
.terms-item__number,
.terms-item__toggle,
.service-item summary::after {
  border-radius: 0;
  background: var(--bg);
  color: var(--paper);
}

.page-card,
.feature-card,
.process-card,
.terms-highlight,
.terms-item,
.service-item {
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.page-card:hover,
.feature-card:hover,
.process-card:hover,
.terms-highlight:hover {
  box-shadow: 6px 6px 0 rgba(242, 74, 29, 0.16);
}

.build-card {
  border: 2px solid var(--bg);
  border-radius: 0;
  box-shadow: none;
}

.service-brief {
  gap: 24px;
}

.service-item {
  background: rgba(244, 234, 217, 0.72);
}

.service-brief__cta {
  border-top: 2px solid var(--line-dark);
}

.site-footer {
  border-top: 2px solid var(--bg);
  display: grid;
  grid-template-columns: minmax(190px, 320px) minmax(0, 1fr);
  gap: 26px 36px;
  align-items: start;
  margin-top: 0;
}

.site-footer__copyright {
  border-color: var(--line-dark);
}

.footer-top {
  display: flex;
  align-items: flex-start;
  padding: 0;
  border: 0;
}

.footer-art {
  width: min(100%, 300px);
}

.footer-links {
  padding-top: 0;
}

.site-footer__copyright {
  grid-column: 1 / -1;
  margin-top: 6px;
  padding-top: 18px;
  border-top: 2px solid var(--line-dark);
}

.social-row a,
.social-row span {
  border: 1px solid var(--line-dark);
  border-radius: 0;
  background: transparent;
}

.social-row .social-link__icon {
  border-radius: 0;
}

.lookbook-wall,
.founder-profile {
  border: 2px solid var(--bg);
  background: rgba(244, 234, 217, 0.86);
}

.lookbook-wall {
  padding: clamp(24px, 4vw, 46px);
}

.section-head--compact {
  max-width: 780px;
  margin-bottom: 24px;
}

.section-head--compact h2 {
  margin: 14px 0 10px;
  color: var(--bg);
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4.8vw, 4.6rem);
  line-height: 1;
}

.section-head--compact p {
  max-width: 680px;
  color: var(--ink-soft);
}

.masonry-gallery {
  column-width: 230px;
  column-gap: 4px;
}

.gallery-tile {
  position: relative;
  break-inside: avoid;
  margin: 0 0 4px;
  border: 0;
  background: transparent;
  overflow: hidden;
}

.gallery-tile img {
  display: block;
  width: 100%;
  height: auto;
}

.gallery-tile__placeholder {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(242, 74, 29, 0.18), rgba(244, 234, 217, 0.58)),
    linear-gradient(rgba(242, 74, 29, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 74, 29, 0.13) 1px, transparent 1px);
  background-size: auto, 22px 22px, 22px 22px;
}

.gallery-tile__placeholder span {
  color: var(--bg);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-tile__placeholder strong {
  max-width: 6ch;
  color: var(--ink);
  font-family: var(--font-masthead);
  font-size: clamp(2.2rem, 5vw, 4.3rem);
  line-height: 0.84;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.gallery-tile figcaption {
  margin: 0;
  padding: 10px 12px;
  border-top: 2px solid var(--bg);
  color: rgba(43, 20, 9, 0.62);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-tile--large .gallery-tile__placeholder {
  min-height: 420px;
}

.gallery-tile--tall .gallery-tile__placeholder {
  min-height: 520px;
}

.gallery-tile--portrait .gallery-tile__placeholder {
  min-height: 340px;
}

.gallery-tile--wide .gallery-tile__placeholder {
  min-height: 250px;
}

.founder-profile {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  min-height: 520px;
}

.founder-profile__image {
  min-height: 100%;
  margin: 0;
  border-right: 2px solid var(--bg);
  overflow: hidden;
}

.founder-profile__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.05);
}

.founder-profile__copy {
  align-self: center;
  padding: clamp(28px, 5vw, 64px);
}

.founder-profile__copy h2 {
  margin: 14px 0 18px;
  color: var(--bg);
  font-family: var(--font-masthead);
  font-size: clamp(4rem, 9vw, 8.5rem);
  line-height: 0.82;
  letter-spacing: -0.09em;
  text-transform: uppercase;
}

.founder-profile__copy p {
  max-width: 680px;
  color: var(--ink-soft);
  font-weight: 700;
  line-height: 1.78;
}

.founder-profile__copy p + p {
  margin-top: 14px;
}

@media (max-width: 920px) {
  .site-header {
    top: 10px;
    grid-template-columns: 1fr auto;
  }

  .masthead-brand {
    min-height: 84px;
    padding: 14px 68px 10px 14px;
    justify-content: center;
    gap: 6px;
    font-size: clamp(2.35rem, 9.8vw, 4rem);
    letter-spacing: -0.075em;
  }

  .masthead-brand::before,
  .masthead-brand::after {
    display: none;
  }

  .masthead-flight {
    display: none;
  }

  .masthead-brand__mark {
    width: clamp(44px, 12vw, 64px);
  }

  .menu-toggle {
    display: inline-grid;
    position: absolute;
    top: 14px;
    right: 14px;
  }

  .header-side {
    grid-column: 1 / -1;
    justify-self: center;
    padding: 8px;
    border-top: 2px solid var(--bg);
  }

  .site-nav {
    top: calc(100% + 8px);
    border: 2px solid var(--bg);
    border-radius: 0;
    background: rgba(244, 234, 217, 0.98);
    box-shadow: 6px 6px 0 rgba(242, 74, 29, 0.16);
  }

  .site-nav > a:hover,
  .site-nav > a:focus-visible,
  .site-nav > a[aria-current="page"],
  .nav-trigger:hover,
  .nav-trigger:focus-visible,
  .nav-trigger[aria-current="page"] {
    background: var(--bg);
    color: var(--paper);
  }

  .nav-submenu {
    border: 1px solid var(--line-dark);
    background: rgba(242, 74, 29, 0.08);
  }

  .home-showcase {
    grid-template-columns: 1fr;
  }

  .home-showcase::after {
    display: none;
  }

  .home-showcase__visual {
    min-height: 300px;
    padding-left: 0;
  }

  .home-showcase__character {
    position: relative;
    right: auto;
    bottom: auto;
    height: auto;
    width: min(72vw, 360px);
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .commission-hero .hero-side {
    grid-template-columns: 1fr;
    min-height: 360px;
  }

  .commission-hero__figure {
    inset: 0;
    height: auto;
  }

  .commission-hero .mini-panel {
    border-right: 0;
    border-top: 2px solid var(--bg);
  }

  .footer-top {
    justify-content: center;
  }

  .footer-art {
    width: min(82vw, 340px);
  }

  .founder-profile {
    grid-template-columns: 1fr;
  }

  .founder-profile__image {
    border-right: 0;
    border-bottom: 2px solid var(--bg);
  }

  .founder-profile__image img {
    min-height: 420px;
  }

  .home-status {
    grid-template-columns: 1fr 1fr;
  }

  .status-card:nth-child(2n) {
    border-right: 0;
  }

  .status-card:nth-child(n + 3) {
    border-top: 2px solid var(--bg);
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 18px, 100%);
    padding-top: 10px;
  }

  .masthead-brand {
    min-height: 76px;
    padding: 13px 58px 9px 10px;
    font-size: clamp(1.95rem, 9.3vw, 2.45rem);
    letter-spacing: -0.065em;
  }

  .masthead-brand__mark {
    width: clamp(36px, 10.5vw, 46px);
  }

  .home-showcase,
  .panel,
  .service-brief,
  .terms-intro,
  .site-footer,
  .page-card,
  .feature-card,
  .process-card {
    padding: 22px;
  }

  .home-showcase h1 {
    font-size: 2.7rem;
  }

  .terms-hero .hero-copy {
    min-height: 240px;
  }

  .terms-hero .hero-copy h1 {
    max-width: 6.8em;
    font-size: clamp(1.95rem, 9.4vw, 2.3rem);
    line-height: 1.02;
    text-wrap: balance;
    word-break: keep-all;
  }

  .terms-hero .hero-copy p {
    max-width: 280px;
    font-size: 0.86rem;
    line-height: 1.72;
    text-wrap: balance;
    word-break: keep-all;
  }

  .service-hero .hero-copy h1 {
    max-width: 7.2em;
    font-size: clamp(2rem, 10vw, 2.5rem);
    line-height: 1.04;
    text-wrap: balance;
    word-break: keep-all;
  }

  .service-hero .hero-copy p {
    max-width: 290px;
    font-size: 0.9rem;
    word-break: keep-all;
  }

  .home-showcase__visual {
    min-height: 280px;
    padding-left: 0;
  }

  .home-showcase__character {
    position: relative;
    right: auto;
    bottom: auto;
    height: auto;
    width: min(82vw, 340px);
  }

  .commission-hero .hero-side {
    min-height: 330px;
  }

  .commission-hero__figure {
    inset: 0;
    height: auto;
  }

  .lookbook-wall {
    padding: 18px;
  }

  .masonry-gallery {
    column-count: 1;
    column-width: auto;
    column-gap: 0;
  }

  .gallery-tile {
    margin-bottom: 8px;
  }

  .gallery-tile__placeholder {
    min-height: 190px;
    padding: 14px;
  }

  .gallery-tile--large .gallery-tile__placeholder,
  .gallery-tile--tall .gallery-tile__placeholder {
    min-height: 300px;
  }

  .gallery-tile__placeholder strong {
    font-size: 2.2rem;
  }

  .founder-profile__copy {
    padding: 24px;
  }

  .home-status {
    grid-template-columns: 1fr;
  }

  .status-card,
  .status-card:nth-child(2n) {
    border-right: 0;
    border-top: 2px solid var(--bg);
  }

  .status-card:first-child {
    border-top: 0;
  }
}
