/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color .2s; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
ul, ol { list-style: none; }
input, select, textarea, button { font-family: inherit; font-size: inherit; }

/* ========== TOKENS ========== */
/* Pantone 16-1546 · Living Coral — confident presence */
:root {
  --bg: #FFF8F0;
  --bg-warm: #FFDDC8;
  --bg-deep: #FFC4AC;
  --bg-rose: #FFCDB8;
  --bg-mint: #DDE9D9;
  --text: #2A1F1B;
  --text-soft: #5C4A44;
  --text-mute: #9A8780;
  --line: #FFCDBE;
  --primary: #FA7268;          /* Pantone 16-1546 Living Coral */
  --primary-deep: #DA4438;
  --primary-soft: #FFB8A5;
  --primary-glow: #FF9080;
  --accent: #87A887;
  --accent-deep: #6B8C6F;
  --rose: #FF9A88;
  --gold: #D9994E;
  --shadow-sm: 0 4px 16px rgba(250, 114, 104, 0.12);
  --shadow-md: 0 18px 48px rgba(250, 114, 104, 0.18);
  --shadow-lg: 0 30px 80px rgba(250, 114, 104, 0.24);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 32px;
  --container: 1200px;
  --header-h: 76px;
}

.serif { font-family: 'Cormorant Garamond', 'Pretendard Variable', serif; font-weight: 400; }
.italic { font-style: italic; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ========== HEADER ========== */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(255, 252, 247, 0.88);
  backdrop-filter: saturate(150%) blur(18px);
  -webkit-backdrop-filter: saturate(150%) blur(18px);
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: border-color .25s, background .25s;
}
.header.scrolled { border-bottom-color: var(--line); }
.header__inner {
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex; flex-direction: column; line-height: 1;
}
.logo__main {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 28px;
  letter-spacing: 0.02em;
  color: var(--primary);
}
.logo__sub {
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--text-mute);
  margin-top: 4px;
}
.nav { display: flex; gap: 28px; }
.nav a {
  font-size: 14px;
  color: var(--text-soft);
  position: relative;
  padding: 4px 0;
  white-space: nowrap;
}
.nav a:hover { color: var(--primary); }
.nav a::after {
  content: ''; position: absolute; left: 50%; bottom: 0;
  width: 0; height: 1px; background: var(--primary);
  transition: width .3s, left .3s;
}
.nav a:hover::after { width: 100%; left: 0; }

.nav-toggle {
  display: none; width: 32px; height: 32px;
  flex-direction: column; justify-content: center; gap: 5px;
}
.nav-toggle span {
  display: block; height: 1.5px; background: var(--text);
  transition: transform .3s, opacity .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn--small { padding: 10px 20px; font-size: 13.5px; }
.btn--full { width: 100%; }
.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 26px rgba(250, 114, 104, 0.32);
}
.btn--primary:hover {
  background: var(--primary-deep);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(250, 114, 104, 0.42);
}
.btn--ghost {
  background: rgba(255,255,255,0.6);
  color: var(--text);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: #fff;
}

