@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #202724;
  --muted: #626c68;
  --green: #174e45;
  --line: #dde4e0;
  --light: #f4f7f5;
  --yellow: #fee500;
  --white: #fff;
  --font: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Malgun Gothic', sans-serif;
  --radius: 16px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 24px; }
body { margin: 0; background: var(--white); color: var(--ink); font-family: var(--font); font-size: 16px; line-height: 1.75; word-break: keep-all; overflow-wrap: break-word; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
a, summary { -webkit-tap-highlight-color: transparent; }
a:focus-visible, summary:focus-visible { outline: 3px solid #2563eb; outline-offset: 5px; }
svg { display: block; flex-shrink: 0; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin: 0; }
h1, h2, h3 { font-weight: 700; letter-spacing: -.045em; }
h2 { font-size: 2rem; line-height: 1.5; }
.container { width: calc(100% - 80px); max-width: 1160px; margin-inline: auto; }
.eyebrow { color: var(--green); font-size: 1rem; font-weight: 600; }
.sr-only { 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: absolute; top: -100px; left: 16px; padding: 12px 20px; background: var(--ink); color: white; z-index: 10; }
.skip-link:focus { top: 10px; }
.site-header { border-bottom: 1px solid #edf0ed; }
.header-inner { display: flex; justify-content: space-between; align-items: center; min-height: 80px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--green); font-size: 1.375rem; font-weight: 800; letter-spacing: -.06em; }
.brand-mark { width: 29px; height: 29px; }
.header-link { font-size: .875rem; font-weight: 500; padding-block: 10px; }
.header-link span { margin-left: 12px; }

.hero { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr); gap: 60px; align-items: center; padding-block: 58px 62px; }
.hero h1 { font-size: clamp(2.4rem, 4.2vw, 3.6rem); line-height: 1.4; margin-top: 15px; letter-spacing: -.055em; }
.hero h1 span { color: var(--green); }
.hero-description { font-size: 1rem; color: var(--muted); margin-top: 14px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 58px; padding: 16px 24px; border-radius: 10px; font-weight: 700; font-size: 1rem; line-height: 1.6; text-align: center; transition: background .2s, transform .2s; }
.button-kakao { background: var(--yellow); color: #251d16; }
.button-kakao:hover { background: #f5dc00; transform: translateY(-2px); }
.button svg { width: 22px; height: 22px; }
.button-arrow { margin-left: 10px; font-size: 1.2rem; font-weight: 500; }
.hero-cta { margin-top: 28px; }
.cta-note { font-size: .875rem; color: var(--muted); margin-top: 10px; }
.hero-visual { min-width: 0; }
.hotel-image { width: 100%; height: 380px; object-fit: cover; object-position: center; border-radius: 80px 16px 16px 16px; background: var(--light); }

.process-section { background: var(--light); padding-block: 26px; }
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); list-style: none; padding: 0; margin: 0; gap: 28px; }
.steps li { padding-left: 12px; }
.steps li + li { border-left: 1px solid #d9e2dc; padding-left: 32px; }
.step-number { color: var(--green); font-size: .875rem; font-weight: 600; letter-spacing: .04em; }
.steps h3 { margin-top: 5px; font-size: 1.2rem; line-height: 1.6; }

.send-section { padding-block: 56px 24px; }
.send-options { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr); align-items: start; gap: 24px; margin-top: 24px; }
.option { min-width: 0; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 32px; }
.option-capture { background: #f8faf8; border-color: #b8ccbf; }
.option-heading { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.option-label { color: var(--green); font-size: .875rem; font-weight: 600; }
.small-badge { color: var(--green); background: #e6eee8; font-size: .8125rem; font-weight: 600; padding: 2px 10px; border-radius: 5px; }
.option h3 { font-size: 1.5rem; line-height: 1.5; margin-top: 15px; }
.option > p { font-size: 1rem; color: var(--muted); line-height: 1.85; margin-top: 10px; }
.capture-details { border-top: 1px solid #d9e3dc; margin-top: 22px; }
.capture-details summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 52px; padding-block: 12px 0; font-size: .875rem; font-weight: 600; color: var(--green); cursor: pointer; list-style: none; }
.capture-details summary::-webkit-details-marker { display: none; }
.detail-toggle { display: block; flex-shrink: 0; font-size: 1.4rem; font-weight: 400; line-height: 1; transition: transform .2s; }
.capture-details[open] .detail-toggle { transform: rotate(45deg); }
.detail-content { padding-top: 20px; }
.field-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 24px; margin: 0; padding-left: 19px; font-size: .875rem; }
.field-list li { padding-left: 2px; }
.field-list li::marker { color: #728d7d; font-size: .8125rem; }
.field-list small { display: block; color: var(--muted); font-size: .8125rem; margin-top: 3px; }
.detail-note { font-size: .875rem; color: var(--muted); margin-top: 20px; line-height: 1.85; }

.undecided-section { padding-bottom: 50px; }
.undecided-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 32px; background: var(--light); border-radius: var(--radius); transition: background .2s; }
.undecided-inner:hover { background: #eaf0ec; }
.undecided-inner strong { font-size: 1.125rem; letter-spacing: -.035em; }
.undecided-description { display: block; color: var(--muted); font-size: 1rem; margin-top: 3px; }
.undecided-arrow { color: var(--green); font-size: 1.5rem; flex-shrink: 0; }
.contact-section { background: var(--green); color: white; text-align: center; padding-block: 40px; }
.contact-inner h2 { font-size: 1.9rem; }
.contact-cta { margin-top: 22px; min-width: 360px; }
.contact-note { font-size: .875rem; color: #d4e2da; margin-top: 12px; }
.conditions { padding-block: 20px; border-bottom: 1px solid var(--line); }
.conditions p { font-size: .8125rem; color: #727c76; line-height: 1.85; }
.site-footer { padding-block: 24px 32px; }
.footer-main { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px 40px; }
.footer-brand { display: inline-block; color: var(--green); font-size: 1.3rem; font-weight: 700; letter-spacing: -.045em; }
.footer-company, .footer-meta, .footer-copyright { color: var(--muted); font-size: .8125rem; line-height: 1.85; }
.footer-company { display: flex; flex-wrap: wrap; gap: 0 16px; margin-top: 10px; }
.footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; margin: 4px 0 0; font-style: normal; }
.footer-phone { color: var(--green); font-size: 1.125rem; font-weight: 600; line-height: 1.8; }
.footer-email { color: var(--muted); font-size: .8125rem; line-height: 1.85; }
.footer-contact a:hover { text-decoration: underline; text-underline-offset: 4px; }
.footer-copyright { margin-top: 20px; }
.mobile-contact { display: none; }

@media (min-width: 1440px) {
  .container { max-width: 1200px; }
  .hero { gap: 80px; padding-block: 64px 68px; }
  .hero h1 { font-size: 3.7rem; }
  .hotel-image { height: 400px; }
}
@media (max-width: 1050px) {
  .container { width: calc(100% - 64px); }
  .hero { gap: 32px; }
  .hero h1 { font-size: 2.65rem; }
  .hotel-image { height: 350px; }
  .option { padding: 26px; }
  .option h3 { font-size: 1.4rem; }
}
@media (max-width: 760px) {
  .container { width: calc(100% - 40px); }
  .header-inner { min-height: 64px; gap: 16px; }
  .brand { font-size: 1.1875rem; gap: 8px; }
  .brand-mark { width: 25px; height: 25px; }
  .header-link span { margin-left: 5px; }
  .hero { grid-template-columns: minmax(0, 1fr); gap: 24px; padding-block: 32px 36px; }
  .eyebrow { font-size: .9375rem; }
  .hero h1 { font-size: clamp(2.05rem, 7.5vw, 3rem); margin-top: 10px; }
  .hero-description { margin-top: 10px; }
  .hero-cta { width: 100%; max-width: 460px; margin-top: 23px; padding-inline: 18px; min-height: 56px; }
  .hero-cta .button-arrow { margin-left: auto; }
  .hero-cta svg { margin-right: auto; }
  .cta-note { margin-top: 9px; }
  .hotel-image { height: 204px; border-radius: 44px 12px 12px 12px; object-position: center 64%; }
  .process-section { padding-block: 21px; }
  .steps { gap: 0; }
  .steps li { padding: 0 9px; text-align: center; }
  .steps li + li { padding-left: 9px; }
  .step-number { font-size: .875rem; }
  .steps h3 { font-size: 1rem; margin-top: 4px; }
  h2 { font-size: 1.5rem; }
  .send-section { padding-block: 36px 16px; }
  .send-options { grid-template-columns: minmax(0, 1fr); gap: 14px; margin-top: 20px; }
  .option { padding: 22px 24px; }
  .option h3 { font-size: 1.3rem; margin-top: 12px; }
  .option > p { margin-top: 8px; }
  .option-link { padding-block: 20px; }
  .option-link h3 { font-size: 1.2rem; margin-top: 8px; }
  .option-link > p br { display: none; }
  .capture-details { margin-top: 18px; }
  .capture-details summary { padding-top: 10px; }
  .field-list { gap: 15px 20px; }
  .undecided-section { padding-bottom: 32px; }
  .undecided-inner { padding: 20px 24px; }
  .undecided-inner strong { font-size: 1.0625rem; }
  .contact-section { padding-block: 32px; }
  .contact-inner h2 { font-size: 1.5rem; }
  .contact-cta { width: 100%; max-width: 460px; min-width: 0; margin-top: 18px; padding-inline: 18px; }
  .contact-note { font-size: .8125rem; margin-top: 11px; }
  .conditions { padding-block: 17px; }
  .site-footer { padding-block: 20px calc(98px + env(safe-area-inset-bottom)); }
  .footer-main { flex-direction: column; gap: 14px; }
  .footer-contact { margin-top: 0; }
  .footer-copyright { margin-top: 16px; }
  .mobile-contact { display: block; position: fixed; inset: auto 0 0; z-index: 5; background: rgba(255,255,255,.97); padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); border-top: 1px solid #e7ece8; box-shadow: 0 -5px 24px #12221908; transition: transform .2s, opacity .2s; }
  .mobile-contact .button { width: 100%; min-height: 52px; padding: 12px 16px; }
  .mobile-contact.is-hidden { transform: translateY(110%); visibility: hidden; }
}
@media (max-width: 370px) {
  .container { width: calc(100% - 32px); }
  .hero h1 { font-size: 2rem; }
  .button { gap: 9px; font-size: .9375rem; }
  .button-arrow { margin-left: 3px; }
  .steps li, .steps li + li { padding-inline: 5px; }
  .option { padding-inline: 20px; }
  .capture-details summary { gap: 8px; }
  .field-list { gap: 15px 18px; }
  .undecided-inner { padding-inline: 20px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
