/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --white: #FFFFFF;
  --ivory: #F9F6F1;
  --cream: #EDE7DC;
  --cream-mid: #D8CFBF;
  --cream-dark: #C0B49E;
  --warm-gray: #5C5448;
  --dark: #100E0A;
  --dark-mid: #221E17;
  --dark-soft: #2C271E;
  --gold: #A67C2E;
  --gold-lt: #C89A4A;
  --gold-pale: #DFC488;
  --gold-shine: #EDD9A8;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  background: var(--ivory);
  color: var(--dark);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.8;
  overflow-x: hidden;
  cursor: none;
}

/* Lock scroll when mobile nav is open */
html.nav-open,
html.nav-open body {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
  /* preserve scroll position via top (set by JS) */
}

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
#cursor {
  position: fixed;
  width: 24px;
  height: 24px;
  background-color: var(--gold);
  -webkit-mask-image: url('../images/cursor.png');
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url('../images/cursor.png');
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width .25s, height .25s;
}

#cursor-ring {
  position: fixed;
  width: 48px;
  height: 48px;
  border: 2px solid rgba(184, 146, 58, 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s, border-color .3s;
}

.cursor-hover #cursor {
  width: 32px;
  height: 32px;
}

.cursor-hover #cursor-ring {
  width: 64px;
  height: 64px;
  border-color: rgba(184, 146, 58, 0.8);
}

@media (max-width: 1024px) {
  #cursor, #cursor-ring {
    display: none !important;
  }
  * {
    cursor: auto !important;
  }
}

/* ============================================================
   SCROLL PROGRESS
   ============================================================ */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-lt));
  z-index: 9999;
  width: 0%;
  transition: width .1s linear;
}

/* ============================================================
   NOISE TEXTURE OVERLAY
   ============================================================ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9000;
  opacity: .022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 60px;
  background: var(--white);
  transition: padding .4s, box-shadow .4s, backdrop-filter .4s;
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 16px 60px;
  box-shadow: 0 1px 0 rgba(184, 146, 58, 0.15), 0 8px 32px rgba(0, 0, 0, 0.04);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--gold);
  text-decoration: none;
  cursor: none;
  line-height: 1;
}

.nav-logo span {
  font-style: italic;
  color: var(--dark);
}

.nav-links {
  display: flex;
  gap: 38px;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dark-soft);
  text-decoration: none;
  cursor: none;
  position: relative;
  opacity: 1;
  transition: opacity .3s, color .3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .35s var(--ease);
}

.nav-links a:hover {
  opacity: 1;
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  opacity: 1;
  color: var(--gold);
}

.nav-links a.active::after {
  width: 100%;
}

.nav-mobile-lang {
  display: none; /* hidden on desktop */
  list-style: none;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--dark);
  transition: transform .3s, opacity .3s;
}

.nav-burger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-burger.open span:nth-child(2) {
  opacity: 0;
}

.nav-burger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

@media(max-width:1300px) {
  #navbar {
    padding: 18px 24px;
  }

  #navbar.scrolled {
    padding: 14px 24px;
  }

  /* Logo smaller + tighter on mobile */
  .nav-logo {
    font-size: 1rem;
    letter-spacing: .02em;
  }

  .nav-burger {
    display: flex;
    z-index: 10010;
    position: relative;
    cursor: pointer;
  }

  /* Full-screen overlay — always covers entire viewport */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh; /* dynamic viewport height for mobile browsers */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    background: var(--dark);
    transform: translateX(100%);
    transition: transform .42s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10000;
    padding: 100px 40px 60px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

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

  .nav-links a {
    font-size: 1rem;
    color: rgba(240, 228, 192, 0.9);
    opacity: 1;
    letter-spacing: .25em;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--gold-lt);
  }

  /* Lang switch inside mobile menu */
  .nav-mobile-lang {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 14px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(184, 146, 58, 0.2);
    width: 100%;
    justify-content: center;
  }

  .nav-mobile-lang button {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: .72rem;
    letter-spacing: .2em;
    color: rgba(240, 228, 192, 0.55);
    cursor: pointer;
    transition: color .3s;
  }

  .nav-mobile-lang button.active {
    color: var(--gold-lt);
  }

  .nav-mobile-lang .lang-sep {
    color: rgba(240, 228, 192, 0.25);
    font-size: .7rem;
  }

  /* Hide desktop lang switch on mobile */
  .nav-right > .lang-switch {
    display: none;
  }

  /* Burger bars go gold when menu open */
  .nav-burger.open span {
    background: var(--gold-lt);
  }

  /* Show lang switcher inside mobile menu */
  .nav-mobile-lang {
    display: flex;
  }
}

