:root {
  --ink: #18201b;
  --green: #213b32;
  --accent: #c66544;
  --leaf: #4f8a63;
  --soft: #eef4e9;
  --cream: #fbf7ed;
  --line: rgba(24, 32, 27, 0.14);
  --muted: #68736d;
  --radius: 8px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", system-ui, sans-serif; letter-spacing: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.creative-header { position: fixed; inset: 0 0 auto; z-index: 10; transform: translateY(-100%); animation: headerDrop 0.7s cubic-bezier(.2,.8,.2,1) 0.15s forwards; display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 74px; padding: 0 clamp(18px, 5vw, 84px); background: rgba(251, 247, 237, 0.9); border-bottom: 1px solid var(--line); backdrop-filter: blur(16px); }
.creative-brand { display: inline-flex; align-items: center; flex: 0 0 auto; gap: 12px; font-weight: 1000; }
.creative-brand span { display: grid; width: 38px; height: 38px; place-items: center; color: white; background: var(--green); border-radius: 50%; }
.creative-nav { display: flex; align-items: center; justify-content: center; flex: 1 1 auto; gap: clamp(18px, 2vw, 30px); color: rgba(24, 32, 27, 0.72); font-weight: 800; }
.creative-nav a:hover { color: var(--leaf); }

.language-switcher {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
}

.language-trigger {
  min-height: 38px;
  padding: 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 1000;
  background: rgba(33, 59, 50, 0.08);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.language-options {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  min-width: 128px;
  gap: 4px;
  padding: 6px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-8px);
  background: rgba(251, 247, 237, 0.98);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(33, 59, 50, 0.14);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.language-switcher:hover .language-options,
.language-switcher:focus-within .language-options {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

.language-switcher:hover .language-trigger,
.language-switcher:focus-within .language-trigger {
  color: white;
  background: var(--green);
}

.language-options button {
  width: 100%;
  height: 34px;
  padding: 0 10px;
  color: rgba(24, 32, 27, 0.68);
  font-size: 12px;
  font-weight: 1000;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}

.language-options button:hover,
.language-options button.active {
  color: white;
  background: var(--green);
}
.creative-menu { display: none; width: 42px; height: 42px; background: transparent; border: 1px solid var(--line); border-radius: var(--radius); }
.creative-menu span { display: block; width: 20px; height: 2px; margin: 5px auto; background: var(--ink); }
.creative-hero { position: relative; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr); gap: clamp(28px, 5vw, 76px); align-items: stretch; min-height: 100svh; padding: 114px clamp(18px, 5vw, 84px) 42px; overflow: hidden; }
.hero-image { position: relative; min-height: 560px; overflow: hidden; background: linear-gradient(180deg, rgba(33, 59, 50, 0.02), rgba(33, 59, 50, 0.66)), url("./assets/store-main.jpg"); background-position: center; background-size: cover; border-radius: var(--radius); transform: scale(1.06); opacity: 0; animation: heroPhotoIn 1.05s cubic-bezier(.16,1,.3,1) 0.2s forwards; box-shadow: 0 30px 90px rgba(33, 59, 50, 0.24); }
.hero-text { align-self: center; position: relative; z-index: 1; }
.hero-text .label, .hero-text h1, .hero-text p:not(.label), .hero-links, .hero-social { opacity: 0; transform: translateY(24px); animation: copyRise 0.8s cubic-bezier(.2,.8,.2,1) forwards; }
.hero-text .label { animation-delay: 0.35s; }
.hero-text h1 { animation-delay: 0.48s; }
.hero-text p:not(.label) { animation-delay: 0.62s; }
.hero-links { animation-delay: 0.78s; }
.hero-social { animation-delay: 0.92s; }
.label { margin: 0 0 14px; color: var(--accent); font-size: 12px; font-weight: 1000; text-transform: uppercase; }
h1, h2 { margin: 0; font-size: clamp(38px, 5.4vw, 82px); line-height: 1.04; font-weight: 1000; }
.hero-text p:not(.label), .visit-copy p { margin: 28px 0 0; color: var(--muted); font-size: clamp(17px, 1.35vw, 22px); line-height: 1.72; }
.hero-text p:empty { display: none; }
.hero-links { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.hero-social { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.hero-social a { display: inline-flex; align-items: center; gap: 9px; min-height: 42px; padding: 0 14px; color: var(--ink); font-size: 14px; font-weight: 1000; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 10px 28px rgba(33, 59, 50, 0.1); transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease; }
.hero-social a:hover { transform: translateY(-3px); border-color: rgba(198, 101, 68, 0.34); box-shadow: 0 18px 42px rgba(33, 59, 50, 0.14); }
.hero-social img { width: 24px; height: 24px; display: block; }
.solid { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 24px; color: white; font-weight: 1000; background: var(--green); border-radius: var(--radius); }
.line { display: inline-flex; align-items: center; min-height: 50px; color: var(--green); font-weight: 1000; border-bottom: 2px solid rgba(79, 138, 99, 0.32); }
.photo-showcase, .split-section, .lesson-section, .routine-section, .map-section, .visit-section { padding: clamp(70px, 8vw, 124px) clamp(18px, 5vw, 84px); }


.photo-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 16px;
  background: #111814;
}

.showcase-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  color: white;
  border-radius: var(--radius);
  background: var(--green);
}

.showcase-card.large {
  grid-row: span 2;
  min-height: 620px;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 0.7s cubic-bezier(.2,.8,.2,1), filter 0.7s ease;
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.72));
}

