/* =========================================================
   한계단 법률사무소 · 한용현 변호사
   Design system — Modern / Minimal
   Base: white · Accent: blue · Type: Pretendard (sans)
   ========================================================= */

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont,
    "Segoe UI", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ---- Tokens ---- */
:root {
  --ink: #0f172a;          /* slate-900 */
  --ink-soft: #334155;     /* slate-700 */
  --muted: #64748b;        /* slate-500 */
  --line: #e5e9f0;
  --bg: #ffffff;
  --bg-soft: #f7f9fc;
  --bg-dark: #0f1b33;      /* deep navy for footer/hero accents */
  --accent: #1d4ed8;       /* blue-700 */
  --accent-2: #2563eb;     /* blue-600 */
  --accent-soft: #eff4ff;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(15,23,42,.06), 0 2px 8px rgba(15,23,42,.04);
  --shadow-md: 0 10px 30px rgba(15,23,42,.08);
  --container: 1140px;
  --gutter: 24px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--soft { background: var(--bg-soft); }
.section__head { max-width: 720px; margin-bottom: 48px; }
.section__head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ---- Typography ---- */
h1, h2, h3, h4 { line-height: 1.25; letter-spacing: -0.02em; color: var(--ink); font-weight: 700; }
.h-hero { font-size: clamp(2.2rem, 5.2vw, 3.6rem); font-weight: 800; letter-spacing: -0.035em; }
.h-sec  { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.h-card { font-size: 1.22rem; }
.lead { font-size: clamp(1.02rem, 1.6vw, 1.18rem); color: var(--ink-soft); }
.muted { color: var(--muted); }
.center { text-align: center; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 700; font-size: .98rem; letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform .2s var(--ease), background .2s, box-shadow .2s, color .2s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: #1e3a8a; color: #fff; box-shadow: 0 4px 14px rgba(15,23,42,.22); }
.btn--primary:hover { background: #1d4ed8; box-shadow: 0 8px 22px rgba(30,64,175,.38); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--accent-soft); color: var(--accent); }
.btn--lg { padding: 16px 30px; font-size: 1.02rem; }

/* ---- Header ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 1px 0 rgba(15,23,42,.04); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand__logo { width: 38px; height: 38px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-weight: 800; font-size: 1.12rem; letter-spacing: -0.03em; }
.brand__sub { font-size: .72rem; color: var(--muted); letter-spacing: .06em; }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a:not(.btn) {
  padding: 10px 14px; border-radius: 8px; font-size: .96rem; font-weight: 500; color: var(--ink-soft);
  transition: color .2s, background .2s;
}
.nav__links a:not(.btn):hover { color: var(--accent); background: var(--accent-soft); }
.nav__links a:not(.btn).active { color: var(--accent); font-weight: 600; }
.nav__cta { margin-left: 10px; }
.nav__toggle {
  display: none; width: 44px; height: 44px; border: none; background: transparent; position: relative;
}
.nav__toggle span { position: absolute; left: 10px; right: 10px; height: 2px; background: var(--ink); transition: .3s var(--ease); }
.nav__toggle span:nth-child(1) { top: 15px; }
.nav__toggle span:nth-child(2) { top: 21px; }
.nav__toggle span:nth-child(3) { top: 27px; }
.nav__toggle.open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ---- Hero ---- */
.hero { position: relative; overflow: hidden; background: linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%); }
.hero__grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; padding: clamp(56px, 8vw, 104px) 0; }
.hero__tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-soft); color: var(--accent);
  font-weight: 600; font-size: .86rem; padding: 7px 14px; border-radius: 999px; margin-bottom: 22px;
}
.hero__title { margin-bottom: 20px; }
.hero__title .accent { color: var(--accent); }
.hero__desc { font-size: clamp(1.02rem, 1.7vw, 1.2rem); color: var(--ink-soft); max-width: 540px; margin-bottom: 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.hero__stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero__stat b { display: block; font-size: 1.7rem; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; }
.hero__stat span { font-size: .9rem; color: var(--muted); }

.portrait {
  position: relative; border-radius: 20px; overflow: hidden;
  background: linear-gradient(160deg, #17275180, #0f1b33);
  aspect-ratio: 4/5; box-shadow: var(--shadow-md);
  display: grid; place-items: center; color: #fff;
}
/* 프로필 사진: assets/img/han-yonghyun.jpg 파일이 있으면 표시, 없으면 .portrait__ph 로 폴백 */
.portrait__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.portrait__art { position: absolute; inset: 0; width: 100%; height: 100%; }
.portrait__ph { text-align: center; padding: 24px; }
.portrait__ph .initial { font-size: 4rem; font-weight: 800; letter-spacing: .05em; }
.portrait__ph .role { margin-top: 8px; font-size: .95rem; opacity: .8; letter-spacing: .1em; }
.portrait__badge {
  position: absolute; left: 18px; bottom: 18px; right: 18px;
  background: rgba(255,255,255,.12); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.18); border-radius: 12px; padding: 14px 16px; color: #fff;
}
.portrait__badge b { font-size: 1rem; }
.portrait__badge span { display: block; font-size: .82rem; opacity: .8; }

/* ---- Hero slider ---- */
.hero--slider { position: relative; }
.hero__track { display: flex; transition: transform .6s var(--ease); will-change: transform; }
.hero__slide { flex: 0 0 100%; min-width: 0; }
.hero__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 6; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.9); border: 1px solid var(--line); box-shadow: var(--shadow-sm); color: var(--ink); display: grid; place-items: center; cursor: pointer; transition: border-color .2s, color .2s, background .2s; }
.hero__nav svg { width: 22px; height: 22px; }
.hero__nav:hover { border-color: var(--accent); color: var(--accent); background: #fff; }
.hero__nav--prev { left: 18px; }
.hero__nav--next { right: 18px; }
.hero__dots { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 6; }
.hero__dot { width: 9px; height: 9px; padding: 0; border: none; border-radius: 999px; background: #c7d2e5; cursor: pointer; transition: width .25s var(--ease), background .25s; }
.hero__dot.active { background: var(--accent); width: 26px; }

/* 슬라이드 비주얼 변형 (인용/전문분야 패널) */
.portrait__panel { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; padding: 42px 34px 104px; color: #fff; }
.portrait__qmark { font-family: Georgia, "Times New Roman", serif; font-size: 4.6rem; line-height: .5; color: #60a5fa; }
.portrait__quote { font-size: 1.42rem; font-weight: 700; line-height: 1.5; letter-spacing: -0.02em; margin-top: 16px; }
.portrait__press { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 26px; }
.portrait__press span { font-size: .82rem; font-weight: 600; color: #d6e4ff; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.16); padding: 5px 11px; border-radius: 999px; }
.portrait__pgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 14px; }
.portrait__pgi { display: flex; align-items: center; gap: 10px; }
.portrait__pgi svg { width: 24px; height: 24px; flex: none; color: #93c5fd; }
.portrait__pgi span { font-size: .96rem; font-weight: 600; }
@media (max-width: 960px) { .hero__nav { display: none; } }
@media (max-width: 720px) { .hero__dots { bottom: 14px; } }

/* ---- Trust bar (media logos) ---- */
.trustbar { padding: 34px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trustbar__inner { display: flex; align-items: center; gap: 18px 40px; flex-wrap: wrap; justify-content: center; }
.trustbar__label { font-size: .82rem; color: var(--muted); font-weight: 600; letter-spacing: .06em; }
.trustbar__item { font-weight: 700; color: #94a3b8; font-size: 1.05rem; letter-spacing: -0.01em; transition: color .2s; }
.trustbar__item:hover { color: var(--ink); }

/* ---- Cards / grids ---- */
.grid { display: grid; gap: 22px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; transition: transform .28s var(--ease), box-shadow .28s, border-color .28s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d7e0f0; }
.card__ico {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent); margin-bottom: 18px;
}
.card__ico svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--ink-soft); font-size: .97rem; }
.card__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; color: var(--accent); font-weight: 600; font-size: .93rem; }
.card__link svg { width: 16px; height: 16px; transition: transform .2s; }
.card:hover .card__link svg { transform: translateX(3px); }

/* ---- Feature split ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split__media {
  border-radius: 18px; background: linear-gradient(160deg, var(--accent-soft), #dbe6ff);
  aspect-ratio: 5/4; display: grid; place-items: center; color: var(--accent); overflow: hidden;
}
.split__media svg { width: 40%; height: auto; opacity: .85; }
.list-check { display: grid; gap: 14px; margin-top: 22px; }
.list-check li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); }
.list-check svg { width: 22px; height: 22px; flex: none; color: var(--accent); margin-top: 2px; }

/* ---- Case list ---- */
.case { display: grid; grid-template-columns: 140px 1fr; gap: 24px; padding: 28px 0; border-top: 1px solid var(--line); }
.case:last-child { border-bottom: 1px solid var(--line); }
.case__tag { font-size: .82rem; font-weight: 700; color: var(--accent); letter-spacing: .04em; align-self: start; }
.case h3 { font-size: 1.2rem; margin-bottom: 8px; }
.case p { color: var(--ink-soft); font-size: .97rem; }

/* ---- Media / press list ---- */
.press { display: grid; gap: 0; }
.press__item {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 0; border-top: 1px solid var(--line);
}
.press__item:last-child { border-bottom: 1px solid var(--line); }
.press__meta { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.press__outlet { font-weight: 700; color: var(--accent); font-size: .9rem; min-width: 76px; }
.press__title { font-weight: 600; color: var(--ink); }
.press__arrow { color: var(--muted); flex: none; transition: transform .2s, color .2s; }
.press__item:hover .press__arrow { color: var(--accent); transform: translateX(4px); }

/* ---- Team / attorney list ---- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; }
.team-grid.single { grid-template-columns: minmax(280px, 380px); }
.attorney-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; color: inherit; text-decoration: none; transition: transform .28s var(--ease), box-shadow .28s, border-color .28s; }
.attorney-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d7e0f0; }
.attorney-card__photo { aspect-ratio: 1 / 1; background: linear-gradient(160deg, #17275180, #0f1b33); position: relative; overflow: hidden; }
.attorney-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.attorney-card__ph { position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 3rem; font-weight: 800; }
.attorney-card__body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.attorney-card__name { font-size: 1.3rem; font-weight: 800; letter-spacing: -0.02em; }
.attorney-card__role { color: var(--accent); font-size: .92rem; font-weight: 600; margin-top: 3px; }
.attorney-card__tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 14px 0 12px; }
.attorney-card__desc { color: var(--ink-soft); font-size: .96rem; flex: 1; }
.attorney-card__more { margin-top: 18px; color: var(--accent); font-weight: 600; font-size: .94rem; display: inline-flex; align-items: center; gap: 6px; }
.attorney-card__more svg { width: 16px; height: 16px; transition: transform .2s; }
.attorney-card:hover .attorney-card__more svg { transform: translateX(3px); }

/* ---- Fact cards (변호사 정보) ---- */
.factcards { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.factcard { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 32px; box-shadow: var(--shadow-sm); }
.factcard h3 { font-size: 1.08rem; margin-bottom: 6px; }
.factcard .factcard__sub { color: var(--muted); font-size: .88rem; margin-bottom: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.factlist { display: grid; gap: 16px; margin: 0; }
.factlist > div { display: grid; grid-template-columns: 104px 1fr; gap: 14px; align-items: baseline; }
.factlist dt { color: var(--muted); font-size: .9rem; }
.factlist dd { margin: 0; color: var(--ink); font-weight: 500; font-size: .98rem; }
.factlist dd .sub { color: var(--muted); font-weight: 400; font-size: .9rem; margin-left: 6px; }
.factlist dd a { color: var(--accent); }
.factlist dd a:hover { text-decoration: underline; }
.tagpill { display: inline-block; background: var(--accent-soft); color: var(--accent); font-size: .84rem; font-weight: 600; padding: 4px 11px; border-radius: 999px; margin: 0 6px 4px 0; }
@media (max-width: 720px) {
  .factcards { grid-template-columns: 1fr; }
  .factlist > div { grid-template-columns: 92px 1fr; gap: 10px; }
}

/* ---- Timeline (about) ---- */
.timeline { position: relative; margin-top: 8px; padding-left: 28px; }
.timeline::before { content: ""; position: absolute; left: 6px; top: 6px; bottom: 6px; width: 2px; background: var(--line); }
.timeline li { position: relative; padding: 0 0 26px; }
.timeline li::before { content: ""; position: absolute; left: -28px; top: 7px; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.timeline b { display: block; }
.timeline span { color: var(--muted); font-size: .9rem; }

/* ---- CTA band ---- */
.cta-band { background: var(--bg-dark); color: #fff; border-radius: 22px; padding: clamp(40px, 6vw, 68px); text-align: center; position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 80% -20%, rgba(37,99,235,.4), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: #cbd5e1; max-width: 540px; margin: 0 auto 28px; }
.cta-band .btn--ghost { color: #fff; border-color: rgba(255,255,255,.35); }
.cta-band .btn--ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.08); }

/* ---- Page hero (inner pages) ---- */
.page-hero { background: linear-gradient(180deg, var(--bg-soft), #fff); padding: clamp(56px, 7vw, 88px) 0 clamp(40px, 5vw, 56px); border-bottom: 1px solid var(--line); }
.page-hero .eyebrow { margin-bottom: 12px; }
.page-hero h1 { font-size: clamp(2rem, 4.4vw, 3rem); font-weight: 800; margin-bottom: 14px; }
.page-hero p { font-size: 1.1rem; color: var(--ink-soft); max-width: 640px; }
.crumbs { font-size: .86rem; color: var(--muted); margin-bottom: 18px; }
.crumbs a:hover { color: var(--accent); }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.info-row { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.info-row:first-child { padding-top: 0; }
.info-row__ico { width: 44px; height: 44px; border-radius: 10px; background: var(--accent-soft); color: var(--accent); display: grid; place-items: center; flex: none; }
.info-row__ico svg { width: 22px; height: 22px; }
.info-row b { display: block; font-size: .95rem; }
.info-row p { color: var(--ink-soft); font-size: .96rem; }
.info-row a { color: var(--accent); font-weight: 500; }
.info-row a:hover { text-decoration: underline; }
.info-note { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px 16px; margin-top: 20px; font-size: .88rem; color: var(--ink-soft); }
.info-note b { color: var(--ink); }
.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-sm); }
.social-row { display: flex; gap: 12px; margin-top: 8px; flex-wrap: wrap; }
.social-row a {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border: 1px solid var(--line);
  border-radius: 999px; font-size: .9rem; font-weight: 500; color: var(--ink-soft); transition: .2s;
}
.social-row a:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }

/* ---- Footer ---- */
.site-footer { background: var(--bg-dark); color: #cbd5e1; padding: 56px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand b { color: #fff; font-size: 1.15rem; font-weight: 800; }
.footer__logo { display: flex; align-items: center; gap: 10px; }
.footer__logo img { width: 32px; height: 32px; }
.footer__legal { padding: 20px 0; margin-top: 8px; border-top: 1px solid rgba(255,255,255,.1); font-size: .85rem; color: #94a3b8; line-height: 2; }
.footer__legal > div { word-break: keep-all; }
.footer__legal i { color: rgba(255,255,255,.22); margin: 0 9px; font-style: normal; }
.footer__legal a { color: #cbd5e1; }
.footer__legal a:hover { color: #fff; }
/* 광고 책임변호사(관리자 진입) 링크는 일반 텍스트처럼 — 방문객이 링크로 인식하지 않도록 */
.footer__legal a.footer__adlink { color: inherit; text-decoration: none; cursor: default; }
.footer__legal a.footer__adlink:hover { color: inherit; }
@media (max-width: 640px) { .footer__legal i { display: block; height: 0; margin: 0; overflow: hidden; } }
.footer__brand p { margin-top: 12px; font-size: .92rem; max-width: 340px; }
.footer__addr { margin-top: 16px; font-size: .88rem; color: #94a3b8; line-height: 1.9; }
.footer__addr a { color: #cbd5e1; }
.footer__addr a:hover { color: #fff; }
.footer__col h4 { color: #fff; font-size: .95rem; margin-bottom: 14px; }
.footer__col a, .footer__col p { display: block; font-size: .92rem; color: #94a3b8; padding: 4px 0; transition: color .2s; }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding-top: 22px; font-size: .84rem; color: #7d8ba3; }

/* ---- Reveal animation ---- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ---- Mobile nav overlay ---- */
.nav__backdrop { display: none; }

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .portrait { max-width: 380px; margin-inline: auto; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .grid--3 { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed; inset: 72px 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff; border-bottom: 1px solid var(--line); padding: 16px var(--gutter) 24px;
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: .28s var(--ease);
    box-shadow: var(--shadow-md);
  }
  .nav__links.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__links a { padding: 14px 12px; font-size: 1.02rem; }
  .nav__cta { margin: 8px 0 0; }
  .nav__cta .btn { width: 100%; justify-content: center; }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .case { grid-template-columns: 1fr; gap: 8px; }
  .hero__stats { gap: 24px; }
  .press__item { flex-direction: column; align-items: flex-start; gap: 6px; }
}
