/* ---------- Typography: Pretendard + one handwriting accent ---------- */
@font-face{
  font-family:'Pretendard Variable';
  font-style:normal;
  font-weight:100 900;
  font-display:swap;
  src:url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/woff2/PretendardVariable.woff2') format('woff2-variations');
}
@font-face{
  font-family:'BujangnimNunchi';
  src:url('https://cdn.jsdelivr.net/gh/projectnoonnu/naverfont_02@1.0/Bujangnim_nunchi.woff') format('woff');
  font-weight:400;
  font-style:normal;
  font-display:swap;
}

/* ==========================================================================
   홍종숙 — AI·디지털 활용 교육 강사 / 디자인 시스템
   팔레트는 강사 프로필 카드에서 그대로 뽑았습니다.
   네이비 #001E62 · 청록 #22B7C4 · 연한 블루그레이 #F3F6F9
   ========================================================================== */

:root{
  /* --- color ---
     홍종숙 강사 프로필 카드에서 그대로 추출한 브랜드 색입니다.
     네이비 #001E62 = 신뢰, 청록 #22B7C4 = 변화·성장. */
  --paper:#FFFFFF;
  --paper-2:#F3F6F9;
  --paper-3:#E7EDF5;
  --ink:#16223B;
  --ink-soft:#4A5878;
  --ink-faint:#8590A8;
  --navy:#001E62;
  --navy-deep:#001445;
  --navy-soft:#E8EDF7;
  --teal:#0E7F8C;          /* 글자에 써도 대비가 나오는 청록 */
  --teal-bright:#22B7C4;   /* 장식 전용 — 본문 글자색으로 쓰지 말 것 */
  --teal-soft:#E2F4F6;
  --line:#DFE5EE;
  --line-strong:#C3CDDC;

  /* --- type --- */
  --display:'Pretendard Variable','Pretendard',-apple-system,BlinkMacSystemFont,'Segoe UI','Malgun Gothic',sans-serif;
  --body:'Pretendard Variable','Pretendard',-apple-system,BlinkMacSystemFont,'Segoe UI','Malgun Gothic',sans-serif;
  --hand:'BujangnimNunchi','Pretendard Variable','Malgun Gothic',sans-serif;

  /* --- space --- */
  --shell:1160px;
  --gut:clamp(20px,5vw,56px);
  --sect:clamp(72px,9vw,132px);

  --shadow-soft:0 1px 2px rgba(0,30,98,.05),0 12px 32px -12px rgba(0,30,98,.16);
  --shadow-lift:0 2px 4px rgba(0,30,98,.06),0 24px 50px -18px rgba(0,30,98,.24);
}

/* ---------- reset ---------- */
*,*::before,*::after{box-sizing:border-box}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth}
body{
  margin:0;background:var(--paper);color:var(--ink);
  font-family:var(--body);font-size:17px;line-height:1.85;
  font-weight:400;letter-spacing:-.012em;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  /* 한글은 어절 단위로 끊어야 읽힙니다.
     이게 없으면 '자신 있 / 게 활용할' 처럼 단어 중간에서 잘립니다. */
  word-break:keep-all;
  overflow-wrap:anywhere;
}
/* 코드·주소처럼 어절이 없는 문자열만 예외 */
pre,code{word-break:break-word}
img,video{max-width:100%;display:block}
a{color:inherit}
button,input,select,textarea{font:inherit;color:inherit}

/* ---------- a11y ---------- */
.skip{
  position:absolute;left:-9999px;top:0;z-index:200;
  background:var(--ink);color:var(--paper);padding:12px 20px;border-radius:0 0 4px 0;
}
.skip:focus{left:0}
:focus-visible{outline:2.5px solid var(--navy);outline-offset:3px;border-radius:2px}
.vh{position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0 0 0 0);white-space:nowrap}

/* ---------- type scale ---------- */
h1,h2,h3,h4{font-family:var(--display);font-weight:700;letter-spacing:-.035em;margin:0;word-break:keep-all}
h1{font-size:clamp(34px,5.4vw,62px);line-height:1.2;font-weight:800}
h2{font-size:clamp(27px,3.7vw,42px);line-height:1.28;font-weight:750}
h3{font-size:clamp(19px,2vw,24px);line-height:1.42;font-weight:700}
p{margin:0 0 1.05em}
p:last-child{margin-bottom:0}

.eyebrow{
  font-family:var(--body);font-size:13px;font-weight:700;
  letter-spacing:.18em;text-transform:uppercase;
  color:var(--navy);margin:0 0 18px;display:block;
}
.eyebrow.sage{color:var(--teal)}
.lead{font-size:clamp(17px,1.85vw,20px);line-height:1.8;color:var(--ink-soft);max-width:60ch;font-weight:450;letter-spacing:-.018em}
.small{font-size:14.5px;line-height:1.7;color:var(--ink-faint)}


/* 손글씨는 감성 포인트에만 사용합니다. 본문·메뉴·강의 정보에는 사용하지 않습니다. */
.handwritten,
.home-quote-hand{
  font-family:var(--hand);
  font-weight:400;
  letter-spacing:-.015em;
}

/* SIGNATURE — 수채 붓 언더라인. 페이지당 한두 번만 쓴다. */
.brush{position:relative;display:inline-block;white-space:nowrap}
.brush::after{
  content:"";position:absolute;left:-2%;right:-2%;bottom:-.16em;height:.42em;
  background:var(--teal-bright);opacity:.30;
  border-radius:60% 40% 55% 45% / 100% 100% 60% 70%;
  transform:rotate(-.5deg);z-index:-1;
}
.brush.lav::after{background:var(--navy);opacity:.16}

/* ---------- layout ---------- */
.shell{width:100%;max-width:var(--shell);margin:0 auto;padding-inline:var(--gut)}
.section{padding-block:var(--sect)}
.section--tint{background:var(--paper-2)}
.section--ink{background:var(--navy);color:var(--paper)}
.section--ink .lead,.section--ink .small{color:rgba(255,255,255,.72)}
.section--ink .eyebrow{color:var(--teal-bright)}

.head{max-width:66ch;margin-bottom:clamp(38px,5vw,64px)}
.head .lead{margin-top:16px}

.rule{height:1px;background:var(--line);border:0;margin:0}

