:root {
  --ink: #1d2621;
  --ink-soft: #354139;
  --forest: #3f594c;
  --forest-dark: #263a31;
  --moss: #80937f;
  --sage: #b4c0ad;
  --sand: #d9c9b5;
  --cream: #f4f0e8;
  --paper: #fffdf9;
  --line: rgba(29, 38, 33, 0.15);
  --white-line: rgba(255, 255, 255, 0.2);
  --shadow: 0 24px 70px rgba(38, 58, 49, 0.12);
  --shell: min(1180px, calc(100vw - 48px));
  --reading: min(760px, calc(100vw - 48px));
  --header-height: 90px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Pretendard, "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

h1,
h2,
h3,
h4 {
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.22;
}

::selection {
  color: var(--paper);
  background: var(--forest);
}

:focus-visible {
  outline: 3px solid var(--moss);
  outline-offset: 4px;
}

.site-shell {
  width: var(--shell);
  margin-inline: auto;
}

.narrow-shell {
  max-width: 780px;
}

.reading-shell {
  width: var(--reading);
  margin-inline: auto;
}

.centered {
  text-align: center;
}

.section-space {
  padding-block: clamp(88px, 11vw, 160px);
}

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

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-160%);
}

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

.eyebrow {
  margin-bottom: 22px;
  color: var(--forest);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid var(--forest);
  border-radius: 999px;
  color: #fff;
  background: var(--forest);
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 220ms var(--ease), color 220ms ease, background 220ms ease;
}

.button:hover {
  color: var(--forest);
  background: transparent;
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding-inline: 22px;
  font-size: 0.8rem;
}

.button-outline {
  color: var(--forest);
  background: transparent;
}

.button-outline:hover {
  color: #fff;
  background: var(--forest);
}

.button-light {
  border-color: var(--paper);
  color: var(--ink);
  background: var(--paper);
}

.button-light:hover {
  color: var(--paper);
  border-color: var(--paper);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding-block: 8px;
  border-bottom: 1px solid currentColor;
  color: var(--forest);
  font-size: 0.88rem;
  font-weight: 700;
}

.text-link span {
  transition: transform 220ms var(--ease);
}

.text-link:hover span {
  transform: translateX(5px);
}