/* ============================================================
   SPA PAGE ROUTING
   ============================================================ */
.page-section {
  display: none;
}

.page-section.active {
  display: block;
}

/* ============================================================
   PAGE HERO BANNER (every page gets one)
   ============================================================ */
.page-hero {
  position: relative;
  overflow: hidden;
  height: 72vh;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
}

.page-hero.hero-tall {
  height: 100vh;
  min-height: 680px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: heroZoom 14s ease-out forwards;
}

@keyframes heroZoom {
  from {
    transform: scale(1.06);
  }

  to {
    transform: scale(1.0);
  }
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(10, 8, 5, 0.96) 0%,
      rgba(10, 8, 5, 0.78) 38%,
      rgba(10, 8, 5, 0.35) 58%,
      rgba(10, 8, 5, 0) 80%
    ),
    linear-gradient(to top,
      rgba(10, 8, 5, 0.5) 0%,
      transparent 40%
    );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 10vw 72px;
  animation: fadeUp 1.2s .2s both;
  max-width: 1200px;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: .62rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-pale);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold-pale);
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -.015em;
  color: var(--white);
}

.hero-h1 em {
  font-style: italic;
  color: var(--gold-lt);
}

.hero-sub {
  margin-top: 22px;
  font-size: .97rem;
  color: rgba(240, 228, 192, 0.85);
  max-width: 700px;
  line-height: 1.85;
  font-weight: 400;
}

.hero-ctas {
  margin-top: 38px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 38px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
  border: 1.5px solid var(--gold);
  transition: background .4s, color .4s, transform .2s;
}

.btn-gold:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 38px;
  background: transparent;
  color: var(--dark);
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
  border: 1px solid rgba(26, 22, 16, .25);
  transition: border-color .4s, color .4s, transform .2s;
}

.btn-line:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
}

@media(max-width:768px) {
  .wrap {
    padding: 0 24px;
  }
}

.sec-label {
  font-family: var(--font-body);
  font-size: .62rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.sec-label::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: block;
}

.sec-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 18px;
}

.sec-title em {
  font-style: italic;
  color: var(--gold);
}

.sec-body {
  font-size: .95rem;
  color: #6B6259;
  line-height: 1.9;
  max-width: 540px;
}

.gold-bar {
  width: 52px;
  height: 1.5px;
  background: var(--gold);
  margin: 28px 0;
}

/* ============================================================
   HERITAGE BLOCKS
   ============================================================ */
.heritage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin: 60px 0 100px;
}

@media(max-width:900px) {
  .heritage-grid {
    grid-template-columns: 1fr;
  }
}

.hb {
  background: var(--white);
  padding: 48px 44px;
  border: 1px solid var(--cream-dark);
  position: relative;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}

.hb::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height .5s;
}

.hb:hover::before {
  height: 100%;
}

.hb:hover {
  border-color: var(--gold-pale);
  box-shadow: 0 8px 48px rgba(0, 0, 0, .05);
}

.hb-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(184, 146, 58, .1);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}

.hb-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--dark);
  margin-bottom: 14px;
}

.hb p {
  font-size: .88rem;
  color: var(--dark-soft);
  line-height: 1.85;
}

