:root {
  --bg: #fffdf7;
  --surface: #ffffff;
  --surface-alt: #f5f9ff;
  --text: #1f2937;
  --muted: #6b7280;
  --primary: #6d5efc;
  --secondary: #2ec5ce;
  --accent: #ffb547;
  --border: #e9edf5;
  --shadow: 0 10px 25px rgba(23, 32, 58, 0.08);
  --radius: 20px;
  --radius-sm: 12px;
  --container: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: "Pretendard", "Noto Sans KR", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top right, #eef4ff, transparent 40%), var(--bg);
  line-height: 1.7;
  word-break: keep-all;
  overflow-wrap: break-word;
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; border-radius: var(--radius-sm); }

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  padding: 0.85rem 0;
  row-gap: 0.75rem;
}

.brand {
  font-weight: 800;
  font-size: 1.22rem;
  letter-spacing: -0.02em;
  color: var(--primary);
  line-height: 1.2;
}

.brand:focus {
  outline: none;
}

.brand:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  flex: 1 1 auto;
  min-width: 0;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: -0.01em;
  color: #1f2937;
  padding: 0.52rem 0.95rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  line-height: 1.25;
  white-space: nowrap;
}

.nav-links a:hover {
  background: #f3f4f6;
  color: #111827;
}

/* 마우스 클릭 시 브라우저 기본 검은 포커스 테두리 방지 — 키보드(:focus-visible)만 링 표시 */
.nav-links a:focus {
  outline: none;
}

.nav-links a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.nav-links a.active {
  background: #eef2ff;
  color: #4338ca;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: 0.2s ease;
}