.text-link-light {
  color: var(--cream);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: height 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
body:not(.home) .site-header {
  height: 76px;
  border-color: var(--line);
  background: rgba(255, 253, 249, 0.94);
  box-shadow: 0 10px 34px rgba(29, 38, 33, 0.05);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.brand-mark::before,
.brand-mark span {
  position: absolute;
  width: 12px;
  height: 19px;
  border: 1px solid currentColor;
  border-radius: 100% 0 100% 0;
  content: "";
  transform: translate(-4px, -2px) rotate(-18deg);
}

.brand-mark span {
  transform: translate(4px, 2px) rotate(162deg);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 1.08rem;
  letter-spacing: -0.04em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.62rem;
  letter-spacing: 0.03em;
}

.brand-logo {
  width: auto;
  max-width: min(180px, 36vw);
  max-height: 48px;
  object-fit: contain;
}

.site-footer .brand-logo {
  max-height: 56px;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 46px);
}

.primary-navigation ul {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 44px);
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-navigation .menu-item {
  position: relative;
}

.primary-navigation .menu-item > a {
  display: block;
  padding-block: 10px;
  font-size: 0.86rem;
  font-weight: 650;
}

.primary-navigation .menu-item > a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.primary-navigation .menu-item > a:hover::after,
.primary-navigation .current-menu-item > a::after,
.primary-navigation .current-menu-parent > a::after,
.primary-navigation .current-menu-ancestor > a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.primary-navigation .menu-item-has-children > a {
  display: flex;
  align-items: center;
  gap: 7px;
}

.primary-navigation .menu-item-has-children > a::before {
  order: 2;
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
}

.primary-navigation .sub-menu {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  display: flex;
  visibility: hidden;
  min-width: 176px;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translate(-50%, 8px);
  transition: opacity 180ms ease, transform 180ms var(--ease), visibility 180ms;
}

.primary-navigation .menu-item:hover > .sub-menu,
.primary-navigation .menu-item:focus-within > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.primary-navigation .sub-menu .menu-item > a {
  padding: 9px 12px;
  white-space: nowrap;
}

.primary-navigation .sub-menu .menu-item > a::after {
  display: none;
}

.primary-navigation .sub-menu .menu-item > a:hover,
.primary-navigation .sub-menu .current-menu-item > a {
  color: var(--paper);
  background: var(--forest);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle > span:not(.screen-reader-text) {
  display: block;
  width: 24px;
  height: 1px;
  margin: 7px auto;
  background: var(--ink);
  transition: transform 200ms ease;
}

.submenu-toggle {
  display: none;
}

.hero-section {
  position: relative;
  min-height: min(930px, 100vh);
  overflow: hidden;
  padding-top: var(--header-height);
  background: linear-gradient(105deg, var(--cream) 0%, #f1ede3 58%, #e8e4da 100%);
}

.hero-section::before {
  position: absolute;
  top: -28%;
  left: -12%;
  width: 48vw;
  height: 48vw;
  border: 1px solid rgba(63, 89, 76, 0.12);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  display: grid;
  min-height: calc(min(930px, 100vh) - var(--header-height));
  align-items: center;
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
  gap: clamp(48px, 7vw, 110px);
  padding-block: 54px 72px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  max-width: 650px;
  margin-bottom: 30px;
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(3.2rem, 5.4vw, 6.2rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 1.06;
}

.hero-description {
  max-width: 520px;
  margin-bottom: 42px;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.3vw, 1.14rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 640px;
}

.hero-visual > img,
.hero-visual > .placeholder-art {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
}

.placeholder-art {
  position: relative;
  display: grid;
  overflow: hidden;
  place-items: center;
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(145deg, #718675 0%, #3b5548 50%, #24382f 100%);
}

.placeholder-art::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 22%, rgba(255, 255, 255, 0.22), transparent 26%), linear-gradient(120deg, transparent 50%, rgba(255, 255, 255, 0.06));
  content: "";
}

.placeholder-art p {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  letter-spacing: -0.04em;
  line-height: 0.88;
  text-align: center;
}

.art-orbit,
.art-leaf {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.art-orbit {
  width: 420px;
  height: 420px;
  border-radius: 50%;
}

.art-orbit-one {
  right: -170px;
  bottom: -80px;
}

.art-orbit-two {
  top: -220px;
  left: -160px;
  width: 520px;
  height: 520px;
}

.art-leaf {
  width: 100px;
  height: 190px;
  border-radius: 100% 0 100% 0;
}

.art-leaf-one {
  right: 10%;
  bottom: 21%;
  transform: rotate(22deg);
}

.art-leaf-two {
  right: 22%;
  bottom: 12%;
  transform: rotate(198deg);
}

.hero-note {
  position: absolute;
  right: -20px;
  bottom: 34px;
  display: flex;
  width: 260px;
  min-height: 112px;
  flex-direction: column;
  justify-content: center;
  padding: 22px 28px;
  color: var(--paper);
  background: var(--forest-dark);
  box-shadow: var(--shadow);
}

.hero-note span {
  font-size: 0.74rem;
  opacity: 0.72;
}

.hero-note strong {
  margin-top: 3px;
  font-size: 1.05rem;
  font-weight: 600;
}

.hero-scroll {
  position: absolute;
  bottom: 34px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  transform: rotate(-90deg);
  transform-origin: left center;
}

.hero-scroll span {
  display: block;
  width: 46px;
  height: 1px;
  background: currentColor;
}

.intro-section h2 {
  margin-bottom: 34px;
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(2.35rem, 4vw, 4.5rem);
  font-weight: 400;
}

.intro-section .narrow-shell > p:last-child {
  max-width: 680px;
  margin: 0 auto;
  color: #5f6862;
  font-size: 1.05rem;
}

.section-tint {
  background: var(--cream);
}

.section-dark {
  color: var(--paper);
  background: var(--forest-dark);
}

.section-heading {
  margin-bottom: clamp(46px, 7vw, 88px);
}

.split-heading {
  display: grid;
  align-items: end;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.section-heading h2 {
  margin: 0;
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(2.5rem, 4.5vw, 5rem);
  font-weight: 400;
}

.section-heading > p {
  max-width: 470px;
  margin: 0 0 8px auto;
  color: #6a736d;
}

.section-dark .section-heading > p,
.section-dark .eyebrow {
  color: var(--sage);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.8vw, 36px);
}

.service-card {
  min-width: 0;
}

.card-media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1.12;
  background: #dfe2d9;
}

.card-media img,
.placeholder-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease);
}

.service-card:hover .card-media img,
.service-card:hover .placeholder-card-image {
  transform: scale(1.035);
}

.placeholder-card-image {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(145deg, #cbd3c5, #81967f);
}

.placeholder-card-image::before,
.placeholder-card-image span {
  position: absolute;
  width: 52%;
  height: 86%;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 100% 0 100% 0;
  content: "";
}

.placeholder-card-image::before {
  right: 7%;
  bottom: -28%;
  transform: rotate(-22deg);
}

.placeholder-card-image span {
  top: -34%;
  left: 4%;
  transform: rotate(158deg);
}

.card-copy {
  position: relative;
  padding: 28px 50px 10px 0;
}

.card-number {
  display: block;
  margin-bottom: 18px;
  color: var(--moss);
  font-family: Georgia, serif;
  font-size: 0.78rem;
}

.card-copy h3 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.card-copy p {
  color: #667069;
  font-size: 0.9rem;
}

.card-arrow {
  position: absolute;
  top: 72px;
  right: 0;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--forest);
  transition: color 200ms ease, background 200ms ease;
}

.service-card:hover .card-arrow {
  color: #fff;
  background: var(--forest);
}

.section-action {
  margin-top: 58px;
  text-align: right;
}

.about-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(60px, 10vw, 150px);
}

