/* =============================================================
   Dr. Ahmet M. Atlig — Spiritual Caring
   Design system: calming turquoise + purple, professional
   ============================================================= */

:root {
  /* Palette */
  --teal-900: #0d3b3b;
  --teal-700: #16706c;
  --teal-500: #1f9d97;
  --teal-400: #3bb8b0;
  --teal-100: #d6efed;

  --purple-900: #2c2350;
  --purple-700: #4a3b7c;
  --purple-500: #6b57a8;
  --purple-400: #8a76c4;
  --purple-100: #e7e1f2;

  --ink: #1e2733;
  --ink-soft: #4a5560;
  --cream: #faf8f4;
  --cream-2: #f2efe8;
  --white: #ffffff;

  --grad: linear-gradient(120deg, var(--teal-500) 0%, var(--purple-500) 100%);
  --grad-soft: linear-gradient(120deg, var(--teal-100) 0%, var(--purple-100) 100%);

  /* Type */
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --shadow-sm: 0 4px 18px rgba(30, 39, 51, 0.08);
  --shadow-md: 0 14px 40px rgba(30, 39, 51, 0.12);
  --shadow-lg: 0 28px 70px rgba(30, 39, 51, 0.18);

  --radius: 18px;
  --radius-lg: 28px;
  --maxw: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.12; color: var(--ink); letter-spacing: 0.2px; }
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); }
p { color: var(--ink-soft); }
a { color: var(--teal-700); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--purple-500); }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 3.5px;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--teal-700);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--grad); border-radius: 2px; }

.lead { font-size: 1.16rem; color: var(--ink-soft); max-width: 62ch; }

.text-grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 30px; border-radius: 50px;
  font-family: var(--sans); font-weight: 800; font-size: 0.98rem;
  cursor: pointer; border: none; transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, background .3s ease;
  letter-spacing: .3px;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 12px 30px rgba(31,157,151,.28); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(107,87,168,.34); color: #fff; }
