:root {
  --ink: #24322f;
  --muted: #68766f;
  --paper: #fbf7ee;
  --milk: #fffdf8;
  --line: #dfd5c7;
  --leaf: #6f8f72;
  --clay: #bd7e68;
  --sky: #779db0;
  --mustard: #c2a053;
}
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@400;500;700;800&display=swap");
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: "Noto Sans KR", "Malgun Gothic", sans-serif; color: var(--ink); background: var(--paper); line-height: 1.72; word-break: keep-all; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
.wrap { width: min(1360px, calc(100% - 48px)); margin: 0 auto; }
.topbar { position: sticky; top: 0; z-index: 10; background: rgba(251,247,238,.92); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.nav { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.logo { display: block; flex: 0 0 auto; }
.logoImage { width: clamp(230px, 28vw, 360px); height: auto; }
.menu { display: flex; gap: 8px; color: #42504b; font-size: 16px; font-weight: 800; }
.menu a { position: relative; padding: 10px 13px; border-radius: 6px; transition: color .2s ease, background .2s ease, transform .2s ease; }
.menu a::after { content: ""; position: absolute; left: 13px; right: 13px; bottom: 6px; height: 2px; border-radius: 999px; background: var(--leaf); transform: scaleX(0); transform-origin: center; transition: transform .2s ease; }
.menu a:hover { color: var(--ink); background: rgba(111,143,114,.12); transform: translateY(-1px); }
.menu a:hover::after { transform: scaleX(1); }
.menu a:focus-visible { outline: 3px solid rgba(111,143,114,.35); outline-offset: 2px; }
.call, .button { border: 1px solid var(--ink); border-radius: 4px; font-weight: 800; }
.call { padding: 9px 15px; background: var(--ink); color: var(--milk); transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.call:hover { background: #2f433e; transform: translateY(-2px); box-shadow: 0 10px 18px rgba(36,50,47,.2); }
.call:focus-visible { outline: 3px solid rgba(111,143,114,.38); outline-offset: 3px; }
.hero { min-height: calc(100vh - 76px); position: relative; display: grid; align-items: center; overflow: hidden; background: radial-gradient(circle at 50% 18%, #fffdf8 0, #f4efe5 46%, #e9dfd1 100%); }
.logoHero { isolation: isolate; perspective: 1100px; }
.heroTicker { position: absolute; left: 0; right: auto; top: 16%; z-index: 0; display: flex; width: max-content; color: rgba(36,50,47,.075); font-size: clamp(48px, 9vw, 138px); line-height: 1; font-weight: 900; white-space: nowrap; animation: heroSlide 26s linear infinite; }
.heroTicker span { padding-right: .32em; }
.heroInner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 720px) minmax(320px, 520px); gap: clamp(44px, 8vw, 120px); align-items: center; padding: clamp(84px, 13vh, 150px) 0 clamp(74px, 10vh, 120px); }
.heroVisual { display: grid; gap: 22px; justify-items: center; align-self: center; }
.heroPhoto { margin: 0; width: min(520px, 100%); }
.heroPhoto img { filter: drop-shadow(0 24px 28px rgba(36,50,47,.17)); }
.heroPhoto figcaption { margin-top: 8px; color: var(--muted); font-size: 14px; font-weight: 800; text-align: center; }
.heroLogoScene { padding: 26px 14px 8px; background: radial-gradient(circle at 50% 45%, rgba(255,253,248,.9), rgba(255,253,248,0) 68%); perspective: 900px; }
.heroLogoScene img { transform: rotateX(7deg) rotateZ(-1deg); transition: transform .28s ease, filter .28s ease; }
.heroLogoScene:hover img { transform: rotateX(4deg) rotateZ(0) translateY(-5px) scale(1.03); filter: drop-shadow(0 30px 30px rgba(36,50,47,.22)); }
.heroMarkWrap { position: relative; display: grid; place-items: center; width: min(390px, 100%); min-height: 190px; pointer-events: none; transform-style: preserve-3d; }
.heroMarkWrap::before { content: ""; position: absolute; inset: 28px 22px 4px; border-radius: 999px; background: rgba(57,140,131,.09); filter: blur(24px); }
.heroMarkCard { position: relative; z-index: 1; width: min(330px, 100%); aspect-ratio: 2.85 / 1; display: grid; place-items: center; transform: rotateX(7deg) rotateZ(-1deg); transform-style: preserve-3d; filter: drop-shadow(0 18px 18px rgba(36,50,47,.15)); animation: markFloat 6.4s ease-in-out infinite; }
.heroMark { width: 100%; transform: translateZ(30px); filter: drop-shadow(0 6px 0 rgba(50,130,125,.12)) drop-shadow(0 16px 13px rgba(36,50,47,.13)); }
.eyebrow, .sectionMark { margin: 0 0 14px; color: var(--leaf); font-size: 14px; font-weight: 900; }
h1, h2 { margin: 0; letter-spacing: 0; line-height: 1.24; font-weight: 800; }
h1 { font-size: clamp(38px, 5vw, 68px); max-width: 720px; }
h2 { font-size: clamp(28px, 3.2vw, 42px); max-width: 760px; }
.lead { max-width: 590px; margin: 24px 0 32px; font-size: 18px; color: #4f5b55; }
.actions { display: flex; gap: 10px; flex-wrap: wrap; }
.button { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; padding: 0 18px; background: transparent; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease; }
.button.primary { background: var(--ink); color: var(--milk); }
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 18px rgba(36,50,47,.16); }
.button.primary:hover { background: #2f433e; }
.button:not(.primary):hover { background: rgba(111,143,114,.12); color: var(--ink); }
.button:focus-visible { outline: 3px solid rgba(111,143,114,.38); outline-offset: 3px; }
.notePanel { width: min(260px, 100%); display: grid; gap: 8px; padding: 16px; background: rgba(255,253,248,.78); border: 1px solid var(--line); transform: rotate(-2deg); box-shadow: 0 16px 34px rgba(36,50,47,.07); }
.notePanel a { padding: 10px 12px; border-left: 4px solid var(--clay); background: #fff7e8; font-weight: 800; transition: transform .2s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease; }
.notePanel a:hover { border-color: var(--leaf); background: #fffdf8; transform: translateX(6px); box-shadow: 0 8px 16px rgba(36,50,47,.12); }
.notePanel a:focus-visible { outline: 3px solid rgba(111,143,114,.35); outline-offset: 2px; }
section { padding: 86px 0; border-bottom: 1px solid var(--line); }
.introGrid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 52px; align-items: start; }
.introGrid p { color: var(--muted); font-size: 17px; }
.checkList { margin: 0; padding: 0; list-style: none; display: grid; gap: 0; border-top: 1px solid var(--line); }
.checkList li { display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.checkList b { font-size: 18px; }
.checkList span { color: var(--muted); }
.sectionHead { display: grid; gap: 8px; margin-bottom: 34px; }
.programs { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.programs article { min-height: 220px; padding: 22px; background: var(--milk); border: 1px solid var(--line); }
.programs article:nth-child(2), .programs article:nth-child(5) { background: #f8efe4; }
.programs span { color: var(--clay); font-family: "Malgun Gothic", sans-serif; font-weight: 900; }
.programs b { display: block; margin: 24px 0 12px; font-size: 22px; }
.programs p { margin: 0; color: var(--muted); }
.spaceSection { background: #eef2e9; }
.spaceGrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; align-items: stretch; }
.spaceGrid figure { position: relative; margin: 0; min-height: 240px; overflow: hidden; border: 1px solid var(--line); background: var(--milk); }
.spaceGrid .large { grid-column: span 2; grid-row: span 2; min-height: 492px; }
.spaceGrid img { height: 100%; object-fit: cover; filter: saturate(.93); }
.spaceGrid figcaption { position: absolute; left: 12px; bottom: 12px; padding: 8px 11px; background: rgba(255,253,248,.9); border: 1px solid var(--line); font-weight: 900; }
.reservationBand { background: #f4eadc; }
.reservationGrid { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 30px; align-items: start; }
.formIntro { max-width: 600px; color: var(--muted); }
.reservationForm { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin-top: 26px; padding: 18px; background: var(--milk); border: 1px solid var(--line); }
label { display: grid; gap: 7px; font-weight: 800; }
input, select, textarea { width: 100%; border: 1px solid #d5c7b5; border-radius: 4px; padding: 12px; font: inherit; background: #fff; color: var(--ink); }
textarea { min-height: 120px; resize: vertical; }
.wide { grid-column: 1 / -1; }
.notice { grid-column: 1 / -1; min-height: 24px; margin: 0; color: #50645a; font-weight: 800; }
.privacyNote { margin: 0; color: var(--muted); font-size: 13px; }
.hiddenField { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.reservationListBox { padding: 18px; background: #fffaf0; border: 1px solid var(--line); }
.listHead { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 15px; }
.listHead h3 { margin: 0; font-size: 22px; }
.textButton, .deleteButton { cursor: pointer; font-family: inherit; }
.textButton { border: 0; background: transparent; color: #8b5148; font-weight: 900; }
.reservationList { display: grid; gap: 10px; }
.reservationItem { padding: 13px; border: 1px solid #e4d7c7; background: var(--milk); }
.reservationMeta, .empty { color: var(--muted); font-size: 14px; }
.deleteButton { margin-top: 9px; padding: 7px 10px; border: 1px solid #d5c7b5; border-radius: 4px; background: #fff; }
.empty { padding: 22px; border: 1px dashed #d5c7b5; text-align: center; }
.locationSection { background: var(--paper); padding-bottom: 72px; }
.mapFrame { position: relative; height: 430px; overflow: hidden; border-radius: 22px; border: 1px solid rgba(36,50,47,.08); background: #e9e4d8; box-shadow: 0 18px 46px rgba(36,50,47,.08); }
.mapFrame iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(.72) contrast(.96) brightness(1.03); }
.kakaoMapFrame .root_daum_roughmap { width: 100% !important; height: 100% !important; }
.kakaoMapFrame .wrap_map { height: 100% !important; }
.locationInfo { display: grid; grid-template-columns: 1.2fr .9fr 1fr; gap: 66px; margin-top: 34px; align-items: start; }
.locationInfo article { min-width: 0; }
.locationInfo h3 { margin: 0 0 16px; color: #398c83; font-size: 22px; line-height: 1.45; }
.locationInfo b, .locationInfo dt { color: #398c83; font-weight: 900; }
.locationInfo p { margin: 8px 0 18px; color: var(--muted); font-size: 14px; }
.locationInfo dl { margin: 0 0 18px; display: grid; gap: 7px; }
.locationInfo dl div { display: grid; grid-template-columns: 88px 1fr; gap: 18px; }
.locationInfo dd { margin: 0; color: #398c83; font-weight: 900; }
.phoneLink { display: inline-block; margin: 4px 0 16px; color: #398c83; font-size: 30px; line-height: 1; font-weight: 900; }
.mapLinks { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.contactIcon { position: relative; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: #fffaf0; box-shadow: 0 2px 0 rgba(36,50,47,.12); transition: transform .22s ease, box-shadow .22s ease; }
.contactIcon::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; border: 1px solid rgba(57,140,131,.0); transform: scale(.86); opacity: 0; transition: transform .22s ease, opacity .22s ease, border-color .22s ease; }
.contactIcon img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.contactIcon:hover { transform: translateY(-5px) scale(1.08); box-shadow: 0 11px 20px rgba(36,50,47,.2); }
.contactIcon:hover::after { border-color: rgba(57,140,131,.32); opacity: 1; transform: scale(1); }
.contactIcon:focus-visible { outline: 3px solid rgba(57,140,131,.38); outline-offset: 4px; }
.siteFooter { padding: 78px 0 48px; background: #4f4a40; color: var(--milk); }
.footerTop { display: grid; grid-template-columns: 1.15fr .85fr 1fr; gap: 82px; }
.footerTop b { display: block; margin-bottom: 22px; color: #fff; font-size: 16px; }
.footerPhone { display: block; margin-bottom: 22px; color: #fff; font-size: 44px; line-height: 1; font-weight: 900; }
.footerTop p { margin: 0; color: #cac3b8; }
.footerTop strong { display: block; margin-top: 14px; color: #fff; }
.footerBottom { display: grid; grid-template-columns: 240px minmax(0, 1fr) 340px; gap: 64px; margin-top: 82px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.08); align-items: start; }
.footerLogo { width: min(220px, 100%); height: auto; background: var(--milk); border-radius: 4px; padding: 6px; }
.footerLinks { display: flex; gap: 34px; margin-bottom: 18px; color: #fff; font-weight: 900; }
.footerBottom p { margin: 6px 0 0; color: #bdb6aa; font-size: 13px; }
.footerTreatments b { display: block; margin-bottom: 16px; color: #fff; font-size: 19px; }
.footerTreatments p { color: #bdb6aa; font-weight: 800; line-height: 1.9; }
.legalPage { padding: 78px 0 96px; }
.legalContent { max-width: 820px; }
.legalContent h1 { font-size: clamp(32px, 4vw, 48px); }
.legalContent h2 { margin-top: 34px; font-size: 24px; }
.legalContent p { color: var(--muted); }
@media (max-width: 900px) {
  .menu { display: none; }
  .heroInner, .introGrid, .reservationGrid, .locationInfo, .footerTop, .footerBottom { grid-template-columns: 1fr; }
  .notePanel { max-width: 300px; }
  .programs { grid-template-columns: 1fr 1fr; }
  .spaceGrid { grid-template-columns: 1fr 1fr; }
  .spaceGrid .large { grid-column: span 2; }
  .heroTicker { font-size: clamp(44px, 15vw, 110px); }
  .heroInner { padding-top: 62px; }
  .heroVisual { justify-items: start; }
}
@media (max-width: 560px) {
  .wrap { width: min(100% - 24px, 1360px); }
  .nav { padding: 14px 0; }
  .logoImage { width: min(250px, 72vw); }
  .call { display: none; }
  h1 { font-size: 34px; }
  h2 { font-size: 27px; }
  section { padding: 62px 0; }
  .hero { min-height: calc(100svh - 76px); }
  .heroTicker { top: 10%; }
  .heroMarkCard { width: min(290px, 78vw); transform: rotateX(6deg) rotateZ(-1deg); }
  .heroInner { padding: 48px 0 62px; }
  .heroMarkWrap { min-height: 140px; }
  .programs, .spaceGrid, .reservationForm { display: block; border-left: 0; }
  .programs article, .spaceGrid figure { margin-bottom: 12px; transform: none !important; }
  .spaceGrid .large { min-height: 340px; }
  .checkList li { grid-template-columns: 1fr; gap: 6px; }
  .mapFrame { height: 240px; }
  .locationInfo { gap: 24px; }
  .footerPhone { font-size: 34px; }
  .footerLinks { flex-wrap: wrap; gap: 14px 22px; }
}

@keyframes heroSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes markFloat {
  0%, 100% { transform: rotateX(7deg) rotateZ(-1deg) translateY(0); }
  50% { transform: rotateX(7deg) rotateZ(-1deg) translateY(-6px); }
}

@media (prefers-reduced-motion: reduce) {
  .heroTicker, .heroMarkCard { animation: none; }
}
