:root {
  --navy: #123a62;
  --navy-deep: #092845;
  --blue: #2469a7;
  --sky: #dcecf5;
  --yellow: #f4cc61;
  --cream: #f7f4ee;
  --paper: #fffdf9;
  --ink: #14202a;
  --muted: #6c7881;
  --line: rgba(20, 32, 42, .14);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(14, 45, 72, .14);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Noto Sans KR", sans-serif;
  line-height: 1.65;
  word-break: keep-all;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
img { display: block; width: 100%; }
svg { display: block; }
.container { width: min(calc(100% - 64px), var(--container)); margin: 0 auto; }
.section { padding: 130px 0; }

.page-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 9999;
  pointer-events: none;
}
.page-progress span { display: block; width: 0; height: 100%; background: var(--yellow); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: .3s ease;
}
.site-header.scrolled {
  background: rgba(255, 253, 249, .9);
  backdrop-filter: blur(18px);
  border-color: rgba(20, 32, 42, .08);
  box-shadow: 0 8px 30px rgba(11, 39, 64, .06);
}
.header-inner { height: 92px; display: flex; align-items: center; gap: 46px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.brand-symbol { display: grid; place-items: center; width: 42px; height: 42px; color: var(--navy); }
.brand-symbol svg { width: 100%; height: 100%; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.1; }
.brand-copy strong { font-size: 20px; letter-spacing: -.05em; }
.brand-copy small { margin-top: 6px; color: var(--blue); font-size: 8px; font-weight: 800; letter-spacing: .16em; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 34px; margin-left: auto; }
.desktop-nav a { position: relative; font-size: 14px; font-weight: 650; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--navy); transition: right .25s ease; }
.desktop-nav a:hover::after { right: 0; }
.header-cta { display: flex; flex-direction: column; justify-content: center; min-width: 158px; padding-left: 25px; border-left: 1px solid var(--line); line-height: 1.25; }
.header-cta span { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .08em; }
.header-cta strong { margin-top: 4px; color: var(--navy); font-size: 15px; }
.menu-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 23px; height: 2px; margin: 5px auto; background: var(--ink); transition: .25s ease; }
.mobile-nav { display: none; }

