/* ==========================================================
   LEEPEEM PLASTIC SURGERY — renew.css
   공통 디자인 토큰 · Reset · 레이아웃 · 헤더 · 푸터 · 공통 컴포넌트
   ========================================================== */

/* ----------------------------------------------------------
   1. CSS Custom Properties (Design Tokens)
   ---------------------------------------------------------- */
:root {
  /* ---- 색 — 브랜드 teal 통일 (DEC-2026-06-10: 그린/오렌지/teal 3갈래 → 구 사이트
     티파니 teal 정체성으로 일원화. globals.css 토큰과 동일 팔레트) ---- */
  --color-bg: #f7f7f5;              /* 웜 아이보리 #F2F2ED → 쿨 화이트 (globals --color-muted) */
  --color-white: #FFFFFF;
  --color-text: #181818;            /* globals --color-foreground 와 통일 */
  --color-text-muted: #4d4d4d;
  --color-text-light: #5c5c5c;      /* #6b6b6b → 어둡게 (5.95:1 / 화이트 6.69:1, AA 통과) */
  --color-accent: #0abab5;          /* 브랜드 teal (면/보더/버튼 채움 전용, globals --color-primary) */
  --color-accent-2: #107977;        /* hover 딥 teal (globals --color-teal-dark) */
  --color-accent-text: #0e4c4b;     /* 텍스트 전용 딥 teal (globals --color-teal-darker, AA·AAA) */
  --color-accent-tint: #e3f4f3;     /* teal 5~8% 틴트 — 면 채색 없이 카드/구분 배경 */
  --color-border: #e5e5e5;
  --color-border-hair: rgba(24,24,24,0.10); /* 신규: 1px 헤어라인 디바이더/보더 (웜 잉크 10%) */
  --color-dark: #181818;

  /* ---- 폰트 — 2026-06-15 본문·제목 단일 통일: Freesentation(self-host, --font-free) 1순위 ---- */
  --font-serif: var(--font-free),'Freesentation','Pretendard','Noto Sans KR',sans-serif;
  --font-sans: var(--font-free),'Freesentation','Pretendard','Pretendard Variable',var(--font-noto-sans-kr),'Noto Sans KR',sans-serif;

  /* ---- 타이포 위계 토큰 (신규: 디스플레이 세리프/오버라인 정밀화) ---- */
}
/* 로케일별 비라틴 글리프 폰트 — layout 이 <html> 에 해당 폰트 변수만 부착, lang 으로 토큰 교체.
   CJK/태국/키릴은 한글·라틴 전용 Freesentation 에 글리프가 없으므로 해당 Noto Sans 로 폴백
   (라틴 글자는 Freesentation 유지 — 글리프 단위 폴백). */
