:root {
  --ivory: #f7f1e7;
  --paper: #fffaf1;
  --sand: #dfcfba;
  --wood: #b58b62;
  --sage: #7d8a74;
  --clay: #9a6856;
  --ink: #2c2925;
  --muted: #776d63;
  --line: rgba(44, 41, 37, 0.16);
  --shadow: 0 22px 70px rgba(83, 62, 39, 0.14);
  font-family:
    Pretendard,
    -apple-system,
    BlinkMacSystemFont,
    "Apple SD Gothic Neo",
    "Noto Sans KR",
    "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  word-break: keep-all;
}

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

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--paper);
  text-shadow: 0 1px 16px rgba(30, 24, 18, 0.28);
}

.brand-mark {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  letter-spacing: 0;
}

.brand-mark span {
  font-family: "Noto Serif KR", "Nanum Myeongjo", serif;
  font-size: 21px;
  font-weight: 500;
}

.brand-mark small {
  font-size: 10px;
  font-weight: 600;
}

.site-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 92px 24px 58px;
  color: var(--paper);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20, 17, 14, 0.16), rgba(20, 17, 14, 0.34)),
    radial-gradient(circle at 50% 38%, rgba(255, 248, 235, 0.2), transparent 42%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  filter: saturate(0.9) contrast(0.96);
}

.hero-copy {
  width: min(100%, 560px);
  text-align: center;
  transform: translateY(1vh);
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--clay);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 250, 241, 0.82);
}

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

h1 {
  margin-bottom: 8px;
  font-family: "Noto Serif KR", "Nanum Myeongjo", serif;
  font-size: clamp(72px, 24vw, 162px);
  font-weight: 500;
  line-height: 0.98;
}

.hero-roman {
  margin-bottom: 34px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.38em;
}

.hero-line {
  margin: 0 auto;
  max-width: 390px;
  color: rgba(255, 250, 241, 0.9);
  font-size: clamp(15px, 4vw, 18px);
  font-weight: 400;
  line-height: 1.85;
}

.intro-band {
  padding: 34px 24px 36px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.intro-band p {
  max-width: 900px;
  margin: 0 auto;
  font-family: "Noto Serif KR", "Nanum Myeongjo", serif;
  font-size: clamp(21px, 6vw, 38px);
  font-weight: 400;
  line-height: 1.55;
  color: #342c24;
}

.section {
  padding: 78px 24px;
}

.section-grid {
  display: grid;
  gap: 34px;
  max-width: 1120px;
  margin: 0 auto;
}

.section-kicker {
  max-width: 1120px;
  margin: 0 auto 18px;
}

h2 {
  margin-bottom: 0;
  font-family: "Noto Serif KR", "Nanum Myeongjo", serif;
  font-size: clamp(34px, 9vw, 68px);
  font-weight: 400;
  line-height: 1.18;
}

.body-copy {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.body-copy p {
  margin-bottom: 20px;
}

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

.selection-section {
  background: #ebe0d1;
}

.selection-head {
  max-width: 1120px;
  margin: 0 auto 34px;
  display: grid;
  gap: 18px;
}

.selection-head p {
  margin: 0;
  color: #6e6258;
  font-size: 16px;
  line-height: 1.85;
}

.selection-layout {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.selection-image {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.selection-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.selection-list {
  display: grid;
  border-top: 1px solid rgba(44, 41, 37, 0.2);
}

.selection-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 8px 14px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(44, 41, 37, 0.2);
}

.selection-list span {
  color: var(--sage);
  font-size: 12px;
  font-weight: 700;
}

.selection-list h3 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.selection-list p {
  grid-column: 2;
  margin: 0;
  color: #6e6258;
  font-size: 14px;
  line-height: 1.75;
}

.mood-section {
  display: grid;
  background: var(--paper);
}

.mood-image img {
  height: min(78vh, 680px);
  object-fit: cover;
  object-position: center;
}

.mood-copy {
  padding: 64px 24px 72px;
}

.mood-copy .section-kicker {
  margin: 0 0 18px;
}

.mood-copy h2 {
  margin-bottom: 24px;
}

.mood-copy p:not(.section-kicker) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.mood-words {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.mood-words li {
  padding: 10px 13px;
  border: 1px solid rgba(44, 41, 37, 0.18);
  border-radius: 999px;
  color: #4d463f;
  font-size: 13px;
  background: rgba(247, 241, 231, 0.74);
}

.closing-section {
  padding: 82px 24px 90px;
  text-align: center;
  background: #e2d5c4;
}

.closing-roman {
  margin-bottom: 18px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.32em;
}

.closing-section h2 {
  max-width: 760px;
  margin: 0 auto 22px;
}

.closing-section p:not(.closing-roman) {
  max-width: 520px;
  margin: 0 auto;
  color: #675b51;
  font-size: 16px;
  line-height: 1.8;
}

.link-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.link-row a {
  min-width: 138px;
  padding: 14px 20px;
  border: 1px solid rgba(44, 41, 37, 0.34);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.link-row a:hover {
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-2px);
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 28px 24px 34px;
  background: #2c2925;
  color: rgba(255, 250, 241, 0.72);
  font-size: 12px;
}

.site-footer span:first-child {
  color: var(--paper);
  font-family: "Noto Serif KR", "Nanum Myeongjo", serif;
  font-size: 20px;
}

@media (min-width: 760px) {
  .site-nav {
    display: flex;
    gap: 24px;
    font-size: 12px;
    font-weight: 700;
  }

  .hero {
    min-height: 88svh;
    padding-inline: 56px;
  }

  .intro-band {
    padding: 48px 56px 54px;
  }

  .section {
    padding: 118px 56px;
  }

  .section-grid {
    grid-template-columns: minmax(260px, 0.85fr) minmax(360px, 1fr);
    align-items: start;
  }

  .body-copy,
  .selection-head p,
  .mood-copy p:not(.section-kicker),
  .closing-section p:not(.closing-roman) {
    font-size: 17px;
  }

  .selection-head {
    grid-template-columns: minmax(340px, 0.95fr) minmax(330px, 0.8fr);
    align-items: end;
    margin-bottom: 56px;
  }

  .selection-layout {
    grid-template-columns: minmax(300px, 0.92fr) minmax(360px, 1fr);
    align-items: center;
    gap: 58px;
  }

  .selection-image img {
    aspect-ratio: 5 / 6;
  }

  .selection-list article {
    grid-template-columns: 60px 1fr;
    padding: 30px 0;
  }

  .selection-list h3 {
    font-size: 24px;
  }

  .mood-section {
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    align-items: stretch;
  }

  .mood-image img {
    height: 100%;
    min-height: 720px;
  }

  .mood-copy {
    align-self: center;
    padding: 96px clamp(56px, 7vw, 110px);
  }

  .closing-section {
    padding: 126px 56px 132px;
  }

  .site-footer {
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    padding-inline: 56px;
  }
}

@media (min-width: 1180px) {
  .hero-media img {
    object-position: center 62%;
  }

  .selection-layout {
    gap: 78px;
  }
}

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