/* ========== SECTION COMMON ========== */
.section { padding: 100px 0; position: relative; }
.section__head { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.section__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
}
.section__title .serif { font-size: 1.18em; color: var(--primary); }
.section__desc { color: var(--text-soft); font-size: 16px; }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: var(--primary);
  margin-bottom: 18px;
  padding: 6px 14px;
  background: var(--primary-soft);
  border-radius: 999px;
}
.lead {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 18px;
  line-height: 1.75;
  font-weight: 500;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-h) + 40px);
  padding-bottom: 60px;
  display: flex; align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #FFF6F0 0%, #FFE0D6 50%, #FFCBBE 100%);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: float 14s ease-in-out infinite;
}
.hero__circle--1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle at 30% 30%, #FA7268, transparent 70%);
  top: -150px; right: -100px;
}
.hero__circle--2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle at 50% 50%, #C9E0BD, transparent 70%);
  bottom: -120px; left: -80px;
  animation-delay: -5s;
}
.hero__circle--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle at 50% 50%, #FFB5AB, transparent 70%);
  top: 40%; left: 35%;
  animation-delay: -8s;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.05); }
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero__text { max-width: 580px; }
.hero__eyebrow {
  font-size: 12px; letter-spacing: 0.4em;
  color: var(--primary);
  margin-bottom: 28px;
  font-weight: 700;
}
.hero__title {
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -0.015em;
  margin-bottom: 28px;
  color: #4D3128;
}
.hero__title .serif { font-size: 1.18em; color: var(--primary-deep); }
.hero__title em {
  font-style: normal;
  background: linear-gradient(120deg, transparent 60%, rgba(250, 114, 104, 0.32) 60%);
  padding: 0 6px;
}
.hero__desc {
  font-size: clamp(15px, 1.5vw, 17px);
  color: #7A5040;
  margin-bottom: 36px;
  line-height: 1.85;
}
.hero__cta {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 56px;
}
.hero__meta {
  display: flex; gap: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(77, 49, 40, 0.18);
}
.hero__meta div { display: flex; flex-direction: column; gap: 6px; }
.hero__meta strong {
  font-family: 'Pretendard Variable', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #4D3128;
  letter-spacing: -0.01em;
  line-height: 1;
}
.hero__meta span {
  font-size: 13px;
  color: #8A6354;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

/* Hero visual */
.hero__visual {
  position: relative;
  width: 100%;
  max-width: 540px;
  justify-self: center;
}
.hero__art {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(70, 40, 25, 0.18));
}
.hero__sticker {
  position: absolute;
  top: 24%;
  right: -12px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--text);
  color: #fff;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 3;
  transform: rotate(-12deg);
  box-shadow: var(--shadow-md);
}
.hero__sticker span {
  font-size: 22px;
  font-style: italic;
  color: var(--rose);
}
.hero__sticker strong {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-top: 4px;
}

.hero__scroll {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 38px; border: 1px solid var(--text-mute);
  border-radius: 12px;
  display: flex; justify-content: center; padding-top: 8px;
  z-index: 4;
}
.hero__scroll span {
  display: block; width: 2px; height: 8px;
  background: var(--text-mute);
  border-radius: 2px;
  animation: scroll-down 2s ease infinite;
}
@keyframes scroll-down {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

/* ========== LANG TOGGLE ========== */
.lang-toggle {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
}
.lang-toggle button {
  padding: 6px 12px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-mute);
  border-radius: 999px;
  transition: background .25s, color .25s;
  line-height: 1;
}
.lang-toggle button.active {
  background: var(--primary);
  color: #fff;
}
.lang-toggle button:not(.active):hover {
  color: var(--primary);
}

/* ========== ABOUT ========== */
.about { background: var(--bg); padding-top: 120px; }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 80px;
  align-items: center;
}
.about__visual {
  position: relative;
}
.about__img-frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--bg-warm);
}
.about__img-frame > svg {
  width: 100%; height: 100%;
  display: block;
}
.about__img-secondary {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 50%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 8px solid var(--bg);
  background: var(--bg-warm);
  z-index: 3;
}
.about__img-secondary > svg {
  width: 100%; height: 100%;
}
.about__badge {
  position: absolute;
  top: -25px; left: -25px;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  transform: rotate(-8deg);
  z-index: 3;
}
.about__badge span {
  font-size: 16px; opacity: 0.8;
}
.about__badge strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 500;
  font-style: italic;
}
.about__text p { color: var(--text-soft); margin-bottom: 18px; }
.about__values {
  margin-top: 36px;
}
.about__values li {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 22px 24px;
  background: var(--bg-warm);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  transition: transform .25s, background .25s;
}
.about__values li:hover {
  transform: translateX(6px);
  background: var(--primary-soft);
}
.about__values span {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 28px;
  color: var(--primary);
  min-width: 36px;
  line-height: 1;
}
.about__values strong {
  display: block;
  font-size: 15.5px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}