.btn-ghost { background: transparent; color: var(--ink); border: 1.6px solid rgba(30,39,51,.16); }
.btn-ghost:hover { border-color: var(--teal-500); color: var(--teal-700); transform: translateY(-3px); }
.btn-light { background: rgba(255,255,255,.14); color: #fff; border: 1.6px solid rgba(255,255,255,.4); backdrop-filter: blur(6px); }
.btn-light:hover { background: rgba(255,255,255,.24); color: #fff; transform: translateY(-3px); }
.btn svg { width: 18px; height: 18px; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s ease, box-shadow .4s ease, padding .4s ease;
  padding: 20px 0;
}
.nav.scrolled { background: rgba(250,248,244,.95); backdrop-filter: blur(14px); box-shadow: var(--shadow-sm); padding: 12px 0; }

/* Subtle dark scrim behind the top bar so white text/flags/hamburger stay
   readable over any hero (including bright photo areas). Fades out on scroll. */
.nav::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(to bottom, rgba(10,26,34,.55), rgba(10,26,34,0));
  transition: opacity .4s ease;
}
.nav.scrolled::before { opacity: 0; }

/* At the top (over the dark hero) use light text so the menu stands out;
   once the bar turns solid on scroll, switch back to dark text. */
.nav:not(.scrolled) .brand-name { color: #fff; }
.nav:not(.scrolled) .brand-sub { color: var(--teal-400); }
.nav:not(.scrolled) .nav-toggle span { background: #fff; }
.nav:not(.scrolled) .nav-links a { color: rgba(255,255,255,.92); }
.nav:not(.scrolled) .nav-links a:hover,
.nav:not(.scrolled) .nav-links a.active { color: #fff; background: rgba(255,255,255,.18); }
.nav-inner { display: flex; align-items: center; gap: 8px; }
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; order: 0; }
.nav-links { order: 1; }
.nav-toggle { order: 3; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%; background: var(--grad);
  display: grid; place-items: center; color: #fff; font-family: var(--serif);
  font-size: 1.35rem; font-weight: 700; flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(107,87,168,.3);
}
.brand-text { line-height: 1.15; }
.brand-name { font-family: var(--serif); font-size: 1.24rem; font-weight: 700; color: var(--ink); }
.brand-sub { font-size: .68rem; text-transform: uppercase; letter-spacing: 2px; color: var(--teal-700); font-weight: 700; }

.nav-links { display: flex; align-items: center; gap: 3px; list-style: none; }
.nav-links a {
  padding: 8px 11px; border-radius: 30px; color: var(--ink-soft); font-weight: 700; font-size: .86rem;
  white-space: nowrap; transition: color .25s ease, background .25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal-700); background: rgba(31,157,151,.1); }
.nav-cta { margin-left: 6px; }
.nav-cta .btn { padding: 10px 18px; }

.nav-toggle { display: none; flex-shrink: 0; background: none; border: none; cursor: pointer; width: 40px; height: 40px; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2.4px; background: var(--ink); margin: 5px auto; border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }

/* ---------- Sections ---------- */
section { position: relative; }
.section { padding: 100px 0; }
.section-tight { padding: 70px 0; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.bg-cream2 { background: var(--cream-2); }
.bg-ink { background: linear-gradient(160deg, var(--teal-900), var(--purple-900)); color: #fff; }
.bg-ink h1, .bg-ink h2, .bg-ink h3 { color: #fff; }
.bg-ink p { color: rgba(255,255,255,.78); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(13,59,59,.94) 0%, rgba(44,35,80,.82) 45%, rgba(44,35,80,.28) 100%);
}
.hero-inner { position: relative; z-index: 2; padding-top: 90px; padding-bottom: 40px; max-width: 720px; }
.hero .eyebrow { color: var(--teal-400); }
.hero .eyebrow::before { background: var(--teal-400); }
.hero h1 { color: #fff; margin-bottom: 22px; }
.hero p { color: rgba(255,255,255,.85); font-size: 1.2rem; max-width: 56ch; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,.7); font-size: .74rem; letter-spacing: 2px; text-transform: uppercase; text-align: center; }
.hero-scroll .mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.5); border-radius: 14px; margin: 0 auto 10px; position: relative; }
.hero-scroll .mouse::after { content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%); width: 4px; height: 7px; background: #fff; border-radius: 3px; animation: scrolldot 1.6s infinite; }
@keyframes scrolldot { 0% { opacity: 0; top: 7px; } 40% { opacity: 1; } 80% { opacity: 0; top: 18px; } 100% { opacity: 0; } }

/* page hero (interior pages) */
.page-hero { position: relative; padding: 170px 0 80px; overflow: hidden; }
.page-hero.bg-ink::before {
  content: ""; position: absolute; inset: 0; opacity: .16;
  background-image: radial-gradient(circle at 20% 30%, var(--teal-400) 0, transparent 38%), radial-gradient(circle at 85% 60%, var(--purple-400) 0, transparent 40%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .lead { color: rgba(255,255,255,.82); }

/* ---------- Grids & cards ---------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border-radius: var(--radius); padding: 34px 30px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(30,39,51,.05);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
  position: relative; overflow: hidden;
}
.card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--grad); transform: scaleX(0); transform-origin: left; transition: transform .4s ease; }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 56px; height: 56px; border-radius: 15px; background: var(--grad-soft);
  display: grid; place-items: center; margin-bottom: 20px; color: var(--teal-700);
}
.card-icon svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 12px; font-size: 1.35rem; }
.card p { font-size: .98rem; }
.card-cta { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-weight: 800; font-size: .84rem; color: var(--teal-700); letter-spacing: .2px; }
.card-cta::after { content: "→"; transition: transform .25s ease; }
.card:hover .card-cta { color: var(--purple-500); }
.card:hover .card-cta::after { transform: translateX(4px); }

/* feature split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; object-fit: cover; }
.split-media .badge {
  position: absolute; bottom: -24px; left: -24px; background: #fff; padding: 20px 26px;
  border-radius: var(--radius); box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 16px;
}
.split-media .badge .num { font-family: var(--serif); font-size: 2.4rem; font-weight: 700; }
.split-media .badge .lbl { font-size: .82rem; color: var(--ink-soft); line-height: 1.3; font-weight: 700; }

/* stats */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; }
.stat { text-align: center; }
.stat .num { font-family: var(--serif); font-size: clamp(2.4rem,4vw,3.4rem); font-weight: 700; line-height: 1; }
.stat .lbl { font-size: .86rem; text-transform: uppercase; letter-spacing: 1.5px; font-weight: 800; color: var(--ink-soft); margin-top: 8px; }

/* pills / tag list */
.pills { display: flex; flex-wrap: wrap; gap: 12px; }
.pill { background: #fff; border: 1px solid rgba(30,39,51,.08); padding: 10px 20px; border-radius: 40px; font-weight: 700; font-size: .92rem; color: var(--ink); box-shadow: var(--shadow-sm); transition: .3s; }
.pill:hover { background: var(--grad); color: #fff; border-color: transparent; transform: translateY(-3px); }

/* quote */
.quote { max-width: 860px; margin: 0 auto; text-align: center; }
.quote blockquote { font-family: var(--serif); font-size: clamp(1.6rem,3.2vw,2.4rem); line-height: 1.4; font-weight: 500; }
.quote .mark { font-size: 4rem; font-family: var(--serif); color: var(--teal-400); line-height: 0; display: block; margin-bottom: 20px; }
.quote cite { display: block; margin-top: 26px; font-style: normal; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; font-size: .82rem; color: var(--teal-700); }

/* CTA band */
.cta-band { background: var(--grad); border-radius: var(--radius-lg); padding: 66px 50px; text-align: center; color: #fff; position: relative; overflow: hidden; box-shadow: var(--shadow-lg); }
.cta-band::before, .cta-band::after { content:""; position:absolute; border-radius:50%; background: rgba(255,255,255,.1); }
.cta-band::before { width: 260px; height: 260px; top: -120px; right: -60px; }
.cta-band::after { width: 200px; height: 200px; bottom: -110px; left: -40px; }
.cta-band h2 { color: #fff; position: relative; z-index: 2; }
.cta-band p { color: rgba(255,255,255,.9); position: relative; z-index: 2; max-width: 56ch; margin: 16px auto 30px; }
.cta-band .btn { position: relative; z-index: 2; }

/* "first session is free" badge */
.free-badge {
  display: inline-flex; align-items: center; gap: 8px; position: relative; z-index: 2;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.4);
  color: #fff; padding: 8px 18px; border-radius: 40px; font-weight: 800;
  font-size: .8rem; letter-spacing: .6px; text-transform: uppercase; margin-bottom: 20px;
  backdrop-filter: blur(4px);
}
.free-badge::before { content: "✦"; color: #ffd66b; font-size: 1rem; }
.cta-band .free-badge { margin-bottom: 18px; }
/* light-background variant (e.g. on cream sections) */
.free-badge.on-light { background: rgba(31,157,151,.1); border-color: rgba(31,157,151,.35); color: var(--teal-700); }
.free-badge.on-light::before { color: #d99a1c; }

/* ---------- Footer ---------- */
.footer { background: linear-gradient(160deg, var(--teal-900), var(--purple-900)); color: rgba(255,255,255,.72); padding: 74px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 44px; margin-bottom: 46px; }
.footer h4 { color: #fff; font-family: var(--sans); font-size: .8rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; }
.footer .brand-name { color: #fff; }
.footer p { color: rgba(255,255,255,.66); font-size: .96rem; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 11px; }
.footer ul a { color: rgba(255,255,255,.7); font-size: .96rem; }
.footer ul a:hover { color: var(--teal-400); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .84rem; color: rgba(255,255,255,.5); }

/* Reveal classes are kept in the markup but no longer animate — content is
   always fully visible and in place (scroll animation removed). */
.reveal, .reveal.d1, .reveal.d2, .reveal.d3, .reveal.d4 { opacity: 1; transform: none; transition: none; }

/* progress bar */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--grad); z-index: 200; transition: width .1s linear; }

/* footer legal links */
.footer-legal a { color: rgba(255,255,255,.55); }
.footer-legal a:hover { color: var(--teal-400); }

/* language switch */
.lang-switch { order: 2; display: inline-flex; align-items: center; gap: 2px; padding: 3px; border: 1.5px solid rgba(30,39,51,.14); border-radius: 30px; background: rgba(255,255,255,.65); flex-shrink: 0; }
.lang-switch button { display: inline-flex; align-items: center; justify-content: center; border: none; background: transparent; padding: 4px 7px; border-radius: 22px; cursor: pointer; line-height: 0; transition: background .2s ease; }
.lang-switch button img { width: 26px; height: 18px; display: block; border-radius: 3px; opacity: .45; transition: opacity .2s ease; }
.lang-switch button:hover img { opacity: .85; }
.lang-switch button.active { background: #fff; box-shadow: 0 2px 6px rgba(30,39,51,.14); }
.lang-switch button.active img { opacity: 1; }

/* cookie banner */
.cookie-banner { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 300; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 1px solid rgba(30,39,51,.08); transform: translateY(140%); opacity: 0; transition: transform .5s cubic-bezier(.2,.8,.2,1), opacity .5s ease; }
.cookie-banner.show { transform: none; opacity: 1; }
.cookie-inner { display: flex; align-items: center; gap: 22px; padding: 20px 26px; max-width: var(--maxw); margin: 0 auto; flex-wrap: wrap; }
.cookie-inner p { font-size: .92rem; margin: 0; flex: 1; min-width: 260px; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-actions .btn { padding: 11px 24px; font-size: .9rem; }
@media (max-width: 560px) { .cookie-actions { width: 100%; } .cookie-actions .btn { flex: 1; justify-content: center; } }

/* legal / article pages */
.legal { max-width: 820px; margin: 0 auto; }
.legal h2 { margin: 40px 0 14px; font-size: 1.7rem; }
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { color: var(--ink-soft); margin-bottom: 14px; }
.legal ul { margin: 0 0 14px 22px; }
.legal .updated { font-size: .9rem; color: var(--ink-soft); font-style: italic; margin-bottom: 30px; }

/* books */
.book-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.book-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid rgba(30,39,51,.05); display: flex; flex-direction: column; transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease; }
.book-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.book-cover { position: relative; aspect-ratio: 3 / 4.4; overflow: hidden; background: linear-gradient(150deg, var(--teal-700), var(--purple-700)); display: block; }
.book-cover img { width: 100%; height: 100%; object-fit: cover; }
.book-cover-fallback { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 28px 22px; color: #fff; }
.book-cover-fallback .bf-orn { font-family: var(--serif); font-size: 2rem; opacity: .6; margin-bottom: 12px; }
.book-cover-fallback .bf-title { font-family: var(--serif); font-size: 1.35rem; font-weight: 600; line-height: 1.2; }
.book-cover-fallback .bf-auth { margin-top: 14px; font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; opacity: .8; }
.book-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.book-body h3 { font-size: 1.28rem; margin-bottom: 10px; }
.book-body p { font-size: .94rem; flex: 1; margin-bottom: 20px; }
.book-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.book-actions .btn { padding: 11px 20px; font-size: .86rem; }
@media (max-width: 940px) { .book-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .book-grid { grid-template-columns: 1fr; max-width: 340px; margin: 0 auto; } }

/* bilingual blocks (used on legal pages): show per <html lang> */
.lang-tr { display: none; }
html[lang="tr"] .lang-en { display: none; }
html[lang="tr"] .lang-tr { display: block; }

/* gentle page-to-page transition. The body is ALWAYS visible by default; only
   the fade-out (added on click, before navigating) is animated — so the page
   can never get stuck invisible, whatever the browser does with animations. */
body { opacity: 1; transition: opacity .3s ease; }
body.is-leaving { opacity: 0; }

/* accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-bg img { transform: none !important; }
  body, body.is-leaving { animation: none !important; opacity: 1 !important; transition: none !important; }
}

/* ---------- Responsive ---------- */
/* Collapse the top bar to a hamburger menu early, so the row never overflows
   or wraps. The language flags stay visible in the bar (z-index keeps them
   above the slide-out menu). */
@media (max-width: 1180px) {
  .lang-switch { position: relative; z-index: 102; }
  .nav-links {
    position: fixed; top: 0; right: 0; bottom: 0; left: auto; width: min(82vw, 320px); background: var(--cream);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 8px;
    padding: 96px 34px 40px; transform: translateX(105%); transition: transform .4s cubic-bezier(.2,.8,.2,1);
    box-shadow: var(--shadow-lg); z-index: 100;
  }
  .nav-links.open { transform: none; }
  /* drawer is cream, so keep menu text dark and readable regardless of scroll state */
  .nav-links a { width: 100%; font-size: 1.05rem; color: var(--ink-soft) !important; background: transparent !important; }
  .nav-links a.active { color: var(--teal-700) !important; }
  .nav-cta { margin-left: 0; }
  .nav-toggle { display: block; z-index: 101; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }
}
@media (max-width: 940px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-media { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2,1fr); gap: 40px 20px; }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .cta-band { padding: 48px 26px; }
  .split-media .badge { left: 50%; transform: translateX(-50%); bottom: -20px; white-space: nowrap; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  /* compact top bar so brand + flags + hamburger fit any phone with breathing room */
  .container { padding: 0 18px; }
  .brand-mark { width: 36px; height: 36px; font-size: 1.15rem; }
  .brand-name { font-size: .92rem; }
  .brand-sub { font-size: .56rem; letter-spacing: 1.3px; }
  .lang-switch { gap: 0; padding: 2px; }
  .lang-switch button { padding: 4px 6px; }
  .lang-switch button img { width: 22px; height: 15px; }
  .nav-inner { gap: 6px; }
}