.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { filter: brightness(1.05); transform: translateY(-1px); }
.btn-soft { background: #eef2ff; color: var(--primary); }
.btn-soft:hover { background: #e0e7ff; }

.hero {
  padding: 4.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr minmax(260px, 0.85fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 26rem;
  justify-self: end;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 12% -8% -6% 10%;
  background: linear-gradient(145deg, rgba(109, 94, 252, 0.12), rgba(46, 197, 206, 0.08));
  border-radius: 28px;
  z-index: 0;
}

.hero-figure {
  position: relative;
  z-index: 1;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(233, 237, 245, 0.95);
  background: var(--surface);
  box-shadow:
    0 32px 64px rgba(23, 32, 58, 0.14),
    0 4px 12px rgba(23, 32, 58, 0.06);
}

.hero-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  display: block;
}

.section-home-preview {
  padding-top: 2.5rem;
}

.home-preview-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.home-preview-grid > li {
  margin: 0;
  padding: 0;
}

.preview-tile {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #f1f3f8;
  box-shadow: 0 2px 8px rgba(23, 32, 58, 0.05);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.preview-tile:hover {
  border-color: #dde2ee;
  box-shadow: 0 12px 28px rgba(23, 32, 58, 0.1);
}

.preview-tile:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.preview-tile img {
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.kicker {
  display: inline-block;
  background: #fff3de;
  color: #9a5b00;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

h1, h2, h3 { line-height: 1.2; margin: 0 0 0.7rem; }
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.4vw, 2.2rem); }

.lead { color: var(--muted); max-width: 52ch; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.card-media {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.section {
  padding: 3rem 0;
}

.section.alt { background: var(--surface-alt); }
.section-head { margin-bottom: 1rem; }

.program-card h3 { font-size: 1.1rem; }
.tag {
  display: inline-block;
  font-size: 0.75rem;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  background: #ecfeff;
  color: #0e7490;
  margin-right: 0.3rem;
}

.round-thumb {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #eef2ff;
  margin: 0 auto 0.8rem;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.meta-box {
  border-top: 3px solid #c7d2fe;
  padding-top: 0.35rem;
  font-size: 0.84rem;
}

.meta-box strong {
  display: block;
  font-size: 0.76rem;
  color: #4f46e5;
}

.teachers-section {
  margin-top: 2.5rem;
  padding: 0 0 2rem;
}

.teachers-inner {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.teachers-head {
  max-width: 34rem;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.teachers-head h2 {
  margin-bottom: 0.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.teachers-intro {
  margin: 0;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.teachers-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.teachers-grid > li {
  margin: 0;
  padding: 0;
}

.teacher-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.teacher-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  flex-shrink: 0;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  background: #eceff5;
}

.teacher-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  border-radius: 0;
  display: block;
}

.teacher-body {
  padding: 1rem 1rem 1.15rem;
  text-align: center;
  border-top: 1px solid #f0f2f6;
}

.teacher-name {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--text);
}

.teacher-role {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--muted);
  line-height: 1.4;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.placeholder {
  min-height: 160px;
  border: 1px dashed #cdd6e5;
  border-radius: var(--radius-sm);
  background: linear-gradient(160deg, #f7fbff, #f4f0ff);
  display: grid;
  place-content: center;
  color: #64748b;
  text-align: center;
  font-size: 0.9rem;
  padding: 0.8rem;
}

.cta-box {
  background: linear-gradient(90deg, #ede9fe, #e0f2fe);
  border: 1px solid #dbe3ff;
  border-radius: var(--radius);
  padding: 1.2rem;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.site-footer {
  margin-top: 3rem;
  border-top: 1px solid var(--border);
  padding: 1.2rem 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-grid {
  display: grid;
  gap: 0.8rem;
}

input, textarea {
  width: 100%;
  border: 1px solid #d3d9e6;
  border-radius: 10px;
  padding: 0.68rem;
  font: inherit;
}

textarea { min-height: 120px; resize: vertical; }

@media (max-width: 900px) {
  .card-grid,
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .home-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .teachers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
  .cta-box {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .hero-grid > div:first-child {
    max-width: 36rem;
  }
  .hero-grid > div:first-child .lead {
    margin-inline: auto;
  }
  .hero-grid > div:first-child p:last-of-type {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
  }
  .hero-visual {
    order: -1;
    justify-self: center;
    max-width: min(100%, 22rem);
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 0.7rem 0 0.85rem;
  }
  body.page-home .nav-links {
    border-top-color: rgba(249, 115, 22, 0.12);
  }
  .nav-links {
    order: 3;
    flex-basis: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 0.45rem;
    padding: 0.65rem 0 0.35rem;
    margin: 0 -0.25rem;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    mask-image: linear-gradient(
      to right,
      transparent,
      #000 12px,
      #000 calc(100% - 12px),
      transparent
    );
  }
  .nav-links a {
    flex-shrink: 0;
    font-size: 0.94rem;
    padding: 0.48rem 0.88rem;
  }

  body.page-home .nav-links a {
    font-size: 1.04rem;
    padding: 0.52rem 0.95rem;
  }
}

@media (max-width: 640px) {
  .hero { padding-top: 3rem; }
  .card-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid--8 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-preview-grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }
  .teachers-grid {
    grid-template-columns: 1fr;
    max-width: 22rem;
    margin-inline: auto;
  }
}

/* —— Home page (reference: playful cream + orange/teal) —— */
body.page-home {
  --home-wave-fill: #eaf6fc;
  --home-orange: #f97316;
  --home-orange-deep: #ea580c;
  --home-teal: #14b8a6;
  --home-teal-deep: #0d9488;
  --home-cream: #fffbf7;
  background: var(--home-cream);
}

body.page-home .site-header {
  background: rgba(255, 251, 247, 0.92);
  border-bottom-color: rgba(253, 230, 200, 0.5);
}

body.page-home .brand {
  color: var(--home-orange-deep);
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-transform: none;
}

body.page-home .nav-links a {
  color: #1c1917;
  font-weight: 600;
  font-size: 1rem;
}

body.page-home .nav-links a:hover {
  background: rgba(255, 237, 213, 0.85);
  color: var(--home-orange-deep);
}

body.page-home .nav-links a.active {
  background: #ffedd5;
  color: #9a3412;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(249, 115, 22, 0.25);
}

body.page-home .nav-links a:focus {
  outline: none;
}

body.page-home .nav-links a:focus-visible {
  outline: 2px solid var(--home-orange);
  outline-offset: 2px;
}

body.page-home .btn-header-cta {
  background: var(--home-orange);
  color: #fff;
  padding: 0.62rem 1.2rem;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}

body.page-home .btn-header-cta:hover {
  filter: brightness(1.06);
}

body.page-home .btn-header-cta:focus {
  outline: none;
}

body.page-home .btn-header-cta:focus-visible {
  outline: 2px solid var(--home-teal);
  outline-offset: 3px;
}

body.page-home .hero-playful {
  position: relative;
  padding: 3.5rem 0 0;
  margin-bottom: 0;
  overflow: hidden;
}

body.page-home .hero-bg-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

body.page-home .hero-float {
  position: absolute;
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1;
  color: var(--home-orange);
  opacity: 0.11;
  font-family: Georgia, "Times New Roman", serif;
  user-select: none;
}

body.page-home .hero-float--1 { top: 12%; left: 8%; transform: rotate(-12deg); }
body.page-home .hero-float--2 { top: 22%; right: 12%; color: var(--home-teal); transform: rotate(8deg); }
body.page-home .hero-float--3 { bottom: 38%; left: 4%; color: #f472b6; font-size: clamp(2.5rem, 8vw, 4rem); transform: rotate(-6deg); }
body.page-home .hero-float--4 { bottom: 30%; right: 22%; transform: rotate(15deg); }

body.page-home .hero-playful .hero-grid {
  position: relative;
  z-index: 1;
  padding-bottom: 4rem;
}

body.page-home .hero-title {
  font-size: clamp(1.85rem, 4.2vw, 2.75rem);
  font-weight: 800;
  color: #1c1917;
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin-bottom: 1rem;
}

body.page-home .hero-lead {
  margin: 0 0 1.5rem;
  max-width: 40rem;
  font-size: 1.05rem;
  color: #44403c;
  line-height: 1.8;
}

body.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0;
}

body.page-home .btn-hero-orange {
  background: var(--home-orange);
  color: #fff;
  padding: 0.8rem 1.35rem;
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.28);
}

body.page-home .btn-hero-orange:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

body.page-home .btn-hero-teal {
  background: var(--home-teal);
  color: #fff;
  padding: 0.8rem 1.35rem;
  box-shadow: 0 6px 20px rgba(20, 184, 166, 0.28);
}

body.page-home .btn-hero-teal:hover {
  background: var(--home-teal-deep);
  transform: translateY(-1px);
}

body.page-home .hero-visual {
  max-width: min(100%, 32rem);
}

body.page-home .hero-visual::before {
  inset: 6% -10% -4% 14%;
  background: linear-gradient(155deg, rgba(249, 115, 22, 0.14), rgba(20, 184, 166, 0.1));
  border-radius: 63% 37% 42% 58% / 52% 45% 55% 48%;
}

body.page-home .hero-figure--blob {
  border-radius: 58% 42% 48% 52% / 52% 48% 55% 45%;
  border: none;
  box-shadow:
    0 28px 56px rgba(28, 25, 23, 0.12),
    0 8px 24px rgba(249, 115, 22, 0.12);
}

body.page-home .hero-figure--blob .hero-photo {
  aspect-ratio: 4 / 3;
  object-position: center 38%;
}

body.page-home .hero-wave {
  position: relative;
  z-index: 1;
  line-height: 0;
  margin-top: -2px;
}

body.page-home .hero-wave-svg {
  display: block;
  width: 100%;
  height: clamp(52px, 8vw, 88px);
}

body.page-home .section-what-we-do {
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(249, 115, 22, 0.08), transparent),
    radial-gradient(ellipse 60% 40% at 100% 30%, rgba(20, 184, 166, 0.06), transparent),
    linear-gradient(180deg, var(--home-wave-fill) 0%, #f8fafc 100%);
}

body.page-home .what-we-header {
  display: flex;
  gap: 1.25rem;
  align-items: stretch;
  max-width: 48rem;
  margin: 0 auto 2.75rem;
}

body.page-home .what-we-header__accent {
  width: 5px;
  flex-shrink: 0;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    var(--home-orange) 0%,
    #fb923c 35%,
    var(--home-teal) 100%
  );
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.25);
}

body.page-home .what-we-header__text {
  min-width: 0;
}

body.page-home .section-eyebrow--what {
  text-align: left;
  margin-bottom: 0.5rem;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  color: var(--home-orange-deep);
  opacity: 0.95;
}

body.page-home .what-we-title {
  text-align: left;
  font-size: clamp(1.65rem, 3.8vw, 2.35rem);
  font-weight: 800;
  color: #0c0a09;
  letter-spacing: -0.035em;
  line-height: 1.18;
  margin: 0 0 1rem;
}

body.page-home .what-we-lead {
  text-align: left;
  max-width: none;
  margin: 0;
  color: #44403c;
  line-height: 1.8;
  font-size: 1.02rem;
}

body.page-home .what-we-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

body.page-home .what-card {
  position: relative;
  border-radius: 22px;
  padding: 1.85rem 1.5rem 1.75rem;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow:
    0 4px 24px rgba(28, 25, 23, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.5) inset;
  backdrop-filter: blur(10px);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
  overflow: hidden;
}

body.page-home .what-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 3px;
  border-radius: 0 0 4px 4px;
  opacity: 0.9;
}

body.page-home .what-card--peach::before {
  background: linear-gradient(90deg, transparent, var(--home-orange), transparent);
}

body.page-home .what-card--mint::before {
  background: linear-gradient(90deg, transparent, var(--home-teal), transparent);
}

body.page-home .what-card--sky::before {
  background: linear-gradient(90deg, transparent, #0284c7, transparent);
}

body.page-home .what-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 28px 56px rgba(28, 25, 23, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

body.page-home .what-card--peach {
  background: linear-gradient(
    155deg,
    rgba(255, 247, 237, 0.96) 0%,
    rgba(255, 255, 255, 0.9) 45%,
    rgba(254, 243, 199, 0.4) 100%
  );
}

body.page-home .what-card--mint {
  background: linear-gradient(
    155deg,
    rgba(236, 253, 245, 0.96) 0%,
    rgba(255, 255, 255, 0.9) 45%,
    rgba(204, 251, 241, 0.45) 100%
  );
}

body.page-home .what-card--sky {
  background: linear-gradient(
    155deg,
    rgba(239, 246, 255, 0.96) 0%,
    rgba(255, 255, 255, 0.9) 45%,
    rgba(191, 219, 254, 0.42) 100%
  );
}

body.page-home .what-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
  font-size: 0;
  box-shadow: 0 8px 20px rgba(28, 25, 23, 0.06);
}

body.page-home .what-card--peach .what-icon {
  background: linear-gradient(145deg, rgba(249, 115, 22, 0.2), rgba(251, 146, 60, 0.12));
  color: var(--home-orange-deep);
}

body.page-home .what-card--mint .what-icon {
  background: linear-gradient(145deg, rgba(20, 184, 166, 0.22), rgba(45, 212, 191, 0.12));
  color: var(--home-teal-deep);
}

body.page-home .what-card--sky .what-icon {
  background: linear-gradient(145deg, rgba(2, 132, 199, 0.2), rgba(14, 165, 233, 0.12));
  color: #0369a1;
}

body.page-home .what-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0c0a09;
}

body.page-home .what-card p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.82;
  color: #44403c;
}

body.page-home .story-brand-panel {
  position: relative;
  margin-top: clamp(2.5rem, 6vw, 3.75rem);
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
  overflow-x: hidden;
  overflow-x: clip;
}

body.page-home .story-brand-panel__glow {
  position: absolute;
  inset: -18% -12% auto -12%;
  height: 85%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse 68% 58% at 50% 28%,
    rgba(249, 115, 22, 0.12),
    rgba(20, 184, 166, 0.07) 42%,
    transparent 72%
  );
  filter: blur(36px);
  pointer-events: none;
  z-index: 0;
}

body.page-home .story-brand-panel__frame {
  position: relative;
  z-index: 1;
  border-radius: clamp(24px, 3vw, 32px);
  padding: 1px;
  background: linear-gradient(
    132deg,
    rgba(249, 115, 22, 0.45) 0%,
    rgba(255, 255, 255, 0.45) 42%,
    rgba(20, 184, 166, 0.42) 100%
  );
  box-shadow:
    0 32px 64px rgba(28, 25, 23, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.95) inset;
}

body.page-home .story-brand-panel__content {
  position: relative;
  border-radius: calc(clamp(24px, 3vw, 32px) - 1px);
  padding: clamp(2rem, 5vw, 3rem) clamp(1.65rem, 4.5vw, 3.25rem);
  background: linear-gradient(
    168deg,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(248, 250, 252, 0.99) 48%,
    rgba(255, 252, 247, 1) 100%
  );
  backdrop-filter: blur(14px);
  text-align: center;
}

body.page-home .story-brand-panel__content::before {
  content: "\201C";
  position: absolute;
  top: clamp(0.5rem, 2vw, 1.1rem);
  left: clamp(1rem, 3vw, 1.75rem);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.25rem, 9vw, 5rem);
  line-height: 1;
  color: rgba(249, 115, 22, 0.08);
  pointer-events: none;
}

body.page-home .story-brand-panel__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #0f766e;
  background: rgba(20, 184, 166, 0.08);
  border: 1px solid rgba(20, 184, 166, 0.14);
}

body.page-home .story-brand-panel__title {
  margin: 0 0 1.35rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.32em 0.5em;
  font-size: clamp(2.1rem, 6.5vw, 3.35rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
}

body.page-home .story-brand-panel__title-w {
  color: #0c0a09;
}

body.page-home .story-brand-panel__divider {
  width: 1px;
  height: 0.72em;
  align-self: center;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(28, 25, 23, 0.18) 35%,
    rgba(28, 25, 23, 0.18) 65%,
    transparent
  );
}

body.page-home .story-brand-panel__title-c {
  background: linear-gradient(118deg, #0d9488 0%, #0891b2 42%, #0369a1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

body.page-home .story-brand-panel__lead {
  position: relative;
  margin: 0 auto;
  max-width: 36.5rem;
  padding-top: 1.4rem;
  font-size: clamp(0.96rem, 2.2vw, 1.06rem);
  line-height: 1.88;
  letter-spacing: -0.01em;
  color: #57534e;
}

body.page-home .story-brand-panel__lead::before {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2px;
  margin: 0 auto 1.25rem;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--home-orange), var(--home-teal));
  opacity: 0.45;
}

body.page-home .section-programs-home.alt {
  background: #f8fafc;
}

body.page-home .section-programs-home .tag {
  background: rgba(20, 184, 166, 0.12);
  color: var(--home-teal-deep);
}

body.page-home .section-programs-home .program-grid-extended {
  margin-top: 0.25rem;
}

body.page-home .section-team-home .teachers-grid,
body.page-home .section-gallery-full .gallery-grid--8 {
  margin-top: 0.5rem;
}

body.page-home .cta-box--home {
  background: linear-gradient(100deg, #fff7ed 0%, #ecfdf5 100%);
  border-color: rgba(253, 230, 200, 0.8);
}

body.page-home .cta-box--home .btn-header-cta {
  flex-shrink: 0;
}

body.page-home .preview-tile:focus-visible {
  outline-color: var(--home-orange);
}

@media (max-width: 900px) {
  body.page-home .what-we-grid {
    grid-template-columns: 1fr;
    max-width: 28rem;
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  body.page-home .hero-playful .hero-grid {
    padding-bottom: 2.5rem;
  }
  body.page-home .hero-float--3,
  body.page-home .hero-float--4 {
    opacity: 0.07;
  }

  body.page-home .what-we-header {
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
  }

  body.page-home .what-we-header__accent {
    width: min(140px, 55%);
    height: 5px;
  }

  body.page-home .section-eyebrow--what,
  body.page-home .what-we-title,
  body.page-home .what-we-lead {
    text-align: center;
  }

  body.page-home .story-brand-panel__content::before {
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
  }
}

section.section-scroll[id],
#booking,
#faq {
  scroll-margin-top: 88px;
}

/* 앵커 스크롤용 tabindex=-1 섹션에 포커스가 갈 때 검은 테두리 제거 */
section.section-scroll[id]:focus,
section.section-scroll[id]:focus-visible,
#booking:focus,
#booking:focus-visible,
#faq:focus,
#faq:focus-visible {
  outline: none;
}

body.page-home .section-what-we-do .what-we-title {
  margin-bottom: 0.85rem;
}

body.page-home .section-eyebrow {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--home-orange);
  margin: 0 0 0.4rem;
}

body.page-home .section-title-lg {
  text-align: center;
  font-size: clamp(1.45rem, 3.2vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1c1917;
  margin: 0 0 0.75rem;
}

body.page-home .section-lead-wide {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2.25rem;
  color: #57534e;
  font-size: 0.97rem;
  line-height: 1.85;
}

body.page-home .pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
  margin-bottom: clamp(3rem, 8vw, 4.5rem);
}

body.page-home .pillar-card {
  --pillar-accent: var(--home-orange-deep);
  --pillar-ring: rgba(249, 115, 22, 0.2);
  --pillar-surface: rgba(255, 247, 237, 0.65);
  position: relative;
  border-radius: 22px;
  padding: 1.5rem 1.35rem 1.45rem;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow:
    0 4px 24px rgba(28, 25, 23, 0.05),
    0 1px 0 rgba(255, 255, 255, 0.85) inset;
  background: linear-gradient(
    155deg,
    rgba(255, 255, 255, 0.94) 0%,
    var(--pillar-surface) 100%
  );
  backdrop-filter: blur(8px);
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.25s ease;
}

body.page-home .pillar-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  border-radius: 22px 0 0 22px;
  background: linear-gradient(180deg, var(--pillar-accent), color-mix(in srgb, var(--pillar-accent) 55%, white));
}

body.page-home .pillar-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 28%;
  height: 1px;
  background: linear-gradient(90deg, var(--pillar-ring), transparent);
  opacity: 0.85;
  pointer-events: none;
}