:root[lang^="zh"]{ --font-sans: var(--font-free),var(--font-noto-sc),'Noto Sans SC',sans-serif; --font-serif: var(--font-free),var(--font-noto-sc),'Noto Sans SC',sans-serif; }
:root[lang^="ja"]{ --font-sans: var(--font-free),var(--font-noto-jp),'Noto Sans JP',sans-serif; --font-serif: var(--font-free),var(--font-noto-jp),'Noto Sans JP',sans-serif; }
:root[lang^="th"]{ --font-sans: var(--font-free),var(--font-noto-thai),'Noto Sans Thai',sans-serif; --font-serif: var(--font-free),var(--font-noto-thai),'Noto Sans Thai',sans-serif; }
:root[lang^="ru"],:root[lang^="mn"]{ --font-sans: var(--font-free),var(--font-noto-cyrillic),'Noto Sans',sans-serif; --font-serif: var(--font-free),var(--font-noto-cyrillic),'Noto Sans',sans-serif; }
:root[lang]{
  --display-weight: 400;            /* 헤드라인 weight 통일 — Freesentation 본문 weight 기준 */
  --display-ls: -0.015em;           /* 디스플레이 세리프 음의 자간 */
  --display-lh: 1.12;               /* 타이트 행간 */
  --body-lh: 1.72;                  /* Pretendard 본문 한글 가독 행간 */
  --body-ls: -0.005em;
  --overline-ls: 0.18em;            /* 영문 오버라인 대문자 트래킹 */

  --container: 1200px;
  --container-wide: 1400px;
  --header-height: 90px;
  --measure: 68ch;                  /* 신규: 본문 텍스트 블록 최대폭(줄길이 통제) */

  /* ---- 간격 (8px 기반 상향 정돈) ---- */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 32px;
  --space-lg: 64px;
  --space-xl: clamp(72px, 10vw, 120px); /* 모바일 섹션 수직 리듬 — 데스크톱 120px 상한 유지 */
  --space-2xl: 160px;               /* 신규: 넓은 섹션 호흡 (데스크톱 상하 패딩 상한) */
  --section-pad-wide: clamp(96px, 11vw, 160px);  /* 신규: 잡지 리듬 '넓게' */
  --section-pad-tight: clamp(72px, 8vw, 120px);  /* 신규: 잡지 리듬 '좁게' */

  /* ---- 트랜지션/모션 (느리고 의도적 — 통일) ---- */
  --ease: cubic-bezier(.4,0,.2,1);
  --ease-lux: cubic-bezier(0.22,1,0.36,1);  /* 신규: 럭셔리 ease-out 통일 */
  --transition: .3s var(--ease);
  --transition-lux: .32s var(--ease-lux);   /* 신규: hover/focus 전환 표준 */
  --reveal-dur: .7s;                          /* 신규: 섹션 진입 fade-up duration */

  /* ---- 포커스 (a11y) ---- */
  --focus-ring: 2px solid var(--color-accent); /* 신규 */
}

/* ----------------------------------------------------------
   2. Reset / Normalize
   ---------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
}

/* a11y — 스크린리더 전용 텍스트 (h1·sr텍스트용) */
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);clip-path:inset(50%);white-space:nowrap;border:0}

/* 전역 포커스 링 (키보드 내비게이션 가시화) */
a:focus-visible, button:focus-visible, [tabindex]:focus-visible, .gnb__link:focus-visible, .gnb__dropdown-link:focus-visible, .lang-flag:focus-visible, .header-hamburger:focus-visible, .sig-card:focus-visible, .subject-card:focus-visible, .news-card:focus-visible, .blog-card__link:focus-visible, .quick-bar__item:focus-visible, .site-footer__nav a:focus-visible{outline:var(--focus-ring);outline-offset:2px;border-radius:3px}

/* 다크 섹션 포커스 링 색 오버라이드 */
.news a:focus-visible, .news button:focus-visible, .endoscope-system a:focus-visible{outline-color:var(--color-white)}

.l-wide {
  width: 100%;
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--space-md);
}

/* ----------------------------------------------------------
   4. Common Components — Buttons
   ---------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  border-radius: 0;
  transition: background-color var(--transition-lux), color var(--transition-lux), border-color var(--transition-lux), transform var(--transition-lux);
  white-space: nowrap;
  cursor: pointer;
}

.btn-accent {
  /* 흰 13px 라벨이 #0abab5 위에서 2.4:1 — CTA 는 딥틸 면(5.2:1)으로 가독 우선 */
  background-color: var(--color-accent-2);
  color: var(--color-white);
  border: 1px solid var(--color-accent-2);
}
.btn-accent:hover {
  background-color: var(--color-accent-text);
  border-color: var(--color-accent-text);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-text);
}
.btn-outline:hover {
  background-color: var(--color-text);
  color: var(--color-white);
}

.h-serif {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.01em;
}

/* ----------------------------------------------------------
   6. Header Component
   ---------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  /* 기본(히어로 위) = 투명 + 상단 스크림. 스크롤/호버/포커스 시 솔리드 화이트로 전환. */
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: background-color var(--transition-lux), border-color var(--transition-lux),
    box-shadow var(--transition-lux);
}

/* 투명 상태 텍스트 가독성용 상단 스크림 — 솔리드 전환 시 페이드아웃 */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0));
  opacity: 1;
  transition: opacity var(--transition-lux);
  pointer-events: none;
}

