:root {
  --st-ink: #171715;
  --st-ink-soft: #2A2926;
  --st-ivory: #F3EFE8;
  --st-paper: #FBF9F5;
  --st-silver: #C9CED3;
  --st-warm: #9A7869;
  --st-muted: #716D67;
  --st-line: #D8D3CB;
  --st-line-dark: #3E3C38;
  --st-white: #FFFFFF;
  --st-black: #000000;
  --st-clear: transparent;
  --st-overlay: rgba(15, 14, 12, 0.42);
  --st-overlay-deep: rgba(15, 14, 12, 0.68);
  --st-surface-glass: rgba(243, 239, 232, 0.12);
  --st-shadow: rgba(23, 23, 21, 0.16);
  --st-primary: var(--st-ink);
  --st-neutral: var(--st-ivory);
  --st-accent: var(--st-silver);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--st-ink);
  background: var(--st-paper);
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.st-nav-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: var(--st-clear);
}

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

img {
  display: block;
  width: 100%;
  height: auto;
}

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

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.st-shell {
  container: st-page / inline-size;
  min-width: 0;
  overflow: clip;
}

.st-container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}

.st-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--st-ivory);
  color: var(--st-ink);
  transform: translateY(-140%);
}

.st-skip-link:focus {
  transform: translateY(0);
}

.st-utility {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  background: var(--st-ink);
  color: var(--st-ivory);
  font-size: 12px;
  text-align: center;
}

.st-site-header {
  position: relative;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid var(--st-line);
  background: var(--st-paper);
  color: var(--st-ink);
}

.st-header-row {
  min-height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.st-wordmark {
  justify-self: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 29px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.st-primary-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
}

.st-primary-nav a {
  position: relative;
  padding-block: 8px;
  font-size: 13px;
  white-space: nowrap;
}

.st-primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.st-primary-nav a:hover::after,
.st-primary-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.st-header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 4px;
}

.st-icon-btn {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--st-clear);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  background: var(--st-clear);
  cursor: pointer;
}

.st-icon-btn:hover,
.st-icon-btn:focus-visible {
  border-color: currentColor;
}

.st-icon-btn svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
}

.st-menu-toggle {
  display: none;
}

.st-mobile-nav {
  position: fixed;
  z-index: 90;
  inset: 0;
  padding: 88px 24px 28px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  background: var(--st-ink);
  color: var(--st-ivory);
}

.st-mobile-nav[data-open="true"] {
  display: flex;
}

.st-mobile-nav-main {
  display: grid;
  gap: 10px;
}

.st-mobile-nav-main a {
  display: flex;
  min-height: 54px;
  align-items: center;
  border-bottom: 1px solid var(--st-line-dark);
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
}

.st-mobile-nav-meta {
  color: var(--st-silver);
  font-size: 13px;
}

.st-mobile-close {
  position: absolute;
  top: 24px;
  right: 20px;
  color: var(--st-ivory);
}

.st-btn {
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid var(--st-ink);
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--st-ink);
  color: var(--st-ivory);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.st-btn:hover,
.st-btn:focus-visible {
  background: var(--st-warm);
  color: var(--st-white);
  transform: translateY(-1px);
}

.st-btn--light {
  border-color: var(--st-ivory);
  background: var(--st-ivory);
  color: var(--st-ink);
}

.st-btn--ghost {
  background: var(--st-clear);
  color: var(--st-ink);
}

.st-btn--ghost-light {
  border-color: var(--st-ivory);
  background: var(--st-clear);
  color: var(--st-ivory);
}

.st-btn svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.6;
}

.st-kicker {
  margin-bottom: 16px;
  color: var(--st-warm);
  font-size: 12px;
  font-weight: 700;
}