.about-visual {
  position: relative;
}

.about-visual > img,
.placeholder-art-portrait {
  width: 100%;
  min-height: 680px;
  object-fit: cover;
}

.placeholder-art-portrait {
  background: linear-gradient(155deg, #cabba9, #84766b 56%, #554b45);
}

.placeholder-art-portrait p {
  font-size: clamp(2.3rem, 4vw, 4.5rem);
}

.vertical-caption {
  position: absolute;
  top: 0;
  right: -34px;
  color: var(--moss);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.about-copy h2 {
  max-width: 570px;
  margin-bottom: 32px;
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(2.5rem, 4vw, 4.8rem);
  font-weight: 400;
}

.about-copy > p:not(.eyebrow) {
  max-width: 570px;
  color: #646e67;
}

.about-values {
  margin-block: 44px;
  border-top: 1px solid var(--line);
}

.about-values > div {
  display: grid;
  padding-block: 16px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 54px 1fr;
}

.about-values dt {
  color: var(--moss);
  font-family: Georgia, serif;
  font-size: 0.78rem;
}

.about-values dd {
  margin: 0;
  font-weight: 600;
}

.column-list {
  border-top: 1px solid var(--white-line);
}

.column-row {
  display: grid;
  min-height: 174px;
  align-items: center;
  padding-block: 22px;
  border-bottom: 1px solid var(--white-line);
  grid-template-columns: 160px 130px minmax(0, 1fr) 52px;
  gap: 32px;
}

.column-media {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1.4;
  background: rgba(255, 255, 255, 0.08);
}

.column-media img,
.column-media .placeholder-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.column-row:hover .column-media img,
.column-row:hover .column-media .placeholder-card-image {
  transform: scale(1.04);
}

.column-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--sage);
  font-size: 0.75rem;
}

.column-title h3 {
  margin-bottom: 9px;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  transition: color 200ms ease;
}

.column-title p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

.column-row:hover .column-title h3 {
  color: var(--sand);
}

.circle-arrow {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--white-line);
  border-radius: 50%;
  transition: color 200ms ease, background 200ms ease, transform 200ms var(--ease);
}

.column-row:hover .circle-arrow {
  color: var(--forest-dark);
  background: var(--paper);
  transform: rotate(8deg);
}

