/* ═══════════════════════════════════════════════
   HANDS SECRETS — main.css
   ═══════════════════════════════════════════════ */

/* ─── Base ─── */
html {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-body);
  font-weight: 300;
}

::selection {
  background: var(--c-gold);
  color: var(--c-bg);
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--c-bg); }
::-webkit-scrollbar-thumb { background: var(--c-gold); border-radius: 2px; }

:focus-visible {
  outline: 1.5px solid var(--c-gold);
  outline-offset: 3px;
}

/* ─── Container ─── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
}

/* ─── Typography helpers ─── */
.section-label {
  display: block;
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.85rem;
}

.section-title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1.08;
  color: var(--c-cream);
  letter-spacing: -0.01em;
}

.section-title.light {
  color: var(--c-cream);
}

.section-subtitle {
  margin-top: 1.2rem;
  font-size: 0.92rem;
  color: var(--c-cream-m);
  max-width: 42ch;
  line-height: 1.7;
}

.section-subtitle.light {
  color: rgba(240, 232, 216, 0.65);
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}

.section-header .section-subtitle {
  margin-inline: auto;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.85em 2.2em;
  border-radius: var(--radius);
  transition: background var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease),
              transform var(--dur-fast) var(--ease);
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--c-gold);
  color: var(--c-bg);
  border: 1px solid var(--c-gold);
}

.btn-primary:hover {
  background: var(--c-gold-l);
  border-color: var(--c-gold-l);
}

.btn-outline {
  background: transparent;
  color: var(--c-cream);
  border: 1px solid var(--c-gold-bdr);
}

.btn-outline:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}

.btn-gold {
  background: transparent;
  color: var(--c-gold);
  border: 1px solid var(--c-gold);
}

.btn-gold:hover {
  background: var(--c-gold);
  color: var(--c-bg);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: 1px solid #25D366;
  gap: 0.6em;
}

.btn-whatsapp svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
  flex-shrink: 0;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
}

/* ─── Reveal animations ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease),
              transform var(--dur-slow) var(--ease);
}

.reveal.in-view { opacity: 1; transform: translateY(0); }

.reveal-delay   { transition-delay: 0.15s; }
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ═══════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
  transition: background var(--dur-mid) var(--ease),
              backdrop-filter var(--dur-mid) var(--ease),
              box-shadow var(--dur-mid) var(--ease);
}

.nav.scrolled {
  background: rgba(12, 10, 7, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--c-gold-bdr);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.nav-logo-img {
  width: 130px;
  height: auto;
  object-fit: contain;
}

.nav-brand {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.8rem);
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-cream-m);
  transition: color var(--dur-fast) var(--ease);
}

.nav-links a:hover { color: var(--c-cream); }

.nav-links .nav-cta {
  color: var(--c-gold);
  border: 1px solid var(--c-gold-bdr);
  padding: 0.45em 1.2em;
  border-radius: var(--radius);
  transition: background var(--dur-fast) var(--ease),
              color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease);
}

.nav-links .nav-cta:hover {
  background: var(--c-gold);
  color: var(--c-bg);
  border-color: var(--c-gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  padding: 2px;
}

.nav-toggle span {
  display: block;
  height: 1px;
  background: var(--c-cream);
  transition: transform var(--dur-mid) var(--ease),
              opacity var(--dur-fast) var(--ease),
              width var(--dur-fast) var(--ease);
}

.nav-toggle span:nth-child(2) { width: 70%; }

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu overlay */
.nav-mobile {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(10, 8, 5, 0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-mid) var(--ease);
}

.nav-mobile.open {
  opacity: 1;
  pointer-events: all;
}

.nav-mobile a {
  font-family: var(--f-display);
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--c-cream);
  letter-spacing: 0.05em;
  transition: color var(--dur-fast) var(--ease);
}

.nav-mobile a:hover { color: var(--c-gold); }

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: -10%;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10, 8, 5, 0.55) 0%,
    rgba(10, 8, 5, 0.40) 40%,
    rgba(10, 8, 5, 0.72) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  padding: var(--nav-h) 1.5rem 3rem;
  max-width: 820px;
}

.hero-logo-wrap {
  display: inline-block;
}

.hero-logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.5));
}

.hero-title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.04;
  color: var(--c-cream);
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  color: var(--c-gold-l);
}

.hero-subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(200, 192, 176, 0.75);
  font-weight: 300;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero-scroll-line {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--c-gold));
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero-scroll-text {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-text-m);
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* ═══════════════════════════════════════════════
   MANIFESTO
   ═══════════════════════════════════════════════ */
