:root{
  --olive-950:#1f291f;
  --olive-900:#2d382b;
  --olive-800:#3c4938;
  --olive-700:#53604d;
  --gold:#b49b67;
  --gold-soft:#d5c7a6;
  --ivory:#f6f2e9;
  --paper:#fbfaf6;
  --white:#fff;
  --ink:#292c27;
  --muted:#666a62;
  --line:#ded9cc;
  --shadow:0 14px 38px rgba(31,41,31,.09);
  --radius:18px;
  --container:min(1160px, calc(100% - 48px));
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  background:var(--paper);
  font-family:"Pretendard","Noto Sans KR","Apple SD Gothic Neo",system-ui,sans-serif;
  line-height:1.7;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
button,input,textarea,select{font:inherit}
button{cursor:pointer}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}
.skip-link{position:fixed;left:12px;top:-60px;background:#fff;padding:10px 14px;z-index:9999}
.skip-link:focus{top:12px}
.container{width:var(--container);margin-inline:auto}
.narrow{max-width:780px}
.center{text-align:center}
.desktop-only{display:block}
.section{padding:92px 0}
.section-kicker{margin:0 0 8px;color:var(--gold);font-weight:700;letter-spacing:.08em;font-size:.88rem}
.section-heading{margin-bottom:38px}
.section-heading h2,.intro h2,.split-copy h2,.faq h2,.application-panel h2{
  margin:.1em 0 .65em;
  font-family:"Noto Serif KR","Nanum Myeongjo",Georgia,serif;
  font-size:clamp(1.85rem,3.1vw,2.8rem);
  line-height:1.28;
  font-weight:600;
}
.lead{font-size:1.08rem;color:#4f534d}
.text-link{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:var(--olive-800);
  font-weight:700;
  background:none;
  border:0;
  padding:0;
}
.text-link:hover{text-decoration:underline}
.button{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:46px;padding:0 22px;border-radius:999px;
  border:1px solid transparent;font-weight:700;transition:.2s ease;
}
.button-primary{background:var(--gold-soft);color:var(--olive-950)}
.button-primary:hover{transform:translateY(-1px);background:#e0d3b3}
.button-secondary{border-color:#a99f87;background:rgba(255,255,255,.82)}
.button-secondary:hover{background:#fff}
.button-ghost{border-color:var(--line);background:transparent}

.site-header{
  position:sticky;top:0;z-index:1000;
  background:rgba(31,41,31,.96);backdrop-filter:blur(10px);
  color:#fff;border-bottom:1px solid rgba(255,255,255,.08);
}
.header-inner{
  width:var(--container);margin:auto;min-height:74px;
  display:flex;align-items:center;justify-content:space-between;gap:20px;
}
.brand{
  display:inline-flex;align-items:center;gap:10px;
  font-family:"Noto Serif KR","Nanum Myeongjo",serif;
  font-size:1.45rem;font-weight:600;letter-spacing:.05em;
}
.brand-mark{color:var(--gold);font-size:1.55em;line-height:1}
.primary-nav{display:flex;align-items:center;gap:30px;font-size:.92rem}
.primary-nav a{position:relative;padding:24px 0}
.primary-nav a::after{content:"";position:absolute;left:0;right:100%;bottom:18px;height:1px;background:var(--gold);transition:.2s}
.primary-nav a:hover::after,.primary-nav a:focus::after{right:0}
.nav-toggle{display:none;background:none;border:0;color:white;width:46px;height:46px;padding:10px}
.nav-toggle span:not(.sr-only){display:block;height:2px;background:#fff;margin:6px 0}

.hero{
  position:relative;min-height:670px;
  display:flex;align-items:center;color:#fff;overflow:hidden;
  background:
    linear-gradient(90deg,rgba(14,20,14,.76),rgba(14,20,14,.2)),
    url("assets/hero.jpg") center/cover no-repeat;
}
.hero-overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(20,27,20,.08),rgba(20,27,20,.25))}
.hero-content{position:relative;z-index:2;width:var(--container);margin:auto;padding:88px 0}
.eyebrow{color:#e6dcc1;font-weight:700;letter-spacing:.12em;font-size:.85rem}
.hero h1{
  font-family:"Noto Serif KR","Nanum Myeongjo",serif;
  font-weight:500;font-size:clamp(3rem,6.2vw,5.2rem);line-height:1.16;
  margin:.3em 0 .35em;letter-spacing:-.03em;
}
.hero-copy{max-width:610px;font-size:1.06rem;color:rgba(255,255,255,.9);margin-bottom:30px}

.intro{background:var(--ivory);position:relative;overflow:hidden}
.intro::before{
  content:"✾";position:absolute;left:4%;top:50%;transform:translateY(-50%);
  font-size:11rem;color:rgba(180,155,103,.08)
}

.services{background:#fff}
.service-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.service-card{
  padding:34px;border:1px solid var(--line);border-radius:var(--radius);
  background:linear-gradient(180deg,#fff,#faf8f1);
  transition:.25s ease;
}
.service-card:hover{transform:translateY(-4px);box-shadow:var(--shadow)}
.service-icon{font-size:2.2rem;color:var(--gold);margin-bottom:15px}
.service-card h3{font-family:"Noto Serif KR",serif;font-size:1.42rem;margin:0 0 10px}
.service-card p{color:var(--muted);min-height:58px}
.service-card a{font-weight:700;color:var(--olive-800)}
.section-note{text-align:center;color:var(--muted);font-size:.92rem;margin-top:24px}

.split-section{display:grid;grid-template-columns:1fr 1fr;min-height:500px;background:var(--ivory)}
.split-section.reverse{background:#f2eee4}
.split-section.reverse .split-image{order:2}
.split-section.reverse .split-copy{order:1}
.split-image{
  min-height:500px;background-position:center;background-size:cover;
  box-shadow:inset 0 0 0 1px rgba(0,0,0,.04);
}
.image-temple{background-image:url("assets/temple-space.jpg")}
.image-seodam{background-image:url("assets/seodam-symbol.jpg")}
.split-copy{padding:76px clamp(40px,7vw,110px);align-self:center}
.split-copy p{max-width:580px}
.subhead{font-weight:700;color:var(--olive-800)}

.news{background:#fff}
.news-layout{display:grid;grid-template-columns:1.7fr 1fr;gap:26px}
.news-list{border-top:1px solid var(--line)}
.news-list a{
  display:grid;grid-template-columns:1fr auto;gap:20px;padding:20px 4px;
  border-bottom:1px solid var(--line);
}
.news-list a:hover span{text-decoration:underline}
.news-list time{color:var(--muted);font-size:.9rem}
.blog-promo{
  padding:32px;border-radius:var(--radius);
  background:
    linear-gradient(rgba(246,242,233,.90),rgba(246,242,233,.90)),
    url("assets/blog.svg") center/cover;
  border:1px solid var(--line);
}
.blog-promo h3{font-family:"Noto Serif KR",serif;font-size:1.8rem;margin:0}

.faq{background:var(--ivory)}
.faq-layout{display:grid;grid-template-columns:.65fr 1.35fr;gap:60px}
.accordion details{border-top:1px solid var(--line);padding:0 4px}
.accordion details:last-child{border-bottom:1px solid var(--line)}
.accordion summary{cursor:pointer;list-style:none;padding:20px 34px 20px 0;font-weight:700;position:relative}
.accordion summary::-webkit-details-marker{display:none}
.accordion summary::after{content:"+";position:absolute;right:6px;font-size:1.4rem;color:var(--gold)}
.accordion details[open] summary::after{content:"–"}
.accordion details p{padding:0 30px 20px 0;color:var(--muted);margin:0}

.visit{background:#fff}
.visit-grid{display:grid;grid-template-columns:.8fr .8fr 1.4fr;gap:18px}
.contact-card,.map-placeholder{
  min-height:260px;border:1px solid var(--line);border-radius:var(--radius);padding:30px;
}
.contact-card{background:#fff}
.contact-card h3{font-family:"Noto Serif KR",serif;margin:.35em 0}
.mini-icon{font-size:2rem;color:var(--gold)}
.map-placeholder{
  display:flex;align-items:center;justify-content:center;text-align:center;
  background:
    linear-gradient(rgba(238,239,231,.84),rgba(238,239,231,.84)),
    url("assets/map.svg") center/cover;
}
.map-placeholder span{display:block;color:var(--muted);margin:7px 0 16px}

.application-panel{background:var(--olive-950);color:#fff;padding:72px 0}
.application-inner{display:grid;grid-template-columns:.75fr 1.25fr;gap:50px}
.inquiry-form{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.inquiry-form label{display:grid;gap:7px}
.inquiry-form label span{font-size:.9rem}
.inquiry-form em{color:#e5c77c}
.inquiry-form input,.inquiry-form textarea,.inquiry-form select{
  width:100%;border:1px solid rgba(255,255,255,.22);background:rgba(255,255,255,.08);
  color:#fff;border-radius:10px;padding:12px 14px;outline:none;
}
.inquiry-form option{color:#111}
.inquiry-form input:focus,.inquiry-form textarea:focus,.inquiry-form select:focus{border-color:var(--gold-soft)}
.full{grid-column:1/-1}
.privacy{display:flex!important;grid-template-columns:auto 1fr!important;align-items:start}
.privacy input{width:auto;margin-top:6px}
.form-actions{display:flex;gap:10px}
.form-status{margin:0;min-height:1.5em;color:#f0dfb6}

.site-footer{background:var(--olive-900);color:rgba(255,255,255,.82);padding:38px 0}
.footer-grid{display:grid;grid-template-columns:1fr 1fr auto;gap:30px;align-items:center}
.footer-brand{color:#fff}
.footer-grid p{margin:5px 0;font-size:.86rem}
.footer-meta{text-align:right}

@media (max-width: 900px){
  :root{--container:min(100% - 34px,760px)}
  .section{padding:68px 0}
  .nav-toggle{display:block}
  .primary-nav{
    position:absolute;top:74px;left:0;right:0;display:none;flex-direction:column;gap:0;
    background:var(--olive-950);padding:12px 18px 22px;border-top:1px solid rgba(255,255,255,.08)
  }
  .primary-nav.open{display:flex}
  .primary-nav a{width:100%;padding:14px 8px;border-bottom:1px solid rgba(255,255,255,.08)}
  .primary-nav a::after{display:none}
  .hero{min-height:620px;background-position:55% center}
  .service-grid{grid-template-columns:1fr}
  .service-card p{min-height:0}
  .split-section,.split-section.reverse{grid-template-columns:1fr}
  .split-section.reverse .split-image{order:1}
  .split-section.reverse .split-copy{order:2}
  .split-image{min-height:390px}
  .split-copy{padding:55px var(--container-side,34px)}
  .news-layout,.faq-layout,.visit-grid,.application-inner{grid-template-columns:1fr}
  .faq-layout{gap:22px}
  .visit-grid{gap:14px}
  .inquiry-form{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr;text-align:left}
  .footer-meta{text-align:left}
}

@media (max-width: 560px){
  :root{--container:calc(100% - 28px)}
  .header-inner{min-height:66px}
  .primary-nav{top:66px}
  .brand{font-size:1.25rem}
  .hero{min-height:560px;background-position:62% center}
  .hero-content{padding:68px 0}
  .hero h1{font-size:2.7rem}
  .hero-copy{font-size:.98rem}
  .desktop-only{display:none}
  .section{padding:58px 0}
  .section-heading h2,.intro h2,.split-copy h2,.faq h2,.application-panel h2{font-size:1.8rem}
  .service-card{padding:27px 24px}
  .split-image{min-height:300px}
  .split-copy{padding:44px 22px}
  .news-list a{grid-template-columns:1fr;gap:5px}
  .contact-card,.map-placeholder{min-height:auto;padding:25px}
  .inquiry-form{gap:14px}
  .form-actions{flex-direction:column}
}


/* Stage 2 검증 표식 — 디자인 기준선은 변경하지 않음 */
.staging-banner{
  background:#725f32;
  color:#fff9e8;
  text-align:center;
  font-size:.78rem;
  letter-spacing:.03em;
  padding:5px 12px;
}

/* HOME review v2: scoped to HOME; detail pages retain the baseline. */
.home-review{--olive-950:#203c4c;--olive-900:#304d5c;--olive-800:#305e76;--gold:#50768b;--gold-soft:#e7f1f6;--ivory:#f1f6f8;--paper:#fcfdfd;--ink:#263f4c;--muted:#5c707b;--line:#d9e4ea;--shadow:0 14px 38px rgba(33,66,85,.07)}
.home-review .site-header{background:rgba(252,253,253,.97);color:var(--ink);border-bottom:1px solid var(--line)}
.home-review .primary-nav{gap:20px;font-size:.87rem}
.home-review .brand-mark{color:#648da4}
.home-review .staging-banner{background:#e8f0f4;color:#415d6e}
.home-review .hero{min-height:650px;background:linear-gradient(90deg,rgba(12,42,63,.48),rgba(12,42,63,.15) 58%,transparent 82%),url("assets/hero.jpg") center 64%/cover no-repeat}
.home-review .hero-overlay{background:transparent}
.home-review .hero h1{font-size:clamp(2.7rem,4.5vw,4rem);line-height:1.3;max-width:760px;text-shadow:0 2px 14px rgba(10,35,55,.18)}
.home-review .eyebrow{color:#edf6fc}
.home-review .hero-copy{color:#fff;text-shadow:0 1px 5px rgba(10,35,55,.35)}
.hero-actions{display:flex;align-items:center;gap:26px;flex-wrap:wrap}
.home-review .button-primary{background:#eaf4fa;color:#234b63}
.home-review .button-primary:hover{background:#fff}
.hero-visit{color:#fff;font-weight:600;text-underline-offset:5px}
.hero-visit:hover{text-decoration:underline}
.reading{background:#fcfdfd;scroll-margin-top:95px}
.reading-heading{display:flex;justify-content:space-between;align-items:center;gap:24px;margin-bottom:32px}
.reading-heading h2{font-family:"Noto Serif KR","Nanum Myeongjo",Georgia,serif;font-size:clamp(2rem,3.1vw,2.8rem);font-weight:600;margin:0 0 12px;line-height:1.3}
.reading-intro{color:var(--muted);margin:0}
.reading-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}
.reading-card{position:relative;display:flex;flex-direction:column;border-top:2px solid #91b5c9;background:#f2f7fa;padding:28px 26px;min-width:0}
.reading-topic{color:#426c83;font-size:.85rem;font-weight:700;margin:0 0 18px}
.reading-card h3{font-family:"Noto Serif KR","Nanum Myeongjo",serif;font-size:1.35rem;line-height:1.6;word-break:keep-all;overflow-wrap:anywhere;margin:0 0 16px}
.reading-card h3 a::after{content:"";position:absolute;inset:0}
.reading-card>p:not(.reading-topic){color:var(--muted);margin:0 0 28px;font-size:.96rem}
.reading-action{margin-top:auto;color:#315e78;font-weight:600;font-size:.88rem}
.reading-card:hover{background:#eaf3f8}
.home-review a:focus-visible,.home-review button:focus-visible{outline:3px solid #4384ab;outline-offset:5px}
.home-review .hero a:focus-visible{outline-color:white}
.home-review #seodam{background:#f7f3e9;padding:22px 24px;border-radius:8px}
.home-review .intro::before{display:none}
.home-review .service-card{background:#fff}
.home-review .nav-toggle{color:var(--ink)}
.home-review .nav-toggle span:not(.sr-only){background:var(--ink)}
.home-review section[id],.home-review article[id]{scroll-margin-top:95px}
@media(max-width:1100px) and (min-width:901px){.home-review .primary-nav{gap:12px;font-size:.79rem}.home-review .header-inner{gap:12px}.home-review .brand{font-size:1.25rem}}
@media(max-width:900px){.home-review .primary-nav{background:#fcfdfd}.home-review .primary-nav a{border-color:var(--line)}.reading-grid{grid-template-columns:1fr}.reading-heading{align-items:flex-start}.reading-card{padding:26px}.home-review .hero{min-height:600px;background-position:60% 64%}}
@media(max-width:560px){.home-review .hero{min-height:640px;align-items:flex-start;background-image:linear-gradient(180deg,rgba(12,42,63,.43),rgba(12,42,63,.12) 62%,transparent),url("assets/hero.jpg");background-position:65% center}.home-review .hero-content{padding:54px 0 220px}.home-review .hero h1{font-size:clamp(1.9rem,7.5vw,2.6rem);letter-spacing:-.04em}.home-review .hero-copy{max-width:340px;font-size:.94rem}.hero-actions{gap:16px}.reading-heading{display:block}.reading-heading>.text-link{margin-top:20px}.reading-card h3{font-size:1.3rem}}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}.home-review *{transition:none!important}}

/* HOME v3: content-first layout and signboard-inspired lotus. */
.lotus-mark{width:44px;height:38px;object-fit:contain;flex-shrink:0}
.home-review .hero{min-height:560px}
.home-review .section{padding:70px 0}
.home-review .service-card{border-radius:8px;padding:30px;background:#f8fafb}
.home-review .service-card p{min-height:82px}
.home-review .about-compact{background:#eff5f8}
.about-inner{display:grid;grid-template-columns:1fr 1.4fr;gap:64px;align-items:start}
.about-inner h2,.welcome h2{font-family:"Noto Serif KR","Nanum Myeongjo",serif;font-size:clamp(1.8rem,3vw,2.6rem);font-weight:600;line-height:1.4;margin:0}
.about-inner .lead{margin:0 0 18px;color:var(--ink);font-size:1.14rem}
.about-inner p:last-child{margin-bottom:0;color:var(--muted)}
.notice-empty{display:flex;align-items:center;justify-content:space-between;gap:24px;border-block:1px solid var(--line);padding:22px 0}
.notice-empty p{margin:0;color:var(--muted)}
.welcome{background:#f1f6f8}
.welcome-grid{display:grid;grid-template-columns:1.25fr 1fr;gap:64px}
.welcome-subtitle{font-size:1.25rem;margin:0 0 22px}
.visit-contact{border-left:1px solid #cbdce5;padding-left:40px;scroll-margin-top:95px}
.visit-contact p{color:var(--muted)}
.visit-contact address{font-style:normal;margin:26px 0 12px;font-size:.95rem}
.home-review .visit-contact .button{background:#305e76;color:white}
.home-review .site-footer{background:#fcfdfd;color:var(--muted);border-top:1px solid var(--line);padding:28px 0}
.footer-simple{display:flex;align-items:center;justify-content:space-between;gap:24px}
.footer-simple .brand{color:var(--ink)}
.footer-simple p{font-size:.8rem;margin:4px 0}
.home-review .accordion summary{min-height:64px}
@media(max-width:900px){.about-inner,.welcome-grid{grid-template-columns:1fr;gap:28px}.visit-contact{border-left:0;border-top:1px solid var(--line);padding:28px 0 0}.home-review .service-card p{min-height:0}.footer-simple{align-items:flex-start;flex-direction:column}}
@media(max-width:560px){.home-review .section{padding:48px 0}.home-review .hero{min-height:620px}.notice-empty{align-items:flex-start;flex-direction:column;gap:12px}.lotus-mark{width:38px;height:33px}.home-review .brand{gap:8px}}

/* Reader-requested sizing, sentence wrapping and asynchronous contact. */
.home-review .lotus-mark{width:28px;height:24px}
.home-review .brand{gap:8px}
.home-review .reading-card p,.home-review .service-card p{word-break:keep-all;overflow-wrap:anywhere;color:#536b78}
.home-review .reading-topic{color:#426c83}
.participation{margin-top:28px;border-top:1px solid var(--line);border-bottom:1px solid var(--line);scroll-margin-top:100px}
.participation>summary{cursor:pointer;padding:24px 0;font-weight:700;font-size:1.12rem;list-style:none;display:flex;align-items:center;gap:20px}
.participation>summary::-webkit-details-marker{display:none}
.participation>summary::after{content:'+';font-size:1.6rem;margin-left:auto}
.participation[open]>summary::after{content:'−'}
.participation[open] .disclosure-hint{display:none}
.disclosure-hint{font-size:.82rem;color:var(--muted);font-weight:400}
.participation>.welcome-grid{padding:8px 0 32px}
.kakao-pending{background:#e5e9ec;color:#526571;cursor:not-allowed;border:1px solid #c8d3da}
.contact-note{font-size:.87rem}
@media(max-width:560px){.home-review .lotus-mark{width:25px;height:22px}.participation>summary{font-size:1rem;gap:8px}.disclosure-hint{font-size:.75rem}}

.kakao-contact{background:#fee500;color:#242424;border-color:#e8d200}.kakao-contact:hover{background:#ffed50}

.questions{background:#fff}.questions-inner{display:grid;grid-template-columns:1fr 1.1fr;gap:56px}.questions h2{font-family:"Noto Serif KR","Nanum Myeongjo",serif;font-size:clamp(1.9rem,3vw,2.7rem);line-height:1.4;margin:0 0 22px}.questions h3{margin:0 0 18px;font-size:1.1rem}.questions p{color:#536570}.question-guide{border-top:2px solid #a78d57;padding:24px;background:#f8fafb}.questions .lead{color:#293f4d}.question-guide .button{max-width:100%;height:auto;padding:12px 18px;text-align:center}@media(max-width:900px){.questions-inner{grid-template-columns:1fr;gap:24px}}

/* Agreed navigation and learning structure. */
.home-review .primary-nav{gap:18px}.nav-group{position:relative}.nav-group>summary{cursor:pointer;list-style:none;padding:24px 0;font-weight:600;white-space:nowrap}.nav-group>summary::-webkit-details-marker{display:none}.nav-group>summary::after{content:'⌄';margin-left:7px;font-size:.8em}.nav-submenu{position:absolute;top:100%;left:-18px;min-width:218px;background:#fff;border:1px solid var(--line);border-radius:8px;padding:8px;box-shadow:0 12px 24px #29485b18}.home-review .nav-submenu a{display:block;padding:12px 10px;font-size:.9rem;border-radius:4px}.home-review .nav-submenu a:hover{background:#eef5f8}.home-review .nav-submenu a::after{display:none}.home-review .primary-nav>.nav-chat{font-size:.8rem;color:#315e76}.practice-grid{grid-template-columns:repeat(4,minmax(0,1fr))}.home-review .practice-grid .service-card{padding:24px}.online-practice{background:#eef4f7}.online-practice h2{font-family:"Noto Serif KR",serif;font-size:clamp(1.9rem,3vw,2.6rem);margin:0 0 20px}.participation-steps{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:32px;padding-left:24px;margin:30px 0}.participation-steps li::marker{color:#927746;font-weight:700}.participation-steps p{color:#536570}.education-section{background:#fcfcfa}.home-review .about-compact{padding:38px 0}.home-review .about-inner h2{font-size:1.6rem}
@media(max-width:1100px) and (min-width:901px){.home-review .primary-nav{gap:10px}.home-review .primary-nav>.nav-chat{font-size:.7rem}}
@media(max-width:900px){.home-review .primary-nav{align-items:stretch;gap:0;max-height:calc(100dvh - 80px);overflow-y:auto}.nav-group>summary{padding:14px 8px;border-bottom:1px solid var(--line)}.nav-submenu{position:static;box-shadow:none;border:0;border-left:2px solid #a5becb;border-radius:0;margin-left:12px;min-width:0}.practice-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.participation-steps{grid-template-columns:1fr;gap:14px}}
@media(max-width:560px){.practice-grid{grid-template-columns:1fr}}

/* Make subcategory affordances clear at desktop and touch sizes. */
.home-review .nav-group[open]>summary{color:#285f7c}
.home-review .nav-group[open]>summary::after{content:'⌃'}
.home-review .nav-group>summary:focus-visible{outline:3px solid #4384ab;outline-offset:3px;border-radius:4px}
.home-review .nav-submenu{z-index:1001}
.home-review .nav-submenu a{min-height:44px;line-height:1.6;white-space:normal}

/* Learning courses and consolidated online participation. */
.home-review .learning-grid .service-card{background:#fff;border-top:2px solid #c5a04a}
.home-review .learning-grid .service-card p{min-height:0;margin:0;line-height:1.85}
.home-review .learning-grid .service-card .learning-purpose{color:var(--ink);font-weight:600;margin:0 0 18px}
.home-review .education-section .section-note{color:var(--muted);margin:26px 0 16px}
.online-notice{border-top:1px solid var(--line);padding:20px 0;margin:10px 0 12px;scroll-margin-top:100px}
.online-notice h3{font-size:1.05rem;margin:0 0 8px}
.online-notice p{margin:0;color:var(--muted)}

/* Compact participation guide within prayer/practice. */
.home-review .participation-brief{margin-top:28px;padding:26px 28px;background:#eef4f7;border-radius:8px;display:flex;align-items:center;justify-content:space-between;gap:24px;scroll-margin-top:100px}
.participation-brief h3{font-size:1.2rem;margin:0 0 10px;line-height:1.5}
.participation-brief p{margin:0;color:#536570;line-height:1.8;word-break:keep-all}
.participation-brief>.text-link{flex-shrink:0}
.participation-brief #news{scroll-margin-top:100px}
.home-review .learning-grid+.text-link{margin-top:24px}
.home-review .education-section>.container>.text-link{margin-top:24px}
@media(max-width:900px){.home-review .participation-brief{align-items:flex-start;flex-direction:column;gap:18px;padding:24px}}

/* Shared participation destination for practice and learning. */
.home-review .together-section{background:#fff}
.meeting-notices{scroll-margin-top:100px}
.meeting-notices h3{font-size:1.2rem;margin:0 0 18px}
.meeting-notices .notice-placeholder{padding:22px 0;margin:0;color:var(--muted);border-block:1px solid var(--line)}
.home-review .meeting-notices .news-list a{word-break:keep-all;overflow-wrap:anywhere}

/* Actual meeting: announcement and open-chat participation. */
.online-actions{display:flex;flex-direction:column;align-items:flex-start;gap:14px;flex-shrink:0}

/* HOME hierarchy: participation is the strongest destination. */
.home-review #online.participation-brief{border:2px solid #23485f;background:#eef4f7;padding:30px;gap:28px}
.home-review #online h3{color:#183b52;font-size:1.4rem;font-weight:700}
.home-review #online .online-join{background:#23485f;border:2px solid #23485f;color:#fff;padding:13px 22px;min-height:48px;line-height:1.6;text-align:center;white-space:normal;word-break:keep-all;overflow-wrap:anywhere}
.home-review #online .online-join:hover{background:#183449;border-color:#183449;color:#fff}
.home-review #online .online-join:focus-visible{outline:3px solid #23485f;outline-offset:4px}
.home-review #online .online-actions>.text-link{font-size:.95rem;font-weight:500;text-decoration:underline;text-underline-offset:5px}
.home-review #services>.container>.section-heading,
.home-review #education>.container>.section-heading,
.home-review #together>.container>.section-heading,
.home-review #reading>.container>.reading-heading{border-bottom:1px solid #acbec8;padding-bottom:22px}
.home-review #services .section-heading h2,
.home-review #education .section-heading h2,
.home-review #together .section-heading h2,
.home-review #reading .reading-heading h2{color:#23485f}
@media(max-width:900px){.home-review #online.participation-brief{padding:24px;gap:22px}.home-review #online .online-actions{max-width:100%;flex-shrink:1}}
@media(max-width:560px){.home-review #online.participation-brief{padding:22px 18px}.home-review #online .online-actions{width:100%}.home-review #online .online-join{width:100%;box-sizing:border-box}}

/* Keep the complete learning introduction and course choices together. */
.home-review #education>.container{border:2px solid #a99a7b;border-radius:12px;background:#fcfcfa;padding:36px}
.home-review #education>.container>.section-heading{margin-bottom:28px;border-bottom-color:#d2c9b8}
.home-review #education .learning-grid{gap:20px}
.home-review #education .learning-grid .service-card{min-width:0}
.home-review #education .learning-grid .service-card>a{display:inline-block;margin-top:20px;word-break:keep-all;overflow-wrap:anywhere}
.home-review #education>.container>.text-link{display:inline-block;border-top:1px solid #d2c9b8;padding-top:20px;width:100%}
@media(max-width:900px){.home-review #education>.container{padding:26px}.home-review #education .learning-grid{grid-template-columns:1fr}}
@media(max-width:560px){.home-review #education>.container{padding:24px 18px}.home-review #education .learning-grid{gap:16px}}

/* About shares the approved warm frame used for learning. */
.home-review #about.about-compact{background:#fcfcfa}
.home-review #about>.about-inner{border:2px solid #a99a7b;border-radius:12px;background:#fcfcfa;padding:36px;gap:40px}
.home-review #about>.about-inner>div{min-width:0}
.home-review #about .about-inner p{word-break:keep-all;overflow-wrap:anywhere}
@media(max-width:900px){.home-review #about>.about-inner{padding:26px;gap:24px}}
@media(max-width:560px){.home-review #about>.about-inner{padding:24px 18px}}
@media(max-width:560px){.home-review #about #seodam{padding:18px 16px}}

/* Align the question panel with the framed introduction above; keep the left edge. */
.home-review #questions .question-guide{border:0;border-left:1px solid #d2c9b8;background:transparent;border-radius:0;padding:22px 23px;min-width:0}
.home-review #questions .question-guide .button{background:#fee500;border:1px solid #e8d200;border-radius:999px;box-shadow:none;color:#242424;font-size:.95rem;padding:10px 16px;min-height:44px;line-height:1.6;white-space:normal;word-break:keep-all;overflow-wrap:anywhere;text-align:center;text-decoration:none}
.home-review #questions .question-guide .button:hover{background:#ffed50;color:#242424}
.home-review #questions .question-guide .button:focus-visible{outline:3px solid #4384ab;outline-offset:4px}
@media(min-width:901px){
  /* About uses 38px outer insets (36px padding + 2px border), a 40px gap and 1:1.4 columns. */
  .home-review #questions .questions-inner{grid-template-columns:calc(41.666667% - 10.333333px) minmax(0,1fr);gap:40px}
  .home-review #questions .question-guide{margin-right:38px}
}
@media(max-width:900px){.home-review #questions .question-guide{margin-inline:28px;border-left:0;border-top:1px solid #d2c9b8;padding-inline:24px}}
@media(max-width:560px){.home-review #questions .question-guide{margin-inline:20px;padding:18px 16px}}

/* Monk feedback review: concise hero, participation entry, reliable tap menus. */
.home-review .site-header .brand{font-weight:700;color:#183d52;text-shadow:none}
.home-review .primary-nav{gap:14px}
.home-review .nav-prayer{color:#23485f;font-weight:700;border-bottom:2px solid #a99a7b}
.home-review .practice-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
.prayer-participation{background:#fcfcfa}
.prayer-guide{display:grid;grid-template-columns:1fr 1fr;gap:36px;border-top:1px solid #c9bfa9;padding-top:24px}
.prayer-guide h3{font-size:1.2rem}.prayer-guide p,.participation-other,.reading-extra span{color:#536570}
.prayer-guide summary{cursor:pointer;padding:12px 0;min-height:44px;font-weight:600}
.prayer-guide .text-link{display:inline-block;margin-top:14px}
.participation-other{margin:30px 0 0}.participation-other a{text-decoration:underline;text-underline-offset:4px}
.reading-extra{margin:0 0 24px}.reading-extra span{display:inline-block;font-size:.85rem;margin-left:10px}
@media(max-width:1100px){.home-review .primary-nav{gap:8px;font-size:.85rem}}
@media(max-width:900px){.home-review .primary-nav{gap:0;font-size:1rem}.prayer-guide{grid-template-columns:1fr;gap:20px}.home-review .primary-nav.open{max-height:calc(100vh - 80px);max-height:calc(100dvh - 80px)}}
@media(max-width:560px){.home-review .practice-grid{grid-template-columns:1fr}.reading-extra span{display:block;margin:8px 0 0}}

/* Prayer participation: visible overview after practice introductions. */
.prayer-overview{border-top:1px solid #c9bfa9;padding-top:24px;max-width:960px}.prayer-caption{color:#536570;font-size:.9rem;margin:0 0 18px}.prayer-kinds{margin:0}.prayer-kinds>div{display:grid;grid-template-columns:190px minmax(0,1fr);gap:20px;padding:15px 0;border-bottom:1px solid #e5dfd3}.prayer-kinds dt{font-weight:700;color:#23485f}.prayer-kinds dd{margin:0;line-height:1.8;word-break:keep-all;color:#354e5b}.prayer-kind-note{font-size:.85rem;color:#536570;margin:16px 0 0}.prayer-inquiry{margin-top:28px}.prayer-inquiry p{color:#536570;line-height:1.9;margin:0 0 20px}.home-review .prayer-inquiry-button{background:#23485f;color:white;border:1px solid #23485f;padding:12px 22px}.home-review .prayer-inquiry-button:hover{background:#315f77}
@media(max-width:560px){.prayer-kinds>div{grid-template-columns:1fr;gap:5px;padding:14px 0}.prayer-inquiry-button{max-width:100%;white-space:normal}}

/* Accessible contact choices: public temple number and Kakao. */
.contact-actions{display:flex;flex-wrap:wrap;gap:14px;align-items:stretch;margin:20px 0}.contact-actions .button{min-height:64px;display:flex;align-items:center;justify-content:center;padding:14px 22px;white-space:normal;line-height:1.6;text-align:center;font-size:1rem}.contact-actions .phone-contact{flex-direction:column;gap:2px}.contact-actions .phone-contact strong{font-size:1.3rem;letter-spacing:.025em}.home-review .contact-actions .phone-contact,.home-review #questions .question-guide .phone-contact{background:#23485f;color:#fff;border:1px solid #23485f;border-radius:16px}.home-review .contact-actions .phone-contact:hover,.home-review #questions .question-guide .phone-contact:hover{background:#315f77;color:#fff}.home-review .contact-actions .kakao-contact{background:#fee500;color:#242424;border:1px solid #e8d200;border-radius:16px}.home-review #questions .question-guide .contact-actions .button{font-size:1rem;padding:14px 20px;min-height:64px}.contact-fallback{font-size:.95rem;line-height:1.85;color:#536570}.contact-actions a:focus-visible{outline:3px solid #4384ab;outline-offset:4px}
@media(max-width:560px){.contact-actions{flex-direction:column}.contact-actions .button{width:100%}.contact-fallback br{display:none}}

/* One calm contact area; the main blue emphasis remains online participation. */
.home-review #questions .question-guide{background:#f7f3e9;border:1px solid #ded5c3;border-radius:12px;padding:26px;margin:0;min-width:0}
.home-review #questions .question-guide .contact-actions{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px;margin:0 0 20px}
.home-review #questions .question-guide .contact-actions .button{background:#fff;color:#23485f;border:1px solid #91a8b5;border-radius:12px;padding:16px 12px;min-height:100px;font-size:1rem;gap:8px;box-shadow:none;line-height:1.5}
.home-review #questions .question-guide .contact-actions .button:hover{background:#fcfaf5;color:#23485f;border-color:#23485f}
.home-review #questions .question-guide .kakao-contact{flex-direction:column}.kakao-mark{flex-shrink:0}.home-review #questions .phone-contact strong{font-size:1.3rem;white-space:nowrap;letter-spacing:0}
.home-review #questions .contact-fallback{font-size:.9rem;line-height:1.85;margin:0 0 12px}.home-review #questions .contact-note{font-size:.85rem;line-height:1.8;margin:0}
@media(max-width:560px){.home-review #questions .question-guide{padding:20px}.home-review #questions .question-guide .contact-actions{grid-template-columns:1fr}.home-review #questions .question-guide .contact-actions .button{min-height:84px}.home-review #questions .question-guide .kakao-contact{flex-direction:row}}

/* Approved Kakao emphasis, matching online participation. */
.home-review #questions .question-guide .contact-actions .kakao-contact{background:#23485f;border-color:#23485f;color:#fff;flex-direction:row;font-weight:700}
.home-review #questions .question-guide .contact-actions .kakao-contact:hover{background:#183449;border-color:#183449;color:#fff}
.home-review #questions .kakao-mark path{fill:#d4af55;stroke:#d4af55}

/* Reading hierarchy: deep blue headings and neutral, legible body text. */
.home-review{--ink:#343d42;--muted:#505b61;--olive-800:#23485f;--gold:#415f70}
.home-review .section-heading h2,.home-review .service-card h3,.home-review .reading-card h3,.home-review .about-inner h2,.home-review .questions h2,.home-review .welcome-subtitle,.home-review .meeting-notices h3,.home-review .jijang-main h1,.home-review .jijang-main h2,.home-review .jijang-main h3{color:#183b52}
.home-review #reading .reading-heading h2,.home-review #online h3{color:#183b52}
.home-review .service-card p,.home-review .reading-card p:not(.reading-topic),.home-review .questions p,.home-review .participation-brief p,.home-review .prayer-inquiry p,.home-review .prayer-caption,.home-review .prayer-kinds dd,.home-review .visit-contact p,.home-review .reading-intro{color:#505b61}
.home-review .lead,.home-review .about-inner .lead,.home-review .questions .lead{color:#343d42}
.home-review .section-kicker,.home-review .reading-topic{color:#415f70}
.home-review .text-link,.home-review .reading-action{color:#23485f}
.home-review .hero .hero-copy,.home-review .hero .hero-visit{color:#fff}