/* ==========================================================
   The 661 Estate — Luxury Theme
   White + Champagne Gold, Animations, Responsive
   ========================================================== */

/* ── TOKENS ── */
:root {
  --gold:        #c9a84c;
  --gold-light:  #e2c47a;
  --gold-dark:   #9e7d2e;
  --gold-faint:  #f7f1e3;
  --white:       #ffffff;
  --off-white:   #fafaf8;
  --ink:         #1a1a1a;
  --ink-mid:     #4a4a4a;
  --ink-soft:    #7a7a7a;
  --border:      rgba(201, 168, 76, 0.25);

  --font:        'Montserrat', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', system-ui, -apple-system, sans-serif;

  --nav-h:       72px;
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-gold:   cubic-bezier(0.4, 0, 0.2, 1);

  --container:   1280px;
  --gap:         clamp(1.5rem, 4vw, 3rem);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--ink);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 4rem);
}

/* ── TYPOGRAPHY ── */
.h2 {
  font-family: var(--font);
  font-weight: 200;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.h3 {
  font-family: var(--font);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 200;
  color: var(--ink);
}

.lead {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--ink-mid);
  max-width: 64ch;
  line-height: 1.8;
}

.eyebrow {
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  border-radius: 2px;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.3s var(--ease-gold),
              color 0.3s var(--ease-gold),
              box-shadow 0.3s var(--ease-gold),
              transform 0.2s var(--ease-gold);
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
}
.btn--gold:hover {
  background: var(--gold-dark);
  box-shadow: 0 4px 24px rgba(201, 168, 76, 0.35);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn--ghost:hover {
  background: var(--gold-faint);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn--sm  { padding: 0.5rem 1.1rem; font-size: 0.72rem; }
.btn--lg  { padding: 0.9rem 2rem;   font-size: 0.85rem; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.nav.is-scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  height: var(--nav-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font);
  font-size: 1.15rem;
  font-weight: 200;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: 0.15em;
}

.brand__diamond {
  width: 12px;
  height: 12px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex: 1;
}

.nav__links a {
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mid);
  transition: color 0.2s;
}

.nav.is-scrolled .nav__links a { color: var(--ink-mid); }
.nav:not(.is-scrolled) .nav__links a { color: rgba(255,255,255,0.85); }
.nav__links a:hover { color: var(--gold); }
.nav__drawer:not(.is-open) { border-top-color: transparent; }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav:not(.is-scrolled) .nav__actions .btn--ghost {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.4);
}
.nav:not(.is-scrolled) .brand__text { color: var(--white); }
.nav:not(.is-scrolled) .brand__diamond { background: var(--gold-light); }

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav__drawer {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 0 clamp(1.25rem, 5vw, 4rem);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.4s;
}

.nav__drawer.is-open {
  max-height: 600px;
  padding: 1.5rem clamp(1.25rem, 5vw, 4rem);
}

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

.nav__drawer nav a {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mid);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.nav__drawer nav a:hover { color: var(--gold); }

.nav__drawer-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.25rem;
}

/* ── HERO ── */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

/* Slideshow */
.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s var(--ease-out);
  overflow: hidden;
}

.hero__slide.is-active { opacity: 1; }

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 8s linear;
}

.hero__slide.is-active img { transform: scale(1); }

/* Scrim */
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.90) 0%,
    rgba(0,0,0,0.60) 50%,
    rgba(0,0,0,0.50) 100%
  );
  z-index: 1;
}

/* Content */
.hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(3rem, 8vh, 6rem);
  padding-top: calc(var(--nav-h) + env(safe-area-inset-top));
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: var(--white);
  max-width: 900px;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.kicker__dot {
  width: 6px;
  height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero__title {
  font-family: var(--font);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 200;
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: var(--white);
}

.hero__sub {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  max-width: 58ch;
  line-height: 1.75;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.stat__value {
  font-family: var(--font);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 200;
  color: var(--gold-light);
  line-height: 1;
}

.stat__label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 0.3rem;
}

.stat__divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  max-width: 52ch;
  line-height: 1.6;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.25rem, 5vw, 4rem);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s;
}

.scroll-hint:hover { color: var(--gold-light); }