body.page-home .pillar-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 44px rgba(28, 25, 23, 0.09),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  border-color: rgba(255, 255, 255, 0.95);
}

body.page-home .pillar-card h3 {
  margin: 0 0 0.65rem;
  padding-left: 0.15rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pillar-accent);
  line-height: 1.25;
}

body.page-home .pillar-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.82;
  color: #57534e;
  letter-spacing: -0.01em;
}

body.page-home .pillar-card--music {
  --pillar-accent: #c2410c;
  --pillar-ring: rgba(234, 88, 12, 0.35);
  --pillar-surface: rgba(255, 247, 237, 0.72);
}

body.page-home .pillar-card--play {
  --pillar-accent: #0f766e;
  --pillar-ring: rgba(20, 184, 166, 0.32);
  --pillar-surface: rgba(236, 253, 245, 0.72);
}

body.page-home .pillar-card--mind {
  --pillar-accent: #b45309;
  --pillar-ring: rgba(217, 119, 6, 0.3);
  --pillar-surface: rgba(255, 251, 235, 0.75);
}

body.page-home .pillar-card--learn {
  --pillar-accent: #1d4ed8;
  --pillar-ring: rgba(37, 99, 235, 0.28);
  --pillar-surface: rgba(239, 246, 255, 0.78);
}

