@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,500;1,8..60,300&display=swap');

:root {
  --cream: #f8f7f5;
  --parchment: #f0eeea;
  --ink: #141414;
  --ink-light: #2e2e2e;
  --accent: #3a3a3a;
  --muted: #7a7a7a;
  --border: #d8d6d2;
  --shadow: rgba(0,0,0,0.10);

  /* Legacy aliases kept for compatibility */
  --copper: #3a3a3a;
  --copper-dark: #141414;
  --gold: #141414;
  --gold-light: #3a3a3a;
  --sky: #3a3a3a;
  --sky-light: #5a5a5a;
}


/* ── CUSTOM CURSOR ── */
*, *::before, *::after {
  cursor: url("cursor_default.png") 2 28, auto !important;
}

a, button, [onclick], label, input[type="submit"], input[type="button"],
select, .hamburger, .intro-enter, .photo-item, .btn-primary, .btn-outline,
.link-item, .thank-you-ticker, .nav-drawer nav a {
  cursor: url("cursor_default.png") 2 28, pointer !important;
}

a:active, button:active, [onclick]:active, .photo-item:active,
.btn-primary:active, .btn-outline:active, .link-item:active,
.thank-you-ticker:active, .hamburger:active, .intro-enter:active {
  cursor: url("cursor_pointer.png") 2 28, pointer !important;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Serif 4', Georgia, serif;
  background: var(--cream);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.75;
  min-height: 100vh;
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--ink);
  border-bottom: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
}

.header-logo {
  display: flex;
  align-items: stretch;
}

.header-logo a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-logo .logo-star {
  height: 41px;
  width: auto;
  filter: invert(1);
  display: block;
  flex-shrink: 0;
}

.header-logo .logo-words {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 41px;
  padding: 1px 0;
}

.header-logo .logo-word {
  font-family: 'Playfair Display', serif;
  font-size: 0.68rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
}

/* ── HAMBURGER ── */
.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.social-icon {
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  transition: color 0.2s;
  text-decoration: none;
}

.social-icon:hover {
  color: #fff;
}

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  transition: all 0.35s cubic-bezier(.77,0,.175,1);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── SLIDE-OUT MENU ── */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0);
  z-index: 900;
  pointer-events: none;
  transition: background 0.4s ease;
}
.nav-overlay.open {
  background: rgba(0,0,0,0.55);
  pointer-events: all;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--ink);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.77,0,.175,1);
  display: flex;
  flex-direction: column;
  padding: 80px 2.5rem 2.5rem;
  border-left: 1px solid #333;
}

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

.nav-drawer nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-drawer nav a {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--parchment);
  text-decoration: none;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  letter-spacing: 0.04em;
  transition: color 0.2s, padding-left 0.2s;
}

.nav-drawer nav a:hover,
.nav-drawer nav a.active {
  color: #fff;
  padding-left: 0.5rem;
}

