/* ============================================================
   THE SKY · ADULTS ONLY — style.css
   PRE-OPENING 2027 build · lead-gen / waitlist / SEO / trust
   Mediterranean editorial · WCAG-AA palette
   Architecture is booking-ready: a 2027 switch is config-only.
   ============================================================ */

/* ----------------------------------------------------------
   1. DESIGN TOKENS
   ---------------------------------------------------------- */
:root {
  /* -- Colour (contrast-checked against WCAG AA) -- */
  --sand:        #ECE4D5;
  --cream:       #F7F2E8;
  --ink:         #28241F;   /* 12:1 on sand — body text */
  --stone:       #6B6356;   /* 4.69:1 on sand — secondary text (was failing) */
  --stone-dark:  #655D50;   /* for cream surfaces */
  --line:        #D8CEBC;
  --sea:         #1C474B;
  --sea-deep:    #143438;
  --clay:        #B0512F;   /* ACTION colour — white text 5.17:1 */
  --clay-dark:   #8F3F22;
  --clay-ink:    #9E4527;   /* clay for SMALL text on light — 4.99:1 */
  --on-dark-accent: #E7B49B;
  --white:       #FFFFFF;

  /* -- Typography (self-hosted, with robust fallback stacks) -- */
  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --font-body:    "Hanken Grotesk", "Segoe UI", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* -- Layout -- */
  --maxw: 1280px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --radius: 4px;
  --header-h: 76px;
  --bar-h: 60px;

  /* -- Motion -- */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.6s;
}

/* ----------------------------------------------------------
   2. RESET & BASE
   ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + var(--bar-h) + 8px); }
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
.media { background: var(--line); overflow: hidden; }
.media img { width: 100%; height: 100%; object-fit: cover; }

/* ----------------------------------------------------------
   3. TYPOGRAPHY
   ---------------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.08; letter-spacing: -0.01em; font-optical-sizing: auto; }
.h-xl { font-size: clamp(2.6rem, 7vw, 5.2rem); }
.h-lg { font-size: clamp(2rem, 5vw, 3.4rem); }
.h-md { font-size: clamp(1.5rem, 3vw, 2.2rem); }
.eyebrow { font-family: var(--font-body); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--clay-ink); }
.eyebrow.on-dark { color: var(--on-dark-accent); }
.lead { font-size: clamp(1.05rem, 2vw, 1.3rem); line-height: 1.6; color: var(--stone); max-width: 56ch; }
.serif-italic { font-family: var(--font-display); font-style: italic; }
.muted { color: var(--stone); }
.prose p { color: var(--stone); max-width: 70ch; }
.prose p + p { margin-top: 1rem; }
.prose h2 { font-size: 1.6rem; margin-top: 2.5rem; }
.prose h3 { font-size: 1.2rem; font-family: var(--font-body); font-weight: 700; margin-top: 1.75rem; }
.prose a { color: var(--clay-ink); text-decoration: underline; }
.prose ul { list-style: disc; padding-left: 1.25rem; color: var(--stone); max-width: 70ch; }
.prose ul li { margin-top: 0.4rem; }

/* ----------------------------------------------------------
   4. LAYOUT HELPERS
   ---------------------------------------------------------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width: 820px; margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--sea { background: var(--sea); color: var(--cream); }
.section--sea h1, .section--sea h2, .section--sea h3 { color: var(--cream); }
.section--cream { background: var(--cream); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.stack > * + * { margin-top: 1rem; }
.grid { display: grid; gap: clamp(1.25rem, 3vw, 2.5rem); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.mt-sm { margin-top: 1rem; } .mt-md { margin-top: 1.75rem; } .mt-lg { margin-top: 2.5rem; }

/* ----------------------------------------------------------
   5. BUTTONS  (single action colour = WAITLIST in pre-opening)
   ---------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  background: var(--clay); color: var(--white);
  font-weight: 600; font-size: 0.98rem; letter-spacing: 0.01em;
  padding: 0.95rem 1.85rem; border-radius: var(--radius);
  transition: background var(--dur) var(--ease), transform 0.2s var(--ease);
  white-space: nowrap;
}
.btn:hover { background: var(--clay-dark); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-weight: 600; font-size: 0.95rem; letter-spacing: 0.04em; text-transform: uppercase;
  padding-bottom: 4px; border-bottom: 1.5px solid currentColor;
  transition: opacity 0.3s var(--ease), gap 0.3s var(--ease);
}
.btn-ghost:hover { opacity: 0.7; gap: 0.95rem; }
.btn-ghost .arrow { transition: transform 0.3s var(--ease); }
.btn-ghost:hover .arrow { transform: translateX(4px); }

/* ----------------------------------------------------------
   6. SITE HEADER
   ---------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100; height: var(--header-h);
  background: var(--sand);                              /* solid fallback first */
  background: color-mix(in srgb, var(--sand) 90%, transparent);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease);
}
.site-header.is-scrolled { border-color: var(--line); }
.header-inner { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { font-family: var(--font-display); font-size: 1.35rem; letter-spacing: 0.04em; line-height: 1; font-weight: 500; }
.brand span { display: block; font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 0.4em; text-transform: uppercase; color: var(--stone); margin-top: 4px; }
.main-nav { display: flex; align-items: center; gap: 2rem; }
.main-nav a { font-size: 0.9rem; font-weight: 500; position: relative; padding-block: 4px; }
.main-nav a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px; background: var(--clay); transition: width 0.3s var(--ease); }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { width: 100%; }
.nav-toggle { display: none; }