/* ============================================================
   MANIFESTO QUOTE BLOCK
   ============================================================ */
.manifesto {
  padding: 80px;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  text-align: center;
  margin: 0 0 100px;
}

@media(max-width:700px) {
  .manifesto {
    padding: 40px 24px;
  }
}

.manifesto-q {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2.3rem);
  font-style: italic;
  font-weight: 300;
  color: var(--dark);
  max-width: 680px;
  margin: 0 auto 20px;
  line-height: 1.5;
}

.manifesto-a {
  font-size: .62rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   LEGAL PAGES (Impressum / Datenschutz)
   ============================================================ */
.legal-section {
  padding: 80px 0 120px;
}

.legal-content {
  max-width: 780px;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--dark);
  margin: 44px 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--cream-mid);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: .9rem;
  color: var(--dark-soft);
  line-height: 1.9;
  margin-bottom: 12px;
}

.legal-content ul {
  margin: 10px 0 16px 20px;
}

.legal-content li {
  font-size: .9rem;
  color: var(--dark-soft);
  line-height: 1.8;
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--gold);
  text-decoration: none;
  cursor: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-content strong {
  font-weight: 400;
  color: var(--dark);
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  position: relative;
  z-index: 1;
  padding: 80px 0 40px;
  background: var(--dark);
  border-top: 1px solid rgba(184, 146, 58, .15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

@media(max-width:900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.footer-brand span {
  font-style: italic;
  color: var(--cream);
}

.footer-tag {
  font-size: .95rem;
  color: rgba(240, 228, 192, .85);
  line-height: 1.8;
  max-width: 280px;
  font-style: italic;
  margin-bottom: 24px;
}

.fc-title {
  font-size: .58rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(240, 228, 192, .7);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: .86rem;
  color: rgba(240, 228, 192, .75);
  text-decoration: none;
  cursor: none;
  transition: color .3s;
}

.footer-links a:hover {
  color: var(--gold-lt);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 28px;
  border-top: 1px solid rgba(184, 146, 58, .08);
}

.footer-copy {
  font-size: .72rem;
  color: rgba(240, 228, 192, .55);
}

.footer-legal {
  display: flex;
  gap: 18px;
}

.footer-legal a {
  font-size: .72rem;
  color: rgba(240, 228, 192, .55);
  text-decoration: none;
  cursor: none;
  transition: color .3s;
}

.footer-legal a:hover {
  color: var(--gold-lt);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(249, 246, 241, .92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}

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

#lightbox img {
  max-width: min(90vw, 920px);
  max-height: 85vh;
  object-fit: contain;
  box-shadow: 0 0 80px rgba(0, 0, 0, .12);
}

#lb-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: 1px solid rgba(184, 146, 58, .4);
  color: var(--gold);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background .3s;
  z-index: 2;
}

#lb-close:hover {
  background: rgba(184, 146, 58, .1);
}

#lb-prev, #lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 8, 5, 0.55);
  border: 1px solid rgba(184, 146, 58, 0.3);
  color: var(--gold);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  transition: background .3s, border-color .3s, transform .2s;
  z-index: 2;
  border-radius: 2px;
  backdrop-filter: blur(8px);
}

#lb-prev { left: 28px; }
#lb-next { right: 28px; }

#lb-prev:hover, #lb-next:hover {
  background: rgba(184, 146, 58, 0.2);
  border-color: rgba(184, 146, 58, 0.7);
  transform: translateY(-50%) scale(1.06);
}

#lb-prev:disabled, #lb-next:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

/* Lightbox image transition */
#lb-img {
  transition: opacity 0.2s ease;
}

/* ============================================================
   WHATSAPP FLOATING BUTTON (all pages)
   ============================================================ */
.wa-float {
  position: fixed;
  right: max(24px, calc(env(safe-area-inset-right, 0px) + 16px));
  bottom: max(24px, calc(env(safe-area-inset-bottom, 0px) + 16px));
  z-index: 8000;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 24px;
  background: var(--dark);
  color: var(--gold-pale);
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}