@supports not (color: color-mix(in srgb, white 50%, black)) {
  body.page-home .pillar-card::before {
    background: linear-gradient(180deg, var(--pillar-accent), var(--pillar-accent));
    opacity: 0.9;
  }
}

body.page-home .editorial-message {
  max-width: min(100%, 42rem);
  margin-inline: auto;
  margin-bottom: clamp(3rem, 9vw, 5.5rem);
}

body.page-home .editorial-message__content {
  position: relative;
  border-radius: 22px;
  border: 1px solid rgba(28, 25, 23, 0.07);
  background: linear-gradient(
    175deg,
    rgba(255, 255, 255, 0.99) 0%,
    rgba(252, 252, 251, 1) 48%,
    rgba(248, 250, 252, 0.65) 100%
  );
  padding: clamp(1.35rem, 2.6vw, 1.9rem);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.88) inset,
    0 18px 42px rgba(28, 25, 23, 0.055);
  overflow: hidden;
}

body.page-home .editorial-message__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(
    90deg,
    var(--home-orange) 0%,
    rgba(251, 146, 60, 0.75) 35%,
    var(--home-teal) 100%
  );
  opacity: 0.45;
}

body.page-home .editorial-message__head {
  position: relative;
  margin: 0 0 1.4rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(28, 25, 23, 0.075);
}

body.page-home .editorial-message__label {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.7rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #57534e;
}

body.page-home .editorial-message__label::after {
  content: "";
  flex: 1;
  max-width: 2.75rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(249, 115, 22, 0.45), transparent);
}

body.page-home .editorial-message__title {
  margin: 0;
  font-size: clamp(1.32rem, 2.25vw, 1.56rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.035em;
  color: #0c0a09;
}

body.page-home .editorial-message__body {
  margin: 0;
}

body.page-home .editorial-message__body p {
  margin: 0 0 1.05rem;
  font-size: 0.945rem;
  line-height: 1.88;
  letter-spacing: -0.008em;
  color: #57534e;
}

body.page-home .editorial-message__body p:last-child {
  margin-bottom: 0;
}

body.page-home .editorial-message__sign {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.65rem -0.15rem 0;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  border: 1px solid rgba(28, 25, 23, 0.06);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.85) inset;
}

body.page-home .editorial-message__avatar-wrap {
  flex-shrink: 0;
  padding: 2px;
  border-radius: 50%;
  background: linear-gradient(142deg, var(--home-orange), #fb923c 45%, var(--home-teal));
  box-shadow: 0 3px 12px rgba(249, 115, 22, 0.18);
}

body.page-home .editorial-message__avatar {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
}

body.page-home .editorial-message__sign-text {
  min-width: 0;
}

body.page-home .editorial-message__name {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #1c1917;
}

body.page-home .editorial-message__meta {
  margin: 0.2rem 0 0;
  font-size: 0.78rem;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #78716c;
}

body.page-home #booking {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

body.page-home .booking-cta {
  --booking-cta-r: clamp(22px, 3vw, 32px);
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(252px, 0.68fr);
  align-items: stretch;
  min-height: clamp(340px, 44vw, 480px);
  margin-top: 0;
  border-radius: var(--booking-cta-r);
  overflow: hidden;
  border: 1px solid rgba(28, 25, 23, 0.09);
  background: #fffefb;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 24px 52px rgba(28, 25, 23, 0.09);
}

body.page-home .booking-cta__visual {
  position: relative;
  margin: 0;
  padding: 0;
  min-height: clamp(260px, 36vw, 400px);
  align-self: stretch;
  background: #292524;
}

body.page-home .booking-cta__visual-fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0) 52%,
    rgba(255, 253, 248, 0.55) 78%,
    rgba(255, 250, 245, 0.97) 92%,
    rgba(255, 248, 242, 1) 100%
  );
}

body.page-home .booking-cta__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  display: block;
  object-fit: cover;
  object-position: 50% 36%;
  border-radius: 0;
  max-width: none;
}

body.page-home .booking-cta__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: clamp(1.65rem, 4vw, 2.65rem) clamp(1.45rem, 3.8vw, 2.15rem);
  background: linear-gradient(
    168deg,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(255, 252, 247, 1) 40%,
    rgba(236, 253, 245, 0.22) 100%
  );
  border-left: 1px solid rgba(253, 230, 200, 0.5);
}

body.page-home .booking-cta__panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(20, 184, 166, 0.35) 40%,
    rgba(251, 146, 60, 0.4) 60%,
    transparent
  );
  opacity: 0.85;
}

body.page-home .booking-cta__eyebrow {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #78716c;
}

body.page-home .booking-cta__title {
  margin: 0;
  font-size: clamp(1.42rem, 2.75vw, 1.88rem);
  font-weight: 700;
  letter-spacing: -0.038em;
  line-height: 1.22;
  color: #0c0a09;
  text-wrap: balance;
}

body.page-home .booking-cta__prose {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0.15rem 0 0;
}

body.page-home .booking-cta__prose p {
  margin: 0;
  color: #44403c;
  line-height: 1.88;
  font-size: 0.94rem;
  letter-spacing: -0.012em;
}

body.page-home .booking-cta__prose strong {
  color: #1c1917;
  font-weight: 600;
}

body.page-home .booking-cta__btn {
  align-self: flex-start;
  margin-top: 0.35rem;
  padding: 0.82rem 1.45rem;
  background: var(--home-orange);
  color: #fff;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: -0.02em;
  box-shadow: 0 6px 22px rgba(249, 115, 22, 0.32);
}

