:root {
  --paper: #fbfaf6;
  --white: #ffffff;
  --ink: #24251f;
  --muted: #64665e;
  --line: #d9d8cf;
  --green: #385847;
  --green-dark: #274235;
  --green-pale: #eef2eb;
  --plum: #675066;
  --gold: #b3944e;
  --flower-purple: #5c277f;
  --flower-yellow: #f3b51b;
  --flower-yellow-ink: #9b6a00;
  --flower-salmon: #df8078;
  --error: #a83232;
  --success: #356046;
  --max-width: 1160px;
  --font-sans: "Noto Sans KR", "Pretendard", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  --font-serif: "Noto Serif KR", "Batang", serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #855d16;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--green-dark);
  text-decoration: none;
  transform: translateY(-150%);
}

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

.container {
  width: min(calc(100% - 64px), var(--max-width));
  margin-inline: auto;
}

.container.narrow {
  width: min(calc(100% - 64px), 840px);
}

.section {
  padding-block: clamp(72px, 8vw, 120px);
}

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

.section-kicker {
  margin: 0 0 8px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

h2 {
  margin-bottom: clamp(32px, 5vw, 56px);
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.025em;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button-primary {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.button-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.button-secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}

.button-secondary:hover {
  color: var(--white);
  background: var(--ink);
}

.button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.button-wide {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(36, 37, 31, 0.12);
  background: rgba(251, 250, 246, 0.96);
}

.header-inner {
  display: flex;
  width: min(calc(100% - 64px), var(--max-width));
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-inline: auto;
}

.brand {
  display: block;
  flex: 0 1 220px;
}

.brand img {
  width: 220px;
  height: 70px;
  object-fit: contain;
  object-position: left center;
}

.site-navigation {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
}

.site-navigation a {
  font-size: 0.94rem;
  font-weight: 600;
  text-decoration: none;
}

.site-navigation a:not(.nav-reserve):hover {
  color: var(--green);
}

.site-navigation .nav-reserve {
  padding: 8px 18px;
  color: var(--white);
  background: var(--green);
}

.menu-toggle {
  display: none;
  min-width: 48px;
  min-height: 48px;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
}

.menu-toggle-lines {
  position: relative;
  margin: 0 auto 7px;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-toggle-lines::before { top: -7px; }
.menu-toggle-lines::after { top: 7px; }

.menu-toggle-label {
  font-size: 0.68rem;
}

.site-footer {
  padding-block: 56px;
  color: #efeee9;
  background: #242a25;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.footer-inner p {
  margin-bottom: 0;
}

.footer-name {
  font-family: var(--font-serif);
  font-size: 1.15rem;
}

[hidden] {
  display: none !important;
}

@media (max-width: 800px) {
  .container,
  .container.narrow,
  .header-inner {
    width: min(calc(100% - 40px), var(--max-width));
  }

  .header-inner {
    min-height: 70px;
  }

  .brand {
    flex-basis: 170px;
  }

  .brand img {
    width: 170px;
    height: 54px;
  }

  .menu-toggle {
    display: block;
  }

  .site-navigation {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 14px 20px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

  .site-navigation.is-open {
    display: grid;
  }

  .site-navigation a {
    min-height: 46px;
    padding: 10px 4px;
  }

  .site-navigation .nav-reserve {
    margin-top: 4px;
    padding-inline: 18px;
    text-align: center;
  }

  .footer-inner {
    display: block;
  }

  .footer-name {
    margin-bottom: 16px !important;
  }
}

@media (max-width: 480px) {
  .container,
  .container.narrow,
  .header-inner {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .section {
    padding-block: 64px;
  }

  .header-inner {
    gap: 12px;
  }

  .brand {
    flex-basis: 140px;
  }

  .brand img {
    width: 140px;
    height: 48px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
