/* =========================================================
   Kalavaibhav Sevabhavi Sanstha — shared stylesheet
   Signature motif: the "talent tree" (rainbow leaves = disciplines)
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Mukta:wght@400;500;600;700&family=Tiro+Devanagari+Marathi:ital@0;1&display=swap');

:root {
  --saffron:      #E8871E;
  --saffron-deep: #CF6F0C;
  --marigold:     #F4B23C;
  --gold:         #F4C430;
  --maroon:       #7A1E22;
  --maroon-dark:  #5E1418;
  --leaf-green:   #1B7A5A;
  --peacock-blue: #1E6FA8;
  --cream:        #FFF8EC;
  --cream-tint:   #FBEFD9;
  --cream-card:   #FFFFFF;
  --ink:          #2B2118;
  --ink-soft:     #5A4B3B;
  --line:         rgba(122, 30, 34, 0.14);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Mukta', system-ui, -apple-system, sans-serif;
  --font-display-mr: 'Tiro Devanagari Marathi', 'Fraunces', Georgia, serif;

  --shadow-sm: 0 2px 8px rgba(122, 30, 34, 0.08);
  --shadow-md: 0 10px 30px rgba(122, 30, 34, 0.12);
  --radius: 14px;
  --maxw: 1140px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  color: var(--maroon);
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1rem; }
a { color: var(--saffron-deep); }

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

.wrap { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--saffron-deep);
  margin: 0 0 0.75rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary { background: var(--saffron); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--saffron-deep); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--maroon); border-color: var(--maroon); }
.btn-ghost:hover { background: var(--maroon); color: #fff; }
.btn-light { background: #fff; color: var(--maroon); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

:focus-visible { outline: 3px solid var(--peacock-blue); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--maroon); color: #fff; padding: 0.75rem 1.25rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--maroon);
  box-shadow: 0 2px 14px rgba(0,0,0,0.18);
}
.header-logos { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.header-logo {
  position: absolute; top: 50%; height: 150px; width: auto;
  transform: translateY(-50%); opacity: 0.14;
}
.header-logo-en { left: -18px; }
.header-logo-mr { right: -18px; }
.nav {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  min-height: 68px; gap: 1rem;
}
.brand {
  display: flex; align-items: center; gap: 0.65rem;
  text-decoration: none; color: #fff;
}
.brand img { height: 40px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-display); font-weight: 600; font-size: 1.18rem; color: #fff; }
.brand-sub { font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--marigold); }

.nav-links { display: flex; align-items: center; gap: 0.35rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: #f6e6d6; text-decoration: none; font-weight: 500;
  padding: 0.45rem 0.85rem; border-radius: 8px; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0.85rem; right: 0.85rem; bottom: 0.28rem; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.2s ease;
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: #fff; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 0.5rem;
}
.nav-toggle span { display: block; width: 26px; height: 2px; background: #fff; margin: 5px 0; transition: 0.25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .header-logo { height: 92px; opacity: 0.10; }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--maroon-dark); padding: 0.5rem 1.25rem 1rem;
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  }
  .nav-links.open { max-height: 360px; }
  .nav-links a { padding: 0.85rem 0.5rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-links a::after { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; color: #fff; overflow: hidden;
  background:
    radial-gradient(120% 100% at 80% 0%, rgba(232,135,30,0.55) 0%, rgba(232,135,30,0) 55%),
    linear-gradient(160deg, var(--maroon) 0%, var(--maroon-dark) 70%);
}
.hero-photos { position: absolute; inset: 0; opacity: 0.22; }
.hero-photos img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(94,20,24,0.2) 0%, rgba(94,20,24,0.65) 100%);
}
.hero-logos { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.hero-logo {
  position: absolute; top: 50%; height: 340px; width: auto;
  transform: translateY(-50%); opacity: 0.16;
  filter: drop-shadow(0 12px 30px rgba(0,0,0,0.35));
}
.hero-logo-en { left: -50px; }
.hero-logo-mr { right: -50px; }
.hero-inner {
  position: relative; z-index: 2;
  padding: 4.5rem 0 5rem;
}
.hero-copy { max-width: 640px; }
.hero h1 {
  color: #fff; font-size: clamp(2.4rem, 5.2vw, 4rem); margin-bottom: 0.4rem;
}
.hero .tagline { font-size: clamp(1.05rem, 2.2vw, 1.4rem); color: var(--gold); font-weight: 600; margin-bottom: 1.2rem; }
.hero .lede { font-size: 1.15rem; color: #f3e4d4; max-width: 36ch; margin-bottom: 2rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.85rem; }

@media (max-width: 860px) {
  .hero-inner { padding: 3rem 0 3.5rem; }
  .hero-logo { height: 200px; opacity: 0.13; }
}

/* ---------- Generic sections ---------- */
.section { padding: 4.5rem 0; }
.section-tint { background: var(--cream-tint); }
.section-maroon { background: var(--maroon); color: #fff; }
.section-maroon h2 { color: #fff; }
.section-head { max-width: 60ch; margin-bottom: 2.5rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.divider { height: 3px; width: 64px; background: var(--gold); border: 0; margin: 0 0 1.5rem; border-radius: 2px; }
.center .divider { margin-inline: auto; }

/* ---------- Page banner (interior pages) ---------- */
.page-banner {
  background:
    radial-gradient(120% 140% at 90% -20%, rgba(244,196,48,0.35) 0%, rgba(244,196,48,0) 50%),
    linear-gradient(150deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  color: #fff; padding: 3.5rem 0;
}
.page-banner h1 { color: #fff; font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 0.3rem; }
.page-banner p { color: #f3e4d4; max-width: 56ch; margin: 0; }

/* ---------- Mission strip ---------- */
.mission { background: var(--gold); color: var(--maroon-dark); }
.mission .wrap { padding: 2.2rem 0; }
.mission p { font-family: var(--font-display); font-size: clamp(1.2rem, 2.6vw, 1.7rem); font-weight: 500; margin: 0; text-align: center; }

/* ---------- Activity cards ---------- */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.card {
  background: var(--cream-card); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  display: flex; flex-direction: column; transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-photo { aspect-ratio: 4/3; background: var(--cream-tint); position: relative; overflow: hidden; }
.card-photo img { width: 100%; height: 100%; object-fit: cover; }
.card-icon {
  position: absolute; left: 12px; bottom: -22px; width: 46px; height: 46px;
  background: #fff; border-radius: 12px; display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
}
.card-icon svg { width: 26px; height: 26px; }
.card-body { padding: 1.6rem 1.1rem 1.2rem; }
.card-body h3 { font-size: 1.15rem; margin: 0; }
@media (max-width: 900px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .cards { grid-template-columns: 1fr; } }

/* ---------- Goals ---------- */
.goals { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.goal {
  display: flex; gap: 1rem; padding: 1.5rem; background: var(--cream-card);
  border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.goal .leaf { flex: 0 0 auto; width: 34px; height: 34px; }
.goal p { margin: 0; font-weight: 500; }
@media (max-width: 640px) { .goals { grid-template-columns: 1fr; } }

/* ---------- Initiatives list ---------- */
.initiatives { columns: 2; column-gap: 2.5rem; }
.initiatives li {
  break-inside: avoid; margin-bottom: 1rem; padding-left: 1.6rem; position: relative; list-style: none;
}
.initiatives li::before {
  content: ''; position: absolute; left: 0; top: 0.55em; width: 9px; height: 9px; border-radius: 50%;
  background: var(--saffron);
}
.initiatives { padding: 0; margin: 0; }
@media (max-width: 680px) { .initiatives { columns: 1; } }

.vision-box {
  margin-top: 2.5rem; background: var(--cream-tint); border: 1px dashed var(--saffron);
  border-radius: var(--radius); padding: 1.5rem 2rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-deep) 100%);
  color: #fff; text-align: center;
}
.cta-band .wrap { padding: 3.5rem 0; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.cta-band p { max-width: 52ch; margin: 0 auto 1.8rem; font-size: 1.1rem; }
.badge-80g {
  display: inline-block; margin-top: 1.2rem; font-size: 0.85rem; font-weight: 600;
  background: rgba(255,255,255,0.18); padding: 0.4rem 1rem; border-radius: 999px;
}

/* ---------- About layout ---------- */
.split { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2.5rem; align-items: start; }
.split-rev { grid-template-columns: 0.8fr 1.2fr; }
.split img { border-radius: var(--radius); box-shadow: var(--shadow-md); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.stack-img { display: grid; gap: 1rem; }
@media (max-width: 800px) { .split, .split-rev { grid-template-columns: 1fr; } }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.member {
  background: var(--cream-card); border-radius: var(--radius); padding: 1.8rem 1.5rem; text-align: center;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; align-items: center;
}
/* Photo wrapper: shows the real photo when loaded, initials as fallback */
.member-photo-wrap {
  position: relative; width: 110px; height: 110px; border-radius: 50%;
  margin: 0 auto 1rem; overflow: hidden; flex-shrink: 0;
  background: linear-gradient(135deg, var(--saffron), var(--maroon));
  box-shadow: var(--shadow-sm);
}
.member-photo {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  border-radius: 50%; display: block; position: relative; z-index: 1;
}
.photo-initials {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-display); font-size: 2rem; font-weight: 600;
  z-index: 0;
}
/* When the image loads successfully, hide the initials behind it (z-index handles it). */
/* When image fails, onerror adds .photo-fallback which hides the broken img tag. */
.photo-fallback .member-photo { display: none; }
.member h3 { margin: 0 0 0.15rem; font-size: 1.2rem; }
.member .role { color: var(--saffron-deep); font-weight: 600; margin: 0 0 0.4rem; }
.member .tel { font-size: 0.92rem; color: var(--ink-soft); text-decoration: none; }
.member .tel:hover { color: var(--maroon); }
.member-desc {
  margin: 0.8rem 0 0; font-size: 0.92rem; color: var(--ink-soft); line-height: 1.6;
  text-align: center; min-height: 2.8em;
}
.lead-member { border-top: 4px solid var(--saffron); }
@media (max-width: 820px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; gap: 1.5rem; }
.testimonial {
  background: var(--cream-card); border-radius: var(--radius); padding: 1.8rem;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  display: flex; gap: 1.5rem; align-items: flex-start;
}
.testimonial .member-photo-wrap { margin: 0; }
.testimonial-body h3 { margin: 0 0 0.15rem; font-size: 1.1rem; }
.testimonial-body .role { color: var(--saffron-deep); font-weight: 600; margin: 0 0 0.6rem; font-size: 0.85rem; }
.testimonial-quote { margin: 0; font-size: 0.95rem; color: var(--ink-soft); line-height: 1.7; white-space: pre-line; }
@media (max-width: 700px) {
  .testimonial { flex-direction: column; text-align: center; }
  .testimonial .member-photo-wrap { margin: 0 auto 1rem; }
}

/* ---------- Gallery ---------- */
.gallery-grid { column-count: 4; column-gap: 14px; }
.gallery-grid figure { margin: 0 0 14px; break-inside: avoid; }
.gallery-grid button.tile {
  display: block; width: 100%; padding: 0; border: 0; background: var(--cream-tint);
  border-radius: 10px; overflow: hidden; cursor: pointer; box-shadow: var(--shadow-sm);
}
.gallery-grid img { width: 100%; height: auto; display: block; transition: transform 0.3s ease; }
.gallery-grid button.tile:hover img { transform: scale(1.05); }
@media (max-width: 1000px) { .gallery-grid { column-count: 3; } }
@media (max-width: 680px) { .gallery-grid { column-count: 2; } }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100; background: rgba(28,8,9,0.92);
  display: none; align-items: center; justify-content: center; padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 82vh; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lb-btn {
  position: absolute; background: rgba(255,255,255,0.12); color: #fff; border: 0;
  width: 52px; height: 52px; border-radius: 50%; font-size: 1.5rem; cursor: pointer;
  display: grid; place-items: center; transition: background 0.15s ease;
}
.lb-btn:hover { background: rgba(255,255,255,0.28); }
.lb-close { top: 1.25rem; right: 1.25rem; }
.lb-prev { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.25rem; top: 50%; transform: translateY(-50%); }
.lb-counter { position: absolute; bottom: 1.5rem; left: 0; right: 0; text-align: center; color: #f3e4d4; font-size: 0.9rem; }
@media (max-width: 600px) { .lb-prev { left: 0.4rem; } .lb-next { right: 0.4rem; } }

/* ---------- Contact ---------- */
.admission-box {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  flex-wrap: wrap; margin: 1.75rem 0 2.5rem;
  background: var(--cream-tint); border: 1px dashed var(--saffron); border-radius: var(--radius);
  padding: 1.25rem 1.75rem;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; margin-top: 2.5rem; }
.info-card {
  background: var(--cream-card); border-radius: var(--radius); padding: 2rem;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.info-card h2 { font-size: 1.5rem; }
.info-row { display: flex; gap: 0.85rem; align-items: flex-start; margin-bottom: 1.25rem; }
.info-row svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--saffron-deep); margin-top: 3px; }
.info-row a { color: var(--maroon); text-decoration: none; font-weight: 500; }
.info-row a:hover { text-decoration: underline; }
.info-row .label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-soft); margin: 0; }
.help-list { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.help-list li { padding-left: 1.5rem; position: relative; margin-bottom: 0.6rem; }
.help-list li::before { content: '✦'; position: absolute; left: 0; color: var(--saffron); }
.donate-box {
  background: var(--cream-tint); border-radius: 10px; padding: 1.25rem 1.5rem; margin-top: 1rem;
  border: 1px dashed var(--saffron);
}
.donate-box dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 0.35rem 1rem; }
.donate-box dt { font-weight: 600; color: var(--ink-soft); }
.donate-box dd { margin: 0; font-variant-numeric: tabular-nums; }
.form-card { margin-top: 0; }
.contact-form { display: grid; gap: 1.1rem; margin-top: 1.25rem; max-width: 46rem; }
.form-row { display: flex; flex-direction: column; gap: 0.4rem; }
.form-row label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-soft); font-weight: 600; }
.form-row input, .form-row textarea {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 0.75rem 1rem; border-radius: 10px; border: 1px solid var(--line);
  background: var(--cream-tint); resize: vertical;
}
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--saffron); background: #fff; }
.contact-form .btn { justify-self: start; }
.map-embed { margin-top: 2.5rem; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 340px; border: 0; display: block; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--maroon-dark); color: #e9d6c4; padding: 3rem 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.site-footer h4 { color: #fff; font-family: var(--font-body); font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.site-footer a { color: #f0dcc9; text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.footer-brand .brand-name { font-family: var(--font-display); font-size: 1.4rem; color: #fff; }
.footer-brand p { font-size: 0.92rem; line-height: 1.6; }
.footer-reg { font-size: 0.82rem; color: #c9a98f; margin-top: 0.75rem; }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 0.6rem; font-size: 0.95rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); margin-top: 2.5rem; padding: 1.25rem 0; font-size: 0.85rem; color: #c9a98f; text-align: center; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; } }

/* =========================================================
   Marathi (Devanagari) typography
   Fraunces has no Devanagari glyphs, so Marathi pages use
   Tiro Devanagari Marathi for display type. Mukta already
   covers Devanagari for body text.
   ========================================================= */
html[lang="mr"] h1,
html[lang="mr"] h2,
html[lang="mr"] h3,
html[lang="mr"] h4,
html[lang="mr"] .brand-name,
html[lang="mr"] .mission p {
  font-family: var(--font-display-mr);
  line-height: 1.3;
  letter-spacing: 0;
}
html[lang="mr"] .hero h1 { line-height: 1.25; }
html[lang="mr"] .brand-sub { text-transform: none; letter-spacing: 0.04em; font-size: 0.78rem; }
html[lang="mr"] .eyebrow,
html[lang="mr"] .form-row label,
html[lang="mr"] .info-row .label,
html[lang="mr"] .site-footer h4 { text-transform: none; letter-spacing: 0.04em; }
html[lang="mr"] body,
html[lang="mr"] .form-row input,
html[lang="mr"] .form-row textarea { font-family: var(--font-body); }

/* =========================================================
   Language toggle (EN <-> MR)
   ========================================================= */
.nav-actions { display: flex; align-items: center; gap: 0.5rem; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-body); font-weight: 600; font-size: 0.85rem;
  color: #fff; text-decoration: none;
  padding: 0.4rem 0.85rem; border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
}
.lang-toggle:hover {
  background: var(--gold); border-color: var(--gold); color: var(--maroon-dark);
  transform: translateY(-1px);
}
.lang-toggle svg { width: 16px; height: 16px; flex: 0 0 auto; }
@media (max-width: 768px) {
  .lang-toggle { font-size: 0.8rem; padding: 0.35rem 0.7rem; }
  .lang-toggle svg { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