body.page-home .booking-cta__btn:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

body.page-home .program-grid-extended {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

body.page-home .section-team-home {
  background: #fff;
}

body.page-home .section-team-home .teachers-grid {
  max-width: none;
}

.gallery-grid--8 {
  list-style: none;
  margin: 0 0 3rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.gallery-grid--8 > li {
  margin: 0;
  padding: 0;
}

.gallery-grid--8 img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--border);
  display: block;
}

body.page-home .testimonials-heading {
  text-align: center;
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0 0 0.35rem;
  color: #1c1917;
}

body.page-home .testimonials-sub {
  text-align: center;
  color: #78716c;
  font-size: 0.92rem;
  margin: 0 0 1.5rem;
}

body.page-home .testimonial-carousel {
  width: 100%;
  margin: 0;
}

body.page-home .testimonial-carousel__viewport {
  display: flex;
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  border-radius: 4px;
}

body.page-home .testimonial-carousel__viewport::-webkit-scrollbar {
  display: none;
}

body.page-home .testimonial-carousel__viewport:focus {
  outline: none;
}

body.page-home .testimonial-carousel__viewport:focus-visible {
  outline: 2px solid var(--home-orange);
  outline-offset: 4px;
}

/* JS로 scrollLeft 보간할 때 mandatory snap이 값을 되돌려 애니메이션이 사라지는 문제 방지 */
body.page-home .testimonial-carousel__viewport.is-animating-scroll {
  scroll-snap-type: none;
}

body.page-home .testimonial-carousel__slide {
  flex: 0 0 auto;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  box-sizing: border-box;
}

body.page-home .testimonial-carousel__dots {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.35rem;
}

body.page-home .testimonial-carousel__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #d6d3d1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

body.page-home .testimonial-carousel__dot:hover {
  background: #a8a29e;
}

body.page-home .testimonial-carousel__dot.is-active {
  background: var(--home-orange);
  transform: scale(1.15);
}

body.page-home .testimonial-carousel__dot:focus {
  outline: none;
}

body.page-home .testimonial-carousel__dot:focus-visible {
  outline: 2px solid var(--home-orange);
  outline-offset: 3px;
}

body.page-home .testimonial-card {
  margin: 0;
  padding: 1.25rem 1.2rem;
  background: #f8fafc;
  border-radius: 18px;
  border: 1px solid var(--border);
}

body.page-home .testimonial-card p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  line-height: 1.85;
  color: #44403c;
}

body.page-home .testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

body.page-home .testimonial-card footer img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}

body.page-home .testimonial-card cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  font-size: 0.88rem;
  color: #1c1917;
}

body.page-home .testimonial-card footer span {
  font-size: 0.78rem;
  color: #78716c;
}

body.page-home .section-contact {
  background: linear-gradient(180deg, #fff 0%, #fffbf7 100%);
}

body.page-home .site-footer--full {
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #1c1917;
  color: #d6d3d1;
  padding: clamp(2rem, 5vw, 2.75rem) 0;
}

body.page-home .footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr) auto;
  align-items: start;
  column-gap: clamp(1.5rem, 4vw, 2.75rem);
  row-gap: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.6;
}

body.page-home .footer-col {
  min-width: 0;
}

body.page-home .footer-col > p {
  margin: 0;
}

body.page-home .footer-col > p + p {
  margin-top: 0.4rem;
}

body.page-home .footer-brand {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #fff;
  font-size: 1rem;
}

body.page-home .footer-tagline {
  margin: 0;
  max-width: 22rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.55;
}

body.page-home .footer-col-heading {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

body.page-home .footer-contact-line {
  color: #e7e5e4;
  font-size: 0.9rem;
}

body.page-home .footer-contact-line a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: border-color 0.15s ease, color 0.15s ease;
}

body.page-home .footer-contact-line a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.45);
}

body.page-home .footer-col--legal {
  justify-self: end;
  text-align: right;
}

body.page-home .footer-copy {
  margin: 0;
  font-size: 0.82rem;
  color: #a8a29e;
  line-height: 1.55;
  max-width: 16rem;
}

body.page-home .footer-copy-sub {
  display: inline-block;
}

@media (max-width: 900px) {
  body.page-home .pillars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.page-home .booking-cta {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  body.page-home .booking-cta__visual {
    min-height: 220px;
    aspect-ratio: 16 / 9;
  }

  body.page-home .booking-cta__visual-fade {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 35%,
      rgba(255, 252, 247, 0.88) 100%
    );
  }

  body.page-home .booking-cta__panel {
    border-left: none;
    border-top: 1px solid rgba(253, 230, 200, 0.55);
    padding-bottom: clamp(1.85rem, 5vw, 2.5rem);
  }

  body.page-home .booking-cta__btn {
    align-self: stretch;
    text-align: center;
  }
  body.page-home .program-grid-extended {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  body.page-home .testimonial-carousel__slide {
    grid-template-columns: 1fr;
  }
  body.page-home .footer-grid {
    grid-template-columns: 1fr;
    justify-items: stretch;
    text-align: center;
    row-gap: 0;
  }

  body.page-home .footer-tagline {
    margin-inline: auto;
    max-width: 26rem;
  }

  body.page-home .footer-col--contact {
    margin-top: 1.25rem;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  body.page-home .footer-col--legal {
    justify-self: center;
    text-align: center;
    margin-top: 1.25rem;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  body.page-home .footer-copy {
    margin-inline: auto;
    max-width: none;
  }
}

/* One-page vertical rhythm, CTA to contact page, standalone contact */
body.page-home section.section.section-scroll {
  padding-top: clamp(4.25rem, 11vw, 7.5rem);
  padding-bottom: clamp(4.25rem, 11vw, 7.5rem);
}

body.page-home #about.section-scroll {
  padding-bottom: clamp(1.75rem, 4vw, 2.75rem);
}

body.page-home #programs.section-scroll {
  /* 구분선·여백은 .home-part-divider(헤더 래퍼)에서 대표 메시지와 동일하게 처리 */
  padding-top: clamp(1.75rem, 4vw, 2.75rem);
}

body.page-home .home-part-divider {
  margin-top: clamp(3.75rem, 10vw, 6.25rem);
  padding-top: clamp(3rem, 8vw, 5rem);
  border-top: 1px solid rgba(28, 25, 23, 0.08);
}

body.page-home .home-booking-gap {
  margin-top: clamp(4rem, 11vw, 6.75rem);
}

body.page-home .home-part-gap {
  margin-top: clamp(2.75rem, 7vw, 4rem);
}

body.page-home .section-home-cta-out {
  padding-top: clamp(4rem, 10vw, 6.5rem);
  padding-bottom: clamp(4.5rem, 12vw, 7.5rem);
  background: linear-gradient(180deg, #fff 0%, #fff7ed 45%, #ecfdf5 100%);
  border-top: 1px solid rgba(253, 230, 200, 0.55);
}

body.page-home .home-out-to-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  padding: clamp(2rem, 5vw, 3.25rem);
  background: #fff;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 56px rgba(28, 25, 23, 0.08);
}

body.page-home .home-out-to-contact__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  font-weight: 800;
  color: #1c1917;
  letter-spacing: -0.02em;
}