.contact-section {
  background: var(--sand);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 10vw, 150px);
}

.contact-grid h2 {
  max-width: 520px;
  margin-bottom: 34px;
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(2.5rem, 4vw, 4.8rem);
  font-weight: 400;
}

.hours {
  margin-top: 26px;
  color: var(--ink-soft);
}

.contact-actions {
  border-top: 1px solid rgba(29, 38, 33, 0.24);
}

.contact-actions > a {
  display: grid;
  min-height: 112px;
  align-items: center;
  border-bottom: 1px solid rgba(29, 38, 33, 0.24);
  grid-template-columns: 110px 1fr 30px;
  transition: padding 220ms var(--ease);
}

.contact-actions > a:hover {
  padding-inline: 12px;
}

.contact-actions span {
  font-size: 0.76rem;
}

.contact-actions strong {
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
}

.contact-actions i {
  font-style: normal;
}

.page-hero {
  padding: calc(var(--header-height) + 80px) 0 84px;
}

.page-hero-soft {
  background: var(--cream);
}

.page-hero-inner {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.page-hero h1 {
  max-width: 820px;
  margin: 0 auto 24px;
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(2.35rem, 4vw, 4.75rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.15;
  overflow-wrap: break-word;
  text-wrap: balance;
  word-break: keep-all;
}

.page-hero-inner > p:last-child {
  max-width: 680px;
  margin: 0 auto;
  color: #667069;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.8;
}

.page-parent-link {
  display: inline-block;
  margin-bottom: 24px;
  color: #667069;
  font-size: 0.78rem;
  font-weight: 700;
}

.conditions-content {
  padding-bottom: 0;
}

.conditions-grid-section {
  padding-top: clamp(60px, 8vw, 110px);
}

.column-archive-hero {
  color: var(--paper);
  background: var(--forest-dark);
}

.column-archive-hero .eyebrow,
.column-archive-hero .page-hero-inner > p:last-child {
  color: var(--sage);
}

.archive-section {
  min-height: 50vh;
}

.taxonomy-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 46px;
}

.taxonomy-filter a {
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #69736d;
  font-size: 0.8rem;
}

.taxonomy-filter a:hover,
.taxonomy-filter .is-active {
  color: #fff;
  border-color: var(--forest);
  background: var(--forest);
}

.column-list-light {
  border-color: var(--line);
}

.column-list-light .column-row {
  border-color: var(--line);
}

.column-list-light .column-media {
  background: #e7e9e3;
}

.column-list-light .column-meta {
  color: var(--moss);
}

.column-list-light .column-title p {
  color: #707a74;
}

.column-list-light .circle-arrow {
  border-color: var(--line);
  color: var(--forest);
}

.column-list-light .column-row:hover .circle-arrow {
  color: #fff;
  background: var(--forest);
}

.pagination-wrap {
  margin-top: 64px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.page-numbers {
  display: grid;
  min-width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  font-size: 0.82rem;
}

.page-numbers.current,
.page-numbers:hover {
  color: #fff;
  background: var(--forest);
}

.detail-hero {
  padding: calc(var(--header-height) + 100px) 0 100px;
}

.detail-hero-grid {
  display: grid;
  align-items: end;
  grid-template-columns: 1fr auto;
  gap: 40px;
}

.detail-hero h1 {
  margin-bottom: 24px;
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(3rem, 6vw, 6.8rem);
  font-weight: 400;
}

.detail-hero p:last-child {
  max-width: 640px;
  color: var(--sage);
}

.detail-index {
  color: rgba(255, 255, 255, 0.13);
  font-family: Georgia, serif;
  font-size: clamp(7rem, 14vw, 13rem);
  line-height: 0.72;
}

.detail-featured {
  margin-top: 76px;
}

.detail-featured img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
}

.content-layout {
  display: grid;
  grid-template-columns: 190px minmax(0, 760px);
  gap: clamp(50px, 9vw, 130px);
}

.content-aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: #78827c;
  font-size: 0.76rem;
}

.content-aside span {
  color: var(--ink);
  font-weight: 700;
}

.prose {
  color: #424c46;
  font-size: clamp(1rem, 1.2vw, 1.08rem);
}