.scroll-hint__bar {
  display: block;
  width: 1px;
  height: 48px;
  background: currentColor;
  animation: scrollBar 2s var(--ease-out) infinite;
}

@keyframes scrollBar {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.scroll-hint__label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ── SECTIONS ── */
.section { padding-block: clamp(4rem, 8vw, 8rem); }
.section--light { background: var(--off-white); }

.section__head {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section__head .eyebrow { margin-bottom: 0.25rem; }

/* ── OVERVIEW GRID ── */
.overview__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
}

.overview__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.75rem 1.5rem;
  transition: box-shadow 0.3s var(--ease-gold), transform 0.3s var(--ease-gold);
}

.section--light .overview__card { background: var(--white); }

.overview__card:hover {
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.12);
  transform: translateY(-2px);
}

.overview__icon {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.overview__card h3 {
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}

.overview__value {
  font-family: var(--font);
  font-size: 1.5rem;
  font-weight: 200;
  color: var(--ink);
}

/* ── EXPERIENCE ── */
.experience__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
}

.experience__copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.experience__copy p {
  color: var(--ink-mid);
  line-height: 1.8;
}

.experience__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 2px;
}

/* ── LEVELS ── */
.levels__list {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 5rem);
}

.level {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: var(--gap);
  align-items: start;
}

.level--reverse {
  grid-template-areas: "label body image";
}

.level--reverse .level__image { order: -1; }
.level--reverse { grid-template-columns: 80px 1fr 1fr; }

.level__label {
  font-family: var(--font);
  font-size: 2.5rem;
  font-weight: 100;
  color: var(--gold);
  opacity: 0.5;
  padding-top: 0.2rem;
  line-height: 1;
}

.level__title {
  font-family: var(--font);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 200;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.level__desc {
  color: var(--ink-mid);
  line-height: 1.8;
  font-size: 0.95rem;
}

.level__image img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 2px;
}

.level__image--placeholder {
  aspect-ratio: 16/10;
  background: var(--gold-faint);
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.level__image-text {
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 200;
  color: var(--gold-dark);
  letter-spacing: 0.12em;
  text-align: center;
  padding: 1rem;
  text-transform: uppercase;
}

.level__image-note {
  font-size: 0.7rem;
  color: var(--ink-soft);
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* ── HIGHLIGHTS ── */
.highlights__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem 1.5rem;
  margin-bottom: 3rem;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.highlight:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.1);
}

.highlight__icon {
  font-size: 0.9rem;
  color: var(--gold);
  flex-shrink: 0;
}

.highlight__text {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--ink-mid);
}

.highlights__cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── GALLERY ── */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 4/3;
  background: var(--gold-faint);
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.gallery__item:hover img { transform: scale(1.06); }

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.gallery__item:hover .gallery__overlay { background: rgba(0,0,0,0.3); }

.gallery__zoom {
  font-size: 1.75rem;
  color: var(--white);
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.3s, transform 0.3s;
}

.gallery__item:hover .gallery__zoom {
  opacity: 1;
  transform: scale(1);
}

/* ── INVITATIONS ── */
.invitations__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.inv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem 1.75rem;
  transition: box-shadow 0.3s, transform 0.3s;
}

.inv-card:hover {
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.12);
  transform: translateY(-2px);
}