.site-header.is-scrolled,
.site-header:hover,
.site-header:focus-within {
  background-color: #ffffff;
  border-bottom-color: rgba(28, 59, 92, 0.12);
  box-shadow: 0 4px 18px rgba(28, 59, 92, 0.07);
}

.site-header.is-scrolled::before,
.site-header:hover::before,
.site-header:focus-within::before {
  opacity: 0;
}

/* ---- 투명 상태 = 화이트 텍스트/로고/햄버거, 솔리드 상태 = 원래 색 ---- */
.site-header .site-header__logo-en,
.site-header .site-header__logo-sub,
.site-header .gnb__link,
.site-header .gnb__kr {
  color: #ffffff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.32);
  transition: color 0.3s var(--ease), text-shadow 0.3s var(--ease);
}

.site-header .site-header__logo-symbol {
  filter: drop-shadow(0 1px 6px rgba(0, 0, 0, 0.28));
  transition: filter 0.3s var(--ease);
}

.site-header .header-hamburger span {
  background-color: #ffffff;
}

.site-header:is(.is-scrolled, :hover, :focus-within) .site-header__logo-en,
.site-header:is(.is-scrolled, :hover, :focus-within) .site-header__logo-sub,
.site-header:is(.is-scrolled, :hover, :focus-within) .gnb__link {
  color: #0e4c4b;
  text-shadow: none;
}

/* 단일 라벨 승격 후 — 솔리드 상태에서 주 라벨은 링크 기본색(다크)과 동일 */
.site-header:is(.is-scrolled, :hover, :focus-within) .gnb__kr {
  color: #0e4c4b;
  text-shadow: none;
}

.site-header:is(.is-scrolled, :hover, :focus-within) .site-header__logo-symbol {
  filter: none;
}

.site-header:is(.is-scrolled, :hover, :focus-within) .header-hamburger span {
  background-color: #0e4c4b;
}

/* 헤더 내부 그리드: 좌-로고 / 중-메뉴 / 우-유틸 */
.site-header__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1640px;
  margin-inline: auto;
  padding-inline: var(--space-md);
  display: grid;
  /* [M2-fix] 1fr → minmax(0,1fr): 긴 로케일 메뉴가 min-content 폭으로 트랙을 넘겨
     우측 국기(.lang-flags)를 화면 밖으로 밀어내지 않도록 중앙 트랙 축소 허용 */
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: var(--space-md);
  height: 100%;
}

/* ---- 로고 (좌측 고정) ---- */
.site-header__logo {
  grid-column: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.site-header__logo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.site-header__logo-symbol {
  width: 44px;
  height: 44px;
  display: block;
  flex-shrink: 0;
}

.site-header__logo-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}

.site-header__logo-en {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #0e4c4b;
}

.site-header__logo-sub {
  font-family: var(--font-serif);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: #0e4c4b;
  opacity: 0.75;
}

@media (max-width: 1024px) {
  .site-header__logo-text { display: none; }
  .site-header__logo-symbol { width: 38px; height: 38px; }
}

/* ---- 중앙 GNB ---- */
.site-header__nav {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  /* [M2-fix] minmax(0,1fr) 트랙과 함께 동작하도록 축소 허용 */
  min-width: 0;
}

.gnb {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
  /* 센터 트랙 전체를 차지하고 남는 폭을 항목 사이에 고르게 분배 — 넓은 화면에서
     메뉴가 중앙에 뭉치지 않고 널찍하게 펼쳐진다. 공간이 부족하면(긴 로케일·좁은 폭)
     분배 여백이 0으로 줄어 기존 압축 동작과 동일. */
  flex: 1;
  justify-content: space-evenly;
}

/* 메가 메뉴 배경 — 네비바(뷰포트) 가로폭 전체로 펼쳐지는 띠 */
.gnb::before {
  content: '';
  position: absolute;
  top: var(--header-height);
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 320px;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(28, 59, 92, 0.10);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  z-index: 90;
  pointer-events: none;
}

/* [GNB-toggle] hover → 클릭 토글. JS(LegacyScripts)가 상위 메뉴 클릭 시
   .gnb 에 .is-menu-open 을 토글한다(다시 누르면 닫혀 페이지가 보임). */