.hero {
  position: relative;
  min-height: 900px;
  padding: 170px 0 96px;
  background: linear-gradient(117deg, #f9f7f0 0%, #f4f7f7 48%, #e9f2f6 100%);
  overflow: hidden;
}
.hero-pattern {
  position: absolute;
  width: 700px;
  height: 700px;
  left: -350px;
  bottom: -400px;
  border: 1px solid rgba(18, 58, 98, .14);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(18, 58, 98, .025), 0 0 0 180px rgba(18, 58, 98, .02);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .93fr 1.07fr; align-items: center; gap: 80px; }
.eyebrow, .section-kicker { margin: 0 0 25px; color: var(--blue); font-size: 12px; font-weight: 800; letter-spacing: .19em; }
.eyebrow { display: flex; align-items: center; gap: 12px; }
.eyebrow span { width: 36px; height: 1px; background: currentColor; }
.hero h1 { margin: 0; font-size: clamp(52px, 5vw, 78px); line-height: 1.16; letter-spacing: -.07em; }
.hero h1 em, .section-heading h2 em, .section-top h2 em, .process-intro h2 em, .faq-heading h2 em, .contact-copy h2 em {
  color: var(--navy);
  font-family: "DM Serif Display", "Noto Sans KR", serif;
  font-style: normal;
  font-weight: 400;
  letter-spacing: -.045em;
}
.hero-description { margin: 30px 0 0; color: #4f5c66; font-size: 17px; line-height: 1.9; }
.hero-actions { display: flex; gap: 12px; margin-top: 40px; }
.button { display: inline-flex; min-height: 58px; align-items: center; justify-content: center; gap: 18px; padding: 0 28px; border: 1px solid transparent; border-radius: 999px; font-size: 14px; font-weight: 750; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.button:hover { transform: translateY(-3px); }
.button svg { width: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.button-primary { background: var(--navy); color: var(--white); box-shadow: 0 14px 30px rgba(18, 58, 98, .2); }
.button-primary:hover { background: var(--navy-deep); box-shadow: 0 18px 40px rgba(18, 58, 98, .28); }
.button-ghost { border-color: rgba(18, 58, 98, .22); background: rgba(255,255,255,.5); color: var(--navy); }
.button-ghost:hover { background: var(--white); }
.hero-trust { display: flex; align-items: center; gap: 17px; margin-top: 40px; }
.trust-avatars { display: flex; }
.trust-avatars span { display: grid; place-items: center; width: 39px; height: 39px; margin-left: -8px; border: 3px solid var(--paper); border-radius: 50%; background: var(--navy); color: var(--white); font-size: 9px; font-weight: 800; }
.trust-avatars span:first-child { margin-left: 0; background: #326ba2; }
.trust-avatars span:nth-child(2) { background: #bd3340; }
.trust-avatars span:nth-child(3) { background: #d14b3b; }
.hero-trust p { margin: 0; color: #64717a; font-size: 12px; line-height: 1.55; }
.hero-trust strong { color: var(--ink); }

.hero-visual { position: relative; min-height: 605px; }
.hero-photo-main { position: absolute; inset: 0 60px 45px 50px; border-radius: 230px 230px 38px 38px; overflow: hidden; box-shadow: var(--shadow); }
.hero-photo-main::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7, 37, 61, .68), transparent 48%); }
.hero-photo-main img { height: 100%; object-fit: cover; }
.photo-caption { position: absolute; z-index: 2; left: 40px; bottom: 35px; color: var(--white); }
.photo-caption span { font-size: 9px; font-weight: 800; letter-spacing: .18em; opacity: .74; }
.photo-caption strong { display: block; margin-top: 8px; font-size: 22px; line-height: 1.4; }
.hero-photo-sub { position: absolute; width: 210px; height: 265px; right: -25px; bottom: 0; border: 9px solid var(--paper); border-radius: 105px 105px 18px 18px; overflow: hidden; box-shadow: 0 20px 45px rgba(14, 45, 72, .2); }
.hero-photo-sub img { height: 100%; object-fit: cover; }
.hero-badge { position: absolute; left: -5px; top: 66px; display: flex; align-items: center; gap: 13px; width: 165px; height: 86px; padding: 0 19px; border-radius: 18px; background: rgba(255,255,255,.92); box-shadow: 0 18px 40px rgba(14, 45, 72, .13); backdrop-filter: blur(12px); }
.badge-icon { display: grid; place-items: center; width: 36px; height: 36px; flex: 0 0 auto; border-radius: 50%; background: var(--yellow); color: var(--navy); }
.hero-badge p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.5; }
.hero-badge strong { color: var(--navy); font-size: 13px; }
.hero-line { position: absolute; width: 210px; height: 210px; right: 8px; top: -28px; border: 1px solid rgba(18, 58, 98, .18); border-radius: 50%; box-shadow: 0 0 0 28px rgba(18, 58, 98, .025); }
.hero-marquee { position: absolute; inset: auto 0 0; height: 58px; display: flex; align-items: center; background: var(--navy); color: rgba(255,255,255,.9); overflow: hidden; transform: rotate(-1.2deg) scale(1.01); transform-origin: left center; }
.marquee-track { display: flex; align-items: center; min-width: max-content; animation: marquee 28s linear infinite; }
.marquee-track span { margin: 0 28px; font-family: "DM Serif Display", serif; font-size: 17px; letter-spacing: .05em; }
.marquee-track i { color: var(--yellow); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.intro { background: var(--paper); }
.intro-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: 100px; align-items: end; }
.section-heading h2, .section-top h2, .process-intro h2, .faq-heading h2 { margin: 0; font-size: clamp(36px, 3.4vw, 54px); line-height: 1.34; letter-spacing: -.055em; }
.intro-copy p { margin: 0; color: #5a6872; font-size: 16px; line-height: 2; }
.text-link { display: inline-flex; align-items: center; gap: 18px; margin-top: 28px; padding-bottom: 5px; border-bottom: 1px solid var(--ink); font-size: 13px; font-weight: 750; }
.text-link span { font-size: 17px; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 82px; }
.value-card { position: relative; min-height: 280px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; overflow: hidden; }
.value-card:hover { transform: translateY(-8px); border-color: rgba(18,58,98,.25); box-shadow: 0 20px 50px rgba(18,58,98,.1); }
.value-number { position: absolute; right: 27px; top: 24px; color: rgba(18,58,98,.24); font-family: "DM Serif Display", serif; font-size: 16px; }
.value-icon { display: grid; place-items: center; width: 58px; height: 58px; border-radius: 50%; background: var(--sky); color: var(--navy); font-family: serif; font-size: 23px; }
.value-card:nth-child(2) .value-icon { background: #f7e9bc; }
.value-card:nth-child(3) .value-icon { background: #e5e6f3; }
.value-card h3 { margin: 42px 0 12px; font-size: 21px; letter-spacing: -.04em; }
.value-card p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.8; }

.programs { background: var(--navy-deep); color: var(--white); }
.section-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 50px; margin-bottom: 62px; }
.section-kicker.light { color: #79b5e1; }
.section-top h2 em { color: #9fc9e6; }
.section-top > p { margin: 0 0 8px; color: rgba(255,255,255,.58); font-size: 14px; line-height: 1.8; text-align: right; }
.program-list { border-top: 1px solid rgba(255,255,255,.18); }
.program-card { position: relative; display: grid; grid-template-columns: 70px 230px 1fr 250px 54px; align-items: center; gap: 24px; min-height: 150px; border-bottom: 1px solid rgba(255,255,255,.16); transition: background .3s ease, padding .3s ease; }
.program-card::before { content: ""; position: absolute; inset: 0; z-index: 0; background: linear-gradient(90deg, rgba(36,105,167,.22), transparent); opacity: 0; transition: opacity .3s ease; }
.program-card:hover::before { opacity: 1; }
.program-card > * { position: relative; z-index: 1; }
.program-index { color: rgba(255,255,255,.35); font-family: "DM Serif Display", serif; font-size: 17px; }
.program-title span { color: #82b8dd; font-size: 10px; font-weight: 750; letter-spacing: .12em; }
.program-title h3 { margin: 5px 0 0; font-size: 24px; letter-spacing: -.04em; }
.program-card > p { margin: 0; color: rgba(255,255,255,.62); font-size: 13px; line-height: 1.8; }
.program-tags { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 7px; }
.program-tags span { padding: 7px 11px; border: 1px solid rgba(255,255,255,.17); border-radius: 999px; color: rgba(255,255,255,.62); font-size: 10px; }
.program-card > a { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; transition: .25s ease; }
.program-card > a:hover { background: var(--yellow); border-color: var(--yellow); color: var(--navy-deep); transform: rotate(45deg); }

.stories { background: var(--cream); }
.section-top.dark-text h2 em { color: var(--navy); }
.section-top.dark-text > p { color: var(--muted); }
.round-link { display: inline-flex; align-items: center; gap: 28px; padding: 15px 19px 15px 24px; border: 1px solid var(--line); border-radius: 999px; font-size: 12px; font-weight: 750; }
.round-link span { display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%; background: var(--navy); color: var(--white); }
.story-grid { display: grid; grid-template-columns: 1.45fr .775fr .775fr; gap: 22px; }
.story-card { display: flex; flex-direction: column; min-width: 0; border-radius: var(--radius-lg); background: var(--white); overflow: hidden; transition: transform .3s ease, box-shadow .3s ease; }
.story-card:hover { transform: translateY(-8px); box-shadow: 0 25px 55px rgba(18,58,98,.12); }
.story-image { position: relative; height: 240px; overflow: hidden; }
.story-featured .story-image { height: 355px; }
.story-image img { height: 100%; object-fit: cover; transition: transform .7s ease; }
.story-card:hover .story-image img { transform: scale(1.05); }
.story-category { position: absolute; left: 18px; top: 18px; padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.9); color: var(--navy); font-size: 10px; font-weight: 750; backdrop-filter: blur(8px); }
.story-content { display: flex; flex: 1; flex-direction: column; padding: 27px; }
.story-content > span { color: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.story-content h3 { margin: 11px 0 0; font-size: 21px; line-height: 1.55; letter-spacing: -.045em; }
.story-featured .story-content h3 { font-size: 28px; }
.story-content p { margin: 13px 0 0; color: var(--muted); font-size: 13px; line-height: 1.8; }
.story-more { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 30px; color: var(--muted); font-size: 11px; font-weight: 650; }
.story-more i { display: grid; place-items: center; width: 36px; height: 36px; border: 1px solid var(--line); border-radius: 50%; color: var(--navy); font-style: normal; }

.process { position: relative; background: var(--paper); }
.process-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 110px; }
.process-intro { position: sticky; top: 145px; align-self: start; }
.process-intro > p:not(.section-kicker) { max-width: 470px; margin: 25px 0 34px; color: var(--muted); font-size: 14px; line-height: 1.9; }
.process-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 90px 1fr; gap: 25px; padding: 42px 0; border-bottom: 1px solid var(--line); }
.process-list li > span { color: var(--blue); font-family: "DM Serif Display", serif; font-size: 20px; }
.process-list strong { font-size: 21px; letter-spacing: -.04em; }
.process-list p { margin: 11px 0 0; color: var(--muted); font-size: 14px; line-height: 1.8; }

.faq { background: #e9f0f3; }
.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 110px; }
.faq-heading > p:last-child { margin: 24px 0 0; color: var(--muted); font-size: 13px; line-height: 1.85; }
.accordion { border-top: 1px solid rgba(20,32,42,.18); }
.accordion-item { border-bottom: 1px solid rgba(20,32,42,.18); }
.accordion-item button { display: flex; align-items: center; justify-content: space-between; gap: 28px; width: 100%; padding: 25px 2px; border: 0; background: transparent; text-align: left; cursor: pointer; }
.accordion-item button span { font-size: 15px; font-weight: 650; }
.accordion-item button i { margin-right: 15px; color: var(--blue); font-family: "DM Serif Display", serif; font-size: 17px; font-style: normal; }
.accordion-item button b { position: relative; width: 20px; height: 20px; flex: 0 0 auto; }
.accordion-item button b::before, .accordion-item button b::after { content: ""; position: absolute; left: 50%; top: 50%; width: 14px; height: 1px; background: var(--ink); transform: translate(-50%, -50%); transition: .25s ease; }
.accordion-item button b::after { transform: translate(-50%, -50%) rotate(90deg); }
.accordion-item.active button b::after { transform: translate(-50%, -50%) rotate(0); opacity: 0; }
.accordion-panel { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.accordion-panel p { min-height: 0; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.9; overflow: hidden; }
.accordion-item.active .accordion-panel { grid-template-rows: 1fr; }
.accordion-item.active .accordion-panel p { padding: 0 38px 28px 43px; }

.contact-section { padding: 0 0 90px; background: #e9f0f3; }
.contact-card { position: relative; display: grid; grid-template-columns: 1fr .8fr; align-items: center; gap: 80px; padding: 72px; border-radius: var(--radius-xl); background: var(--navy-deep); color: var(--white); overflow: hidden; }
.contact-card::before { content: ""; position: absolute; width: 420px; height: 420px; left: -160px; bottom: -290px; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; box-shadow: 0 0 0 55px rgba(255,255,255,.02), 0 0 0 110px rgba(255,255,255,.015); }
.contact-copy, .contact-actions { position: relative; z-index: 1; }
.contact-copy > p { margin: 0 0 14px; color: #7fb2d7; font-size: 10px; font-weight: 800; letter-spacing: .18em; }
.contact-copy h2 { margin: 0; font-size: clamp(30px, 3vw, 45px); line-height: 1.45; letter-spacing: -.055em; }
.contact-copy h2 em { color: #a7cce6; }
.contact-actions { display: grid; gap: 12px; }
.contact-button { display: grid; grid-template-columns: 48px 1fr 30px; align-items: center; gap: 15px; min-height: 82px; padding: 12px 18px; border-radius: 17px; transition: transform .25s ease; }
.contact-button:hover { transform: translateX(7px); }
.contact-button.kakao { background: #f8dc4a; color: #251f0d; }
.contact-button.phone { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.13); color: var(--white); }
.contact-icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: rgba(0,0,0,.08); font-weight: 900; }
.contact-button.phone .contact-icon { background: rgba(255,255,255,.1); }
.contact-button div { display: flex; flex-direction: column; }
.contact-button small { font-size: 10px; opacity: .65; }
.contact-button strong { margin-top: 3px; font-size: 16px; }
.contact-button i { font-size: 18px; font-style: normal; }

.site-footer { padding: 55px 0 40px; background: #081f35; color: rgba(255,255,255,.72); }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-bottom: 38px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand .brand-symbol { color: #8abadd; }
.footer-brand .brand-copy strong { color: var(--white); }
.footer-brand .brand-copy small { color: #8abadd; }
.footer-links { display: flex; gap: 27px; }
.footer-links a { font-size: 10px; font-weight: 750; letter-spacing: .08em; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 30px; }
.footer-bottom p { margin: 0; font-size: 10px; letter-spacing: .04em; }
.mobile-sticky { display: none; }
.to-top { position: fixed; right: 26px; bottom: 28px; z-index: 900; display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; background: rgba(9,40,69,.9); color: var(--white); box-shadow: 0 12px 30px rgba(9,40,69,.18); opacity: 0; visibility: hidden; transform: translateY(15px); cursor: pointer; transition: .25s ease; backdrop-filter: blur(8px); }
.to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.65,.25,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

@media (max-width: 1100px) {
  .container { width: min(calc(100% - 42px), var(--container)); }
  .desktop-nav { gap: 20px; }
  .desktop-nav a { font-size: 12px; }
  .header-cta { min-width: 140px; }
  .hero-grid { gap: 38px; }
  .hero-photo-main { right: 35px; left: 35px; }
  .program-card { grid-template-columns: 55px 190px 1fr 190px 45px; gap: 18px; }
  .contact-card { padding: 58px; gap: 45px; }
}

@media (max-width: 900px) {
  .section { padding: 95px 0; }
  .desktop-nav, .header-cta { display: none; }
  .header-inner { height: 76px; justify-content: space-between; }
  .menu-toggle { display: block; margin-left: auto; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-nav { position: fixed; inset: 76px 0 0; z-index: 999; display: flex; flex-direction: column; padding: 35px 25px 120px; background: var(--paper); opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .25s ease; overflow-y: auto; }
  .mobile-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-nav > a { padding: 18px 5px; border-bottom: 1px solid var(--line); font-size: 18px; font-weight: 700; }
  .mobile-nav .mobile-nav-call { margin-top: 20px; padding: 18px 20px; border: 0; border-radius: 14px; background: var(--navy); color: var(--white); text-align: center; font-size: 14px; }

  .hero { min-height: auto; padding: 130px 0 100px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .eyebrow { justify-content: center; }
  .hero-actions, .hero-trust { justify-content: center; }
  .hero-visual { width: min(100%, 620px); margin: 15px auto 0; }
  .intro-grid, .process-grid, .faq-grid, .contact-card { grid-template-columns: 1fr; gap: 50px; }
  .intro-grid { align-items: start; }
  .value-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .value-card { padding: 27px; }
  .section-top { align-items: start; }
  .program-card { grid-template-columns: 48px 170px 1fr 44px; padding: 25px 0; }
  .program-tags { display: none; }
  .story-grid { grid-template-columns: 1fr 1fr; }
  .story-featured { grid-column: 1 / -1; display: grid; grid-template-columns: 1.1fr .9fr; }
  .story-featured .story-image { height: auto; min-height: 390px; }
  .process-intro { position: static; }
  .faq-grid { gap: 55px; }
  .contact-card { padding: 52px; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 78px 0; }
  .brand-symbol { width: 36px; height: 36px; }
  .brand-copy strong { font-size: 17px; }
  .brand-copy small { font-size: 7px; }
  .hero { padding-top: 112px; padding-bottom: 85px; }
  .hero h1 { font-size: 43px; line-height: 1.22; }
  .eyebrow { margin-bottom: 18px; font-size: 9px; }
  .hero-description { margin-top: 22px; font-size: 14px; line-height: 1.8; }
  .pc-only { display: none; }
  .hero-actions { flex-direction: column; gap: 8px; }
  .button { width: 100%; min-height: 54px; }
  .hero-trust { margin-top: 28px; text-align: left; }
  .hero-visual { min-height: 465px; margin-top: 8px; }
  .hero-photo-main { inset: 18px 22px 32px; border-radius: 180px 180px 28px 28px; }
  .hero-photo-sub { width: 138px; height: 180px; right: -5px; border-width: 6px; }
  .hero-badge { left: -4px; top: 62px; width: 142px; height: 74px; padding: 0 13px; }
  .badge-icon { width: 31px; height: 31px; }
  .hero-line { width: 135px; height: 135px; right: 5px; top: -2px; }
  .photo-caption { left: 25px; bottom: 23px; }
  .photo-caption strong { font-size: 17px; }
  .hero-marquee { height: 48px; }
  .marquee-track span { margin: 0 20px; font-size: 14px; }

  .intro-grid { gap: 30px; }
  .section-heading h2, .section-top h2, .process-intro h2, .faq-heading h2 { font-size: 34px; line-height: 1.42; }
  .section-kicker { margin-bottom: 16px; font-size: 10px; }
  .intro-copy p { font-size: 14px; line-height: 1.9; }
  .value-grid { grid-template-columns: 1fr; margin-top: 50px; }
  .value-card { min-height: auto; }
  .value-card h3 { margin-top: 30px; }

  .section-top { flex-direction: column; gap: 25px; margin-bottom: 40px; }
  .section-top > p { text-align: left; }
  .program-card { grid-template-columns: 40px 1fr 42px; gap: 10px 14px; padding: 26px 0; }
  .program-card > p { grid-column: 2 / 4; }
  .program-title h3 { font-size: 20px; }
  .program-card > a { grid-column: 3; grid-row: 1; width: 38px; height: 38px; }

  .round-link { align-self: stretch; justify-content: space-between; }
  .story-grid { grid-template-columns: 1fr; }
  .story-featured { grid-column: auto; display: flex; }
  .story-featured .story-image, .story-image { height: 235px; min-height: 0; }
  .story-featured .story-content h3 { font-size: 23px; }
  .story-content h3 { font-size: 20px; }

  .process-grid { gap: 55px; }
  .process-list li { grid-template-columns: 52px 1fr; padding: 30px 0; }
  .process-list strong { font-size: 18px; }
  .faq-grid { gap: 42px; }
  .accordion-item button { padding: 21px 0; }
  .accordion-item button span { font-size: 14px; line-height: 1.6; }
  .accordion-item button i { display: block; margin: 0 0 4px; }
  .accordion-item.active .accordion-panel p { padding: 0 0 23px; }

  .contact-section { padding-bottom: 45px; }
  .contact-card { width: calc(100% - 24px); padding: 38px 24px; border-radius: 25px; }
  .contact-copy h2 { font-size: 30px; }
  .contact-button { grid-template-columns: 44px 1fr 20px; padding: 11px 13px; }
  .contact-button strong { font-size: 14px; }

  .site-footer { padding-bottom: 105px; }
  .footer-top, .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-direction: column; gap: 12px; }
  .mobile-sticky { position: fixed; z-index: 950; inset: auto 8px 8px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 7px; padding: 7px; border-radius: 18px; background: rgba(255,255,255,.9); box-shadow: 0 12px 35px rgba(9,40,69,.24); backdrop-filter: blur(14px); }
  .mobile-sticky a { display: flex; min-height: 52px; align-items: center; justify-content: center; gap: 8px; border-radius: 13px; font-size: 13px; font-weight: 750; }
  .mobile-sticky a:first-child { background: #edf2f5; color: var(--navy); }
  .mobile-sticky a:last-child { background: #f8dc4a; color: #251f0d; }
  .mobile-sticky span { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: rgba(0,0,0,.08); font-size: 11px; }
  .to-top { right: 16px; bottom: 84px; width: 40px; height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