/* ---------- header ---------- */
.hdr{
  position:sticky;top:0;z-index:100;background:rgba(255,255,255,.92);
  backdrop-filter:saturate(180%) blur(14px);
  -webkit-backdrop-filter:saturate(180%) blur(14px);
  border-bottom:1px solid var(--line);
}
.hdr__in{display:flex;align-items:center;justify-content:space-between;gap:20px;min-height:74px}
.brand{display:flex;align-items:baseline;gap:9px;text-decoration:none;flex-shrink:0}
.brand b{font-family:var(--display);font-size:25px;letter-spacing:-.02em;font-weight:800;color:var(--navy)}
.brand span{font-size:11.5px;letter-spacing:.14em;color:var(--teal);text-transform:uppercase;font-weight:600}
.nav{display:flex;align-items:center;gap:clamp(14px,2.4vw,34px)}
/* :not(.btn) — 버튼이 링크 색을 상속받아 흰 글자가 죽는 것을 막는다 */
.nav a:not(.btn){
  text-decoration:none;font-size:15.5px;font-weight:500;color:var(--ink-soft);
  padding:8px 2px;position:relative;transition:color .18s;
}
.nav a:not(.btn):hover{color:var(--ink)}
.nav a:not(.btn)[aria-current="page"]{color:var(--ink);font-weight:700}
.nav a:not(.btn)[aria-current="page"]::after{
  content:"";position:absolute;left:0;right:0;bottom:2px;height:2px;background:var(--navy);
}
.navtoggle{display:none}

/* ---------- buttons ---------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:9px;
  min-height:52px;padding:0 30px;border-radius:2px;border:1px solid transparent;
  font-size:16px;font-weight:600;text-decoration:none;cursor:pointer;
  transition:background .18s,color .18s,border-color .18s,transform .18s;
}
.btn--pri{background:var(--navy);color:#fff}
.btn--pri:hover{background:var(--navy-deep)}
.btn--ghost{background:transparent;color:var(--ink);border-color:var(--line-strong)}
.btn--ghost:hover{border-color:var(--navy);color:var(--navy);background:var(--paper-2)}
.btn--onink{background:var(--paper);color:var(--ink)}
.btn--onink:hover{background:#fff}
.btn--sm{min-height:44px;padding:0 20px;font-size:15px}
.btn:active{transform:translateY(1px)}
.btnrow{display:flex;flex-wrap:wrap;gap:14px;margin-top:30px}

.tlink{
  display:inline-flex;align-items:center;gap:8px;text-decoration:none;
  font-weight:600;font-size:15.5px;color:var(--navy);
  border-bottom:1px solid transparent;transition:border-color .18s;
}
.tlink:hover{border-bottom-color:var(--navy)}
.tlink::after{content:"→";transition:transform .18s}
.tlink:hover::after{transform:translateX(3px)}

/* ---------- figure / paper mat ---------- */
.mat{
  background:#fff;padding:clamp(10px,1.4vw,18px);
  border:1px solid var(--line);box-shadow:var(--shadow-soft);
}
.mat img,.mat video{width:100%;height:auto}
.mat figcaption{
  font-size:13.5px;color:var(--ink-faint);padding:14px 4px 4px;line-height:1.6;
}

/* ---------- hero ---------- */
.hero{padding-block:clamp(56px,7.5vw,104px) clamp(64px,8vw,116px);overflow:hidden}
.hero__grid{display:grid;grid-template-columns:1.02fr .98fr;gap:clamp(34px,5vw,72px);align-items:center}
.hero h1{margin-bottom:24px}
.hero__media{position:relative}
.hero__media .mat{transform:rotate(-.7deg);position:relative}
.hero__stamp{
  position:absolute;right:-18px;top:-24px;background:var(--navy);color:#fff;
  font-family:var(--display);font-size:14px;line-height:1.35;font-weight:700;
  padding:14px 18px;text-align:center;box-shadow:var(--shadow-lift);
  transform:rotate(2.5deg);
}
.hero__stamp em{display:block;font-style:normal;font-size:23px}

/* ---------- stat strip ---------- */
.stats{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--line)}
.stat{background:var(--paper);padding:30px 22px}
.section--tint .stat{background:var(--paper-2)}
.stat b{
  display:block;font-family:var(--display);font-weight:700;
  font-size:clamp(34px,4.4vw,50px);line-height:1.08;letter-spacing:-.03em;
}
.stat b i{font-style:normal;font-size:.5em;color:var(--ink-soft);margin-left:3px}
.stat span{display:block;margin-top:9px;font-size:14.5px;color:var(--ink-soft)}