.gnb.is-menu-open::before {
  opacity: 1;
  visibility: visible;
}

.gnb__item {
  position: relative;
}

.gnb__link {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 0 14px;
  height: var(--header-height);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #0e4c4b;
  white-space: nowrap;
  transition: color var(--transition);
  position: relative;
}

/* 단일 라벨(한글/로케일 번역) — 영문 보조 라벨(gnb__en) 제거 후 주 라벨로 승격 */
.gnb__kr {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  color: #0e4c4b;
  display: inline-flex;
  align-items: center;
  height: var(--header-height);
  /* [M2-fix] 긴 번역 레이블(ru/mn 등)은 줄바꿈 허용 — 한국어 등 짧은 레이블은 영향 없음 */
  white-space: normal;
  max-width: 8em;
  line-height: 1.2;
  text-align: left;
  hyphens: auto;
  overflow-wrap: break-word;
}

/* [M2-fix] 중간 폭에서 GNB 압축 — 국기/유틸 잘림 방지.
   긴 라벨(ru/mn 등) 보호용이므로, 라벨이 짧은 ko 는 한 단계 완화해 넉넉하게 유지. */
@media (min-width: 1025px) and (max-width: 1680px) {
  .gnb__link {
    padding: 0 8px;
    gap: 5px;
  }
  .gnb__kr { font-size: 14px; max-width: 8em; }
  :root[lang^="ko"] .gnb__link { padding: 0 12px; }
  :root[lang^="ko"] .gnb__kr { font-size: 15px; }
}

@media (min-width: 1025px) and (max-width: 1520px) {
  .gnb__link { padding: 0 6px; }
  .gnb__kr { font-size: 13px; max-width: 7em; }
  :root[lang^="ko"] .gnb__link { padding: 0 10px; }
  :root[lang^="ko"] .gnb__kr { font-size: 14px; }
}

.gnb__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background-color: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.gnb__item:hover .gnb__link::after,
.gnb__item.is-active .gnb__link::after {
  transform: scaleX(1);
}

.gnb__item:hover .gnb__kr,
.gnb__item.is-active .gnb__kr {
  color: var(--color-accent-text);
}

/* ---- 드롭다운 (메가 메뉴: 네비 호버 시 전체 동시 노출) ---- */
/* 직각 모서리, "얼굴지방이식"(6자) 기준 직사각형 폭 — 배경은 .gnb::before에서 통합 처리 */
.gnb__dropdown {
  position: absolute;
  top: var(--header-height);
  left: 0;
  width: 150px;
  background-color: transparent;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  z-index: 100;
  border-radius: 0;
}

.gnb.is-menu-open .gnb__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.gnb__dropdown--wide {
  width: 150px;
}

.gnb__dropdown-link {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  color: #181818;
  line-height: 1.4;
  transition: color var(--transition), background-color var(--transition);
}

.gnb__dropdown-link:hover {
  color: var(--color-accent-text);
  background-color: rgba(45, 147, 137, 0.14);
}

/* ---- 우측 유틸 ---- */
.site-header__util {
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

/* 국기 */
.lang-flags {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid #181818;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

/* 현재 보고 있는 언어 — hover 와 동일한 teal 링을 상시 노출 */
.lang-flag.is-active {
  box-shadow: 0 0 0 2px var(--color-accent);
}

.lang-flag .fi {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: block;
}

.lang-flag:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 2px var(--color-accent);
}

/* ---- 모바일 햄버거 ---- */
.header-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;   /* 터치 타겟 44px (모바일 유일 내비 진입점) — 시각 바 폭은 24px 유지 */
  height: 44px;
  cursor: pointer;
  padding: 10px;
}

.header-hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background-color: #0e4c4b;
  transition: background-color var(--transition), transform var(--transition), opacity var(--transition);
}

.header-hamburger.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.header-hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.header-hamburger.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ---- 모바일 드로어 ---- */
.mobile-drawer {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-white);
  z-index: 999;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