.showcase-card div {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  z-index: 1;
}

.showcase-card span {
  display: block;
  margin-bottom: 9px;
  color: #ffe16a;
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}

.showcase-card strong {
  display: block;
  font-size: clamp(24px, 2.4vw, 38px);
  line-height: 1.18;
}

.showcase-card:hover img {
  transform: scale(1.1);
  filter: saturate(1.08) contrast(1.04);
}

.split-section { display: grid; grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr); gap: 36px; background: white; }
.space-grid { display: grid; gap: 14px; }
.space-grid article { padding: 26px; background: var(--soft); border: 1px solid rgba(79, 138, 99, 0.18); border-radius: var(--radius); }
.space-grid span { color: var(--leaf); font-weight: 1000; }
h3 { margin: 16px 0 10px; font-size: 26px; line-height: 1.2; }
.space-grid p, .lesson-list p, .routine-list span { color: var(--muted); line-height: 1.7; }
.lesson-section { color: white; background: var(--green); }
.lesson-section .label { color: #bce4c9; }
.section-head { width: min(1120px, 100%); margin-bottom: 34px; }
.lesson-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.lesson-list article { min-height: 240px; padding: 28px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius); }
.lesson-list strong { display: block; margin-bottom: 18px; font-size: clamp(23px, 1.8vw, 28px); line-height: 1.2; word-break: keep-all; }
.lesson-list p { color: rgba(255,255,255,0.86); font-size: clamp(18px, 1.25vw, 21px); font-weight: 700; line-height: 1.75; white-space: pre-line; }
.routine-section { background: #f1e6da; }
.routine-list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; padding: 0; margin: 0; list-style: none; counter-reset: item; }
.routine-list li { min-height: 220px; padding: 26px; background: white; border: 1px solid rgba(198, 101, 68, 0.18); border-radius: var(--radius); }
.routine-list li::before { counter-increment: item; content: counter(item, decimal-leading-zero); display: block; margin-bottom: 38px; color: var(--accent); font-weight: 1000; }
.routine-list strong { display: block; margin-bottom: 12px; font-size: 25px; }
.map-section { display: grid; grid-template-columns: minmax(320px, 0.62fr) minmax(0, 1fr); gap: 20px; align-items: stretch; background: var(--cream); }
.map-copy { display: grid; align-content: center; padding: clamp(28px, 5vw, 56px); background: white; border: 1px solid var(--line); border-radius: var(--radius); }
.map-copy h2 { font-size: clamp(34px, 4.2vw, 68px); }
.map-copy p:not(.label) { margin: 24px 0 0; color: var(--muted); font-size: clamp(17px, 1.25vw, 21px); line-height: 1.7; }
.map-copy .solid { width: fit-content; margin-top: 30px; }
.map-section img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.visit-section { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr); gap: 20px; }
.visit-copy, .visit-card { padding: clamp(28px, 5vw, 56px); background: white; border: 1px solid var(--line); border-radius: var(--radius); }
.visit-route { font-size: clamp(15px, 1vw, 17px) !important; line-height: 1.65 !important; }
.visit-copy .solid { margin-top: 30px; }
.booking-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}
.booking-links a {
  display: grid;
  gap: 9px;
  min-height: 112px;
  place-items: center;
  padding: 16px 10px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 1000;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.booking-links a:hover {
  transform: translateY(-5px);
  border-color: rgba(198, 101, 68, 0.34);
  box-shadow: 0 18px 42px rgba(33, 59, 50, 0.14);
}
.booking-links img {
  width: 46px;
  height: 46px;
  display: block;
}

.visit-card dl { display: grid; gap: 22px; margin: 0; }
.visit-card div { padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.visit-card div:last-child { padding-bottom: 0; border-bottom: 0; }
dt { color: var(--accent); font-size: 12px; font-weight: 1000; text-transform: uppercase; }
dd { margin: 8px 0 0; font-size: 22px; font-weight: 900; line-height: 1.35; white-space: pre-line; }
@media (max-width: 980px) { .photo-showcase { grid-template-columns: 1fr; } .showcase-card.large { min-height: 420px; } .creative-nav { display: none; } .language-switcher { order: 2; justify-content: flex-end; margin: 0 0 12px auto; } .creative-menu { display: block; margin-left: auto; } .creative-header { flex-wrap: wrap; padding-top: 10px; } .creative-header.open .creative-nav { position: absolute; top: 116px; left: 0; display: grid; width: 100%; gap: 0; padding: 8px 18px 20px; background: rgba(251,247,237,0.98); border-bottom: 1px solid var(--line); } .creative-header.open .creative-nav a { padding: 16px 0; border-bottom: 1px solid var(--line); } .creative-hero, .split-section, .map-section, .visit-section { grid-template-columns: 1fr; } .creative-hero { padding-top: 142px; } .lesson-list, .routine-list { grid-template-columns: repeat(2, minmax(0, 1fr)); } .map-section img { min-height: 300px; } }
@media (max-width: 640px) { .language-trigger { min-height: 36px; padding-inline: 12px; font-size: 11px; } .language-options { min-width: 118px; } .photo-showcase { gap: 10px; } .showcase-card, .showcase-card.large { min-height: 280px; } .booking-links { grid-template-columns: 1fr; } .booking-links a { min-height: 82px; grid-template-columns: auto 1fr; justify-items: start; padding-inline: 18px; } .creative-brand strong { font-size: 16px; } .creative-hero { min-height: auto; padding-top: 142px; } .hero-image { min-height: 350px; } .lesson-list, .routine-list { grid-template-columns: 1fr; } h1, h2 { font-size: 36px; } .hero-links { flex-direction: column; align-items: stretch; } .hero-social { display: grid; grid-template-columns: 1fr; } .hero-social a { justify-content: center; } .solid, .line { width: 100%; text-align: center; } }


.motion-track {
  position: absolute;
  right: -12vw;
  bottom: 8vh;
  left: 42vw;
  height: 2px;
  overflow: hidden;
  background: rgba(198, 101, 68, 0.18);
  transform: rotate(-8deg);
}

.motion-track span {
  display: block;
  width: 36%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: roadSweep 2.4s cubic-bezier(.4,0,.2,1) infinite;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.22) 48%, transparent 61%);
  transform: translateX(-120%);
  animation: imageGlint 3.8s ease-in-out 1.2s infinite;
}