.inv-card__icon {
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.inv-card__title {
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 200;
  color: var(--ink);
  margin-bottom: 0.6rem;
}

.inv-card p {
  font-size: 0.9rem;
  color: var(--ink-mid);
  line-height: 1.7;
}

.invitations__cta {
  display: flex;
  justify-content: flex-start;
}

/* ── FOOTER ── */
.footer {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  padding-block: 2.5rem;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 200;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.footer__copy {
  font-size: 0.78rem;
  color: var(--ink-soft);
}

.footer__copy a {
  color: var(--gold);
  transition: color 0.2s;
}

.footer__copy a:hover { color: var(--gold-dark); }

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s var(--ease-out);
}

.lightbox.is-open {
  pointer-events: all;
  opacity: 1;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lightbox__frame {
  position: relative;
  z-index: 1;
  max-width: min(92vw, 1200px);
  max-height: 90svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transform: scale(0.95) translateY(8px);
  transition: transform 0.35s var(--ease-out);
}

.lightbox.is-open .lightbox__frame {
  transform: scale(1) translateY(0);
}

.lightbox__img {
  max-width: 100%;
  max-height: 82svh;
  object-fit: contain;
  border-radius: 2px;
}

.lightbox__cap {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
  text-align: center;
}

.lightbox__close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  font-size: 1.75rem;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transition: background 0.2s;
}

.lightbox__close:hover { background: rgba(255,255,255,0.18); }

/* ── REVEAL ANIMATIONS ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out),
              transform 0.75s var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children in grids */
.overview__grid .overview__card[data-reveal]:nth-child(2) { transition-delay: 0.07s; }
.overview__grid .overview__card[data-reveal]:nth-child(3) { transition-delay: 0.14s; }
.overview__grid .overview__card[data-reveal]:nth-child(4) { transition-delay: 0.21s; }
.overview__grid .overview__card[data-reveal]:nth-child(5) { transition-delay: 0.28s; }
.overview__grid .overview__card[data-reveal]:nth-child(6) { transition-delay: 0.35s; }

.highlights__grid .highlight[data-reveal]:nth-child(2)  { transition-delay: 0.04s; }
.highlights__grid .highlight[data-reveal]:nth-child(3)  { transition-delay: 0.08s; }
.highlights__grid .highlight[data-reveal]:nth-child(4)  { transition-delay: 0.12s; }
.highlights__grid .highlight[data-reveal]:nth-child(5)  { transition-delay: 0.16s; }
.highlights__grid .highlight[data-reveal]:nth-child(6)  { transition-delay: 0.20s; }
.highlights__grid .highlight[data-reveal]:nth-child(7)  { transition-delay: 0.24s; }
.highlights__grid .highlight[data-reveal]:nth-child(8)  { transition-delay: 0.28s; }
.highlights__grid .highlight[data-reveal]:nth-child(9)  { transition-delay: 0.32s; }
.highlights__grid .highlight[data-reveal]:nth-child(10) { transition-delay: 0.36s; }
.highlights__grid .highlight[data-reveal]:nth-child(11) { transition-delay: 0.40s; }
.highlights__grid .highlight[data-reveal]:nth-child(12) { transition-delay: 0.44s; }

.gallery__grid .gallery__item[data-reveal]:nth-child(2) { transition-delay: 0.08s; }
.gallery__grid .gallery__item[data-reveal]:nth-child(3) { transition-delay: 0.16s; }
.gallery__grid .gallery__item[data-reveal]:nth-child(4) { transition-delay: 0.04s; }
.gallery__grid .gallery__item[data-reveal]:nth-child(5) { transition-delay: 0.12s; }
.gallery__grid .gallery__item[data-reveal]:nth-child(6) { transition-delay: 0.20s; }

.invitations__grid .inv-card[data-reveal]:nth-child(2) { transition-delay: 0.1s; }
.invitations__grid .inv-card[data-reveal]:nth-child(3) { transition-delay: 0.2s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .nav__drawer { display: flex; }

  .experience__grid { grid-template-columns: 1fr; }

  .level {
    grid-template-columns: 64px 1fr;
    grid-template-rows: auto auto;
  }

  .level__image { grid-column: 1 / -1; }
  .level--reverse .level__image { order: 0; }
}

@media (max-width: 768px) {
  .nav__actions { display: none; }

  .gallery__grid { grid-template-columns: repeat(2, 1fr); }

  .overview__grid { grid-template-columns: repeat(2, 1fr); }

  .hero__stats { gap: 1.5rem; }
  .stat__divider { display: none; }
}

@media (max-width: 480px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .overview__grid { grid-template-columns: 1fr; }

  .highlights__grid { grid-template-columns: 1fr; }

  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .footer__inner { flex-direction: column; align-items: flex-start; }
}

/* ── PRINT ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
/* ── LANGUAGE TOGGLE ── */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.6rem;
  padding: 0.3rem 0.55rem;
  font-family: var(--font);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border: 1px solid var(--border);
  border-radius: 2px;
  cursor: pointer;
  background: transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.lang-toggle:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* Light-on-dark variant (landing page, invite page) */
.lang-toggle--light {
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.25);
}
.lang-toggle--light:hover {
  color: var(--gold-light);
  border-color: var(--gold-light);
}