/* ----------------------------------------------------------
   7. THE BAR  (persistent) — two modes, toggled by body[data-mode]
   PRE-OPENING: inline waitlist capture.  LIVE (2027): booking form.
   ---------------------------------------------------------- */
.bar { position: sticky; top: var(--header-h); z-index: 90; background: var(--sea); color: var(--cream); }
.bar__inner { max-width: var(--maxw); margin-inline: auto; padding: 0.6rem var(--gutter); display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.bar__label { font-family: var(--font-display); font-style: italic; font-size: 1.05rem; margin-right: auto; }
.bar__inline { display: flex; gap: 0.6rem; align-items: center; }
.bar__inline input[type="email"] {
  background: var(--sea-deep); color: var(--cream);
  border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius);
  padding: 0.6rem 0.8rem; font-size: 0.92rem; min-width: 220px; font-family: var(--font-body);
}
.bar__inline input::placeholder { color: rgba(247,242,232,0.55); }

/* Booking-mode fields (hidden in pre-opening; shown when data-mode=live) */
.bf-field { display: flex; flex-direction: column; gap: 2px; }
.bf-field label { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: #9CC0BF; }
.bf-field input, .bf-field select {
  background: var(--sea-deep); color: var(--cream); border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius); padding: 0.5rem 0.65rem; font-size: 0.9rem; color-scheme: dark; min-width: 130px;
}
/* Mode visibility (JS sets data-mode on <body>) */
[data-mode="preopening"] .bar--booking { display: none; }
[data-mode="demo"] .bar--booking { display: none; }
[data-mode="live"] .bar--waitlist { display: none; }

/* Focus states */
input:focus, select:focus, textarea:focus { outline: 2px solid var(--clay); outline-offset: 1px; }

/* ----------------------------------------------------------
   8. HERO
   ---------------------------------------------------------- */
.hero { position: relative; min-height: min(86svh, 760px); display: flex; align-items: flex-end; color: var(--cream); overflow: hidden; background: var(--sea-deep); }
.hero .media { position: absolute; inset: 0; z-index: 0; }
.hero .media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,52,56,0.15) 0%, rgba(20,52,56,0.28) 45%, rgba(20,52,56,0.8) 100%); }
.hero__content { position: relative; z-index: 1; width: 100%; max-width: var(--maxw); margin-inline: auto; padding: var(--gutter); padding-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.hero__content h1 { max-width: 16ch; margin-block: 0.8rem 1.2rem; }
.hero__content p { max-width: 46ch; color: rgba(247,242,232,0.9); font-size: clamp(1.05rem,2vw,1.3rem); }
.hero__cta { margin-top: 1.8rem; display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.subhero { position: relative; min-height: 50svh; display: flex; align-items: flex-end; color: var(--cream); background: var(--sea-deep); overflow: hidden; }
.subhero .media { position: absolute; inset: 0; z-index: 0; }
.subhero .media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,52,56,0.2), rgba(20,52,56,0.74)); }
.subhero__content { position: relative; z-index: 1; width: 100%; max-width: var(--maxw); margin-inline: auto; padding: var(--gutter); padding-bottom: clamp(2rem,5vw,3.5rem); }

/* ----------------------------------------------------------
   9. POSITIONING STRIP
   ---------------------------------------------------------- */
.positioning { text-align: center; }
.positioning .h-md { max-width: 24ch; margin-inline: auto; }
.notlist { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.6rem 0.5rem; margin-top: 2rem; }
.notlist li { font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--stone); border: 1px solid var(--line); border-radius: 50px; padding: 0.45rem 1.1rem; }