.solid, .line, .space-grid article, .lesson-list article, .routine-list li, .visit-card, .visit-copy {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.solid:hover, .line:hover {
  transform: translateY(-3px);
}

.space-grid article:hover, .lesson-list article:hover, .routine-list li:hover, .visit-card:hover, .visit-copy:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 52px rgba(33, 59, 50, 0.14);
}

.reveal-block {
  opacity: 0;
  transform: translateY(44px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(.2,.8,.2,1);
}

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

.reveal-block article,
.reveal-block li,
.reveal-block .visit-copy,
.reveal-block .visit-card {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(.2,.8,.2,1);
}

.reveal-block.is-visible article,
.reveal-block.is-visible li,
.reveal-block.is-visible .visit-copy,
.reveal-block.is-visible .visit-card {
  opacity: 1;
  transform: translateY(0);
}

.reveal-block.is-visible article:nth-child(2),
.reveal-block.is-visible li:nth-child(2),
.reveal-block.is-visible .visit-card { transition-delay: 0.08s; }
.reveal-block.is-visible article:nth-child(3),
.reveal-block.is-visible li:nth-child(3) { transition-delay: 0.16s; }
.reveal-block.is-visible li:nth-child(4) { transition-delay: 0.24s; }

@keyframes headerDrop {
  to { transform: translateY(0); }
}

@keyframes heroPhotoIn {
  to { transform: scale(1); opacity: 1; }
}

@keyframes copyRise {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes roadSweep {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(310%); }
}

@keyframes imageGlint {
  0%, 55% { transform: translateX(-120%); }
  78%, 100% { transform: translateX(120%); }
}

.quick-contact {
  position: fixed;
  right: 18px;
  top: 50%;
  z-index: 30;
  display: grid;
  gap: 8px;
  transform: translateY(-50%);
}

.quick-contact a {
  display: grid;
  min-width: 74px;
  min-height: 38px;
  place-items: center;
  padding: 0 10px;
  color: white;
  font-size: 13px;
  font-weight: 1000;
  background: var(--green);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(33, 59, 50, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-contact a:hover {
  transform: translateX(-3px);
  box-shadow: 0 18px 42px rgba(33, 59, 50, 0.28);
}

.quick-kakao {
  color: var(--ink) !important;
  background: #fee500 !important;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 34px 18px;
  color: white;
  font-weight: 1000;
  background: var(--green);
}

.site-footer a {
  font-size: 22px;
}

@media (max-width: 640px) {
  .quick-contact {
    right: 12px;
    top: auto;
    bottom: 14px;
    grid-template-columns: repeat(2, auto);
    transform: none;
  }

  .quick-contact a {
    min-width: 78px;
    min-height: 40px;
  }
}

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

  .reveal-block,
  .reveal-block article,
  .reveal-block li,
  .reveal-block .visit-copy,
  .reveal-block .visit-card,
  .hero-image,
  .hero-text .label,
  .hero-text h1,
  .hero-text p:not(.label),
  .hero-links,
  .hero-social,
  .creative-header {
    opacity: 1;
    transform: none;
  }
}