.prose > *:first-child {
  margin-top: 0;
}

.prose h2,
.prose h3,
.prose h4 {
  color: var(--ink);
}

.prose h2 {
  margin-top: 3.2em;
  margin-bottom: 1em;
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 400;
}

.prose h3 {
  margin-top: 2.4em;
  margin-bottom: 0.8em;
  font-size: 1.4rem;
}

.prose p,
.prose ul,
.prose ol,
.prose blockquote,
.prose figure,
.prose table {
  margin-bottom: 1.65em;
}

.prose a {
  color: var(--forest);
  border-bottom: 1px solid currentColor;
}

.prose blockquote {
  padding: 10px 0 10px 28px;
  margin-inline: 0;
  border-left: 3px solid var(--moss);
  color: var(--forest);
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: 1.25em;
}

.prose img {
  border-radius: 2px;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.prose th,
.prose td {
  padding: 12px;
  border: 1px solid var(--line);
  text-align: left;
}

.inline-cta {
  padding-block: 76px;
  color: var(--paper);
  background: var(--forest);
}

.inline-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.inline-cta .eyebrow {
  color: var(--sage);
}

.inline-cta h2 {
  margin: 0;
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  font-weight: 400;
}

.reading-header {
  padding: calc(var(--header-height) + 90px) 0 72px;
  background: var(--cream);
  text-align: center;
}

.reading-header .back-link {
  display: inline-block;
  margin-bottom: 56px;
  color: #6f7972;
  font-size: 0.78rem;
}

.reading-header h1 {
  margin-bottom: 34px;
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(2.6rem, 5vw, 5rem);
  font-weight: 400;
}

.reading-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 26px;
  color: #727b75;
  font-size: 0.76rem;
}

.reading-meta > * + *::before {
  margin-right: 26px;
  color: #aeb5af;
  content: "·";
}

.reading-featured {
  margin-top: 70px;
}

.reading-featured img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
}

.reading-body {
  padding-block: clamp(72px, 9vw, 126px);
}

.source-box,
.content-notice {
  padding: 28px 30px;
  margin-top: 64px;
  background: var(--cream);
  font-size: 0.84rem;
}

.source-box h2 {
  margin-bottom: 16px;
  font-size: 1rem;
}

.source-box p:last-child {
  margin-bottom: 0;
}

.source-list {
  display: grid;
  gap: 10px;
  padding-left: 1.2rem;
  margin: 0;
}

.source-list a {
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.content-notice {
  margin-top: 18px;
  color: #657069;
}

.author-box {
  display: grid;
  align-items: center;
  padding-top: 40px;
  margin-top: 72px;
  border-top: 1px solid var(--line);
  grid-template-columns: 96px 1fr;
  gap: 26px;
}

.author-avatar img {
  border-radius: 50%;
}

.author-box .eyebrow {
  margin-bottom: 8px;
}

.author-box h2 {
  margin-bottom: 8px;
  font-size: 1.35rem;
}

.author-box p:last-child {
  margin: 0;
  color: #6b746e;
  font-size: 0.88rem;
}

.edit-link {
  margin-top: 24px;
  font-size: 0.78rem;
  text-align: right;
}

.post-navigation-wrap {
  padding-bottom: 110px;
}

.post-navigation .nav-links {
  display: grid;
  align-items: stretch;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}

.post-navigation a {
  display: flex;
  min-height: 130px;
  flex-direction: column;
  justify-content: center;
  padding: 26px 34px;
  background: var(--paper);
}

.post-navigation .nav-next a {
  align-items: flex-end;
  text-align: right;
}

.post-navigation span span {
  margin-bottom: 7px;
  color: #7b857e;
  font-size: 0.7rem;
}

.location-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(56px, 9vw, 120px);
}

.map-placeholder {
  display: flex;
  min-height: 580px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px;
  color: #f6f1e9;
  background: linear-gradient(145deg, var(--moss), var(--forest));
  text-align: center;
}

.map-placeholder > span:not(.screen-reader-text) {
  margin-bottom: 18px;
  font-size: 3rem;
}

.map-placeholder p {
  max-width: 340px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.84rem;
}