.wa-float:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, .4);
}

.wa-float:focus-visible {
  outline: 2px solid var(--gold-lt);
  outline-offset: 3px;
}

.wa-float-icon {
  display: flex;
  flex-shrink: 0;
}

.wa-float-icon svg {
  width: 19px;
  height: 19px;
  display: block;
}

@media (max-width: 1024px) {
  .wa-float {
    cursor: pointer;
  }
}

@media (max-width: 640px) {
  .wa-float {
    padding: 14px;
    border-radius: 50%;
    right: max(16px, calc(env(safe-area-inset-right, 0px) + 12px));
    bottom: max(16px, calc(env(safe-area-inset-bottom, 0px) + 12px));
  }

  .wa-float-label {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wa-float {
    transition: none;
  }

  .wa-float:hover {
    transform: none;
  }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s, transform .7s;
}

.reveal-l {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity .7s, transform .7s;
}

.reveal-r {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity .7s, transform .7s;
}

.reveal.visible,
.reveal-l.visible,
.reveal-r.visible {
  opacity: 1;
  transform: none;
}

.d1 {
  transition-delay: .1s !important
}

.d2 {
  transition-delay: .2s !important
}

.d3 {
  transition-delay: .3s !important
}

.d4 {
  transition-delay: .4s !important
}

.d5 {
  transition-delay: .5s !important
}

/* ============================================================
   AMBIENT GLOW DOTS
   ============================================================ */
.amb-dot {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.amb-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -150px;
  background: radial-gradient(circle, rgba(184, 146, 58, .04) 0%, transparent 70%);
  animation: amb1 20s ease-in-out infinite;
}

.amb-2 {
  width: 400px;
  height: 400px;
  bottom: 5%;
  left: -100px;
  background: radial-gradient(circle, rgba(184, 146, 58, .035) 0%, transparent 70%);
  animation: amb2 26s ease-in-out infinite;
}

@keyframes amb1 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(-20px, 15px)
  }
}

@keyframes amb2 {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(15px, -20px)
  }
}

/* ============================================================
   MOBILE HERO ADJUSTMENTS
   ============================================================ */
@media(max-width:768px) {
  .page-hero {
    height: 60vh;
    min-height: 440px;
  }

  .page-hero.hero-tall {
    height: 90vh;
    min-height: 600px;
  }

  .page-hero-content {
    padding: 0 24px 56px;
  }

  .hero-h1 {
    font-size: clamp(2.2rem, 9vw, 3rem);
  }

  .hero-sub {
    max-width: 100%;
  }

  .hero-ctas {
    flex-direction: column;
  }

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

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

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

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

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

  .ft-row {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .manifesto {
    padding: 40px 20px;
  }

  footer {
    padding: 60px 0 32px;
  }
}

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

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

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

/* ============================================================
   CURTAINS TRANSITION
   ============================================================ */
.curtain {
  position: fixed;
  top: 0;
  width: 50vw;
  height: 100vh;
  background: var(--dark);
  z-index: 99990;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  pointer-events: none;
}
#curtain-left {
  left: 0;
  transform: translateX(-100%);
}
#curtain-right {
  right: 0;
  transform: translateX(100%);
}
#curtain-left.closed, #curtain-right.closed {
  transform: translateX(0);
}

/* ============================================================
   LANG SWITCH
   ============================================================ */
.lang-switch {
  background: none;
  border: none;
  color: var(--dark-soft);
  font-family: var(--font-body);
  font-size: .62rem;
  letter-spacing: .15em;
  cursor: none;
  display: flex;
  align-items: center;
}
.lang-switch span {
  transition: color 0.3s;
}
.lang-switch span.active {
  color: var(--gold);
  font-weight: 500;
}
.lang-switch span:hover {
  color: var(--gold);
}