/* ---------- cards ---------- */
.cards{display:grid;gap:clamp(18px,2.4vw,28px)}
.cards--3{grid-template-columns:repeat(3,1fr)}
.cards--2{grid-template-columns:repeat(2,1fr)}
.card{
  background:var(--paper);border:1px solid var(--line);padding:clamp(24px,2.8vw,34px);
  display:flex;flex-direction:column;transition:border-color .2s,box-shadow .2s,transform .2s;
}
.section--tint .card{background:#fff}
a.card{text-decoration:none}
a.card:hover{border-color:var(--navy);box-shadow:var(--shadow-soft);transform:translateY(-2px)}
.card__tag{
  align-self:flex-start;font-size:12.5px;font-weight:600;letter-spacing:.06em;
  background:var(--navy-soft);color:var(--navy);padding:5px 11px;margin-bottom:18px;
}
.card__tag--sage{background:var(--teal-soft);color:#0A6672}
.card__tag--apricot{background:#EFF2F7;color:#41506E}
.card h3{margin-bottom:12px}
.card p{color:var(--ink-soft);font-size:15.5px;line-height:1.78}
.card__foot{margin-top:auto;padding-top:22px}
.card__meta{
  display:flex;flex-wrap:wrap;gap:6px 18px;margin-top:18px;padding-top:18px;
  border-top:1px solid var(--line);font-size:14px;color:var(--ink-faint);
}
.card__meta b{color:var(--ink);font-weight:600}

/* ---------- curriculum list ---------- */
.curri{border-top:1px solid var(--line)}
.curri__row{
  display:grid;grid-template-columns:82px 1fr 190px;gap:clamp(16px,3vw,40px);
  padding:26px 0;border-bottom:1px solid var(--line);align-items:baseline;
}
.curri__n{
  font-family:var(--display);font-size:22px;font-weight:700;color:var(--navy);
  letter-spacing:.02em;
}
.curri__b h3{font-size:20px;margin-bottom:8px}
.curri__b p{font-size:15.5px;color:var(--ink-soft);margin:0}
.curri__t{font-size:14.5px;color:var(--ink-faint);text-align:right}

/* ---------- gallery ---------- */
.gal{display:grid;grid-template-columns:repeat(2,1fr);gap:clamp(18px,2.6vw,34px)}
.gal--wide{grid-column:1/-1}

/* ---------- quote ---------- */
.quotes{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(18px,2.4vw,28px)}
.quote{background:#fff;border:1px solid var(--line);padding:clamp(26px,3vw,36px);display:flex;flex-direction:column}
.section--ink .quote{background:rgba(255,255,255,.07);border-color:rgba(255,255,255,.18)}
.quote blockquote{
  margin:0 0 22px;font-family:var(--body);font-size:19px;line-height:1.72;letter-spacing:-.02em;font-weight:500;
}
.quote__who{margin-top:auto;font-size:14px;color:var(--ink-faint);line-height:1.6}
.section--ink .quote__who{color:rgba(255,255,255,.6)}
.quote__who b{display:block;color:var(--ink);font-size:15px;font-weight:600;margin-bottom:2px}
.section--ink .quote__who b{color:var(--paper)}

/* ---------- form ---------- */
.form{display:grid;gap:26px;max-width:720px}
.field{display:flex;flex-direction:column;gap:9px}
.field > label,.fieldset > legend{font-size:15.5px;font-weight:600}
.field .hint{font-size:14px;color:var(--ink-faint);margin:-2px 0 2px}
.req{color:var(--teal-bright);margin-left:3px;font-weight:700}
input[type=text],input[type=tel],input[type=email],select,textarea{
  width:100%;min-height:54px;padding:14px 16px;background:#fff;
  border:1px solid var(--line-strong);border-radius:2px;
  font-size:16.5px;transition:border-color .18s,box-shadow .18s;
}
textarea{min-height:130px;resize:vertical;line-height:1.75}
input:focus,select:focus,textarea:focus{
  outline:none;border-color:var(--navy);box-shadow:0 0 0 3px var(--navy-soft);
}
input[aria-invalid="true"],select[aria-invalid="true"]{border-color:#B4472F;box-shadow:0 0 0 3px #F6E4E0}
.err{font-size:14px;color:#9F3B25;min-height:0}
.fieldset{border:0;padding:0;margin:0;display:flex;flex-direction:column;gap:12px}
.fieldset legend{padding:0;margin-bottom:4px}
.opt{
  display:flex;gap:13px;align-items:flex-start;padding:16px 18px;
  border:1px solid var(--line-strong);background:#fff;cursor:pointer;
  transition:border-color .18s,background .18s;
}
.opt:hover{border-color:var(--navy)}
.opt input{margin:5px 0 0;width:20px;height:20px;accent-color:var(--navy);flex-shrink:0}
.opt span{font-size:15.5px;line-height:1.65}
.opt span i{display:block;font-style:normal;font-size:14px;color:var(--ink-faint);margin-top:3px}
.opt:has(input:checked){border-color:var(--navy);background:var(--navy-soft)}
.formnote{background:var(--paper-2);border-left:3px solid var(--navy);padding:20px 24px;font-size:15px;line-height:1.75}
.done{
  display:none;background:#fff;border:1px solid var(--navy);
  padding:clamp(30px,4vw,46px);text-align:center;
}
.done.on{display:block}
.done h3{margin-bottom:12px}

/* ---------- check list — 프로필 카드의 체크 항목을 웹으로 옮긴 것 ---------- */
.checks{list-style:none;margin:0;padding:0;display:grid;gap:13px}
.checks li{display:flex;gap:11px;align-items:flex-start;font-size:16px;line-height:1.65}
.checks li::before{
  content:"";flex:0 0 20px;height:20px;margin-top:4px;border-radius:50%;
  background:var(--teal-soft);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5.6 10.3l2.7 2.7 6-6.2' fill='none' stroke='%230E7F8C' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:center;
}
.checks.navy li::before{
  background-color:var(--navy-soft);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M5.6 10.3l2.7 2.7 6-6.2' fill='none' stroke='%23001E62' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* ---------- 태그 칩 (강의 키워드) ---------- */
.chips{display:flex;flex-wrap:wrap;gap:9px;margin:0;padding:0;list-style:none}
.chips li{
  border:1px solid var(--line-strong);background:#fff;color:var(--ink-soft);
  padding:8px 15px;font-size:14.5px;border-radius:999px;
}
.chips li.on{border-color:var(--navy);background:var(--navy-soft);color:var(--navy);font-weight:600}

/* ---------- 프로세스 6단계 ---------- */
.steps{display:grid;grid-template-columns:repeat(6,1fr);gap:0;counter-reset:st}
.step{position:relative;padding:0 14px;text-align:center}
.step::before{
  counter-increment:st;content:"0" counter(st);
  display:inline-flex;align-items:center;justify-content:center;
  width:44px;height:44px;border-radius:50%;margin-bottom:14px;
  background:var(--navy);color:#fff;font-family:var(--display);font-size:15px;font-weight:700;
  letter-spacing:.04em;
}
.step:not(:last-child)::after{
  content:"";position:absolute;top:22px;left:calc(50% + 30px);right:calc(-50% + 30px);
  height:1px;background:var(--line-strong);
}
.step h3{font-size:16.5px;margin-bottom:6px}
.step p{font-size:14px;color:var(--ink-faint);line-height:1.6;margin:0}
@media (max-width:860px){
  .steps{grid-template-columns:1fr 1fr 1fr;row-gap:36px}
  .step:nth-child(3)::after{display:none}
}
@media (max-width:560px){
  .steps{grid-template-columns:1fr 1fr}
  .step::after{display:none!important}
}

/* ---------- faq ---------- */
.faq{border-top:1px solid var(--line)}
details.qa{border-bottom:1px solid var(--line)}
details.qa summary{
  list-style:none;cursor:pointer;padding:24px 44px 24px 0;position:relative;
  font-size:17.5px;font-weight:600;line-height:1.6;
}
details.qa summary::-webkit-details-marker{display:none}
details.qa summary::after{
  content:"";position:absolute;right:10px;top:34px;width:11px;height:11px;
  border-right:1.8px solid var(--navy);border-bottom:1.8px solid var(--navy);
  transform:rotate(45deg);transition:transform .22s;
}
details.qa[open] summary::after{transform:rotate(225deg);top:38px}
details.qa .qa__b{padding:0 44px 26px 0;color:var(--ink-soft);font-size:16px}

/* ---------- cta band ---------- */
.band{background:var(--navy);color:var(--paper);padding-block:clamp(58px,7vw,96px)}
.band h2{margin-bottom:18px}
.band p{color:rgba(255,255,255,.74);max-width:56ch}

/* ---------- footer ---------- */
.ftr{background:var(--paper-2);border-top:1px solid var(--line);padding-block:56px 40px;font-size:15px}
.ftr__grid{display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:36px;margin-bottom:40px}
.ftr h4{font-family:var(--body);font-size:13px;letter-spacing:.14em;text-transform:uppercase;color:var(--ink-faint);font-weight:600;margin-bottom:16px}
.ftr ul{list-style:none;margin:0;padding:0;display:grid;gap:10px}
.ftr a{text-decoration:none;color:var(--ink-soft)}
.ftr a:hover{color:var(--ink)}
.ftr__bot{border-top:1px solid var(--line);padding-top:26px;display:flex;flex-wrap:wrap;gap:12px 28px;justify-content:space-between;color:var(--ink-faint);font-size:13.5px}

/* 모바일 하단 고정 바 — 기본은 숨김, 760px 이하에서만 노출 */
.mbar{display:none}

/* placeholder marker — 실제 정보 채울 자리 */
.ph{
  background:repeating-linear-gradient(-45deg,#FDF3E3,#FDF3E3 7px,#F8E9D2 7px,#F8E9D2 14px);
  border-bottom:1px dashed #C99A55;padding:0 4px;color:#8A5A1B;font-style:normal;
}

/* ---------- responsive ---------- */
@media (max-width:960px){
  .hero__grid{grid-template-columns:1fr;gap:40px}
  .hero__media .mat{transform:none}
  .hero__stamp{right:6px;top:-18px;font-size:13px;padding:11px 15px}
  .cards--3,.quotes{grid-template-columns:1fr 1fr}
  .stats{grid-template-columns:1fr 1fr}
  .ftr__grid{grid-template-columns:1fr 1fr}
}
@media (max-width:760px){
  /* 모바일에서는 햄버거 대신 라벨이 그대로 보이는 가로 스크롤 메뉴를 쓴다.
     주 이용층이 40~70대라 아이콘 뒤에 메뉴를 숨기지 않는 편이 낫다. */
  .hdr__in{flex-direction:column;align-items:stretch;gap:0;min-height:0;padding-top:12px}
  .brand{justify-content:center;padding-bottom:10px}
  .nav{
    gap:0;justify-content:flex-start;overflow-x:auto;scrollbar-width:none;
    border-top:1px solid var(--line);margin-inline:calc(var(--gut)*-1);
    padding-inline:var(--gut);
  }
  .nav::-webkit-scrollbar{display:none}
  .nav a:not(.btn){font-size:15px;padding:13px 14px;white-space:nowrap;flex-shrink:0}
  .nav a:not(.btn)[aria-current="page"]::after{bottom:0;left:14px;right:14px}
  .nav .btn{display:none}

  /* 하단 고정 신청 바 — 어느 위치에서 읽고 있든 신청 버튼이 손 닿는 곳에 있다 */
  .mbar{
    display:flex;position:fixed;left:0;right:0;bottom:0;z-index:110;gap:10px;
    padding:10px 14px calc(10px + env(safe-area-inset-bottom));
    background:rgba(255,255,255,.97);border-top:1px solid var(--line);
    backdrop-filter:blur(12px);-webkit-backdrop-filter:blur(12px);
  }
  .mbar .btn{flex:1;min-height:50px;padding-inline:12px;font-size:15.5px}
  .mbar .btn--ghost{flex:0 0 40%}
  body{padding-bottom:82px}
}
@media (max-width:720px){
  body{font-size:16.5px}
  .cards--3,.cards--2,.quotes,.gal{grid-template-columns:1fr}
  .curri__row{grid-template-columns:56px 1fr;row-gap:6px}
  .curri__t{grid-column:2;text-align:left}
  .ftr__grid{grid-template-columns:1fr}
  .hdr__in{min-height:64px}
  .brand b{font-size:22px}
}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation:none!important;transition:none!important}
}
@media print{.hdr,.band,.ftr{display:none}}

/* ---------- 홈 첫 화면에 소개 영상이 들어갈 때 ---------- */
.hero__grid--video{grid-template-columns:.82fr 1.18fr}
.hero__grid--video .hero__media .mat{transform:none}
.hero__grid--video .hero__media video{display:block;background:#0d1526}
.hero__grid--video .hero__stamp{right:-14px;top:-26px}
@media (max-width:960px){
  .hero__grid--video{grid-template-columns:1fr}
}

/* ---------- 새소식 ---------- */
.posts{display:flex;flex-direction:column;gap:clamp(28px,3.4vw,44px);max-width:46em}
.post{border-top:1px solid var(--line);padding-top:clamp(20px,2.4vw,30px)}
.post__date{font-size:13.5px;letter-spacing:.06em;color:var(--ink-faint);margin:0 0 6px}
.post h2{font-size:clamp(21px,2.4vw,28px);margin:0 0 14px;letter-spacing:-.025em}
.post__body p{margin:0 0 12px}
.post__body p:last-child{margin-bottom:0}


/* ---------- 유튜브 영상 ---------- */
.ytwrap{position:relative;width:100%;padding-top:56.25%;background:#0d1526;border-radius:4px;overflow:hidden}
.ytwrap iframe{position:absolute;inset:0;width:100%;height:100%;border:0}


/* ==========================================================================\n   HOME STEP 3 — 대표 프로필 중심의 넓고 시원한 첫 화면\n   ========================================================================== */
.hero--profile{
  position:relative;
  padding-block:clamp(48px,6vw,84px) clamp(62px,7vw,96px);
  background:linear-gradient(118deg,#f8fbff 0%,#fff 48%,#edf6fa 100%);
  overflow:hidden;
}
.hero-profile__grid{
  display:grid;
  grid-template-columns:minmax(0,.94fr) minmax(420px,1.06fr);
  align-items:center;
  gap:clamp(42px,6vw,88px);
  min-height:min(720px,calc(100vh - 74px));
}
.hero-profile__copy{position:relative;z-index:2;padding-block:18px}
.hero-profile__name{
  margin:0 0 12px;
  color:var(--navy);
  font-family:var(--display);
  font-size:clamp(20px,2vw,27px);
  font-weight:700;
  letter-spacing:-.02em;
}
.hero--profile h1{font-size:clamp(43px,5.8vw,70px);line-height:1.18;margin-bottom:28px}
.hero-profile__lead{max-width:39em}
.hero-profile__topics{
  list-style:none;margin:30px 0 0;padding:0;
  display:flex;flex-wrap:wrap;gap:10px;
}
.hero-profile__topics li{
  padding:8px 14px;border:1px solid rgba(0,30,98,.15);
  background:rgba(255,255,255,.72);color:var(--navy);
  font-size:14px;font-weight:600;line-height:1.4;
  backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);
}
.hero-profile__buttons{margin-top:34px}
.hero-profile__trust{margin:24px 0 0;color:var(--ink-faint);font-size:14.5px}
.hero-profile__visual{position:relative;z-index:1;justify-self:end;width:min(100%,560px)}
.hero-profile__backdrop{
  position:absolute;z-index:-1;
  width:94%;aspect-ratio:1;border-radius:50%;
  right:-12%;top:2%;
  background:radial-gradient(circle at 42% 38%,rgba(34,183,196,.20),rgba(232,237,247,.74) 56%,rgba(232,237,247,0) 72%);
}
.hero-profile__figure{
  position:relative;margin:0 0 0 auto;width:92%;
  aspect-ratio:3/4;overflow:hidden;
  background:#eef2f7;
  box-shadow:0 32px 70px -34px rgba(0,30,98,.38);
}
.hero-profile__figure::after{
  content:"";position:absolute;inset:auto 0 0;height:24%;pointer-events:none;
  background:linear-gradient(to top,rgba(0,30,98,.09),transparent);
}
.hero-profile__figure img{width:100%;height:100%;object-fit:cover;object-position:50% 14%}
.hero-profile__label{
  position:absolute;left:-22px;bottom:34px;z-index:3;
  min-width:210px;padding:17px 20px;background:var(--navy);color:#fff;
  box-shadow:var(--shadow-lift);
}
.hero-profile__label strong{display:block;font-size:13px;letter-spacing:.15em}
.hero-profile__label span{display:block;margin-top:4px;color:rgba(255,255,255,.72);font-size:12.5px;letter-spacing:.04em}

.home-film{padding-block:clamp(70px,8vw,116px);background:#fff}
.home-film__head{
  display:grid;grid-template-columns:.86fr 1.14fr;align-items:end;
  gap:clamp(28px,5vw,80px);margin-bottom:clamp(30px,4vw,48px);
}
.home-film__head .eyebrow{margin-bottom:14px}
.home-film__head .lead{justify-self:end;max-width:43em;margin:0}
.home-film__media{
  margin:0;background:#0d1526;box-shadow:0 26px 70px -38px rgba(0,30,98,.44);
}
.home-film__media video{width:100%;aspect-ratio:16/9;object-fit:cover;background:#0d1526}
.home-film__media figcaption{background:#fff;color:var(--ink-faint);font-size:13.5px;padding:14px 2px 0}

@media (max-width:960px){
  .hero-profile__grid{grid-template-columns:1fr;min-height:0;gap:42px}
  .hero-profile__copy{max-width:760px}
  .hero-profile__visual{justify-self:center;width:min(84vw,560px)}
  .hero-profile__figure{width:100%}
  .hero-profile__label{left:-16px}
  .home-film__head{grid-template-columns:1fr;align-items:start}
  .home-film__head .lead{justify-self:start}
}
@media (max-width:600px){
  .hero--profile{padding-top:34px}
  .hero--profile h1{font-size:clamp(38px,11vw,52px)}
  .hero-profile__lead br{display:none}
  .hero-profile__topics{margin-top:24px}
  .hero-profile__topics li{font-size:13.5px;padding:7px 11px}
  .hero-profile__visual{width:100%}
  .hero-profile__figure{aspect-ratio:4/5}
  .hero-profile__label{left:10px;bottom:18px;min-width:190px;padding:13px 15px}
  .hero-profile__backdrop{right:-18%;top:0}
  .home-film{padding-top:58px}
}


/* STEP 3 보정: 머리 윗부분 보존 + Pretendard 위계 */
h1{font-weight:800}
h2{font-weight:750}
h3,h4{font-weight:700}
.brand b,.hero-profile__name{font-weight:800}
.hero-profile__figure{aspect-ratio:4/5}
.hero-profile__figure img{object-position:50% 0%}
.hero-profile__copy .lead,.home-film__head .lead{letter-spacing:-.02em}

/* STEP 4 — 강사 소개 */
.about-hero{position:relative;overflow:hidden;padding-block:clamp(56px,7vw,96px);background:linear-gradient(120deg,#f8fbff 0%,#fff 52%,#edf6fa 100%)}
.about-hero__grid{display:grid;grid-template-columns:minmax(0,.94fr) minmax(390px,.86fr);gap:clamp(42px,6vw,88px);align-items:center}
.about-hero__kicker{margin:0 0 12px;color:var(--navy);font-size:clamp(20px,2vw,27px)}
.about-hero h1{font-size:clamp(42px,5.4vw,66px);line-height:1.16;margin-bottom:26px;font-weight:800}
.about-hero__copy .lead{max-width:42em}
.about-hero__portrait{margin:0;justify-self:end;width:min(100%,480px);aspect-ratio:4/5;overflow:hidden;background:#eef2f7;box-shadow:0 30px 68px -34px rgba(0,30,98,.35);position:relative}
.about-hero__portrait img{width:100%;height:100%;object-fit:cover;object-position:50% 0%}
.about-hero__portrait figcaption{position:absolute;left:20px;bottom:18px;background:rgba(0,30,98,.9);color:#fff;padding:11px 14px;font-size:13px}
.profile-facts{display:grid;grid-template-columns:repeat(4,1fr);border-top:1px solid var(--line);border-bottom:1px solid var(--line);background:#fff}
.profile-fact{padding:clamp(24px,3vw,36px);border-right:1px solid var(--line)}
.profile-fact:last-child{border-right:0}
.profile-fact span{display:block;color:var(--ink-faint);font-size:12.5px;letter-spacing:.12em;margin-bottom:8px}
.profile-fact strong{display:block;color:var(--navy);font-family:var(--display);font-weight:700;font-size:clamp(20px,2vw,27px);line-height:1.35}
.about-pillar-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.about-pillar{min-height:250px;padding:30px 26px;border:1px solid var(--line);background:#fff;display:flex;flex-direction:column;justify-content:space-between}
.about-pillar .num{font-family:var(--display);font-size:42px;color:rgba(0,30,98,.2)}
.about-pillar h3{font-size:23px;margin:18px 0 10px;color:var(--navy)}
.about-pillar p{font-size:15px;line-height:1.75;color:var(--ink-soft)}
.career-head{display:grid;grid-template-columns:.75fr 1.25fr;gap:clamp(30px,6vw,88px);align-items:end;margin-bottom:34px}
.career-head .lead{justify-self:end;max-width:44em;margin:0}
.credential-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:12px;margin-top:26px}
.credential{padding:20px 18px;border:1px solid var(--line);background:var(--paper-2);min-height:116px;display:flex;align-items:flex-end;color:var(--navy);font-size:15px;line-height:1.55}
.publications{background:#f7f4ee}
.publications__grid{display:grid;grid-template-columns:minmax(280px,.75fr) minmax(0,1.25fr);gap:clamp(36px,6vw,84px);align-items:center}
.author-portrait{margin:0;aspect-ratio:4/5;overflow:hidden;background:#e9e5df;box-shadow:0 26px 64px -38px rgba(0,30,98,.28)}
.author-portrait img{width:100%;height:100%;object-fit:cover;object-position:50% 0%}
.book-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px;margin-top:30px}
.book-card{min-height:210px;padding:24px;border:1px solid rgba(0,30,98,.12);background:#fff;display:flex;flex-direction:column;justify-content:space-between;position:relative;overflow:hidden}
.book-card::before{content:"";position:absolute;left:0;top:0;bottom:0;width:6px;background:var(--teal-bright)}
.book-card:nth-child(2)::before,.book-card:nth-child(3)::before{background:var(--navy)}
.book-card:nth-child(4)::before{background:#d8b47b}
.book-card .book-type{font-size:12px;letter-spacing:.14em;color:var(--ink-faint)}
.book-card h3{font-size:clamp(20px,2vw,27px);line-height:1.45;margin:18px 0;color:var(--navy)}
.book-card p{font-size:14px;color:var(--ink-soft);margin:0}

/* STEP 5 — 강의 현장 */
.gallery-hero{padding-block:clamp(58px,7vw,102px) clamp(46px,5vw,72px);background:linear-gradient(180deg,#fff,#f5f9fb)}
.gallery-hero__grid{display:grid;grid-template-columns:.82fr 1.18fr;gap:clamp(30px,6vw,86px);align-items:end}
.gallery-hero h1{font-size:clamp(44px,6vw,72px);line-height:1.1;font-weight:800}
.gallery-hero .lead{justify-self:end;max-width:43em;margin:0}
.gallery-index{display:flex;gap:10px;flex-wrap:wrap;margin-top:28px}
.gallery-index span{border:1px solid var(--line-strong);padding:8px 13px;background:#fff;font-size:13.5px;color:var(--navy)}
.gallery-showcase{display:grid;grid-template-columns:repeat(12,1fr);gap:clamp(20px,2.6vw,34px)}
.gallery-showcase>.mat{grid-column:span 6;margin:0;border:0;background:transparent;box-shadow:none;overflow:visible}
.gallery-showcase>.mat.gal--wide,.gallery-showcase>.mat.media--video,.gallery-showcase>.mat.media--youtube{grid-column:1/-1}
.gallery-showcase>.mat:nth-child(2){grid-column:1/-1}
.gallery-showcase>.mat img,.gallery-showcase>.mat video,.gallery-showcase>.mat .ytwrap{width:100%;aspect-ratio:16/10;object-fit:cover;border-radius:20px;background:#101828;box-shadow:0 24px 56px -38px rgba(0,30,98,.36)}
.gallery-showcase>.mat.gal--wide img,.gallery-showcase>.mat.gal--wide video,.gallery-showcase>.mat.media--video video,.gallery-showcase>.mat.media--youtube .ytwrap{aspect-ratio:16/8.7}
.gallery-showcase>.mat figcaption{padding:14px 4px 2px;background:transparent;color:var(--ink-soft);font-size:14px;line-height:1.65}
.gallery-story{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-bottom:36px}
.gallery-story__item{padding:22px 20px;background:var(--paper-2);border-top:3px solid var(--teal-bright)}
.gallery-story__item:nth-child(2){border-color:var(--navy)}
.gallery-story__item:nth-child(3){border-color:#d8b47b}
.gallery-story__item strong{display:block;font-family:var(--display);font-weight:700;color:var(--navy);font-size:21px;margin-bottom:7px}
.gallery-story__item span{color:var(--ink-soft);font-size:14px;line-height:1.6}
.gallery-note{margin-top:48px;padding:22px 24px;border:1px solid var(--line);background:#fff;color:var(--ink-soft);font-size:14px;line-height:1.75}
@media (max-width:960px){.about-hero__grid,.publications__grid,.career-head,.gallery-hero__grid{grid-template-columns:1fr}.about-hero__portrait{justify-self:center;width:min(78vw,480px)}.profile-facts{grid-template-columns:1fr 1fr}.profile-fact:nth-child(2){border-right:0}.profile-fact:nth-child(-n+2){border-bottom:1px solid var(--line)}.about-pillar-grid{grid-template-columns:1fr 1fr}.credential-grid{grid-template-columns:repeat(2,1fr)}.career-head .lead,.gallery-hero .lead{justify-self:start}}
@media (max-width:720px){.hero-profile__figure{aspect-ratio:4/5}.profile-facts,.about-pillar-grid,.book-grid,.gallery-story{grid-template-columns:1fr}.profile-fact{border-right:0;border-bottom:1px solid var(--line)}.profile-fact:last-child{border-bottom:0}.credential-grid{grid-template-columns:1fr}.gallery-showcase{grid-template-columns:1fr;gap:28px}.gallery-showcase>.mat,.gallery-showcase>.mat.gal--wide,.gallery-showcase>.mat.media--video,.gallery-showcase>.mat.media--youtube,.gallery-showcase>.mat:nth-child(2){grid-column:1}.gallery-showcase>.mat img,.gallery-showcase>.mat video,.gallery-showcase>.mat .ytwrap,.gallery-showcase>.mat.gal--wide img,.gallery-showcase>.mat.gal--wide video,.gallery-showcase>.mat.media--video video{aspect-ratio:4/3}}


/* ========================================================================== STEP 6 — media / books / channels */
.ftr__grid{grid-template-columns:1.25fr .8fr .95fr 1fr}
.channel-links{display:flex;flex-wrap:wrap;gap:9px}
.channel-links a{display:inline-flex;align-items:center;min-height:38px;padding:7px 12px;border:1px solid var(--line-strong);border-radius:999px;text-decoration:none;font-size:13.5px;font-weight:600;color:var(--navy);background:#fff;transition:.18s}
.channel-links a:hover{border-color:var(--teal);color:var(--teal);transform:translateY(-1px)}
.channel-strip{padding-block:clamp(56px,7vw,92px);background:linear-gradient(135deg,#F4F8FB 0%,#F7F4EE 100%);border-top:1px solid var(--line)}
.channel-strip__grid{display:grid;grid-template-columns:.85fr 1.15fr;gap:clamp(28px,6vw,84px);align-items:center}
.channel-links--large{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.channel-links--large a{min-height:76px;border-radius:18px;padding:18px 20px;font-size:16px;justify-content:center;box-shadow:var(--shadow-soft)}

/* Actual book-cover gallery. 2 columns keep each cover large; additional books flow automatically. */
.book-showcase{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:clamp(22px,3vw,34px);margin-top:34px}
.book-item{min-width:0}
.book-item>a,.book-item>.book-cover-link{display:block;text-decoration:none;color:inherit}
.book-item img{width:100%;aspect-ratio:3/4;object-fit:contain;background:#fff;border-radius:16px;box-shadow:0 24px 52px -34px rgba(0,30,98,.45);border:1px solid rgba(0,30,98,.08);transition:transform .2s,box-shadow .2s}
.book-item a:hover img{transform:translateY(-4px);box-shadow:0 30px 62px -32px rgba(0,30,98,.5)}
.book-item>div,.book-item>a>div{padding:14px 4px 0}
.book-item span{font-size:12px;font-weight:700;letter-spacing:.08em;color:var(--teal)}
.book-item h3{font-size:clamp(18px,1.8vw,22px);margin-top:5px;line-height:1.42}
.book-item p{font-size:14px;color:var(--ink-faint);margin-top:4px}

@media(max-width:960px){.ftr__grid{grid-template-columns:1fr 1fr}.channel-strip__grid{grid-template-columns:1fr}.channel-links--large{grid-template-columns:repeat(3,1fr)}}
@media(max-width:720px){.book-showcase{grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}.channel-links--large{grid-template-columns:1fr}.channel-links--large a{min-height:58px}.ftr__grid{grid-template-columns:1fr}}
@media(max-width:420px){.book-showcase{grid-template-columns:1fr}}

/* ---------- final content / privacy / publications ---------- */
.home-publications__head{display:grid;grid-template-columns:.8fr 1.2fr;gap:clamp(28px,5vw,72px);align-items:end;margin-bottom:clamp(36px,5vw,62px)}
.book-showcase--home{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:clamp(16px,2.4vw,28px)}
.home-publications .book-item img{aspect-ratio:3/4.2}
.policy{max-width:900px}
.policy article{padding:30px 0;border-bottom:1px solid var(--line)}
.policy article:first-child{padding-top:0}
.policy article:last-child{border-bottom:0}
.policy h2{font-size:clamp(20px,2.4vw,28px);margin-bottom:12px}
.policy p{color:var(--ink-soft)}
.privacy-link{display:inline-block;margin-top:6px;color:var(--navy);font-weight:600;text-underline-offset:3px}
.ftr__bot{display:flex;justify-content:space-between;align-items:center;gap:20px;flex-wrap:wrap}
.ftr__bot a{color:inherit;text-underline-offset:3px}
@media(max-width:900px){.book-showcase--home{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:720px){.home-publications__head{grid-template-columns:1fr}.book-showcase--home{grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}.policy article{padding:24px 0}}


/* ---------- STEP 8: compact about hero for 100% desktop view ---------- */
/* 강사소개 첫 화면은 100% 브라우저 배율에서 헤더+핵심 소개+대표사진이 한눈에 들어오도록 압축합니다. */
.about-hero{
  padding-block:clamp(28px,3.6vw,46px);
}
.about-hero__grid{
  grid-template-columns:minmax(0,1.08fr) minmax(320px,.72fr);
  gap:clamp(30px,4vw,54px);
  align-items:center;
}
.about-hero__copy .eyebrow{margin-bottom:8px}
.about-hero__kicker{
  margin:0 0 7px;
  font-size:clamp(17px,1.65vw,22px);
  font-weight:650;
}
.about-hero h1{
  font-family:var(--display);
  font-size:clamp(38px,4.45vw,54px);
  line-height:1.12;
  margin-bottom:16px;
  font-weight:800;
  letter-spacing:-.045em;
}
.about-hero__copy .lead{
  max-width:47em;
  font-size:clamp(16px,1.48vw,18px);
  line-height:1.64;
}
.about-hero__copy .lead + .lead{margin-top:8px !important}
.about-hero__copy .btnrow{margin-top:20px !important;gap:10px}
.about-hero__copy .btn{min-height:48px;padding-inline:25px;font-size:15px}
.about-hero__portrait{
  width:min(100%,382px);
  aspect-ratio:4/5.05;
  max-height:482px;
  box-shadow:0 22px 54px -30px rgba(0,30,98,.31);
}
.about-hero__portrait figcaption{
  left:14px;bottom:13px;padding:8px 11px;font-size:12px;
}
.profile-fact{padding:clamp(18px,2vw,27px)}
.profile-fact span{margin-bottom:5px}
.profile-fact strong{font-size:clamp(18px,1.75vw,23px)}

/* 낮은 노트북 화면에서도 첫 화면이 아래로 밀리지 않게 한 번 더 압축 */
@media (min-width:961px) and (max-height:820px){
  .hdr__in{min-height:68px}
  .about-hero{padding-block:24px 28px}
  .about-hero__grid{gap:34px}
  .about-hero h1{font-size:clamp(36px,4.05vw,49px);margin-bottom:13px}
  .about-hero__copy .lead{font-size:16px;line-height:1.58}
  .about-hero__copy .lead + .lead{margin-top:6px !important}
  .about-hero__copy .btnrow{margin-top:16px !important}
  .about-hero__copy .btn{min-height:46px}
  .about-hero__portrait{width:min(100%,350px);max-height:442px}
}

@media (max-width:960px){
  .about-hero{padding-block:34px 44px}
  .about-hero__grid{grid-template-columns:1fr;gap:28px}
  .about-hero__portrait{width:min(78vw,390px);max-height:none}
}


/* ========================================================================== */
/* Cloudflare final — CONTACT / 강의 의뢰서 2-column layout */
.inquiry-page{padding:clamp(42px,5.5vw,74px) 0 clamp(64px,7vw,98px);background:linear-gradient(180deg,#fff 0%,#fbfcfd 100%)}
.inquiry-layout{display:grid;grid-template-columns:minmax(300px,.78fr) minmax(560px,1.22fr);gap:clamp(42px,6.5vw,92px);align-items:start}
.inquiry-intro{position:sticky;top:98px;padding-top:10px}
.inquiry-kicker{display:inline-flex;align-items:center;gap:10px;font-size:12px;font-weight:750;letter-spacing:.18em;color:var(--teal);margin-bottom:22px}
.inquiry-kicker::before{content:"";width:26px;height:4px;border-radius:999px;background:linear-gradient(90deg,var(--navy) 0 28%,transparent 28% 38%,var(--teal) 38% 67%,transparent 67% 77%,#d8b47b 77%)}
.inquiry-intro h1{font-family:var(--display);font-size:clamp(44px,5.2vw,68px);line-height:1.07;letter-spacing:-.045em;color:var(--navy);font-weight:800;margin:0 0 24px}
.inquiry-intro__lead{max-width:31em;color:var(--ink-soft);font-size:clamp(16px,1.35vw,18px);line-height:1.78;margin:0}
.inquiry-contact{display:grid;gap:14px;margin:38px 0 34px;padding:26px 0;border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.inquiry-contact>div{display:grid;grid-template-columns:78px 1fr;gap:14px;align-items:baseline}
.inquiry-contact dt{font-size:11px;font-weight:800;letter-spacing:.16em;color:var(--ink-faint)}
.inquiry-contact dd{margin:0;min-width:0}
.inquiry-contact a{color:var(--ink);text-decoration:none;font-size:15.5px;font-weight:550;overflow-wrap:anywhere}
.inquiry-contact a:hover{color:var(--teal)}
.inquiry-process{list-style:none;padding:0;margin:0;display:grid;gap:0}
.inquiry-process li{display:grid;grid-template-columns:42px 1fr;gap:14px;padding:16px 0;border-bottom:1px solid var(--line)}
.inquiry-process li:last-child{border-bottom:0}
.inquiry-process li>span{font-size:12px;color:var(--ink-faint);font-weight:700;padding-top:3px}
.inquiry-process strong{display:block;color:var(--navy);font-size:15px;margin-bottom:3px}
.inquiry-process p{font-size:13.5px;color:var(--ink-faint);margin:0;line-height:1.55}

.inquiry-form-card{background:#fff;border:1px solid rgba(0,30,98,.15);border-radius:22px;padding:clamp(28px,3.4vw,48px);box-shadow:0 24px 70px -52px rgba(0,30,98,.48)}
.inquiry-form{max-width:none;gap:22px}
.inquiry-form__head{display:flex;justify-content:space-between;align-items:flex-start;gap:24px;padding-bottom:22px;margin-bottom:2px;border-bottom:1px solid var(--line)}
.inquiry-form__eyebrow{display:block;font-size:10.5px;font-weight:800;letter-spacing:.16em;color:var(--teal);margin-bottom:5px}
.inquiry-form__head h2{font-family:var(--display);font-size:clamp(27px,2.6vw,34px);letter-spacing:-.035em;color:var(--navy);margin:0;font-weight:800}
.inquiry-form__head>p{margin:8px 0 0;font-size:12.5px;color:var(--ink-faint);white-space:nowrap}
.inquiry-form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:20px 18px}
.inquiry-form .field{gap:7px}
.inquiry-form .field>label,.inquiry-form .fieldset>legend{font-size:14px;font-weight:650;color:#263552}
.inquiry-form input[type=text],.inquiry-form input[type=email],.inquiry-form input[type=tel],.inquiry-form select,.inquiry-form textarea{min-height:54px;border:1px solid #ccd5e2;border-radius:11px;background:#fff;padding:12px 15px;font:inherit;color:var(--ink);transition:border-color .16s,box-shadow .16s,background .16s}
.inquiry-form textarea{min-height:128px;resize:vertical}
.inquiry-form input:focus,.inquiry-form select:focus,.inquiry-form textarea:focus{outline:0;border-color:var(--navy);box-shadow:0 0 0 3px rgba(0,30,98,.07);background:#fff}
.inquiry-form input::placeholder,.inquiry-form textarea::placeholder{color:#9aa5b5}
.inquiry-wide{grid-column:1/-1}
.inquiry-format{min-width:0}
.inquiry-format__options{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:8px}
.format-chip{position:relative;cursor:pointer}
.format-chip input{position:absolute;opacity:0;pointer-events:none}
.format-chip span{display:flex;align-items:center;justify-content:center;min-height:54px;border:1px solid #ccd5e2;border-radius:11px;font-size:13.5px;font-weight:600;color:var(--ink-soft);background:#fff;transition:.16s}
.format-chip:hover span{border-color:#7e8da6}
.format-chip input:checked+span{border-color:var(--navy);background:#f0f5fb;color:var(--navy);box-shadow:inset 0 0 0 1px var(--navy)}
.inquiry-privacy{border:0;border-radius:12px;background:#f7f9fc;padding:17px 18px;font-size:12.5px;line-height:1.65;color:var(--ink-faint)}
.inquiry-privacy strong{display:block;color:var(--ink-soft);font-size:13px;margin-bottom:3px}
.inquiry-privacy p{margin:0}
.inquiry-privacy .privacy-link{font-size:12.5px;margin-top:5px}
.inquiry-agree{gap:5px!important}
.agree-line{display:flex;align-items:center;gap:9px;font-size:14px;cursor:pointer}
.agree-line input{width:19px;height:19px;accent-color:var(--navy)}
.inquiry-actions{display:flex;gap:10px;flex-wrap:wrap;padding-top:2px}
.inquiry-actions .btn{min-height:50px;padding-inline:24px}
.inquiry-form-card .done{margin:0;padding:38px 24px;border-radius:14px;background:#f7fbfa;border:1px solid rgba(14,127,140,.2)}

@media(max-width:1020px){
  .inquiry-layout{grid-template-columns:1fr;gap:34px}
  .inquiry-intro{position:static;display:grid;grid-template-columns:1fr 1fr;column-gap:34px;padding-top:0}
  .inquiry-intro .inquiry-kicker,.inquiry-intro h1,.inquiry-intro__lead{grid-column:1/-1}
  .inquiry-contact{margin:28px 0 0}
  .inquiry-process{margin-top:28px}
}
@media(max-width:680px){
  .inquiry-page{padding:30px 0 60px}
  .inquiry-intro{display:block}
  .inquiry-intro h1{font-size:42px;margin-bottom:18px}
  .inquiry-contact{margin:26px 0 22px}
  .inquiry-process{margin-top:0}
  .inquiry-form-card{border-radius:16px;padding:24px 18px}
  .inquiry-form__head{display:block}
  .inquiry-form__head>p{margin-top:8px;white-space:normal}
  .inquiry-form-grid{grid-template-columns:1fr;gap:18px}
  .inquiry-wide{grid-column:1}
  .inquiry-actions{display:grid;grid-template-columns:1fr}
  .inquiry-actions .btn{width:100%;justify-content:center}
}