.manifesto {
  background: var(--c-bg-2);
  padding-block: clamp(4rem, 10vw, 9rem);
  border-top: 1px solid var(--c-gold-bdr);
}

.manifesto-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.manifesto-text {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.manifesto-quote {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  line-height: 1.32;
  color: var(--c-cream);
  position: relative;
  padding-left: 1.4rem;
  border-left: 2px solid var(--c-gold);
}

.manifesto-body {
  font-size: 0.9rem;
  color: var(--c-text);
  line-height: 1.80;
  max-width: 48ch;
}

.manifesto-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius);
}

.manifesto-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s var(--ease);
}

.manifesto-image:hover img { transform: scale(1.03); }

/* ═══════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════ */
.services {
  background: var(--c-bg);
  padding-block: clamp(4rem, 10vw, 9rem);
  border-top: 1px solid var(--c-gold-bdr);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: clamp(1.8rem, 4vw, 3rem);
  border: 1px solid var(--c-gold-bdr);
  margin: -1px 0 0 -1px;
  transition: background var(--dur-mid) var(--ease);
  cursor: default;
}

.service-item:hover {
  background: var(--c-gold-dim);
}

.service-number {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--c-gold-bdr);
  letter-spacing: -0.02em;
}

.service-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.service-name {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--c-cream);
  line-height: 1.15;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--c-text);
  line-height: 1.75;
  max-width: 44ch;
}

.service-duration {
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
  padding: 0.3em 0.8em;
  border: 1px solid var(--c-gold-bdr);
  border-radius: var(--radius);
  width: fit-content;
  margin-top: 0.3rem;
}

.service-cta {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold);
  transition: letter-spacing var(--dur-fast) var(--ease);
  margin-top: auto;
  width: fit-content;
}

.service-cta:hover { letter-spacing: 0.20em; }

/* ═══════════════════════════════════════════════
   THERAPISTS
   ═══════════════════════════════════════════════ */
.therapists {
  background: var(--c-bg-2);
  padding-top: clamp(4rem, 8vw, 7rem);
  border-top: 1px solid var(--c-gold-bdr);
}

.section-header-standalone {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.therapists-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 88vh;
}

.therapist-panel {
  position: relative;
  overflow: hidden;
  min-height: 60vh;
}

.therapist-images {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.therapist-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0;
  transition: opacity 1.2s ease, transform 0.7s var(--ease);
  will-change: opacity, transform;
}

.therapist-slide.active { opacity: 1; }

.therapist-panel:hover .therapist-slide {
  transform: scale(1.04);
}

.therapist-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(8, 6, 3, 0.92) 0%,
    rgba(8, 6, 3, 0.45) 45%,
    rgba(8, 6, 3, 0.18) 100%
  );
}

.therapist-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.therapist-name {
  font-family: var(--f-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: 1;
  color: var(--c-cream);
  letter-spacing: -0.01em;
}

.therapist-desc {
  font-size: 0.85rem;
  color: rgba(200, 192, 176, 0.80);
  line-height: 1.70;
  max-width: 40ch;
}

/* ═══════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════ */
.gallery {
  background: var(--c-bg);
  padding-block: clamp(4rem, 10vw, 9rem);
  border-top: 1px solid var(--c-gold-bdr);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  min-height: 580px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--c-surface);
}

.gallery-item--large {
  grid-row: 1 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), filter 0.4s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.85);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: border-color var(--dur-mid) var(--ease);
}

.gallery-item:hover::after {
  border-color: var(--c-gold-bdr);
}

/* ═══════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 4, 3, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox[hidden] { display: none; }

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  color: var(--c-cream-m);
  font-size: 1.2rem;
  padding: 0.8rem;
  background: rgba(20, 16, 10, 0.7);
  border-radius: var(--radius);
  transition: color var(--dur-fast), background var(--dur-fast);
  line-height: 1;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--c-cream);
  background: rgba(30, 24, 16, 0.9);
}

.lightbox-close { top: 1.2rem; right: 1.2rem; font-size: 1rem; }
.lightbox-prev  { left:  1rem; top: 50%; transform: translateY(-50%); font-size: 1.4rem; }
.lightbox-next  { right: 1rem; top: 50%; transform: translateY(-50%); font-size: 1.4rem; }

/* ═══════════════════════════════════════════════
   LOCATION
   ═══════════════════════════════════════════════ */