.st-display {
  margin-bottom: 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: 66px;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

.st-section-title {
  margin-bottom: 18px;
  font-family: "Cormorant Garamond", serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.st-section-copy {
  max-width: 620px;
  margin-bottom: 28px;
  color: var(--st-muted);
  font-size: 17px;
  line-height: 1.8;
}

.st-section {
  padding-block: 112px;
}

.st-placeholder-note {
  margin-top: 10px;
  color: var(--st-muted);
  font-size: 12px;
}

.st-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--st-line);
  border-bottom: 1px solid var(--st-line);
}

.st-stat {
  min-height: 126px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--st-line);
}

.st-stat:last-child {
  border-right: 0;
}

.st-stat strong {
  margin-bottom: 4px;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}

.st-stat span {
  color: var(--st-muted);
  font-size: 13px;
}

.st-site-footer {
  padding-block: 42px;
  background: var(--st-ink);
  color: var(--st-ivory);
}

.st-footer-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: end;
  gap: 28px;
}

.st-footer-wordmark {
  margin-bottom: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
}

.st-footer-copy,
.st-footer-meta {
  margin: 0;
  color: var(--st-silver);
  font-size: 12px;
}

.st-footer-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  font-size: 13px;
}

.st-search-dialog {
  width: min(680px, calc(100% - 32px));
  padding: 0;
  border: 1px solid var(--st-line);
  border-radius: 6px;
  color: var(--st-ink);
  background: var(--st-paper);
  box-shadow: 0 24px 80px var(--st-shadow);
}

.st-search-dialog::backdrop {
  background: var(--st-overlay-deep);
}

.st-search-inner {
  container: st-search / inline-size;
  padding: 28px;
}

.st-search-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.st-search-top h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 30px;
}

.st-search-form {
  display: flex;
  gap: 8px;
}

.st-search-input {
  width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid var(--st-line);
  border-radius: 4px;
  color: var(--st-ink);
  background: var(--st-white);
  font-size: 16px;
}

.st-search-hint {
  margin: 14px 0 0;
  color: var(--st-muted);
  font-size: 12px;
}

@container st-search (max-width: 500px) {
  .st-search-form {
    flex-direction: column;
  }

  .st-search-form .st-btn {
    width: 100%;
  }
}

.st-toast {
  position: fixed;
  z-index: 120;
  right: 20px;
  bottom: 20px;
  max-width: min(360px, calc(100% - 40px));
  padding: 13px 16px;
  border-radius: 4px;
  background: var(--st-ink);
  color: var(--st-ivory);
  box-shadow: 0 14px 50px var(--st-shadow);
  font-size: 13px;
  transform: translateY(150%);
  transition: transform 220ms ease;
}

.st-toast[data-show="true"] {
  transform: translateY(0);
}

.st-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.st-reveal[data-visible="true"],
.st-ready .st-reveal {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--st-warm);
  outline-offset: 3px;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

@container st-page (max-width: 820px) {
  .st-header-row {
    min-height: 66px;
    grid-template-columns: 1fr auto 1fr;
    gap: 8px;
  }

  .st-primary-nav {
    display: none;
  }

  .st-menu-toggle {
    display: inline-flex;
    justify-self: start;
  }

  .st-header-actions .st-account-link {
    display: none;
  }

  .st-wordmark {
    font-size: 25px;
  }

  .st-display {
    font-size: 48px;
  }

  .st-section-title {
    font-size: 39px;
  }

  .st-section {
    padding-block: 80px;
  }

  .st-footer-row {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .st-footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@container st-page (max-width: 620px) {
  .st-utility {
    min-height: 30px;
    font-size: 11px;
  }

  .st-header-actions .st-cart-label {
    display: none;
  }

  .st-display {
    font-size: 42px;
  }

  .st-section-title {
    font-size: 36px;
  }

  .st-section-copy {
    font-size: 16px;
  }

  .st-section {
    padding-block: 66px;
  }

  .st-stat-row {
    grid-template-columns: 1fr;
  }

  .st-stat {
    min-height: 94px;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--st-line);
  }

  .st-stat:last-child {
    border-bottom: 0;
  }

  .st-search-form {
    flex-direction: column;
  }
}