.nav-drawer-footer {
  margin-top: auto;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ── PAGE BODY ── */
.page-body {
  padding-top: 64px;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 480px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  filter: brightness(0.55) sepia(0.3);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,20,16,0.85) 0%, rgba(26,20,16,0.1) 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem 3rem;
  max-width: 820px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-lead {
  font-size: 1.05rem;
  color: rgba(245,240,232,0.85);
  max-width: 580px;
  font-weight: 300;
  font-style: italic;
}

/* ── SECTIONS ── */
.section {
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.section-wide {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.section + .section {
  border-top: 1px solid var(--border);
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.section h2 em {
  font-style: italic;
  color: var(--ink-light);
}

.lead-text {
  font-size: 1.1rem;
  color: var(--ink-light);
  font-style: italic;
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

p {
  color: var(--ink-light);
  margin-bottom: 1rem;
}

/* ── NEWS ITEMS ── */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 2rem;
}

.news-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.news-date {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-align: right;
  padding-top: 0.25rem;
  font-weight: 500;
  border-right: 1px solid var(--border);
  padding-right: 1rem;
}

.news-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.news-content p {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.news-content a {
  color: var(--sky);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 0.9rem;
}

/* ── SUPPORT SECTION ── */
.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
  align-items: start;
}

@media (max-width: 680px) {
  .support-grid { grid-template-columns: 1fr; }
  .news-item { grid-template-columns: 1fr; }
  .news-date { text-align: left; border-right: none; border-bottom: 1px solid var(--gold); padding-right: 0; padding-bottom: 0.4rem; }
  .hero-content { padding: 1.5rem; }
}

.cta-box {
  background: var(--ink);
  color: var(--cream);
  padding: 2.5rem;
  border-radius: 2px;
}

.cta-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-box p {
  color: rgba(248,247,245,0.75);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.btn-primary {
  display: inline-block;
  background: #fff;
  color: var(--ink);
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--parchment);
  transform: translateY(-1px);
}

.btn-outline {
  display: inline-block;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
}

/* ── COUNTER ── */
.counter-box {
  border: 1px solid var(--border);
  padding: 2.5rem;
  text-align: center;
  background: var(--parchment);
}

.counter-number {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
}

.counter-label {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.thank-you-ticker {
  font-family: 'Source Serif 4', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--ink-light);
  margin-bottom: 1.25rem;
  min-height: 1.5em;
  cursor: pointer;
  transition: color 0.3s;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35em;
  text-align: left;
}

.thank-you-ticker:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ticker-prefix {
  flex-shrink: 0;
  white-space: nowrap;
}

.ticker-name {
  display: inline-block;
  transition: opacity 0.4s ease;
  text-align: left;
}

/* ── COMMENTS ── */
.comments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.comment-card {
  background: white;
  border-left: 2px solid var(--ink);
  padding: 1.5rem;
  box-shadow: 0 2px 12px var(--shadow);
}

.comment-text {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-light);
  margin-bottom: 0.75rem;
  line-height: 1.65;
}

.comment-author {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--muted);
  font-weight: 500;
}

/* ── TIMELINE ── */
.timeline {
  position: relative;
  padding-left: 2rem;
  margin-top: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding: 0 0 2.5rem 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--cream);
  box-shadow: 0 0 0 1px var(--ink);
}

.timeline-item.highlight::before {
  background: var(--ink);
  box-shadow: 0 0 0 1px var(--ink);
  width: 12px;
  height: 12px;
  left: -5.5px;
}

.timeline-year {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
  font-weight: 500;
}

.timeline-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.timeline-item p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

/* ── STATUS BADGE ── */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--parchment);
  border: 1px solid var(--border);
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  color: var(--ink-light);
  margin-bottom: 1.5rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #444;
  animation: pulse 2s infinite;
}

.status-dot.green {
  background: #333;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ── SECTION DIVIDER ── */
.section-divider {
  width: 100%;
  padding: 0.75rem 0;
}

.section-divider img {
  width: 100%;
  height: 44px;
  display: block;
}

/* ── ORNAMENT (drei_sterne replacement) ── */
.ornament {
  text-align: center;
  margin: 1.5rem 0;
  display: flex;
  justify-content: center;
}

.ornament img {
  height: 28px;
  width: auto;
  opacity: 0.85;
}

/* ── GALLERY GRID ── */
.photo-grid {
  columns: 2;
  column-gap: 1.25rem;
  margin-top: 2rem;
}

@media (max-width: 500px) {
  .photo-grid { columns: 1; }
}

.photo-item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.photo-placeholder {
  width: 100%;
  background: var(--parchment);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--parchment) 25%, var(--border) 50%, var(--parchment) 75%);
  background-size: 200% 200%;
  animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.photo-icon {
  position: relative;
  z-index: 1;
  color: var(--border);
  font-size: 2.5rem;
}