/* [N1-fix] 접근성용 명시적 닫기 버튼 — 평소엔 시각적으로 숨기고(sr-only 패턴)
   키보드 포커스 시에만 44×44 정식 버튼으로 노출. (시각적 닫기는 헤더 햄버거 X 토글) */
.mobile-drawer__close {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.mobile-drawer__close:focus-visible {
  top: 8px;
  right: 8px;
  left: auto;
  width: 44px;
  height: 44px;
  margin: 0;
  overflow: visible;
  clip: auto;
  clip-path: none;
  white-space: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  color: #0e4c4b;
  background-color: #fff;
  border: 1px solid rgba(28, 59, 92, 0.35);
  border-radius: 4px;
  z-index: 5;
}

.mobile-gnb {
  padding: var(--space-md) var(--space-md) var(--space-lg);
}

.mobile-gnb__item {
  border-bottom: 1px solid var(--color-border);
}

.mobile-gnb__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
}

.mobile-gnb__link .toggle-icon {
  font-size: 18px;
  color: var(--color-text-light);
  transition: transform var(--transition);
  line-height: 1;
}

.mobile-gnb__item.is-open .toggle-icon {
  transform: rotate(45deg);
}

.mobile-gnb__sub {
  display: none;
  padding: 4px 0 12px 16px;
}

.mobile-gnb__item.is-open .mobile-gnb__sub {
  display: block;
}

.mobile-gnb__sub a {
  display: block;
  padding: 8px 0;
  font-size: 13px;
  color: var(--color-text-muted);
}

.mobile-gnb__sub a:hover {
  color: var(--color-accent-text);
}

.mobile-lang {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: var(--space-md) var(--space-md) 0;
  border-top: 1px solid var(--color-border);
}

.mobile-lang a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 12px;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
}

.mobile-lang a img {
  width: 16px;
  border: 1px solid #181818;
}

.mobile-lang a.is-active {
  border-color: var(--color-accent-text);
  color: var(--color-accent-text);
  font-weight: 700;
}

.mobile-reserv {
  padding: var(--space-md);
}

.mobile-reserv .btn-accent {
  width: 100%;
  justify-content: center;
}

/* ----------------------------------------------------------
   7. Footer Component
   ---------------------------------------------------------- */
.site-footer {
  background-color: var(--color-dark);
  color: rgba(255,255,255,0.65);
  padding: var(--space-lg) 0 var(--space-md);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
}

/* ----------------------------------------------------------
   8. Swiper Override
   ---------------------------------------------------------- */
.swiper-pagination-bullet {
  background-color: rgba(255,255,255,0.5);
  opacity: 1;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transition: background-color var(--transition), width var(--transition);
}

.swiper-pagination-bullet-active {
  background-color: var(--color-accent);
  width: 24px;
  border-radius: 3px;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--color-white);
  width: 44px;
  height: 44px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
}

/* ----------------------------------------------------------
   9. Responsive — 1024px
   ---------------------------------------------------------- */
@media (max-width: 1024px) {
  :root {
    --header-height: 70px;
  }

  .site-header__nav,
  .lang-flags,
  .header-talk__label {
    display: none;
  }

  

  .header-hamburger {
    display: flex;
  }

  .mobile-drawer {
    display: block;
  }

  
}

/* ----------------------------------------------------------
   10. Responsive — 768px
   ---------------------------------------------------------- */
@media (max-width: 768px) {
  .l-container,
  .l-wide {
    padding-inline: var(--space-sm);
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  

  .site-footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  
}

/* ----------------------------------------------------------
   11. Responsive — 480px
   ---------------------------------------------------------- */
@media (max-width: 480px) {
  :root {
    --header-height: 60px;
  }

  

  .btn {
    padding: 12px 24px;
    font-size: 12px;
  }
}

/* ----------------------------------------------------------
   12. Reduced Motion (a11y)
   ---------------------------------------------------------- */
@media (prefers-reduced-motion: reduce){*,*::before,*::after{animation-duration:.001ms!important;animation-iteration-count:1!important;transition-duration:.001ms!important;scroll-behavior:auto!important}}
