@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;1,300;1,400&family=Inter:wght@300;400;500&family=Noto+Serif+KR:wght@400&display=swap");

:root {
  --ink: #151411;
  --ink-soft: #24211c;
  --paper: #f3f0e9;
  --paper-deep: #e3ded4;
  --stone: #8f887d;
  --line: rgba(21, 20, 17, 0.2);
  --gold: #b59661;
  --gold-light: #d0b783;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", "Helvetica Neue", Arial, sans-serif;
  --korean: "Noto Serif KR", serif;
  --gutter: clamp(1.35rem, 4vw, 5rem);
  --max: 1600px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
}
main, section, article, figure, form, .header-inner, .mobile-header, .page-hero, .contact-hero, .contact-inquiry {
  min-width: 0;
}
body.is-locked { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { color: inherit; font: inherit; }
button { border: 0; background: none; cursor: pointer; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: .7rem 1rem;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-180%);
}
.skip-link:focus { transform: none; }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: #fff;
  transition: color .35s ease, background .35s ease, transform .35s ease;
}
.site-header.is-scrolled {
  color: var(--ink);
  border-bottom: 1px solid rgba(21, 20, 17, .14);
  background: rgba(243, 240, 233, .95);
  backdrop-filter: blur(16px);
}
.site-header.is-hidden { transform: translateY(-100%); }
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 92px;
  padding: 0 var(--gutter);
}
.header-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.5rem);
}
.header-links--right { justify-content: flex-end; }
.header-links a, .mobile-link span, .eyebrow, .section-kicker, .footer-label {
  font-size: .61rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.header-links a { position: relative; }
.header-links a::after {
  position: absolute;
  right: 0;
  bottom: -.5rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.header-links a:hover::after, .header-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}
.header-links a[aria-current="page"]::after { transform: scaleX(1); }
.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  justify-self: center;
  text-transform: uppercase;
}
.brand-mark {
  width: 1.7rem;
  height: 2.2rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter .35s ease;
}
.is-scrolled .brand-mark { filter: brightness(0); }
.brand-type {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-type strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: .3em;
}
.brand-type small {
  margin-top: .35rem;
  font-size: .38rem;
  letter-spacing: .43em;
}
.mobile-header { display: none; }
.mobile-menu-button {
  display: grid;
  gap: .35rem;
  width: 2rem;
  padding: .25rem 0;
}
.mobile-menu-button i {
  display: block;
  width: 1.5rem;
  height: 1px;
  background: currentColor;
}
.menu-drawer {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  padding: 1.5rem;
  color: var(--paper);
  background: var(--ink);
  opacity: 0;
  transform: translateX(-100%);
  transition: visibility 0s .5s, opacity .3s ease, transform .5s cubic-bezier(.76,0,.24,1);
}
.menu-drawer.is-open {
  visibility: visible;
  opacity: 1;
  transform: none;
  transition-delay: 0s;
}
.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(243, 240, 233, .2);
}
.drawer-top .brand { margin: 0; }
.drawer-top .brand-mark { filter: brightness(0) invert(1); }
.close-button {
  position: relative;
  width: 2rem;
  height: 2rem;
}
.close-button i {
  position: absolute;
  top: 50%;
  left: 15%;
  width: 70%;
  height: 1px;
  background: currentColor;
  transform: rotate(45deg);
}
.close-button i:last-child { transform: rotate(-45deg); }
.mobile-links {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
}
.mobile-link {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: .25rem 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 14vw, 5.5rem);
  line-height: .95;
}
.mobile-link span { color: var(--gold-light); }
.drawer-bottom {
  display: flex;
  justify-content: space-between;
  color: var(--stone);
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
}
.hero--home { aspect-ratio: 1672 / 941; min-height: min(720px, 86vh); }
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 7, 5, .48), transparent 28%, rgba(8, 7, 5, .42));
  content: "";
  pointer-events: none;
}
.hero-action {
  position: absolute;
  z-index: 2;
  bottom: 2rem;
  left: var(--gutter);
  color: #fff;
}
.hero-meta {
  position: absolute;
  z-index: 2;
  right: var(--gutter);
  bottom: 2rem;
  color: #fff;
  font-family: var(--serif);
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero-meta p { margin: 0; }
.scroll-mark {
  position: absolute;
  z-index: 2;
  bottom: 1.8rem;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
  color: #fff;
  font-size: .5rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  transform: translateX(-50%);
}
.scroll-mark i {
  width: 1px;
  height: 38px;
  background: currentColor;
  animation: scroll-pulse 1.8s ease-in-out infinite;
}

.page-hero {
  display: grid;
  min-height: min(72vh, 800px);
  padding: 11rem var(--gutter) 6rem;
  color: var(--paper);
  background: var(--ink);
}
.page-hero .section-kicker { color: var(--gold-light); }
.page-hero--split {
  grid-template-columns: 1.05fr .95fr;
  gap: 5vw;
  align-items: end;
}
.page-hero--image {
  position: relative;
  min-height: 72vh;
  overflow: hidden;
}
.page-hero--image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 7, 5, .1), rgba(8, 7, 5, .5));
  content: "";
}
.page-hero--image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-copy { max-width: 760px; }
.page-hero h1 {
  margin: 1rem 0 1.5rem;
  font-family: var(--serif);
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .78;
}
.page-hero h1 em { font-weight: 300; }
.page-hero p:not(.section-kicker) {
  max-width: 460px;
  color: #bdb5a8;
  font-size: 1rem;
}
.page-hero--split .page-hero-side {
  align-self: center;
  max-width: 380px;
  color: #bdb5a8;
}
.page-hero--brand {
  position: relative;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  min-height: min(78vh, 860px);
  align-items: center;
  overflow: hidden;
}
.page-hero--brand::before {
  display: none;
}
.page-hero--story { background: #1d1b18; }
.page-hero--showcase { background: #171614; }
.brand-hero-art {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 650px);
  min-height: 420px;
  place-items: center;
  justify-self: end;
  color: var(--gold-light);
  border: 1px solid rgba(208, 183, 131, .38);
  background: transparent;
}
.story-hero-art { background: transparent; }
.brand-hero-art::before, .brand-hero-art::after {
  position: absolute;
  width: 22px;
  height: 22px;
  border-color: var(--gold-light);
  content: "";
}
.brand-hero-art::before { top: -1px; left: -1px; border-top: 1px solid; border-left: 1px solid; }
.brand-hero-art::after { right: -1px; bottom: -1px; border-right: 1px solid; border-bottom: 1px solid; }
.brand-hero-label {
  position: absolute;
  top: 1.25rem;
  left: 1.5rem;
  color: #9f927c;
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.brand-hero-art > p {
  position: absolute;
  bottom: 1.25rem;
  left: 1.5rem;
  margin: 0;
  color: #9f927c;
  font-size: .58rem;
  letter-spacing: .25em;
}
.story-hero-seal {
  display: grid;
  width: 9rem;
  height: 9rem;
  place-items: center;
  border: 1px solid var(--gold-light);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: var(--korean);
  font-size: 5.5rem;
  line-height: 1;
}
.story-hero-triangle {
  position: relative;
  width: 16rem;
  height: 13.856rem;
}
.story-hero-triangle svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.story-hero-triangle polygon {
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}
.story-hero-triangle span {
  position: absolute;
  z-index: 1;
  isolation: isolate;
  top: 56%;
  left: 50%;
  color: var(--gold-light);
  font-family: var(--korean);
  font-size: 5rem;
  line-height: 1;
  transform: translate(-50%, -50%);
}
.story-hero-triangle span::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 15rem;
  height: 15rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181, 150, 97, .22) 0, rgba(181, 150, 97, .1) 28%, transparent 68%);
  content: "";
  transform: translate(-50%, -50%);
}
.showcase-hero-mark {
  position: relative;
  isolation: isolate;
  display: grid;
  width: 12rem;
  height: 12rem;
  place-items: center;
  border: 1px solid rgba(208, 183, 131, .7);
  border-radius: 50%;
  color: var(--gold-light);
  font-family: var(--korean);
  font-size: 7rem;
  line-height: 1;
}
.showcase-hero-mark::before {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(181, 150, 97, .22) 0, rgba(181, 150, 97, .1) 28%, transparent 68%);
  content: "";
  transform: translate(-50%, -50%);
}
.page-hero-side .seal {
  margin-bottom: 2rem;
  color: rgba(181, 150, 97, .6);
  font-family: var(--korean);
  font-size: 8rem;
  line-height: 1;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 10rem) var(--gutter);
}
.section--dark { max-width: none; color: var(--paper); background: var(--ink-soft); }
.section--paper-deep { max-width: none; background: var(--paper-deep); }
.section-header {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(3rem, 7vw, 6rem);
}
.section-kicker { margin: 0 0 1.25rem; color: var(--stone); }
.section--dark .section-kicker { color: var(--gold-light); }
.section-title, .manifesto-title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 6.5vw, 7rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .88;
}
.section-title em, .manifesto-title em { font-weight: 300; }
.section-intro {
  max-width: 390px;
  margin: 0;
  color: #5e584f;
}
.section--dark .section-intro { color: #bdb5a8; }
.manifesto-grid {
  display: grid;
  grid-template-columns: 1.4fr .7fr;
  gap: 8vw;
  align-items: end;
}
.manifesto-title { font-size: clamp(3.5rem, 8vw, 8.5rem); }
.manifesto-copy { max-width: 410px; }
.manifesto-mark {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 2rem;
  color: var(--gold);
  font-size: .55rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.manifesto-mark img { width: 2.1rem; height: 2.8rem; object-fit: contain; filter: brightness(0); }
.manifesto-copy p:first-child {
  margin-top: 0;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
  line-height: 1.2;
}
.manifesto-copy p:nth-child(2) { color: #5e584f; }

.pillar-grid, .look-grid, .story-grid, .military-grid, .detail-grid {
  display: grid;
  gap: clamp(1rem, 2.5vw, 2.5rem);
}
.pillar-grid { grid-template-columns: repeat(3, 1fr); }
.pillar { border-top: 1px solid var(--line); }
.pillar-image { height: 35vw; max-height: 540px; overflow: hidden; background: var(--paper-deep); }
.pillar-image img { width: 220%; max-width: none; height: 100%; object-fit: contain; object-position: left top; transition: transform .8s cubic-bezier(.22,1,.36,1); }
.pillar:nth-child(2) .pillar-image img { width: 230%; }
.pillar:hover .pillar-image img { transform: scale(1.025); }
.pillar-body { display: grid; grid-template-columns: auto 1fr auto; gap: 1.25rem; align-items: center; padding: 1.1rem 0; }
.pillar-number { color: var(--gold); font-size: .6rem; letter-spacing: .16em; }
.pillar h3 { margin: 0; font-family: var(--serif); font-size: 1.8rem; font-weight: 400; line-height: 1; }
.pillar p { grid-column: 2; margin: 0; color: #6d665d; font-size: .72rem; }
.pillar-arrow { font-size: 1.2rem; }

.feature-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(2rem, 7vw, 8rem);
  align-items: center;
}
.feature-image { overflow: hidden; background: #2a2823; }
.feature-image img { height: min(72vw, 850px); object-fit: contain; object-position: left top; }
.feature-copy { max-width: 420px; }
.feature-copy h2 { margin: 1rem 0 1.5rem; font-family: var(--serif); font-size: clamp(3rem, 6vw, 6rem); font-weight: 400; letter-spacing: -.04em; line-height: .85; }
.feature-copy p { color: #bdb5a8; }
.feature-copy .korean { color: var(--gold-light); font-family: var(--korean); font-size: 3.5rem; }

.section-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem var(--gutter);
  font-size: .52rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.section-divider i {
  flex: 1;
  height: 1px;
  background: currentColor;
  opacity: .3;
}
.section-divider--paper { color: var(--gold); background: var(--paper); }
.section-divider--dark { color: var(--gold-light); background: var(--ink-soft); }
.divider-knot {
  display: inline-grid;
  width: 2.1rem;
  height: 2.1rem;
  place-items: center;
  border: 1px solid currentColor;
  color: currentColor;
  font-family: var(--korean);
  font-size: .85rem;
  letter-spacing: 0;
  transform: rotate(45deg);
}
.divider-knot b { font-weight: 400; transform: rotate(-45deg); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1.5rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid currentColor;
  font-size: .62rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.text-link span { transition: transform .25s ease; }
.text-link:hover span, .text-link:focus-visible span { transform: translate(4px, 4px); }
.text-link--gold { color: var(--gold-light); }
.text-link--light { color: #fff; }
.icon-arrow {
  position: relative;
  display: inline-block !important;
  font-size: 0 !important;
  line-height: 0 !important;
  width: 1.1rem;
  height: .8rem;
  flex: 0 0 1.1rem;
  vertical-align: middle;
  color: currentColor;
}
.icon-arrow::before {
  position: absolute;
  top: 50%;
  left: .05rem;
  width: .78rem;
  border-top: 1px solid currentColor;
  content: "";
  transform: translateY(-50%);
}
.icon-arrow::after {
  position: absolute;
  top: .08rem;
  right: .03rem;
  width: .48rem;
  height: .48rem;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  transform: rotate(45deg);
}
.icon-arrow--down-right { transform: rotate(45deg); }
.icon-arrow--right { transform: none; }
.icon-arrow--up { transform: rotate(-90deg); }
.text-link:hover .icon-arrow, .text-link:focus-visible .icon-arrow { transform: translate(4px, 4px); }
.text-link:hover .icon-arrow--down-right, .text-link:focus-visible .icon-arrow--down-right { transform: translate(4px, 4px) rotate(45deg); }
.footer-bottom .icon-arrow { margin-left: .25rem; width: .8rem; height: .65rem; }
.look-caption button .icon-arrow { margin-left: .25rem; transform: scale(.75); }
.form-line > .icon-arrow { align-self: center; border: 0; }
.icon-arrow::first-letter { font-size: 0; }

.house-codes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(243, 240, 233, .2);
}
.code-item { padding: 2rem 1.25rem 0 0; border-right: 1px solid rgba(243, 240, 233, .2); }
.code-item:not(:first-child) { padding-left: 1.5rem; }
.code-item:last-child { border-right: 0; }
.code-item dt { color: var(--gold-light); font-family: var(--korean); font-size: 2rem; }
.code-item dd { margin: 1rem 0 0; color: #bdb5a8; font-size: .75rem; }
.code-item strong { display: block; margin-bottom: .35rem; color: var(--paper); font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }

.email-panel {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 6vw;
  align-items: end;
}
.email-panel h2 { margin: 0; font-family: var(--serif); font-size: clamp(3rem, 6vw, 6rem); font-weight: 400; letter-spacing: -.04em; line-height: .87; }
.email-panel p { max-width: 360px; color: #5e584f; }
.newsletter-form, .contact-form { display: grid; gap: 1rem; }
.form-line { display: grid; grid-template-columns: 1fr auto; gap: 1rem; border-bottom: 1px solid var(--ink); }
.newsletter-form input, .contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  padding: .85rem 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  border-bottom: 1px solid var(--line);
}
.form-line input { border-bottom: 0; }
.form-line button { font-size: 1.25rem; }
.form-note { min-height: 1.5em; margin: 0; color: var(--stone); font-size: .68rem; }
.form-note.is-success { color: #52614b; }
.form-note.is-error { color: #8a211b; }

.gallery-intro { max-width: 730px; }
.gallery-intro h1 { margin: 1rem 0 1.5rem; font-family: var(--serif); font-size: clamp(4rem, 9vw, 9rem); font-weight: 400; letter-spacing: -.05em; line-height: .78; }
.filter-bar { display: flex; flex-wrap: wrap; gap: .65rem; margin-bottom: 3.5rem; }
.filter-button { padding: .65rem .9rem; border: 1px solid var(--line); font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; transition: color .25s ease, background .25s ease; }
.filter-button.is-active, .filter-button:hover, .filter-button:focus-visible { color: var(--paper); background: var(--ink); }
.look-grid { grid-template-columns: repeat(3, 1fr); }
.look-card { margin: 0; }
.look-card.is-hidden { display: none; }
.look-frame { position: relative; height: min(55vw, 680px); overflow: hidden; background: var(--paper-deep); }
.look-frame img { width: 220%; max-width: none; height: 100%; object-fit: contain; object-position: left top; transition: transform .8s cubic-bezier(.22,1,.36,1); }
.look-card:nth-child(2) .look-frame img, .look-card:nth-child(6) .look-frame img { width: 230%; }
.look-card:nth-child(3) .look-frame img { width: 215%; }
.look-card:nth-child(4) .look-frame img { width: 218%; object-position: 20% top; }
.look-card:hover .look-frame img { transform: scale(1.025); }
.look-caption { display: grid; grid-template-columns: 1fr auto; gap: 1rem; padding: 1rem 0; border-top: 1px solid var(--line); }
.look-caption small { display: block; margin-bottom: .2rem; color: var(--stone); font-size: .55rem; letter-spacing: .16em; text-transform: uppercase; }
.look-caption h3 { margin: 0; font-family: var(--serif); font-size: 1.55rem; font-weight: 400; line-height: 1; }
.look-caption button { font-size: .62rem; font-weight: 400; letter-spacing: .15em; text-transform: uppercase; }

.story-grid { grid-template-columns: 1fr 1fr; align-items: center; }
.story-image { overflow: hidden; background: var(--paper-deep); }
.story-image img { height: min(68vw, 800px); object-fit: contain; }
.story-copy { max-width: 440px; }
.story-copy h2 { margin: 1rem 0 1.5rem; font-family: var(--serif); font-size: clamp(3.2rem, 6vw, 6rem); font-weight: 400; letter-spacing: -.04em; line-height: .85; }
.story-copy p { color: #5e584f; }
.story-copy .korean { color: var(--gold); font-family: var(--korean); font-size: 4rem; }
.principles { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 5rem; border-top: 1px solid var(--line); }
.principle { padding: 1.5rem 1.25rem 0 0; border-right: 1px solid var(--line); }
.principle:not(:first-child) { padding-left: 1.5rem; }
.principle:last-child { border-right: 0; }
.principle span { color: var(--gold); font-family: var(--korean); font-size: 1.7rem; }
.principle h3 { margin: .75rem 0 .5rem; font-family: var(--serif); font-size: 1.6rem; font-weight: 400; }
.principle p { margin: 0; color: #6d665d; font-size: .75rem; }
.story-board { background: var(--ink); }
.story-board img { width: min(100%, 980px); margin: auto; }
.name-symbol {
  position: relative;
  display: grid;
  min-height: 530px;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(208, 183, 131, .35);
  background: radial-gradient(circle at center, rgba(181, 150, 97, .1), transparent 38%), #171614;
}
.name-symbol::before, .name-symbol::after {
  position: absolute;
  width: 26px;
  height: 26px;
  border-color: var(--gold-light);
  content: "";
}
.name-symbol::before { top: 1.25rem; left: 1.25rem; border-top: 1px solid; border-left: 1px solid; }
.name-symbol::after { right: 1.25rem; bottom: 1.25rem; border-right: 1px solid; border-bottom: 1px solid; }
.name-symbol-index {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  color: #9f927c;
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.name-symbol-orbit {
  position: absolute;
  width: 18rem;
  height: 18rem;
  border: 1px solid rgba(208, 183, 131, .32);
  border-radius: 50%;
}
.name-symbol-orbit::before, .name-symbol-orbit::after {
  position: absolute;
  width: 9px;
  height: 9px;
  border: 1px solid var(--gold-light);
  background: var(--ink-soft);
  content: "";
  transform: rotate(45deg);
}
.name-symbol-orbit::before { top: 50%; left: -5px; }
.name-symbol-orbit::after { top: 50%; right: -5px; }
.name-symbol > img { width: 8rem; height: 11rem; object-fit: contain; filter: none; }
.name-symbol-seal {
  position: absolute;
  top: calc(50% - 6rem);
  left: calc(50% + 4.8rem);
  display: grid;
  width: 2.5rem;
  height: 3.5rem;
  place-items: center;
  border: 1px solid #b98d6f;
  color: #b98d6f;
  font-family: var(--korean);
  font-size: 1.5rem;
}
.name-symbol > p {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  margin: 0;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 1.4rem;
  letter-spacing: .25em;
  line-height: 1.1;
}
.name-symbol > p small { font-family: var(--sans); font-size: .48rem; letter-spacing: .2em; }

.military-page { color: var(--paper); background: var(--ink); }
.military-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr);
  min-height: 86vh;
  color: var(--paper);
  background: #1e211c;
}
.military-hero-media {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
  background: #171914;
}
.military-hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 65%, rgba(9, 10, 8, .45)), linear-gradient(0deg, rgba(9, 10, 8, .4), transparent 45%);
  content: "";
}
.military-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.military-hero-index {
  position: absolute;
  z-index: 2;
  top: 7.2rem;
  left: var(--gutter);
  color: var(--gold-light);
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.military-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem var(--gutter) 5rem clamp(2rem, 5vw, 6rem);
  background: var(--ink);
}
.military-hero h1 { margin: 1rem 0; font-family: var(--serif); font-size: clamp(4rem, 9vw, 9rem); font-weight: 400; letter-spacing: -.05em; line-height: .78; }
.military-hero p:not(.section-kicker) { max-width: 430px; color: #c3bdaf; }
.military-hero-copy .text-link { align-self: flex-start; }
.disclaimer {
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(208, 183, 131, .42);
  color: #c8bfaf;
  font-size: .75rem;
}
.military-section { max-width: var(--max); margin: auto; padding: clamp(5rem, 10vw, 10rem) var(--gutter); }
.military-section--light { color: var(--ink); background: var(--paper); }
.military-section--light .section-kicker { color: var(--gold); }
.military-grid { grid-template-columns: repeat(2, 1fr); }
.military-card { margin: 0; }
.military-card img { height: min(72vw, 760px); object-fit: contain; background: #292b25; }
.military-caption { padding: 1rem 0; border-top: 1px solid rgba(243, 240, 233, .2); }
.military-section--light .military-caption { border-color: var(--line); }
.military-caption h3 { margin: 0; font-family: var(--serif); font-size: 2rem; font-weight: 400; }
.military-caption p { margin: .35rem 0 0; color: #aaa294; font-size: .73rem; }
.military-section--light .military-caption p { color: #6d665d; }
.military-single { display: grid; grid-template-columns: 1.15fr .85fr; gap: 6vw; align-items: center; }
.military-single img { width: 100%; max-height: 850px; object-fit: contain; background: #22231f; }
.military-single-copy { max-width: 430px; }
.military-single-copy h2 { margin: 1rem 0 1.5rem; font-family: var(--serif); font-size: clamp(3rem, 6vw, 6rem); font-weight: 400; letter-spacing: -.04em; line-height: .84; }
.military-single-copy p { color: #bdb5a8; }
.military-editorial {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 8vw;
  align-items: center;
}
.military-editorial-copy { max-width: 480px; }
.military-editorial-copy > p:not(.section-kicker) { color: #6d665d; }
.military-editorial-image { max-width: 760px; justify-self: end; }
.military-editorial-image img { width: 100%; max-height: 860px; object-fit: contain; background: #25231f; }
.military-editorial-image p { margin: .8rem 0 0; color: #6d665d; font-size: .68rem; }
.military-vocabulary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 3rem;
  border-top: 1px solid rgba(243, 240, 233, .2);
}
.military-vocabulary article {
  min-height: 240px;
  padding: 1.5rem 1.5rem 0 0;
  border-right: 1px solid rgba(243, 240, 233, .2);
}
.military-vocabulary article:not(:first-child) { padding-left: 1.5rem; }
.military-vocabulary article:last-child { border-right: 0; }
.military-vocabulary span { color: var(--gold-light); font-family: var(--korean); font-size: .92rem; }
.military-vocabulary h3 { margin: 2rem 0 .7rem; font-family: var(--serif); font-size: 1.7rem; font-weight: 400; line-height: 1; }
.military-vocabulary p { margin: 0; color: #bdb5a8; font-size: .73rem; }
.military-conclusion { max-width: 740px; }
.military-conclusion p:not(.section-kicker) { max-width: 520px; color: #6d665d; }
.military-section--archive { background: #1a1916; }
.military-archive {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
}
.military-archive-card { margin: 0; }
.military-archive-card--wide { grid-column: span 2; display: grid; grid-template-columns: 1.4fr .6fr; gap: 2rem; align-items: end; }
.military-archive-image { overflow: hidden; background: #24251f; }
.military-archive-image img { width: 100%; height: min(48vw, 620px); object-fit: contain; }
.military-archive-card--wide .military-archive-image img { height: min(48vw, 680px); }
.military-archive-card figcaption { padding-top: 1rem; border-top: 1px solid rgba(243, 240, 233, .2); }
.military-archive-card figcaption span { color: var(--gold-light); font-size: .58rem; letter-spacing: .17em; text-transform: uppercase; }
.military-archive-card h3 { margin: .75rem 0 .35rem; color: var(--paper); font-family: var(--serif); font-size: 1.8rem; font-weight: 400; line-height: 1; }
.military-archive-card p { margin: 0; color: #bdb5a8; font-size: .73rem; }

.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; }
.contact-layout h1 { margin: 1rem 0 1.5rem; font-family: var(--serif); font-size: clamp(4rem, 8vw, 8rem); font-weight: 400; letter-spacing: -.05em; line-height: .78; }
.contact-layout > div > p:not(.section-kicker) { max-width: 360px; color: #bdb5a8; }
.contact-aside { margin-top: 4rem; padding-top: 1.5rem; border-top: 1px solid rgba(243, 240, 233, .2); }
.contact-aside p { display: flex; justify-content: space-between; gap: 1rem; margin: 0; padding: .9rem 0; border-bottom: 1px solid rgba(243, 240, 233, .2); color: #bdb5a8; font-size: .72rem; }
.contact-aside span { color: var(--paper); font-size: .56rem; letter-spacing: .15em; text-transform: uppercase; }
.contact-form { padding: 2rem; color: var(--ink); background: var(--paper); }
.contact-form label { display: grid; gap: .35rem; color: #5e584f; font-size: .6rem; font-weight: 400; letter-spacing: .14em; text-transform: uppercase; }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form button { justify-self: start; padding: 1rem 1.4rem; color: var(--paper); background: var(--ink); font-size: .6rem; letter-spacing: .17em; text-transform: uppercase; }
.contact-page { color: var(--paper); background: var(--ink); }
.contact-hero {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: min(84vh, 900px);
  padding: 10rem var(--gutter) 5rem;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
  background: var(--ink);
}
.contact-hero-copy { max-width: 520px; }
.contact-hero-copy h1 { margin: 1rem 0 1.5rem; font-family: var(--serif); font-size: clamp(4rem, 8vw, 8rem); font-weight: 400; letter-spacing: -.05em; line-height: .78; }
.contact-hero-copy h1 em { font-weight: 300; }
.contact-hero-copy > p:not(.section-kicker) { max-width: 390px; color: #bdb5a8; }
.contact-hero-image { position: relative; min-height: min(67vh, 720px); overflow: hidden; background: #292722; }
.contact-hero-image::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(9, 8, 6, .5), transparent 38%), linear-gradient(0deg, rgba(9, 8, 6, .5), transparent 42%); content: ""; }
.contact-hero-image > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; }
.contact-hero-image > span { position: absolute; z-index: 2; top: 1.25rem; left: 1.5rem; color: var(--gold-light); font-size: .56rem; letter-spacing: .18em; text-transform: uppercase; }
.contact-embroidery { position: absolute; z-index: 2; right: 2rem; bottom: 2rem; display: flex; gap: .7rem; }
.contact-embroidery i { display: block; width: .7rem; height: 2rem; border: 1px solid var(--gold-light); border-radius: 60% 40% 60% 40%; transform: rotate(35deg); }
.contact-inquiry {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 9vw;
  padding: clamp(5rem, 10vw, 10rem) var(--gutter);
  color: var(--ink);
  background: var(--paper);
}
.contact-inquiry-intro { max-width: 470px; }
.contact-inquiry-intro h2 { margin: 1rem 0 1.5rem; font-family: var(--serif); font-size: clamp(3.5rem, 7vw, 7rem); font-weight: 400; letter-spacing: -.05em; line-height: .8; }
.contact-inquiry-intro h2 em { font-weight: 300; }
.contact-inquiry-intro > p:not(.section-kicker) { max-width: 400px; color: #5e584f; }
.contact-routes { margin-top: 3rem; border-top: 1px solid var(--line); }
.contact-routes > div { padding: 1rem 0; border-bottom: 1px solid var(--line); }
.contact-routes span { display: block; color: var(--gold); font-size: .56rem; letter-spacing: .16em; text-transform: uppercase; }
.contact-routes strong { display: block; margin: .35rem 0; font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }
.contact-routes p { margin: 0; color: #6d665d; font-size: .72rem; }
.contact-form--light { align-self: start; padding: clamp(1.5rem, 4vw, 3rem); border: 1px solid var(--line); color: var(--ink); background: #e8e3da; }
.contact-form--light label { color: #4a453d; }
.contact-form--light input, .contact-form--light select, .contact-form--light textarea { color: var(--ink); border-color: rgba(21, 20, 17, .35); }
.contact-form--light input::placeholder, .contact-form--light textarea::placeholder { color: #71695e; }
.contact-form--light button { color: var(--paper); background: var(--ink); }

.footer {
  padding: 3rem var(--gutter) 1.25rem;
  color: var(--paper);
  background: var(--ink);
}
.footer-top { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: center; min-height: 190px; justify-items: center; }
.footer-lockup { width: 100%; max-width: 360px; margin-inline: auto; justify-self: center; text-align: center; }
.footer-lockup img { display: block; width: min(230px, 70vw); margin-inline: auto; }
.footer-lockup p { margin: .65rem 0 0; color: #9f978a; font-family: var(--serif); font-size: .9rem; line-height: 1.15; }
.footer-newsletter { width: min(420px, 100%); justify-self: center; }
.footer-newsletter label { display: block; margin-bottom: .8rem; font-family: var(--serif); font-size: 1.2rem; text-align: center; }
.footer-newsletter .form-line { border-color: rgba(243, 240, 233, .55); }
.footer-newsletter input { color: #fff; }
.footer-newsletter input::placeholder { color: #8d867c; }
.footer-newsletter button { color: #fff; }
.footer-newsletter .form-note { color: #8d867c; }
.footer-bottom { display: grid; grid-template-columns: 1fr 1fr auto; gap: 2rem; margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(243, 240, 233, .2); color: #8d867c; font-size: .56rem; letter-spacing: .15em; text-transform: uppercase; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 1.5rem; }

.modal {
  position: fixed;
  z-index: 400;
  inset: 0;
  display: grid;
  visibility: hidden;
  padding: var(--gutter);
  place-items: center;
  background: rgba(10, 9, 7, .86);
  opacity: 0;
  transition: visibility 0s .35s, opacity .3s ease;
}
.modal.is-open { visibility: visible; opacity: 1; transition-delay: 0s; }
.modal-card { display: grid; grid-template-columns: 1fr .75fr; width: min(1100px, 100%); max-height: 90vh; overflow: auto; color: var(--ink); background: var(--paper); transform: translateY(20px); transition: transform .35s ease; }
.modal.is-open .modal-card { transform: none; }
.modal-card img { height: 100%; min-height: 500px; object-fit: contain; background: var(--paper-deep); }
.modal-copy { position: relative; padding: clamp(1.5rem, 4vw, 3rem); }
.modal-close { position: absolute; top: 1rem; right: 1rem; }
.modal-copy h2 { margin: .75rem 0 1rem; font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 5rem); font-weight: 400; line-height: .85; }
.modal-copy p { color: #5e584f; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s cubic-bezier(.22,1,.36,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(.35); transform-origin: top; }
  50% { transform: scaleY(1); }
}

@media (max-width: 1060px) {
  .desktop-header { display: none; }
  .mobile-header { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; min-height: 76px; padding: 0 1.35rem; }
  .mobile-header .brand { grid-column: 2; }
  .mobile-header .brand-mark { width: 1.35rem; height: 1.8rem; }
  .mobile-header .brand-type strong { font-size: 1rem; }
  .mobile-header .brand-type small { font-size: .3rem; }
  .mobile-header .mobile-menu-button { grid-column: 1; grid-row: 1; }
  .mobile-header .mobile-link { grid-column: 3; grid-row: 1; justify-self: end; }
  .page-hero--split, .feature-grid, .story-grid, .military-single, .military-editorial, .contact-layout { grid-template-columns: 1fr; }
  .page-hero--brand { grid-template-columns: 1fr; min-height: auto; gap: 3rem; padding-top: 9rem; }
  .brand-hero-art { width: 100%; min-height: 380px; justify-self: stretch; }
  .feature-copy, .story-copy, .military-single-copy { max-width: 620px; }
  .feature-image img, .story-image img { max-height: 760px; }
  .contact-layout { gap: 4rem; }
  .contact-hero, .contact-inquiry { grid-template-columns: 1fr; }
  .contact-hero { min-height: auto; padding-top: 9rem; }
  .contact-hero-image { min-height: 68vh; }
  .contact-inquiry { gap: 4rem; }
  .military-hero { grid-template-columns: 1fr; }
  .military-hero-media { min-height: 62vh; }
  .military-hero-copy { min-height: 48vh; padding-top: 5rem; }
  .military-editorial-image { justify-self: start; }
  .military-vocabulary { grid-template-columns: repeat(2, 1fr); }
  .military-vocabulary article:nth-child(2) { border-right: 0; }
  .military-vocabulary article:nth-child(3), .military-vocabulary article:nth-child(4) { border-top: 1px solid rgba(243, 240, 233, .2); }
  .military-archive { grid-template-columns: 1fr; }
  .military-archive-card--wide { grid-column: auto; display: block; }
}

@media (max-width: 720px) {
  html, body { width: 100%; min-width: 0; }
  body { font-size: 13px; }
  .header-inner, .mobile-header { min-height: 68px; }
  .mobile-header { padding: 0 1rem; }
  .mobile-header .mobile-link span { font-size: .5rem; letter-spacing: .14em; }
  .brand { gap: .45rem; }
  .brand-type strong { font-size: 1.05rem; }
  .brand-type small { font-size: .3rem; letter-spacing: .3em; }
  .hero--home { min-height: 78svh; aspect-ratio: auto; }
  .hero--home img { object-fit: cover; object-position: 55% center; }
  .hero-action { bottom: 3.4rem; left: 1rem; }
  .hero-meta { right: 1rem; bottom: 1rem; font-size: .58rem; }
  .scroll-mark { display: none; }
  .page-hero, .page-hero--image { min-height: 68svh; padding: 8rem 1rem 3.5rem; }
  .page-hero--brand { padding: 7.5rem 1rem 3.5rem; }
  .page-hero--image { padding: 0; }
  .page-hero h1, .gallery-intro h1 { font-size: clamp(3.8rem, 18vw, 6rem); }
  .section { padding: 4.5rem 1rem; }
  .section-header, .manifesto-grid, .email-panel, .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .section-header { margin-bottom: 3rem; }
  .pillar-grid, .look-grid, .military-grid, .principles { grid-template-columns: 1fr; }
  .pillar-image { height: 112vw; max-height: 560px; }
  .look-frame { height: 118vw; max-height: 620px; }
  .pillar-body { grid-template-columns: auto 1fr auto; }
  .pillar p { grid-column: 2 / -1; }
  .house-codes, .headwear-grid { grid-template-columns: 1fr; }
  .code-item, .code-item:not(:first-child), .principle, .principle:not(:first-child) { padding: 1.5rem 0; border-right: 0; border-bottom: 1px solid rgba(243, 240, 233, .2); }
  .principle, .principle:not(:first-child) { border-color: var(--line); }
  .code-item:last-child, .principle:last-child { border-bottom: 0; }
  .feature-image img, .story-image img { height: 130vw; }
  .contact-hero { padding: 7.5rem 1rem 3.5rem; }
  .contact-hero-image { min-height: 115vw; }
  .contact-inquiry { padding: 4.5rem 1rem; }
  .contact-routes { margin-top: 2rem; }
  .section-divider { gap: .7rem; padding: .9rem 1rem; font-size: .42rem; }
  .divider-knot { width: 1.8rem; height: 1.8rem; font-size: .7rem; }
  .military-hero { min-height: 0; }
  .military-hero-media { min-height: 58svh; }
  .military-hero-index { top: 6rem; left: 1.35rem; }
  .military-hero-copy { min-height: 0; padding: 4rem 1.35rem 4.5rem; }
  .military-hero h1 { font-size: clamp(3.8rem, 18vw, 6rem); }
  .military-vocabulary { grid-template-columns: 1fr; }
  .military-vocabulary article, .military-vocabulary article:not(:first-child) { min-height: 0; padding: 1.5rem 0; border-right: 0; border-bottom: 1px solid rgba(243, 240, 233, .2); }
  .military-vocabulary article:last-child { border-bottom: 0; }
  .brand-hero-art { min-height: 300px; }
  .showcase-hero-mark { width: 9rem; height: 9rem; }
  .showcase-hero-mark { font-size: 5rem; }
  .showcase-hero-mark::before { width: 15rem; height: 15rem; }
  .story-hero-triangle { width: 12rem; height: 10.392rem; }
  .story-hero-triangle span { font-size: 3.8rem; }
  .story-hero-triangle span::before { width: 13rem; height: 13rem; }
  .name-symbol { min-height: 390px; }
  .name-symbol-orbit { width: 13rem; height: 13rem; }
  .name-symbol > img { width: 6rem; height: 8rem; }
  .name-symbol-seal { top: calc(50% - 4.5rem); left: calc(50% + 3.5rem); width: 2rem; height: 2.75rem; font-size: 1.15rem; }
  .military-archive-image img, .military-archive-card--wide .military-archive-image img { height: 115vw; max-height: 620px; }
  .footer { padding: 2.25rem 1rem 1rem; }
  .footer-top { gap: 2rem; }
  .footer-lockup { width: 100%; max-width: 300px; }
  .footer-lockup img { width: min(210px, 70vw); }
  .footer-lockup p { max-width: 240px; margin-right: auto; margin-left: auto; }
  .footer-newsletter label { font-size: 1.05rem; }
  .footer-bottom { grid-template-columns: 1fr auto; gap: 1rem; margin-top: 2.5rem; }
  .footer-bottom div { flex-wrap: wrap; gap: .8rem 1rem; }
  .footer-bottom div { grid-column: 1 / -1; grid-row: 1; }
  .modal { padding: .5rem; }
  .modal-card { grid-template-columns: 1fr; max-height: 94vh; }
  .modal-card img { min-height: 55vh; max-height: 65vh; }
  .modal-copy { padding: 1.25rem; }
}

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