body.page-home .home-out-to-contact__lead {
  margin: 0;
  max-width: 38rem;
  color: #57534e;
  line-height: 1.85;
  font-size: 0.98rem;
}

body.page-home .home-out-to-contact__btn {
  flex-shrink: 0;
}

body.page-home .booking-cta__prose a {
  color: #0f766e;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(15, 118, 110, 0.35);
}

body.page-home .booking-cta__prose a:hover {
  color: #c2410c;
  text-decoration-color: rgba(194, 65, 12, 0.4);
}

/* 모바일 전용 줄바꿈: ≥641px에서는 br 숨김(문장 한 줄 유지) */
@media (min-width: 641px) {
  body.page-home br.br-mobile-only {
    display: none;
  }
}

/* —— Home: 모바일 최적화 · 가운데 정렬 · 가독성 —— */
@media (max-width: 640px) {
  body.page-home {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    font-size: 1.1875rem;
    line-height: 1.76;
  }

  body.page-home main {
    line-break: strict;
  }

  body.page-home .container {
    width: min(100% - 1.35rem, var(--container));
  }

  body.page-home .pillars-grid {
    grid-template-columns: 1fr;
  }

  body.page-home .program-grid-extended {
    grid-template-columns: 1fr;
  }

  body.page-home .header-inner {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0.42rem;
    text-align: center;
    padding-top: 0.65rem;
    padding-bottom: 0.75rem;
  }

  body.page-home .brand {
    width: 100%;
    text-align: center;
    font-size: 1.3rem;
  }

  body.page-home .btn-header-cta {
    width: 100%;
    max-width: 20rem;
    margin-inline: auto;
    justify-content: center;
  }

  body.page-home .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: visible;
    border-top: none;
    mask-image: none;
    -webkit-mask-image: none;
    gap: 0.22rem 0.28rem;
    row-gap: 0.28rem;
    padding: 0.32rem 0 0;
    margin: 0;
  }

  body.page-home .nav-links a {
    font-size: 1.02rem;
    letter-spacing: -0.018em;
    padding: 0.44rem 0.62rem;
    min-height: 46px;
  }

  body.page-home section.section.section-scroll {
    padding-top: clamp(2.75rem, 8vw, 4.5rem);
    padding-bottom: clamp(2.75rem, 8vw, 4.5rem);
  }

  body.page-home .hero-playful {
    padding-top: 2rem;
  }

  body.page-home .hero-playful .hero-grid {
    text-align: center;
    justify-items: center;
  }

  body.page-home .hero-title {
    font-size: clamp(1.95rem, 8.5vw, 2.5rem);
    line-height: 1.22;
    max-width: 24ch;
    margin-inline: auto;
  }

  body.page-home .hero-lead {
    margin-inline: auto;
    font-size: 1.22rem;
    line-height: 1.9;
    max-width: 36rem;
  }

  body.page-home .hero-actions {
    justify-content: center;
    width: 100%;
    max-width: 22rem;
    margin-inline: auto;
  }

  body.page-home .hero-actions .btn-hero-orange,
  body.page-home .hero-actions .btn-hero-teal {
    flex: 1 1 calc(50% - 0.35rem);
    min-width: 0;
    justify-content: center;
    padding: 0.9rem 1.1rem;
    font-size: 1.1rem;
  }

  body.page-home .section-eyebrow--what {
    font-size: 0.88rem;
  }

  body.page-home .what-we-title {
    font-size: clamp(1.95rem, 6.2vw, 2.45rem);
  }

  body.page-home .what-we-lead {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.88;
  }

  body.page-home .what-card h3 {
    font-size: 1.22rem;
  }

  body.page-home .what-card p {
    font-size: 1.14rem;
    line-height: 1.88;
  }

  body.page-home .what-card {
    text-align: center;
    padding: 1.55rem 1.25rem;
  }

  body.page-home .what-card .what-icon {
    margin-inline: auto;
  }

  body.page-home .what-card h3,
  body.page-home .what-card p {
    text-align: center;
  }

  body.page-home .story-brand-panel__content {
    padding: clamp(1.65rem, 5vw, 2.25rem) clamp(1.15rem, 4vw, 1.65rem);
  }

  body.page-home .story-brand-panel__label {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
  }

  body.page-home .story-brand-panel__lead {
    font-size: 1.18rem;
    line-height: 1.9;
  }

  body.page-home .story-brand-panel__title {
    font-size: clamp(2.35rem, 8.5vw, 3.65rem);
  }

  body.page-home .story-brand-panel__content::before {
    left: 50%;
    transform: translateX(-50%);
  }

  body.page-home .section-eyebrow {
    font-size: 0.88rem;
  }

  body.page-home .section-title-lg {
    font-size: clamp(1.72rem, 5.2vw, 2.2rem);
  }

  body.page-home .section-lead-wide {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 1.85rem;
    padding-inline: 0.2rem;
  }

  body.page-home .pillar-card {
    text-align: center;
    padding: 1.45rem 1.2rem 1.35rem;
  }

  body.page-home .pillar-card h3 {
    padding-left: 0;
    font-size: 0.93rem;
  }

  body.page-home .pillar-card p {
    font-size: 1.12rem;
    line-height: 1.9;
  }

  body.page-home .pillar-card::before {
    left: 0;
    right: 0;
    top: 0;
    bottom: auto;
    width: 100%;
    height: 4px;
    border-radius: 22px 22px 0 0;
  }

  body.page-home .pillar-card::after {
    display: none;
  }

  body.page-home .pillar-grid,
  body.page-home .pillars-grid {
    margin-bottom: clamp(2.25rem, 7vw, 3.5rem);
  }

  body.page-home .editorial-message__head {
    text-align: center;
  }

  body.page-home .editorial-message__label {
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.8rem;
  }

  body.page-home .editorial-message__label::after {
    display: none;
  }

  body.page-home .editorial-message__title {
    text-align: center;
    font-size: clamp(1.38rem, 4.2vw, 1.65rem);
  }

  body.page-home .editorial-message__body p {
    text-align: center;
    font-size: 1.14rem;
    line-height: 1.92;
  }

  body.page-home .editorial-message__sign {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  body.page-home .program-grid-extended .program-card {
    text-align: center;
    padding: 1.15rem 1rem;
  }

  body.page-home .program-grid-extended .program-card h3 {
    font-size: 1.14rem;
  }

  body.page-home .program-grid-extended .program-card p {
    font-size: 1.14rem;
    line-height: 1.88;
  }

  body.page-home .section-programs-home .tag {
    font-size: 0.9rem;
    padding: 0.3rem 0.68rem;
  }

  body.page-home .meta-box {
    font-size: 1.02rem;
  }

  body.page-home .meta-box strong {
    font-size: 0.85rem;
  }

  body.page-home .round-thumb {
    width: 120px;
    height: 120px;
  }

  body.page-home .home-out-to-contact {
    text-align: center;
    flex-direction: column;
    align-items: center;
    padding: 1.65rem 1.2rem;
  }

  body.page-home .home-out-to-contact__title,
  body.page-home .home-out-to-contact__lead {
    text-align: center;
  }

  body.page-home .home-out-to-contact__title {
    font-size: clamp(1.5rem, 4.5vw, 1.88rem);
  }

  body.page-home .home-out-to-contact__lead {
    margin-inline: auto;
    font-size: 1.18rem;
    line-height: 1.9;
  }

  body.page-home .home-out-to-contact__btn {
    width: 100%;
    max-width: 20rem;
    justify-content: center;
  }

  body.page-home .testimonials-heading {
    font-size: 1.55rem;
  }

  body.page-home .testimonials-sub {
    font-size: 1.12rem;
    line-height: 1.75;
    padding-inline: 0.35rem;
  }

  body.page-home .testimonial-card {
    padding: 1.15rem 1.05rem;
  }

  body.page-home .testimonial-card p {
    font-size: 1.14rem;
    line-height: 1.9;
  }

  body.page-home .testimonial-card cite {
    font-size: 1.02rem;
  }

  body.page-home .testimonial-card footer span {
    font-size: 0.93rem;
  }

  body.page-home .testimonial-carousel__dots {
    margin-top: 1.1rem;
    gap: 0.5rem;
  }

  body.page-home .testimonial-carousel__dot {
    width: 12px;
    height: 12px;
    min-width: 12px;
    min-height: 12px;
  }

  body.page-home .booking-cta__panel {
    text-align: center;
  }

  body.page-home .booking-cta__eyebrow,
  body.page-home .booking-cta__title {
    text-align: center;
  }

  body.page-home .booking-cta__title {
    margin-inline: auto;
    font-size: clamp(1.65rem, 5vw, 2.1rem);
  }

  body.page-home .booking-cta__prose {
    text-align: center;
  }

  body.page-home .booking-cta__eyebrow {
    font-size: 0.82rem;
  }

  body.page-home .booking-cta__prose p {
    font-size: 1.16rem;
    line-height: 1.9;
  }

  body.page-home .booking-cta__btn {
    align-self: center;
    width: 100%;
    max-width: 20rem;
    font-size: 1.12rem;
    padding: 0.92rem 1.4rem;
  }

  body.page-home .teacher-name {
    font-size: 1.2rem;
  }

  body.page-home .teacher-role {
    font-size: 0.97rem;
  }

  body.page-home .btn-header-cta {
    font-size: 1.1rem;
    padding: 0.72rem 1.3rem;
  }

  body.page-home .site-footer--full .footer-grid {
    font-size: 1.06rem;
    line-height: 1.68;
  }

  body.page-home .footer-brand {
    font-size: 1.14rem;
  }

  body.page-home .footer-tagline {
    font-size: 1.05rem;
    line-height: 1.65;
  }

  body.page-home .footer-col-heading {
    font-size: 0.76rem;
  }

  body.page-home .footer-contact-line {
    font-size: 1.05rem;
  }

  body.page-home .footer-copy {
    font-size: 0.96rem;
    line-height: 1.62;
  }

  body.page-home #contact .contact-page-main {
    padding-top: clamp(2.25rem, 7vw, 3.5rem);
    padding-bottom: clamp(2.5rem, 8vw, 4rem);
  }

  body.page-home #contact .contact-page-title {
    font-size: clamp(1.88rem, 6vw, 2.28rem);
  }

  body.page-home #contact .contact-page-eyebrow {
    font-size: 0.86rem;
  }

  body.page-home #contact .contact-page-lead {
    font-size: 1.18rem;
    line-height: 1.88;
  }

  body.page-home #contact .contact-center-phone a {
    font-size: clamp(2.15rem, 5.8vw, 2.75rem);
  }

  body.page-home #contact .contact-center-note {
    font-size: 1.04rem;
    line-height: 1.75;
  }

  body.page-home #contact .contact-center-facts dt {
    font-size: 0.93rem;
  }

  body.page-home #contact .contact-center-facts dd {
    font-size: 1.08rem;
  }

  body.page-home #contact .contact-center-kakao-guide__h {
    font-size: 1.18rem;
  }

  body.page-home #contact .contact-center-kakao-guide__p,
  body.page-home #contact .contact-center-kakao-guide__link {
    font-size: 1.04rem;
  }

  body.page-home #contact .contact-center-actions .btn {
    font-size: 1.12rem;
    padding: 0.88rem 1.35rem;
  }

  body.page-home .contact-faq-box .contact-faq__title {
    font-size: clamp(1.32rem, 3.8vw, 1.65rem);
  }

  body.page-home .contact-faq-box .contact-faq__lead {
    font-size: 1.12rem;
    line-height: 1.82;
  }

  body.page-home .contact-faq-box .faq-item__q {
    font-size: 1.08rem;
    padding: 1.1rem 1.05rem 1.1rem 1.15rem;
  }

  body.page-home .contact-faq-box .faq-item__a p {
    font-size: 1.08rem;
    line-height: 1.92;
  }
}

