.eyebrow,
.section-kicker {
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.section-kicker span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.1rem;
  line-height: 1;
  color: rgba(176, 141, 87, .36);
}

.display {
  margin: 0;
  font-family: var(--font-serif-kr);
  font-weight: 300;
  font-size: clamp(2.2rem, 6vw, 5rem);
  line-height: 1.14;
  max-width: 14em;
  word-break: keep-all;
  overflow-wrap: normal;
}

.lede {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.lede--dark {
  color: rgba(239, 230, 216, .76);
}

.script {
  margin: 0;
  font-family: var(--font-script);
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1;
  color: var(--gold);
}

.hero__tagline {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.2vw, 2.15rem);
  font-style: italic;
  line-height: 1.1;
  color: var(--gold);
}

.ornament {
  width: min(280px, 46vw);
  height: 14px;
  margin-block: 12px 24px;
  position: relative;
}

.ornament::before,
.ornament::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 18px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.ornament::before { left: 0; }
.ornament::after { right: 0; }

.ornament {
  background: radial-gradient(circle at center, var(--gold) 0 3px, transparent 4px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 22px;
  border: 1px solid var(--gold-line);
  color: var(--ink);
  font-weight: 500;
  letter-spacing: .03em;
  transition: transform .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  background: rgba(176, 141, 87, .08);
}

.btn--filled {
  background: linear-gradient(135deg, var(--ink), #574636);
  border-color: rgba(176, 141, 87, .62);
  color: var(--champagne);
  box-shadow: inset 0 0 0 1px rgba(246, 241, 231, .08);
}

.btn--light {
  color: var(--on-dark);
  border-color: rgba(212, 185, 120, .55);
}

.section-head {
  display: grid;
  gap: 20px;
  margin-bottom: clamp(34px, 7vw, 72px);
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: .88rem;
}

.form-field input,
.form-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 8px 2px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font: inherit;
}

.form-field textarea {
  min-height: 110px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 0;
  border-bottom-color: var(--gold);
}

.form-field--optional label::after {
  content: " · 선택";
  opacity: .6;
}

.form-hint,
.form-error {
  margin: 6px 0 0;
  font-size: .84rem;
  color: var(--muted);
}

.form-error {
  color: #9C3F35;
  min-height: 1.2em;
}

.form-confirm {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--gold-line);
  font-family: var(--font-serif-kr);
  font-size: 1.3rem;
}

.form-confirm[hidden],
.reserve-form[data-submitted="true"] .form-fields,
.reserve-form[data-submitted="true"] .form-submit {
  display: none;
}