.map-link {
  color: #f6f1e9;
  transition: filter 220ms var(--ease), transform 220ms var(--ease);
}

.map-link:hover {
  filter: brightness(1.08);
  transform: translateY(-4px);
}

.map-preview {
  position: relative;
  align-self: start;
  height: 580px;
  overflow: hidden;
  background: var(--cream);
}

.map-frame,
.map-canvas {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-frame {
  filter: saturate(0.72) contrast(0.94);
}

.map-open-link {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  padding-inline: 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 253, 249, 0.94);
  box-shadow: var(--shadow);
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.map-open-link:hover {
  color: var(--paper);
  background: var(--forest);
}

.author-role {
  color: var(--moss);
  font-size: 0.84rem;
  font-weight: 700;
}

.location-info h2 {
  margin-bottom: 40px;
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(2rem, 3.3vw, 3.5rem);
  font-weight: 400;
}

.location-info dl {
  margin-bottom: 48px;
  border-top: 1px solid var(--line);
}

.location-info dl > div {
  display: grid;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 100px 1fr;
}

.location-info dt {
  color: #768079;
  font-size: 0.78rem;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 36px;
  border: 1px solid var(--line);
  text-align: center;
}

.not-found-page {
  display: grid;
  min-height: 75vh;
  padding-top: var(--header-height);
  place-items: center;
  background: var(--cream);
}

.error-code {
  margin: 0;
  color: var(--moss);
  font-family: Georgia, serif;
  font-size: clamp(6rem, 18vw, 13rem);
  line-height: 0.9;
}

.not-found-page h1 {
  margin-top: 24px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.not-found-page .button {
  margin-top: 22px;
}

.site-footer {
  padding-top: 86px;
  color: rgba(255, 255, 255, 0.74);
  background: #17241d;
}

.footer-grid {
  display: grid;
  padding-bottom: 76px;
  grid-template-columns: 1.2fr 0.9fr 0.6fr;
  gap: 70px;
}

.brand-light {
  color: var(--paper);
}

.footer-brand p {
  max-width: 360px;
  margin-top: 28px;
  font-size: 0.9rem;
}

.site-footer h2 {
  margin-bottom: 22px;
  color: var(--paper);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer p,
.site-footer li {
  margin-bottom: 7px;
  font-size: 0.82rem;
}

.footer-menu {
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.7rem;
}

.footer-bottom p {
  margin: 0;
  font-size: inherit;
}

.floating-contact {
  position: fixed;
  z-index: 900;
  top: 50%;
  right: clamp(16px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  transform: translateY(-50%);
}

.floating-action {
  display: flex;
  overflow: hidden;
  width: 54px;
  height: 54px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: #fff;
  box-shadow: 0 10px 28px rgba(29, 38, 33, 0.2);
  white-space: nowrap;
  transition: width 220ms var(--ease), transform 180ms ease, box-shadow 180ms ease;
}

.floating-action:hover,
.floating-action:focus-visible {
  width: 158px;
  color: #fff;
  box-shadow: 0 14px 34px rgba(29, 38, 33, 0.26);
  transform: translateX(-2px);
}

.floating-action-icon {
  display: grid;
  width: 54px;
  min-width: 54px;
  height: 54px;
  place-items: center;
}

.floating-action-icon svg {
  width: 25px;
  height: 25px;
}

.floating-action-icon-letter {
  font-family: Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.12em;
  text-indent: -0.12em;
}

.floating-action-label {
  padding-right: 18px;
  font-size: 0.82rem;
  font-weight: 750;
  opacity: 0;
  transition: opacity 150ms ease 40ms;
}

.floating-action:hover .floating-action-label,
.floating-action:focus-visible .floating-action-label {
  opacity: 1;
}

.floating-action-naver {
  background: #03c75a;
}

.floating-action-kakao {
  color: #191919;
  background: #fee500;
}

.floating-action-kakao:hover,
.floating-action-kakao:focus-visible {
  color: #191919;
}

.floating-action-instagram {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 56%, #fcb045 100%);
}

body.menu-open .floating-contact {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 750ms var(--ease), transform 750ms var(--ease);
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.has-js .reveal-delay {
  transition-delay: 120ms;
}

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

  .has-js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  :root {
    --header-height: 76px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.8fr);
    gap: 46px;
  }

  .hero-visual,
  .hero-visual > img,
  .hero-visual > .placeholder-art {
    min-height: 560px;
  }

  .about-grid {
    gap: 70px;
  }

  .about-visual > img,
  .placeholder-art-portrait {
    min-height: 580px;
  }

  .column-row {
    grid-template-columns: 140px 100px minmax(0, 1fr) 48px;
    gap: 22px;
  }
}

@media (min-width: 841px) and (max-width: 1200px) {
  .primary-navigation {
    gap: 14px;
  }

  .primary-navigation ul {
    gap: 16px;
  }

  .primary-navigation .menu-item > a {
    font-size: 0.78rem;
  }

  .brand-copy small,
  .header-cta {
    display: none;
  }
}

@media (max-width: 840px) {
  :root {
    --shell: min(100% - 36px, 680px);
    --reading: min(100% - 36px, 680px);
  }

  .brand-copy small,
  .header-cta {
    display: none;
  }

  .header-inner > .brand {
    position: relative;
    z-index: 1002;
  }

  .menu-toggle {
    position: relative;
    z-index: 1002;
    display: block;
  }

  .menu-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  body.menu-open .site-header {
    height: var(--header-height);
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .primary-navigation {
    position: fixed;
    z-index: 1001;
    inset: 0;
    display: flex;
    visibility: hidden;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    max-height: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: calc(var(--header-height) + 28px) max(22px, 7vw) calc(40px + env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
    background:
      radial-gradient(circle at 10% 0%, rgba(128, 147, 127, 0.13), transparent 36%),
      var(--cream);
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
  }

  .primary-navigation.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .primary-navigation ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .primary-navigation > .primary-menu {
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .primary-navigation .primary-menu > .menu-item {
    border-bottom: 1px solid var(--line);
  }

  .primary-navigation .primary-menu > .menu-item > a {
    min-height: 62px;
    padding: 17px 54px 17px 4px;
    border: 0;
    font-family: Georgia, "Noto Serif KR", serif;
    font-size: clamp(1.4rem, 6vw, 1.65rem);
    font-weight: 400;
    letter-spacing: -0.04em;
  }

  .primary-navigation .primary-menu > .current-menu-item > a,
  .primary-navigation .primary-menu > .current-menu-parent > a,
  .primary-navigation .primary-menu > .current-menu-ancestor > a {
    color: var(--forest);
  }

  .primary-navigation .menu-item-has-children > a::before {
    display: none;
  }

  .submenu-toggle {
    position: absolute;
    top: 9px;
    right: 0;
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(63, 89, 76, 0.24);
    border-radius: 50%;
    color: var(--forest);
    background: rgba(255, 253, 249, 0.72);
    place-items: center;
  }

  .submenu-toggle > span {
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
    transition: transform 180ms ease;
  }

  .menu-item.is-submenu-open > .submenu-toggle > span {
    transform: translateY(2px) rotate(225deg);
  }

  .primary-navigation .sub-menu {
    position: static;
    display: flex;
    visibility: visible;
    min-width: 0;
    margin: 0 0 14px 4px;
    padding: 6px 16px;
    border: 0;
    border-left: 3px solid var(--moss);
    border-radius: 0 10px 10px 0;
    background: rgba(255, 253, 249, 0.62);
    box-shadow: none;
    opacity: 1;
    transform: none;
    transition: none;
  }

  .has-js .primary-navigation .sub-menu {
    display: none;
    visibility: hidden;
    opacity: 0;
  }

  .primary-navigation .menu-item:hover > .sub-menu,
  .primary-navigation .menu-item:focus-within > .sub-menu {
    transform: none;
  }

  .has-js .primary-navigation .menu-item.is-submenu-open > .sub-menu {
    display: flex;
    visibility: visible;
    opacity: 1;
  }

  .primary-navigation .sub-menu .menu-item > a {
    padding: 12px 2px;
    border: 0;
    color: #667069;
    background: transparent;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
  }

  .primary-navigation .sub-menu .menu-item + .menu-item {
    border-top: 1px solid rgba(29, 38, 33, 0.1);
  }

  .primary-navigation .sub-menu .menu-item > a:hover,
  .primary-navigation .sub-menu .current-menu-item > a {
    color: var(--forest);
    background: transparent;
  }

  .primary-navigation .header-cta {
    display: inline-flex;
    width: min(100%, 520px);
    min-height: 52px;
    justify-content: center;
    margin: 24px auto 0;
    color: var(--paper);
    background: var(--forest);
    font-size: 0.95rem;
  }

  .floating-contact {
    top: auto;
    right: 14px;
    bottom: max(18px, calc(env(safe-area-inset-bottom) + 12px));
    gap: 8px;
    transform: none;
  }

  .floating-action,
  .floating-action:hover,
  .floating-action:focus-visible {
    width: 48px;
    height: 48px;
    transform: none;
  }

  .floating-action-icon {
    width: 48px;
    min-width: 48px;
    height: 48px;
  }

  .floating-action-icon svg {
    width: 23px;
    height: 23px;
  }

  .floating-action-label {
    display: none;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    padding-block: 76px 54px;
  }

  .hero-copy {
    padding-block: 30px;
  }

  .hero-visual,
  .hero-visual > img,
  .hero-visual > .placeholder-art {
    min-height: min(115vw, 680px);
  }

  .hero-note {
    right: -8px;
  }

  .hero-scroll {
    display: none;
  }

  .split-heading,
  .about-grid,
  .contact-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .split-heading {
    align-items: start;
    gap: 24px;
  }

  .section-heading > p {
    margin-left: 0;
  }

  .card-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .card-media {
    aspect-ratio: 1.35;
  }

  .about-visual {
    max-width: 560px;
  }

  .content-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .content-aside {
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100vw - 32px);
    --reading: calc(100vw - 32px);
  }

  body {
    font-size: 15px;
  }

  .section-space {
    padding-block: 82px;
  }

  .hero-copy h1 {
    font-size: clamp(2.9rem, 15vw, 4.5rem);
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .hero-visual,
  .hero-visual > img,
  .hero-visual > .placeholder-art {
    min-height: 126vw;
  }

  .hero-note {
    bottom: 20px;
    width: 220px;
    min-height: 96px;
  }

  .about-visual > img,
  .placeholder-art-portrait {
    min-height: 125vw;
  }

  .vertical-caption {
    display: none;
  }

  .column-row {
    position: relative;
    min-height: 0;
    padding-block: 28px;
    grid-template-columns: 96px minmax(0, 1fr) 42px;
    gap: 14px;
  }

  .column-media {
    align-self: stretch;
    min-height: 86px;
    grid-row: 1 / 3;
  }

  .column-meta {
    flex-direction: row;
    grid-column: 2 / -1;
    gap: 14px;
  }

  .column-title {
    grid-column: 2;
  }

  .column-row .circle-arrow {
    grid-column: 3;
    grid-row: 2;
  }

  .column-title p {
    display: none;
  }

  .contact-actions > a {
    min-height: 96px;
    grid-template-columns: 84px 1fr 20px;
  }

  .page-hero {
    padding: calc(var(--header-height) + 52px) 0 56px;
  }

  .detail-hero {
    padding: calc(var(--header-height) + 70px) 0 70px;
  }

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

  .detail-index {
    display: none;
  }

  .inline-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .reading-header {
    padding: calc(var(--header-height) + 60px) 0 56px;
  }

  .reading-header .back-link {
    margin-bottom: 38px;
  }

  .reading-meta > * + *::before {
    margin-right: 12px;
  }

  .author-box {
    grid-template-columns: 70px 1fr;
    gap: 18px;
  }

  .post-navigation .nav-links {
    grid-template-columns: 1fr;
  }

  .map-placeholder {
    min-height: 420px;
  }

  .map-preview {
    height: 420px;
  }

  .map-open-link {
    right: 16px;
    bottom: 16px;
    left: 16px;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
  }
}

@media print {
  .floating-contact {
    display: none;
  }
}