@media (max-width: 400px) {
  body.page-home .nav-links {
    gap: 0.2rem 0.26rem;
    row-gap: 0.28rem;
  }

  body.page-home .nav-links a {
    font-size: 0.98rem;
    padding: 0.4rem 0.5rem;
    min-height: 46px;
  }
}

@media (max-width: 480px) {
  body.page-home .meta-grid {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  body.page-home .meta-box {
    text-align: center;
    padding: 0.45rem 0.35rem 0.4rem;
    border-radius: 10px;
    background: rgba(248, 250, 252, 0.9);
    border-top: none;
    border: 1px solid rgba(199, 210, 254, 0.5);
  }

  body.page-home .meta-box strong {
    font-size: 0.88rem;
  }

  body.page-home .gallery-grid--8 {
    gap: 0.55rem;
  }

  body.page-home .gallery-grid--8 img {
    border-radius: 12px;
  }
}

body.page-contact .contact-page-main {
  padding: clamp(3rem, 8vw, 4.5rem) 0 clamp(4rem, 11vw, 6.5rem);
  background: linear-gradient(180deg, #fffbf7 0%, #fff 35%);
}

body.page-contact .contact-page-header {
  max-width: 48rem;
  margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
}

body.page-contact .contact-page-title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #1c1917;
}

body.page-contact .contact-page-lead {
  margin: 0;
  font-size: 1rem;
  line-height: 1.85;
  color: #57534e;
}

body.page-contact .section-eyebrow--left {
  text-align: left;
  margin-bottom: 0.5rem;
}

/* 문의 페이지: 고객센터형 상단(기존 오렌지·틸 팔레트 유지) */
body.page-contact .contact-page-header--center {
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
  margin-bottom: clamp(1.75rem, 4vw, 2.25rem);
}

body.page-contact .contact-page-accent {
  display: block;
  width: 2.5rem;
  height: 4px;
  margin: 0 auto 0.85rem;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--home-teal), var(--home-orange));
}

body.page-contact .contact-page-eyebrow {
  text-align: center;
  margin-bottom: 0.5rem;
}

body.page-contact .contact-page-header--center .contact-page-title {
  margin-bottom: 0.85rem;
}

body.page-contact .contact-page-lead-faq-link {
  color: var(--home-teal-deep);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(13, 148, 136, 0.35);
}

body.page-contact .contact-page-lead-faq-link:hover {
  color: var(--home-orange-deep);
  text-decoration-color: rgba(234, 88, 12, 0.4);
}