.photo-caption {
  background: white;
  padding: 0.6rem 0.75rem;
  font-size: 0.82rem;
  color: var(--muted);
  font-style: italic;
  border-top: 1px solid var(--ink);
  line-height: 1.4;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  color: var(--cream);
  padding: 2rem 2rem 1.5rem;
  margin-top: 4rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand .logo-star {
  height: 28px;
  width: auto;
  filter: invert(1);
  opacity: 0.8;
}

.footer-brand .logo-words {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 28px;
}

.footer-brand .logo-word {
  font-family: 'Playfair Display', serif;
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(248,247,245,0.7);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
}

.footer-contact {
  font-size: 0.83rem;
  color: rgba(248,247,245,0.55);
  line-height: 1.7;
}

.footer-contact a {
  color: rgba(248,247,245,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact a:hover { color: #fff; }

.footer-bottom {
  max-width: 1100px;
  margin: 1.25rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(248,247,245,0.3);
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom a {
  color: rgba(248,247,245,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom a:hover { color: #fff; }

/* ── MODAL ── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--cream);
  max-width: 500px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.modal-backdrop.open .modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
}

.modal h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.modal p {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.modal-fields {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.modal-fields input,
.modal-fields textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--border);
  background: white;
  font-family: 'Source Serif 4', serif;
  font-size: 0.92rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}

.modal-fields input:focus,
.modal-fields textarea:focus {
  border-color: var(--ink);
}

.modal-fields textarea {
  resize: vertical;
  min-height: 100px;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--ink);
  padding: 4rem 2rem 3rem;
  text-align: center;
  border-bottom: 1px solid #333;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: rgba(248,247,245,0.55);
  font-size: 0.95rem;
  font-style: italic;
  margin: 0;
}

/* ── LINKS LIST ── */
.links-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.link-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--ink);
  transition: padding-left 0.2s;
}

.link-item:hover {
  padding-left: 0.75rem;
  color: var(--ink);
}

.link-item:hover .link-arrow { color: var(--ink); }

.link-arrow {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.link-item-text strong {
  display: block;
  font-size: 1rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.link-item-text span {
  font-size: 0.83rem;
  color: var(--muted);
}

/* ── SUPPORTERS LIST ── */
.supporters-intro {
  font-style: italic;
  color: var(--muted);
  margin-bottom: 2rem;
}

.supporters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.supporter-entry {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.75rem;
  background: white;
  border-left: 2px solid var(--ink);
  font-size: 0.9rem;
  color: var(--ink-light);
}

.supporter-entry .s-icon {
  color: var(--muted);
  font-size: 0.55rem;
}

/* Decorative divider */
.ornament-text {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  margin: 1rem 0;
}

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeUp 0.6s ease both;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* ── INTRO / SPLASH SCREEN ── */
.intro-screen {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.9s ease;
}

.intro-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

.intro-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.intro-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.28);
  z-index: 1;
}

.intro-enter {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  cursor: pointer;
  animation: introFadeIn 1.8s ease both;
}

@keyframes introFadeIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

.intro-circle {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
  animation: introPulse 3s ease-in-out infinite;
}

@keyframes introPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.15); }
  50%       { box-shadow: 0 0 0 18px rgba(255,255,255,0); }
}

.intro-enter:hover .intro-circle {
  border-color: rgba(255,255,255,0.95);
  transform: scale(1.05);
}

.intro-circle img {
  width: 150px;
  height: auto;
  filter: invert(1);
  opacity: 0.9;
  transition: opacity 0.3s;
}

.intro-enter:hover .intro-circle img {
  opacity: 1;
}

.intro-label {
  display: none;
}

.intro-enter:hover .intro-label {
  color: rgba(255,255,255,0.95);
}

/* ── LANGUAGE SWITCHER ── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-right: 0.5rem;
}

.lang-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.5);
  font-family: 'Playfair Display', serif;
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.45rem;
  cursor: url("cursor_default.png") 2 28, pointer !important;
  transition: all 0.2s;
  line-height: 1.4;
}

.lang-btn:hover {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.5);
}

.lang-btn.lang-active {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
