/* ============================================================
   ADAM English — 따뜻한 스토리북 디자인
   paper cream / shiba orange / deep brown ink / maple red point
   ============================================================ */
:root {
  --paper: #FBF6EE;
  --paper-deep: #F5EDDE;
  --surface: #FFFFFF;
  --ink: #4A3C2E;
  --ink-soft: #7A6A58;
  --brand: #F2A63B;
  --brand-deep: #D98A1F;
  --brand-soft: #FCE8C8;
  --maple: #C8102E;
  --kakao: #FEE500;
  --line: #EADFCE;
  --radius: 20px;
  --shadow: 0 6px 24px rgba(92, 75, 58, .10);
  --shadow-sm: 0 3px 10px rgba(92, 75, 58, .08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  word-break: keep-all;
  overflow-wrap: break-word;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; }

.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(251, 246, 238, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 16px;
}
.brand img { height: 40px; width: auto; mix-blend-mode: multiply; }
.gnb { display: flex; gap: 4px; align-items: center; }
.gnb a {
  padding: 10px 14px; border-radius: 12px;
  font-weight: 600; font-size: 15.5px; color: var(--ink-soft);
  transition: color .2s, background .2s;
}
.gnb a:hover { color: var(--ink); background: var(--brand-soft); }
.gnb a[aria-current="page"] { color: var(--brand-deep); background: var(--brand-soft); }
.gnb .gnb-cta {
  background: var(--ink); color: #fff; margin-left: 6px;
}
.gnb .gnb-cta:hover { background: var(--brand-deep); color: #fff; }
.nav-toggle {
  display: none; background: none; border: 0; width: 44px; height: 44px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; width: 22px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .gnb {
    position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 10px 16px 16px; display: none;
  }
  .gnb.open { display: flex; }
  .gnb a { padding: 13px 14px; font-size: 16px; }
  .gnb .gnb-cta { margin-left: 0; text-align: center; margin-top: 6px; }
}

/* ---------- common section ---------- */
section { padding: 72px 0; }
.eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 700; letter-spacing: .18em;
  color: var(--brand-deep); text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow::before { content: "🍁 "; font-size: 12px; letter-spacing: 0; }
h1, h2, h3 { line-height: 1.35; letter-spacing: -.01em; }
.section-title { font-size: clamp(26px, 4.2vw, 38px); font-weight: 800; margin-bottom: 16px; }
.section-lead { color: var(--ink-soft); font-size: clamp(15.5px, 2vw, 17.5px); max-width: 620px; }
.center { text-align: center; }
.center .section-lead { margin: 0 auto; }

/* 손그림풍 밑줄 */
.hl { position: relative; white-space: nowrap; }
.hl svg {
  position: absolute; left: -2%; bottom: -.14em; width: 104%; height: .32em;
  overflow: visible;
}
.hl svg path {
  fill: none; stroke: var(--brand); stroke-width: 7; stroke-linecap: round;
  opacity: .55;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 26px; border-radius: 999px;
  font-weight: 700; font-size: 16px; border: 0;
  transition: transform .15s, box-shadow .2s, background .2s;
  box-shadow: var(--shadow-sm);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-kakao { background: var(--kakao); color: #191600; }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--brand-deep); }
.btn-line { background: var(--surface); color: var(--ink); border: 1.5px solid var(--line); box-shadow: none; }
.btn-line:hover { border-color: var(--brand); color: var(--brand-deep); }
.btn-sm { padding: 10px 18px; font-size: 14.5px; }

/* ---------- hero ---------- */
.hero { padding: 64px 0 80px; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr;
  gap: 40px; align-items: center;
}
.hero h1 {
  font-size: clamp(30px, 5vw, 48px); font-weight: 800; margin-bottom: 20px;
}
.hero .section-lead { margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.hero-note { font-size: 14px; color: var(--ink-soft); display: flex; align-items: center; gap: 6px; }

.hero-visual { position: relative; text-align: center; }
.hero-visual .mascot {
  width: min(320px, 70%); margin: 0 auto;
  filter: drop-shadow(0 16px 28px rgba(92, 75, 58, .18));
  animation: bob 5s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-12px) } }
.float-letter {
  position: absolute; font-weight: 800; color: var(--brand);
  opacity: .8; animation: bob 4s ease-in-out infinite;
  user-select: none; pointer-events: none;
}
.float-letter.l1 { top: 4%;  left: 8%;  font-size: 34px; animation-delay: -1s; }
.float-letter.l2 { top: 18%; right: 6%; font-size: 26px; color: var(--maple); animation-delay: -2.4s; }
.float-letter.l3 { bottom: 10%; left: 14%; font-size: 24px; color: var(--brand-deep); animation-delay: -3.2s; }

@media (max-width: 860px) {
  .hero { padding: 44px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-visual { order: -1; }
  .hero-visual .mascot { width: min(210px, 55%); }
}

/* ---------- stat cards ---------- */
.stats { padding: 0 0 72px; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-card {
  background: var(--surface); border-radius: var(--radius);
  padding: 26px 20px; text-align: center; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.stat-card strong { display: block; font-size: clamp(24px, 3vw, 32px); font-weight: 800; color: var(--brand-deep); margin-bottom: 6px; letter-spacing: -.02em; }
.stat-card span { font-size: 14px; color: var(--ink-soft); line-height: 1.5; display: block; }
@media (max-width: 860px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- feature cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.card {
  background: var(--surface); border-radius: var(--radius);
  padding: 32px 26px; box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .2s, box-shadow .2s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .card-icon { font-size: 34px; margin-bottom: 16px; }
.card h3 { font-size: 19px; font-weight: 800; margin-bottom: 10px; }
.card p { font-size: 15px; color: var(--ink-soft); }
@media (max-width: 860px) { .card-grid { grid-template-columns: 1fr; } }

/* ---------- program cards ---------- */
.program-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 40px; }
.program-card {
  background: var(--surface); border-radius: var(--radius);
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  padding: 34px 30px; position: relative; overflow: hidden;
}
.program-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 6px;
  background: linear-gradient(90deg, var(--brand), var(--brand-soft));
}
.program-card.mid::before { background: linear-gradient(90deg, var(--maple), #F3B6C0); }
.program-badge {
  display: inline-block; font-size: 12.5px; font-weight: 700; letter-spacing: .14em;
  color: var(--brand-deep); background: var(--brand-soft);
  border-radius: 999px; padding: 5px 12px; margin-bottom: 14px; text-transform: uppercase;
}
.program-card.mid .program-badge { color: var(--maple); background: #FBE3E7; }
.program-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 6px; }
.program-price { font-size: 17px; font-weight: 700; color: var(--brand-deep); margin-bottom: 18px; }
.program-price small { font-weight: 500; color: var(--ink-soft); font-size: 13.5px; }
.program-card.mid .program-price { color: var(--maple); }
.program-list li {
  padding: 9px 0 9px 26px; position: relative;
  font-size: 15px; color: var(--ink); border-bottom: 1px dashed var(--line);
}
.program-list li:last-child { border-bottom: 0; }
.program-list li::before { content: "🍁"; position: absolute; left: 0; top: 9px; font-size: 13px; }
.program-note { margin-top: 14px; font-size: 13.5px; color: var(--ink-soft); background: var(--paper); border-radius: 12px; padding: 12px 14px; }
@media (max-width: 860px) { .program-grid { grid-template-columns: 1fr; } }

/* 방학특강 배너 */
.season-banner {
  margin-top: 22px; background: var(--ink); color: #fff;
  border-radius: var(--radius); padding: 26px 30px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
}
.season-banner strong { font-size: 18px; font-weight: 800; }
.season-banner p { color: #D8CDBF; font-size: 14.5px; margin-top: 4px; }

/* ---------- story ---------- */
.story-band { background: var(--paper-deep); }
.story-quote {
  max-width: 720px; margin: 0 auto; text-align: center;
}
.story-quote blockquote {
  font-size: clamp(19px, 2.8vw, 24px); font-weight: 700; line-height: 1.6;
  margin: 22px 0 18px;
}
.story-quote blockquote em { font-style: normal; color: var(--brand-deep); }
.story-quote p { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 26px; }

/* about 챕터 */
.chapter { display: grid; grid-template-columns: 120px 1fr; gap: 26px; margin-top: 46px; }
.chapter-num {
  font-weight: 800; color: var(--brand); font-size: 14px; letter-spacing: .16em;
  text-transform: uppercase; padding-top: 6px;
}
.chapter-num strong { display: block; font-size: 40px; color: var(--brand-deep); letter-spacing: 0; line-height: 1.1; }
.chapter-body h3 { font-size: 21px; font-weight: 800; margin-bottom: 12px; }
.chapter-body p { color: var(--ink-soft); font-size: 15.5px; margin-bottom: 12px; }
.chapter-body p strong { color: var(--ink); }
@media (max-width: 640px) { .chapter { grid-template-columns: 1fr; gap: 8px; } }

/* teacher cards */
.teacher-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 40px; }
.teacher-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 34px 30px; text-align: center;
}
.teacher-avatar {
  width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 18px;
  background: var(--brand-soft); display: grid; place-items: center; font-size: 44px;
}
.teacher-card h3 { font-size: 20px; font-weight: 800; }
.teacher-role { color: var(--brand-deep); font-weight: 700; font-size: 14px; margin: 4px 0 16px; }
.teacher-card ul { text-align: left; }
.teacher-card ul li {
  font-size: 14.5px; color: var(--ink-soft); padding: 7px 0 7px 22px; position: relative;
}
.teacher-card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--brand-deep); font-weight: 800; }
@media (max-width: 860px) { .teacher-grid { grid-template-columns: 1fr; } }

/* ---------- awards ---------- */
.award-band {
  background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.award-inner { display: grid; grid-template-columns: auto 1fr; gap: 34px; align-items: center; }
.award-medal { font-size: 64px; }
.award-inner h2 { font-size: clamp(21px, 3vw, 27px); font-weight: 800; margin-bottom: 10px; }
.award-inner p { color: var(--ink-soft); font-size: 15.5px; }
.award-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.award-tags span {
  background: var(--brand-soft); color: var(--brand-deep);
  font-size: 13.5px; font-weight: 700; padding: 6px 14px; border-radius: 999px;
}
@media (max-width: 640px) { .award-inner { grid-template-columns: 1fr; text-align: center; } .award-tags { justify-content: center; } }

/* ---------- sns cards ---------- */
.sns-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.sns-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; box-shadow: var(--shadow-sm); display: flex; align-items: center; gap: 14px;
  transition: transform .2s, box-shadow .2s;
}
.sns-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.sns-card .sns-icon { font-size: 30px; }
.sns-card strong { display: block; font-size: 16px; font-weight: 800; }
.sns-card span { font-size: 13.5px; color: var(--ink-soft); }
@media (max-width: 860px) { .sns-grid { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta-band { padding: 80px 0; }
.cta-box {
  background: linear-gradient(135deg, #FDEFD8, var(--brand-soft));
  border: 1px solid #F3D9A8;
  border-radius: 28px; padding: 56px 40px; text-align: center; position: relative; overflow: hidden;
}
.cta-box .mascot-sm { width: 110px; margin: 0 auto 18px; filter: drop-shadow(0 8px 16px rgba(92,75,58,.16)); }
.cta-box h2 { font-size: clamp(23px, 3.4vw, 32px); font-weight: 800; margin-bottom: 12px; }
.cta-box p { color: var(--ink-soft); margin-bottom: 28px; font-size: 15.5px; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.cta-time { margin-top: 18px; font-size: 13.5px; color: var(--ink-soft); }

/* ---------- process steps ---------- */
.step-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.step {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 20px; box-shadow: var(--shadow-sm); position: relative;
}
.step-num { font-weight: 800; color: var(--brand); font-size: 13px; letter-spacing: .14em; margin-bottom: 10px; display: block; }
.step h3 { font-size: 16.5px; font-weight: 800; margin-bottom: 8px; }
.step p { font-size: 13.5px; color: var(--ink-soft); }
@media (max-width: 860px) { .step-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .step-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 40px auto 0; }
.faq-list details {
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  margin-bottom: 12px; overflow: hidden;
}
.faq-list summary {
  padding: 18px 22px; font-weight: 700; font-size: 15.5px; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font-size: 20px; color: var(--brand-deep); transition: transform .2s; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 22px 18px; color: var(--ink-soft); font-size: 14.5px; }

/* ---------- location ---------- */
.loc-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 26px; margin-top: 40px; align-items: start; }
.map-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); overflow: hidden;
}
.map-visual {
  aspect-ratio: 4/3; min-height: 280px; background: var(--paper-deep);
  display: grid; place-items: center; text-align: center; padding: 24px;
}
.map-visual img { width: 120px; mix-blend-mode: multiply; margin: 0 auto 14px; }
.map-visual p { color: var(--ink-soft); font-size: 14.5px; }
.map-links { display: flex; gap: 10px; padding: 18px; flex-wrap: wrap; }
.map-links .btn { flex: 1; min-width: 150px; }
.info-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 30px 28px;
}
.info-card h3 { font-size: 17px; font-weight: 800; margin: 22px 0 10px; }
.info-card h3:first-child { margin-top: 0; }
.info-row { display: flex; gap: 10px; font-size: 15px; padding: 6px 0; color: var(--ink-soft); }
.info-row .ico { flex: 0 0 auto; }
.addr-line { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; }
.copy-btn {
  border: 1.5px solid var(--line); background: var(--paper); border-radius: 999px;
  padding: 6px 14px; font-size: 13px; font-weight: 700; color: var(--ink-soft);
}
.copy-btn:hover { border-color: var(--brand); color: var(--brand-deep); }
.hours-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.hours-table td { padding: 8px 4px; border-bottom: 1px dashed var(--line); color: var(--ink-soft); }
.hours-table td:last-child { text-align: right; color: var(--ink); font-weight: 600; }
@media (max-width: 860px) { .loc-grid { grid-template-columns: 1fr; } }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 26px; margin-top: 40px; align-items: start; }
.contact-ways { display: grid; gap: 16px; }
.way-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 26px 24px; display: flex; gap: 16px; align-items: flex-start;
  transition: transform .2s, box-shadow .2s;
}
a.way-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.way-icon { font-size: 30px; flex: 0 0 auto; }
.way-card strong { display: block; font-size: 16.5px; font-weight: 800; margin-bottom: 4px; }
.way-card p { font-size: 14px; color: var(--ink-soft); }
.way-card.primary { background: var(--kakao); border-color: #EAD200; }
.way-card.primary p { color: #5C5200; }

.form-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); padding: 34px 30px;
}
.form-card h3 { font-size: 19px; font-weight: 800; margin-bottom: 20px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 8px; }
.field label .req { color: var(--maple); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 12px;
  font: inherit; font-size: 15px; background: var(--paper); color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--brand); outline-offset: 1px; border-color: var(--brand);
}
.field textarea { min-height: 110px; resize: vertical; }
.consent {
  display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--ink-soft);
  background: var(--paper); border-radius: 12px; padding: 14px 16px; margin-bottom: 18px;
}
.consent input { margin-top: 3px; accent-color: var(--brand-deep); width: 16px; height: 16px; }
.consent a { color: var(--brand-deep); font-weight: 700; text-decoration: underline; }
.form-msg { margin-top: 14px; font-size: 14px; font-weight: 600; display: none; }
.form-msg.ok { display: block; color: #2E7D32; }
.form-msg.err { display: block; color: var(--maple); }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- legal pages ---------- */
.legal { max-width: 780px; margin: 0 auto; padding: 56px 20px 80px; }
.legal h1 { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.legal .legal-date { color: var(--ink-soft); font-size: 14px; margin-bottom: 36px; }
.legal h2 { font-size: 19px; font-weight: 800; margin: 34px 0 12px; }
.legal p, .legal li { font-size: 15px; color: var(--ink-soft); margin-bottom: 10px; }
.legal ol, .legal ul { padding-left: 22px; }
.legal ol li { list-style: decimal; }
.legal ul li { list-style: disc; }
.legal table { width: 100%; border-collapse: collapse; font-size: 14px; margin: 14px 0; }
.legal th, .legal td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; color: var(--ink-soft); }
.legal th { background: var(--paper-deep); color: var(--ink); }

/* ---------- footer ---------- */
.site-footer {
  background: #3E3226; color: #C9BCA9; padding: 52px 0 92px; margin-top: 40px;
  font-size: 13.5px;
}
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: start; }
.footer-brand img { height: 44px; width: auto; filter: brightness(1.6); mix-blend-mode: screen; margin-bottom: 16px; }
.footer-info p { margin-bottom: 5px; line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; gap: 8px; text-align: right; }
.footer-links a { color: #E0D5C2; font-weight: 600; }
.footer-links a:hover { color: #fff; }
.footer-links a.privacy-link { font-weight: 800; color: #F2C879; }
.footer-sns { display: flex; gap: 12px; justify-content: flex-end; margin-top: 8px; }
.footer-sns a { color: #C9BCA9; }
.footer-sns a:hover { color: #fff; }
.footer-credit {
  grid-column: 1 / -1; border-top: 1px solid #55483A; padding-top: 20px; margin-top: 8px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.footer-credit a { color: #F2C879; font-weight: 700; }
.footer-credit a:hover { text-decoration: underline; }
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { text-align: left; }
  .footer-sns { justify-content: flex-start; }
}

/* ---------- floating buttons ---------- */
.fab-group {
  position: fixed; right: 16px; bottom: 16px; display: flex; flex-direction: column;
  gap: 10px; z-index: 300;
}
.fab {
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .22); font-size: 24px; text-decoration: none;
  transition: transform .15s;
}
.fab:hover { transform: scale(1.08); }
.fab-kakao { background: var(--kakao); }
.fab-call { background: var(--ink); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-visual .mascot, .float-letter { animation: none; }
  html { scroll-behavior: auto; }
}

/* page hero (서브페이지 상단) */
.page-hero { padding: 56px 0 8px; }
.page-hero h1 { font-size: clamp(28px, 4.5vw, 40px); font-weight: 800; margin-bottom: 12px; }
.page-hero .section-lead { max-width: 680px; }