body.page-contact .contact-faq-box {
  max-width: 32rem;
  margin: clamp(1.35rem, 3.5vw, 1.85rem) auto clamp(2.25rem, 5vw, 3rem);
  padding: clamp(1.75rem, 4vw, 2.25rem) clamp(1.25rem, 4vw, 1.75rem);
  background: #fff;
  border: 1px solid rgba(28, 25, 23, 0.08);
  box-shadow: 0 12px 36px rgba(28, 25, 23, 0.06);
  border-radius: var(--radius);
  text-align: left;
}

body.page-contact .contact-faq-box.card {
  border-color: rgba(28, 25, 23, 0.08);
  box-shadow: 0 12px 36px rgba(28, 25, 23, 0.06);
}

body.page-contact .contact-faq__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1c1917;
  text-align: center;
}

body.page-contact .contact-faq__lead {
  margin: 0 0 1.35rem;
  font-size: 0.92rem;
  line-height: 1.8;
  color: #57534e;
  text-align: center;
}

body.page-contact .faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

body.page-contact .faq-item {
  margin: 0;
  border-radius: 14px;
  border: 1px solid rgba(28, 25, 23, 0.09);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 20px rgba(28, 25, 23, 0.045);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.page-contact .faq-item:hover {
  border-color: rgba(253, 230, 200, 0.85);
}

body.page-contact .faq-item[open] {
  border-color: rgba(249, 115, 22, 0.22);
  box-shadow: 0 8px 28px rgba(249, 115, 22, 0.08);
}

body.page-contact .faq-item__q {
  list-style: none;
  cursor: pointer;
  padding: 1rem 1.15rem 1rem 1.25rem;
  font-size: 0.94rem;
  font-weight: 700;
  color: #1c1917;
  letter-spacing: -0.02em;
  line-height: 1.45;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.25rem;
}

body.page-contact .faq-item__q::-webkit-details-marker {
  display: none;
}

body.page-contact .faq-item__q::after {
  content: "";
  flex-shrink: 0;
  width: 0.45rem;
  height: 0.45rem;
  margin-top: -0.15rem;
  border-right: 2px solid var(--home-orange-deep);
  border-bottom: 2px solid var(--home-orange-deep);
  transform: rotate(45deg);
  transition: transform 0.22s ease;
  opacity: 0.72;
}

body.page-contact .faq-item[open] .faq-item__q::after {
  transform: rotate(-135deg);
  margin-top: 0.12rem;
}

body.page-contact .faq-item__q:hover {
  background: rgba(255, 237, 213, 0.38);
}

body.page-contact .faq-item__a {
  padding: 0.1rem 1.25rem 1.2rem;
  border-top: 1px solid rgba(253, 230, 200, 0.5);
  background: linear-gradient(180deg, rgba(255, 251, 247, 0.65) 0%, rgba(255, 255, 255, 0.75) 100%);
}

body.page-contact .faq-item__a p {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
  line-height: 1.9;
  color: #44403c;
}

body.page-contact .faq-item__a p:first-child {
  margin-top: 0.95rem;
}

body.page-contact .faq-item__a p:last-child {
  margin-bottom: 0;
}

body.page-contact .contact-center-panel {
  max-width: 32rem;
  margin: 0 auto;
  padding: clamp(1.75rem, 4vw, 2.25rem) clamp(1.25rem, 4vw, 1.75rem);
  text-align: center;
  border: 1px solid rgba(28, 25, 23, 0.08);
  box-shadow: 0 12px 36px rgba(28, 25, 23, 0.06);
}

body.page-contact .contact-center-phone {
  margin: 0 0 0.65rem;
}

body.page-contact .contact-center-phone a {
  font-size: clamp(1.85rem, 4.8vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--home-teal-deep);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
  text-decoration-color: rgba(13, 148, 136, 0.45);
}

body.page-contact .contact-center-phone a:hover {
  color: var(--home-orange-deep);
  text-decoration-color: rgba(234, 88, 12, 0.45);
}

body.page-contact .contact-center-note {
  margin: 0 0 1.25rem;
  font-size: 0.86rem;
  line-height: 1.65;
  color: #78716c;
}

body.page-contact .contact-center-facts {
  margin: 0;
  padding: 0.35rem 0 0;
  border-radius: 14px;
  background: rgba(245, 249, 255, 0.65);
  border: 1px solid rgba(233, 237, 245, 0.9);
  text-align: left;
  overflow: hidden;
}

body.page-contact .contact-center-facts__row {
  display: grid;
  grid-template-columns: minmax(7rem, 38%) 1fr;
  gap: 0.65rem 1rem;
  align-items: baseline;
  margin: 0;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(233, 237, 245, 0.95);
}

body.page-contact .contact-center-facts__row:last-child {
  border-bottom: none;
}

body.page-contact .contact-center-facts dt {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #57534e;
}

body.page-contact .contact-center-facts dd {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1c1917;
  word-break: break-all;
}

body.page-contact .contact-center-facts a {
  color: var(--home-teal-deep);
  font-weight: 700;
}

body.page-contact .contact-center-facts a:hover {
  text-decoration: underline;
}

body.page-contact .contact-center-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

body.page-contact .contact-center-actions .btn {
  padding: 0.78rem 1.35rem;
  font-weight: 700;
}

body.page-contact .contact-center-kakao-guide {
  margin-top: 1.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(28, 25, 23, 0.08);
  text-align: center;
}

body.page-contact .contact-center-kakao-guide__h {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 800;
  color: #1c1917;
}

body.page-contact .contact-center-kakao-guide__p {
  margin: 0 0 0.65rem;
  font-size: 0.88rem;
  line-height: 1.7;
  color: #57534e;
}

body.page-contact .contact-center-kakao-guide__link {
  margin: 0;
  font-size: 0.82rem;
  word-break: break-all;
}

body.page-contact .contact-center-kakao-guide__link a {
  color: var(--home-teal-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(13, 148, 136, 0.35);
}

body.page-contact .contact-center-kakao-guide__link a:hover {
  color: var(--home-orange-deep);
}

@media (max-width: 480px) {
  body.page-contact .contact-center-facts__row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

/* 홈: 본문 글자 드래그 선택·텍스트용 I-beam 커서 억제 (일반 포인터/버튼은 유지) */
body.page-home {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

body.page-home * {
  -webkit-user-select: none;
  user-select: none;
  cursor: default;
}

body.page-home a,
body.page-home button,
body.page-home .btn,
body.page-home label,
body.page-home summary {
  cursor: pointer;
}

body.page-home input,
body.page-home textarea,
body.page-home select,
body.page-home [contenteditable="true"] {
  -webkit-user-select: text;
  user-select: text;
  cursor: text;
}

body.page-home .contact-faq-box .faq-item__a,
body.page-home .contact-faq-box .faq-item__a * {
  -webkit-user-select: text;
  user-select: text;
  cursor: default;
}

body.page-home .contact-faq-box ::selection {
  background: rgba(249, 115, 22, 0.22);
}

body.page-home .contact-faq-box ::-moz-selection {
  background: rgba(249, 115, 22, 0.22);
}

body.page-home ::selection {
  background: transparent;
}

body.page-home ::-moz-selection {
  background: transparent;
}