.location {
  background: var(--c-bg-2);
  padding-block: clamp(4rem, 10vw, 9rem);
  border-top: 1px solid var(--c-gold-bdr);
}

.location-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.location-address {
  font-family: var(--f-display);
  font-style: normal;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.7;
  color: var(--c-text);
  border-left: 2px solid var(--c-gold);
  padding-left: 1.2rem;
}

.location-map {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--c-gold-bdr);
  filter: grayscale(30%) contrast(1.05);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ═══════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════ */
.contact {
  background: var(--c-surface);
  padding-block: clamp(4rem, 10vw, 9rem);
  border-top: 1px solid var(--c-gold-bdr);
}

.contact-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1rem, 3vw, 2rem);
  width: 100%;
  max-width: 720px;
}

.contact-card {
  background: var(--c-surface-l);
  border: 1px solid var(--c-gold-bdr);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--dur-mid) var(--ease),
              transform var(--dur-mid) var(--ease);
}

.contact-card:hover {
  border-color: var(--c-gold);
  transform: translateY(-4px);
}

.contact-card-img {
  height: 240px;
  overflow: hidden;
}

.contact-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s var(--ease);
}

.contact-card:hover .contact-card-img img {
  transform: scale(1.05);
}

.contact-card-info {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
  text-align: center;
}

.contact-card-info h3 {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--c-cream);
}

.contact-card-info p {
  font-size: 0.78rem;
  color: var(--c-text-m);
  letter-spacing: 0.08em;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 2.5rem);
  justify-content: center;
  padding-top: 1rem;
  border-top: 1px solid var(--c-gold-bdr);
  width: 100%;
  max-width: 720px;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  text-align: center;
}

.contact-info-label {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
}

.contact-info-value {
  font-size: 0.85rem;
  color: var(--c-text);
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
  background: var(--c-bg);
  border-top: 1px solid var(--c-gold-bdr);
  padding-block: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 4vw, 2.5rem);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}

.footer-logo-wrap {
  display: inline-block;
}

.footer-logo-wrap img {
  height: 55px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
}

.footer-brand-name {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  color: var(--c-text-m);
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: center;
}

.footer-nav a {
  font-size: 0.70rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-text-m);
  transition: color var(--dur-fast) var(--ease);
}

.footer-nav a:hover { color: var(--c-gold); }

.footer-address {
  font-size: 0.78rem;
  color: var(--c-text-m);
  letter-spacing: 0.05em;
  line-height: 1.6;
}

.footer-bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(196, 154, 82, 0.08);
}

.footer-copy {
  font-size: 0.68rem;
  letter-spacing: 0.10em;
  color: var(--c-text-m);
  opacity: 0.6;
}

.footer-social {
  display: flex;
  gap: 1.2rem;
}

.footer-social a {
  color: var(--c-text-m);
  transition: color var(--dur-fast) var(--ease);
  display: flex;
  align-items: center;
}

.footer-social a:hover { color: var(--c-gold); }

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* ═══════════════════════════════════════════════
   LANGUAGE SWITCHER
   ═══════════════════════════════════════════════ */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.lang-btn {
  font-family: var(--f-body);
  font-size: 0.64rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-text-m);
  padding: 0.3em 0.45em;
  border-radius: var(--radius);
  line-height: 1;
  transition: color var(--dur-fast) var(--ease),
              box-shadow var(--dur-fast) var(--ease);
}

.lang-btn:hover { color: var(--c-cream); }

.lang-btn.active,
.lang-btn[aria-pressed="true"] {
  color: var(--c-gold);
  box-shadow: 0 1px 0 var(--c-gold);
}

.lang-sep {
  color: var(--c-text-m);
  font-size: 0.52rem;
  opacity: 0.35;
  pointer-events: none;
  line-height: 1;
  user-select: none;
}

/* Mobile lang switcher — shown inside the overlay menu */
.lang-switch-mobile {
  margin-top: 2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--c-gold-bdr);
  gap: 0.6rem;
}

.lang-switch-mobile .lang-btn {
  font-size: 0.82rem;
  letter-spacing: 0.20em;
  padding: 0.45em 0.9em;
  color: var(--c-cream-m);
}

.lang-switch-mobile .lang-btn.active,
.lang-switch-mobile .lang-btn[aria-pressed="true"] {
  color: var(--c-gold);
  box-shadow: 0 1px 0 var(--c-gold);
}

.lang-switch-mobile .lang-sep {
  font-size: 0.65rem;
}

