:root {
  --ink: #191713;
  --muted: #6d675f;
  --orange: #ff6a2b;
  --orange-soft: #ffe0cf;
  --cream: #f6f1e8;
  --paper: #fffdf8;
  --line: #d9d2c7;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--cream);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 8%, rgba(255, 106, 43, 0.1), transparent 25rem),
    var(--cream);
  color: var(--ink);
  font-family: Pretendard, "Pretendard Variable", -apple-system, BlinkMacSystemFont,
    "Segoe UI", "Noto Sans KR", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

::selection {
  background: var(--orange);
  color: white;
}

.site-shell {
  display: flex;
  flex-direction: column;
  width: min(100%, 1440px);
  min-height: 100vh;
  margin: 0 auto;
}

.site-header,
.site-footer,
main {
  width: min(100% - 48px, 1200px);
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  border-bottom: 1px solid var(--line);
}

.text-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.text-logo span {
  font-size: 1.35rem;
}

.text-logo small {
  color: var(--orange);
  font-size: 0.67rem;
  letter-spacing: 0.08em;
}

.site-header nav {
  display: flex;
  gap: 32px;
  font-size: 0.95rem;
  font-weight: 650;
}

.site-header nav a {
  position: relative;
  padding: 10px 0;
}

.site-header nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transition: transform 160ms ease;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.72fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: center;
  min-height: 670px;
  padding: 96px 0 104px;
}

.eyebrow,
.section-label {
  margin: 0;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.hero h1 {
  margin: 28px 0 32px;
  font-size: clamp(3.2rem, 6.5vw, 6.6rem);
  line-height: 0.99;
  letter-spacing: -0.075em;
  text-wrap: balance;
  word-break: keep-all;
}

.hero-description {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem);
  line-height: 1.8;
  word-break: keep-all;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-width: 184px;
  margin-top: 42px;
  padding: 15px 22px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 750;
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.primary-link:hover,
.primary-link:focus-visible {
  box-shadow: 5px 5px 0 var(--orange);
  transform: translate(-2px, -2px);
}

.wordmark-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  aspect-ratio: 0.8;
  padding: clamp(28px, 4vw, 48px);
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 44% 44% 30px 30px;
  background: var(--orange);
  box-shadow: 12px 12px 0 var(--ink);
}

.wordmark-bbul {
  font-size: clamp(3.2rem, 6vw, 6rem);
  font-weight: 950;
  line-height: 0.84;
  letter-spacing: -0.085em;
}

.wordmark-studio {
  margin-top: 12px;
  font-size: clamp(1.25rem, 2.4vw, 2.4rem);
  font-weight: 900;
  letter-spacing: 0.18em;
}

.wordmark-korean {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(25, 23, 19, 0.55);
  font-weight: 750;
}

.company-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 70px 0 80px;
  border-top: 1px solid var(--line);
}

.company-info h2 {
  margin: 18px 0 8px;
  font-size: clamp(1.65rem, 3vw, 2.4rem);
  letter-spacing: -0.04em;
}

.company-name-en,
.contact-block p:last-child {
  margin: 0;
  color: var(--muted);
}

.contact-block {
  justify-self: end;
  min-width: 280px;
}

.contact-block a {
  display: inline-block;
  margin: 18px 0 8px;
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  font-weight: 760;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.notice-page {
  flex: 1;
  padding: 100px 0 140px;
}

.notice-heading {
  max-width: 720px;
}

.notice-heading h1 {
  margin: 24px 0 22px;
  font-size: clamp(3.8rem, 8vw, 7.2rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
}

.notice-heading > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
  word-break: keep-all;
}

.notice-list {
  margin-top: 72px;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.52);
}

.notice-list-header {
  display: grid;
  grid-template-columns: 1fr 160px;
  padding: 18px 28px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.notice-list-header span:last-child {
  text-align: right;
}

.notice-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  padding: 56px 24px;
  text-align: center;
}

.empty-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 2px solid var(--ink);
  border-radius: 50% 50% 16px 16px;
  background: var(--orange-soft);
  font-size: 1.25rem;
  font-weight: 900;
}

.notice-empty h2 {
  margin: 24px 0 10px;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  letter-spacing: -0.035em;
}

.notice-empty p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  word-break: keep-all;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer p {
  margin: 0;
}

a:focus-visible {
  border-radius: 4px;
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 72px 0 92px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .wordmark-card {
    justify-self: center;
    width: min(100%, 420px);
  }

  .company-info {
    grid-template-columns: 1fr;
  }

  .contact-block {
    justify-self: stretch;
    min-width: 0;
  }
}

@media (max-width: 560px) {
  .site-header,
  .site-footer,
  main {
    width: min(100% - 32px, 1200px);
  }

  .site-header {
    min-height: 78px;
  }

  .site-header nav {
    gap: 18px;
    font-size: 0.88rem;
  }

  .text-logo small {
    display: none;
  }

  .hero {
    gap: 56px;
    padding-top: 58px;
  }

  .hero h1 {
    margin-top: 22px;
    font-size: clamp(2.95rem, 14vw, 4.4rem);
  }

  .hero-description {
    font-size: 1rem;
  }

  .wordmark-card {
    box-shadow: 8px 8px 0 var(--ink);
  }

  .company-info {
    padding: 56px 0 64px;
  }

  .notice-page {
    padding: 72px 0 100px;
  }

  .notice-list {
    margin-top: 52px;
  }

  .notice-list-header {
    grid-template-columns: 1fr auto;
    padding-inline: 18px;
  }

  .site-footer {
    flex-direction: column;
  }
}

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