/* ----------------------------------------------------------
   10. SPLIT BLOCKS
   ---------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: clamp(1.5rem, 5vw, 4.5rem); }
.split .media { aspect-ratio: 4 / 5; border-radius: var(--radius); }
.split--reverse .split__text { order: 2; }
.split__text { max-width: 46ch; }

/* ----------------------------------------------------------
   11. CARDS
   ---------------------------------------------------------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 3vw, 2.25rem); }
.card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease); }
.card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -28px rgba(40,36,31,0.4); }
.card .media { aspect-ratio: 3 / 2; }
.card__body { padding: 1.5rem 1.5rem 1.75rem; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { font-size: 1.5rem; }
.card__meta { font-size: 0.82rem; letter-spacing: 0.04em; color: var(--stone); margin-top: 0.4rem; text-transform: uppercase; }
.card__desc { margin-top: 0.85rem; color: var(--stone); font-size: 0.97rem; }
.card__foot { margin-top: auto; padding-top: 1.4rem; display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.price { font-family: var(--font-display); }
.price b { font-size: 1.4rem; font-weight: 500; }
.price small { display: block; font-family: var(--font-body); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone); }

/* ----------------------------------------------------------
   12. PERKS (founder benefits)
   ---------------------------------------------------------- */
.perks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.perk { padding: 1.5rem; border: 1px solid rgba(255,255,255,0.18); border-radius: var(--radius); }
.perk .num { font-family: var(--font-display); font-style: italic; font-size: 1.4rem; color: var(--on-dark-accent); }
.perk h3 { font-size: 1.15rem; margin-top: 0.6rem; }
.perk p { font-size: 0.92rem; color: rgba(247,242,232,0.82); margin-top: 0.4rem; }

/* ----------------------------------------------------------
   13. GALLERY
   ---------------------------------------------------------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 1fr; gap: 0.75rem; }
.gallery .media { border-radius: var(--radius); aspect-ratio: 1; }
.gallery .media.tall { grid-row: span 2; aspect-ratio: 1 / 2; }
.gallery .media.wide { grid-column: span 2; aspect-ratio: 2 / 1; }

/* ----------------------------------------------------------
   14. FACTS
   ---------------------------------------------------------- */
.facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.fact { background: var(--sand); padding: 2rem 1.5rem; text-align: center; }
.fact b { display: block; font-family: var(--font-display); font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1; }
.fact span { display: block; margin-top: 0.6rem; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone); }

/* ----------------------------------------------------------
   15. FAQ (accessible accordion)
   ---------------------------------------------------------- */
.faq { max-width: 760px; margin-inline: auto; }
.faq__item { border-top: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__q { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.4rem 0; font-family: var(--font-display); font-size: 1.25rem; }
.faq__q .icon { flex: none; width: 22px; height: 22px; position: relative; }
.faq__q .icon::before, .faq__q .icon::after { content: ""; position: absolute; background: var(--clay-ink); transition: transform 0.35s var(--ease); }
.faq__q .icon::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.faq__q .icon::after  { left: 50%; top: 0; width: 2px; height: 100%; transform: translateX(-50%); }
.faq__item.open .icon::after { transform: translateX(-50%) scaleY(0); }
.faq__a { overflow: hidden; max-height: 0; transition: max-height 0.4s var(--ease); }
.faq__a p { padding-bottom: 1.4rem; color: var(--stone); max-width: 64ch; }
.faq__a[hidden] { display: block; }   /* JS uses max-height; keep panel measurable */

/* ----------------------------------------------------------
   16. WAITLIST SECTION + FORM
   ---------------------------------------------------------- */
.waitlist { text-align: center; }
.waitlist .h-lg { max-width: 20ch; margin-inline: auto; }
.wl-form { display: flex; gap: 0.75rem; max-width: 540px; margin: 2rem auto 0; flex-wrap: wrap; justify-content: center; }
.wl-form input[type="email"] { flex: 1; min-width: 240px; padding: 0.95rem 1.1rem; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.28); background: rgba(255,255,255,0.07); color: var(--cream); font-size: 1rem; }
.wl-form input::placeholder { color: rgba(247,242,232,0.55); }
.form-note { font-size: 0.85rem; color: var(--stone); margin-top: 0.6rem; }
.form-status { margin-top: 1rem; font-weight: 600; }
/* Honeypot — hidden from humans, catches bots */
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ----------------------------------------------------------
   17. WAITLIST MODAL  (opened by every CTA in pre-opening)
   ---------------------------------------------------------- */
.modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 1.25rem; }
.modal[open], .modal.open { display: flex; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(20,52,56,0.72); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); }
.modal__panel { position: relative; z-index: 1; width: 100%; max-width: 480px; background: var(--cream); border-radius: 8px; padding: clamp(1.75rem, 4vw, 2.5rem); box-shadow: 0 40px 80px -30px rgba(0,0,0,0.5); animation: pop 0.35s var(--ease); }
@keyframes pop { from { opacity: 0; transform: translateY(16px) scale(0.98); } to { opacity: 1; transform: none; } }
.modal__close { position: absolute; top: 0.85rem; right: 0.85rem; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; font-size: 1.4rem; color: var(--stone); }
.modal__close:hover { background: var(--sand); }
.modal h2 { font-size: 1.9rem; }
.modal .eyebrow { display: block; margin-bottom: 0.5rem; }
.modal p { color: var(--stone); margin-top: 0.6rem; }
.modal form { margin-top: 1.4rem; }
.modal .input-group { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; }
.modal label { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--stone); }
.modal input, .modal select { font-family: var(--font-body); font-size: 1rem; padding: 0.8rem 0.95rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); color: var(--ink); }
.modal .btn { width: 100%; }

/* ----------------------------------------------------------
   18. CONTACT / FORM
   ---------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.info-block + .info-block { margin-top: 1.75rem; padding-top: 1.75rem; border-top: 1px solid var(--line); }
.info-block h3 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 700; letter-spacing: 0.04em; }
.info-block p { color: var(--stone); margin-top: 0.35rem; }
.info-block a:hover { color: var(--clay-ink); }
form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.input-group { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1.1rem; }
.input-group label { font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--stone); }
.input-group input, .input-group textarea, .input-group select { font-family: var(--font-body); font-size: 1rem; padding: 0.85rem 1rem; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); color: var(--ink); }
.input-group textarea { resize: vertical; min-height: 130px; }
.map-embed { aspect-ratio: 16 / 10; border-radius: var(--radius); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--stone); background: var(--cream); text-align: center; padding: 2rem; }

/* ----------------------------------------------------------
   19. FOOTER
   ---------------------------------------------------------- */
.site-footer { background: var(--sea-deep); color: var(--cream); padding-block: clamp(3rem, 6vw, 5rem); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-brand .brand span { color: rgba(247,242,232,0.65); }
.footer-brand p { color: rgba(247,242,232,0.78); margin-top: 1rem; max-width: 32ch; font-size: 0.95rem; }
.footer-col h4 { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: #9CC0BF; margin-bottom: 1rem; }
.footer-col a, .footer-col p { display: block; color: rgba(247,242,232,0.82); font-size: 0.95rem; padding-block: 0.4rem; }  /* >=44px touch rows */
.footer-col a:hover { color: var(--white); }
.footer-bottom { margin-top: 3rem; padding-top: 1.75rem; border-top: 1px solid rgba(255,255,255,0.12); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.85rem; color: rgba(247,242,232,0.7); }
.footer-bottom a { padding: 0.3rem 0; }
.footer-bottom a:hover { color: var(--white); }

/* ----------------------------------------------------------
   20. REVEAL + UTILITIES
   ---------------------------------------------------------- */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.js .reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
}

.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: 1rem; top: -60px; z-index: 250; background: var(--clay); color: #fff; padding: 0.6rem 1rem; border-radius: var(--radius); transition: top 0.2s; }
.skip-link:focus { top: 1rem; }
:focus-visible { outline: 2px solid var(--clay); outline-offset: 2px; }

/* ============================================================
   LANGUAGE SWITCHER (added for trilingual /en /de /es)
   Sits in the header between nav and the mobile toggle.
   ============================================================ */
.lang-switch{display:flex;align-items:center;gap:.15rem;margin-left:1rem}
.lang-switch a{
  font-size:.72rem;font-weight:600;letter-spacing:.1em;
  padding:.4rem .45rem;color:var(--stone);line-height:1;border-radius:6px;
  transition:color .2s ease,background .2s ease;
}
.lang-switch a:hover{color:var(--clay-ink)}
.lang-switch a.active{color:var(--ink);background:rgba(40,36,31,.06)}
/* On the dark/transparent hero header the links need to stay legible */
.site-header:not(.is-scrolled) .lang-switch a{color:rgba(247,242,232,.82)}
.site-header:not(.is-scrolled) .lang-switch a.active{color:#fff;background:rgba(247,242,232,.16)}
@media (max-width:860px){
  .lang-switch{margin-left:auto;margin-right:.5rem}
  .lang-switch a{padding:.35rem .35rem}
}

/* Footer social links (injected by main.js from config.js when URLs are set) */
.footer-social{display:flex;flex-wrap:wrap;gap:1rem;margin-top:1.1rem}
.footer-social a{font-size:.85rem;font-weight:600;color:rgba(247,242,232,.78)}
.footer-social a:hover{color:#fff}