.about__values em {
  font-style: normal;
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ========== PROCESS ========== */
.process {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-warm) 100%);
}
.process__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process__item {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px 32px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform .35s;
}
.process__item:hover { transform: translateY(-6px); }
.process__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
}
.process__icon {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
}
.process__icon::after {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
}
.process__icon--1 { background: linear-gradient(135deg, #FFE0D2, #FFB5AB); }
.process__icon--1::after { content: '🌿'; }
.process__icon--2 { background: linear-gradient(135deg, #FFD3CB, #FA7268); }
.process__icon--2::after { content: '🥣'; }
.process__icon--3 { background: linear-gradient(135deg, #FFEDE5, #FFA89D); }
.process__icon--3::after { content: '✋'; }
.process__icon--4 { background: linear-gradient(135deg, #DCE8D2, #9BB89A); }
.process__icon--4::after { content: '🕯️'; }
.process__item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.process__item p {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ========== CLASSES ========== */
.classes { background: var(--bg-warm); }
.classes__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 24px 32px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .35s, box-shadow .35s;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.card--featured {
  background: linear-gradient(180deg, #FFF0E5 0%, #FFFFFF 60%);
  border: 1px solid var(--gold);
}
.card__tag {
  position: absolute; top: 36px; right: 36px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  background: rgba(255,255,255,0.95);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 999px;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}
.card--featured .card__tag {
  background: var(--gold); color: #fff;
}
.card__art {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  margin-bottom: 22px;
  overflow: hidden;
  background: var(--bg-warm);
}
.card__art > svg {
  width: 100%; height: 100%;
  display: block;
  transition: transform .6s;
}
.card:hover .card__art > svg { transform: scale(1.05); }
.card__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.card__desc {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 18px;
  flex-grow: 1;
}
.card__meta {
  font-size: 13px;
  color: var(--text-mute);
  margin-bottom: 22px;
}
.card__meta li { padding: 3px 0; }
.card__price {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--primary);
}
.price__sub { font-size: 12px; color: var(--text-mute); }
.card__link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  align-self: flex-start;
  transition: transform .25s;
}
.card__link:hover { color: var(--primary-deep); transform: translateX(4px); }

/* ========== QUOTE BANNER ========== */
.quote-banner {
  padding: 100px 0;
  background:
    linear-gradient(135deg, rgba(250, 114, 104, 0.95), rgba(225, 84, 72, 0.95));
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.quote-banner::before, .quote-banner::after {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 240px;
  position: absolute;
  opacity: 0.18;
  line-height: 1;
}
.quote-banner::before { top: -40px; left: 5%; }
.quote-banner::after { bottom: -120px; right: 5%; }
.quote-banner__text {
  font-size: clamp(24px, 3.5vw, 38px);
  line-height: 1.5;
  margin-bottom: 18px;
  position: relative; z-index: 1;
}
.quote-banner__sub {
  font-size: 13px;
  letter-spacing: 0.2em;
  opacity: 0.85;
  position: relative; z-index: 1;
}

/* ========== GIFTS ========== */
.gifts { background: var(--bg); }
.gifts__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.gifts__text p { color: var(--text-soft); margin-bottom: 18px; }
.gifts__features {
  margin: 32px 0;
}
.gifts__features li {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  align-items: baseline;
}
.gifts__features li:last-child { border-bottom: 1px solid var(--line); }
.gifts__features strong {
  font-size: 15.5px;
  color: var(--primary);
  font-weight: 600;
}
.gifts__features span {
  font-size: 14px;
  color: var(--text-soft);
}
.gifts__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 230px);
  gap: 16px;
}
.gifts__item {
  border-radius: var(--radius-sm);
  position: relative;
  overflow: hidden;
  transition: transform .4s;
  background: var(--bg-warm);
  box-shadow: var(--shadow-sm);
}
.gifts__item > svg {
  width: 100%; height: 100%;
  display: block;
  transition: transform .6s;
}
.gifts__item:hover { transform: scale(1.03); box-shadow: var(--shadow-md); }
.gifts__item:hover > svg { transform: scale(1.06); }
.gifts__item--2 { margin-top: 24px; }
.gifts__item--3 { margin-top: -24px; }

/* ========== INSTRUCTOR ========== */
.instructor {
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.instructor__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.instructor__visual {
  position: relative;
  max-width: 460px;
  margin: 0 auto;
}
.instructor__img-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--primary-soft);
  box-shadow: var(--shadow-lg);
}
.instructor__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.instructor__placeholder {
  display: flex;
  flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--primary-deep);
  text-align: center;
  padding: 24px;
}
.instructor__svg {
  width: 140px;
  margin-bottom: 16px;
  opacity: 0.85;
}
.instructor__placeholder p {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--primary-deep);
}
.instructor__placeholder small {
  font-size: 12px;
  opacity: 0.7;
  letter-spacing: 0.04em;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}
.instructor__sticker {
  position: absolute;
  bottom: -20px; right: -20px;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 2;
  box-shadow: var(--shadow-md);
  transform: rotate(-8deg);
}
.instructor__sticker span {
  font-size: 20px;
  font-style: italic;
}
.instructor__sticker strong {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  margin-top: 4px;
}
.instructor__quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 24px;
  line-height: 1.55;
  color: var(--primary-deep);
  padding: 24px 0 24px 24px;
  border-left: 2px solid var(--primary);
  margin: 24px 0;
}
.instructor__bio p { color: var(--text-soft); margin-bottom: 14px; font-size: 16px; }
.instructor__credits {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}
.instructor__credits li {
  position: relative;
  padding: 6px 0 6px 20px;
  font-size: 14px;
  color: var(--text);
}
.instructor__credits li::before {
  content: '◆';
  position: absolute; left: 0; top: 6px;
  color: var(--gold); font-size: 9px;
}

/* ========== REVIEWS ========== */
.reviews { background: var(--bg-warm); border-top: 1px solid var(--line); }
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s;
  display: flex; flex-direction: column;
}
.review:hover { transform: translateY(-4px); }
.review__stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.review__text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 18px;
  flex-grow: 1;
}
.review__author {
  font-size: 13.5px;
  color: var(--text-soft);
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.review__author strong { color: var(--text); margin-right: 4px; }

/* ========== FAQ ========== */
.faq {
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.faq__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.faq__head { position: static; }
.faq__head p { color: var(--text-soft); font-size: 15px; margin-top: 12px; }
.faq__head a { color: var(--primary); font-weight: 600; }
.faq__head a:hover { text-decoration: underline; }
.faq__list { display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 4px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s;
}
.faq__item[open] { box-shadow: var(--shadow-md); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  position: relative;
  padding-right: 40px;
  user-select: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--primary);
  transition: transform .3s;
  font-weight: 300;
}
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__item p {
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.75;
  padding: 0 0 22px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

/* ========== BOOKING ========== */
.booking {
  background: var(--bg-warm);
  border-top: 1px solid var(--line);
  color: var(--text);
}
.booking__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.booking__channels { margin-top: 36px; display: flex; flex-direction: column; gap: 14px; }
.channel {
  display: flex; align-items: center; gap: 18px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-sm);
  transition: all .25s;
  backdrop-filter: blur(8px);
}
.channel:hover {
  background: #fff;
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}
.channel__icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}
.channel--naver .channel__icon { background: #03C75A; color: #fff; }
.channel--kakao .channel__icon { background: #FEE500; color: #181600; }
.channel--insta .channel__icon {
  background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF);
  color: #fff;
}
.channel strong { display: block; font-size: 15px; margin-bottom: 4px; color: var(--text); }
.channel span { font-size: 13px; color: var(--text-soft); }

.booking__form {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
}
.booking__form h3 {
  font-size: 22px;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.booking__form label {
  display: block;
  margin-bottom: 16px;
}
.booking__form label > span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.booking__form input,
.booking__form select,
.booking__form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  font-size: 14.5px;
  color: var(--text);
  transition: border-color .2s, background .2s;
}
.booking__form input:focus,
.booking__form select:focus,
.booking__form textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
}
.booking__form textarea { resize: vertical; min-height: 100px; }
.booking__form .btn { margin-top: 8px; }
.form__note {
  font-size: 12px;
  color: var(--text-mute);
  margin-top: 12px;
  text-align: center;
}

/* Privacy consent */
.booking__form .form__consent {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 14px;
  margin-bottom: 16px;
  background: var(--bg-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  user-select: none;
  flex-wrap: nowrap;
}
.booking__form .form__consent input[type="checkbox"] {
  width: 16px; height: 16px;
  margin: 0;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
}
.form__consent-text {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  color: var(--text);
  line-height: 1.4;
  flex-wrap: wrap;
}
.form__consent-text strong { font-weight: 500; }
.form__consent-view {
  font-size: 12.5px;
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
  cursor: pointer;
}
.form__consent-view:hover { color: var(--primary-deep); }

/* Modal */
.modal {
  position: fixed; inset: 0;
  background: rgba(40, 25, 20, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: none;
  align-items: center; justify-content: center;
  padding: 24px;
  z-index: 200;
  opacity: 0;
  transition: opacity .25s;
}
.modal.open {
  display: flex;
  opacity: 1;
}
.modal__panel {
  width: 100%;
  max-width: 480px;
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 32px 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  max-height: 85vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform .3s ease;
}
.modal.open .modal__panel { transform: translateY(0); }
.modal__close {
  position: absolute;
  top: 14px; right: 16px;
  width: 32px; height: 32px;
  font-size: 24px;
  color: var(--text-mute);
  line-height: 1;
  border-radius: 50%;
  transition: background .2s, color .2s;
}
.modal__close:hover { background: var(--bg-warm); color: var(--text); }
.modal__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.modal__list {
  margin-bottom: 24px;
}
.modal__list > div {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.modal__list > div:last-of-type { border-bottom: 1px solid var(--line); }
.modal__list dt {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.modal__list dd {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}

/* ========== LOCATION ========== */
.location { background: var(--bg); border-top: 1px solid var(--line); }
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.location__info {
  margin: 28px 0 32px;
}
.location__info > div {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
  align-items: baseline;
}
.location__info > div:last-child { border-bottom: 1px solid var(--line); }
.location__info dt {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--primary);
}
.location__info dd { font-size: 15.5px; color: var(--text); }
.dim { color: var(--text-mute); font-size: 14px; }
.location__map {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--bg-warm), var(--bg-deep));
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
}
.map-placeholder {
  text-align: center;
  color: var(--text-soft);
}
.map-placeholder span { font-size: 64px; }
.map-placeholder p { font-size: 18px; font-weight: 600; margin: 8px 0 4px; }
.map-placeholder small { font-size: 12px; color: var(--text-mute); }

/* ========== FOOTER ========== */
.footer {
  background: #2A1F18;
  color: rgba(255,255,255,0.7);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding: 70px 28px 50px;
}
.footer__brand .logo__main {
  color: var(--rose);
  font-size: 36px;
}
.footer__brand p {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__cols h4 {
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--rose);
  margin-bottom: 14px;
  font-weight: 700;
}
.footer__cols p {
  font-size: 13.5px;
  line-height: 1.8;
}
.footer__cols a:hover { color: var(--rose); }
.footer__copy {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer__copy small {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
}

/* ========== FLOATING CTA ========== */
.float-cta {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 14px 32px rgba(250, 114, 104, 0.45);
  z-index: 90;
  transition: transform .3s, width .3s;
}
.float-cta span { font-size: 22px; }
.float-cta em {
  font-style: normal;
  font-size: 9px;
  letter-spacing: 0.15em;
  margin-top: 2px;
}
.float-cta:hover { transform: scale(1.08); }

/* ========== ANIMATIONS ========== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .nav { gap: 18px; }
  .nav a { font-size: 13px; }
  .process__list { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .instructor__credits { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  .section { padding: 80px 0; }
  .hero__inner, .about__grid, .gifts__grid, .instructor__grid, .booking__inner, .location__grid, .faq__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .hero { padding-top: calc(var(--header-h) + 30px); padding-bottom: 60px; min-height: auto; }
  .hero__visual { max-width: 480px; margin: 0 auto; }
  .about__visual, .instructor__visual { max-width: 460px; margin: 0 auto; }
  .classes__grid { grid-template-columns: repeat(2, 1fr); }
  .faq__head { position: static; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .nav { display: none; position: fixed; top: var(--header-h); left: 0; right: 0;
    background: var(--bg);
    flex-direction: column; gap: 0;
    padding: 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
  }
  .nav.open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; }
  .nav a::after { display: none; }
  .nav-toggle { display: flex; }
  .header .btn--small { display: none; }

  .hero__sticker { width: 90px; height: 90px; right: -10px; }
  .hero__meta { flex-wrap: wrap; gap: 24px; }
  .hero__meta strong { font-size: 28px; }

  .section { padding: 64px 0; }
  .section__head { margin-bottom: 36px; }
  .quote-banner { padding: 70px 0; }

  .process__list { grid-template-columns: 1fr; gap: 16px; }
  .classes__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .gifts__features li { grid-template-columns: 1fr; gap: 4px; }
  .gifts__gallery { grid-template-rows: repeat(2, 170px); }
  .gifts__item--2, .gifts__item--3 { margin-top: 0; }

  .about__img-secondary { width: 45%; bottom: -20px; right: -10px; }
  .about__badge { width: 100px; height: 100px; top: -15px; left: -10px; }
  .about__badge strong { font-size: 22px; }
  .about__badge span { font-size: 13px; }

  .footer__cols { grid-template-columns: 1fr; gap: 28px; }
  .float-cta { width: 56px; height: 56px; bottom: 20px; right: 20px; }

  .booking__form { padding: 28px 24px; }
  .instructor__quote { font-size: 20px; padding-left: 18px; }
}
