/* ============================================
   THE LION'S KITCHEN — Premium Design System
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --color-bg: #0A0A0A;
  --color-bg-alt: #111111;
  --color-surface: #1A1A1A;
  --color-surface-alt: #222222;
  --color-border: #2A2A2A;
  --color-gold: #C9A84C;
  --color-gold-light: #D4B85A;
  --color-gold-dark: #A88A3A;
  --color-copper: #B87333;
  --color-cream: #F5F0E8;
  --color-cream-dim: #B0A99E;
  --color-white: #FFFFFF;

  --font-heading: 'Cinzel', serif;
  --font-body: 'Montserrat', sans-serif;

  --fs-hero: clamp(3rem, 8vw, 7rem);
  --fs-h1: clamp(2rem, 4vw, 3.5rem);
  --fs-h2: clamp(1.5rem, 3vw, 2.5rem);
  --fs-h3: clamp(1.1rem, 2vw, 1.5rem);
  --fs-body: clamp(0.95rem, 1.2vw, 1.1rem);
  --fs-small: clamp(0.8rem, 1vw, 0.9rem);
  --fs-tiny: 0.75rem;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Base Reset --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-cream);
  background-color: var(--color-bg);
  line-height: 1.8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-gold-light);
}

::selection {
  background: var(--color-gold);
  color: var(--color-bg);
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container--narrow {
  max-width: 800px;
}

.section {
  padding: var(--space-xl) 0;
  position: relative;
}

.section--lg {
  padding: var(--space-2xl) 0;
}

.text-center {
  text-align: center;
}

.text-gold {
  color: var(--color-gold);
}

.section-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--fs-small);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  font-weight: 400;
  color: var(--color-cream);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.section-divider {
  width: 60px;
  height: 1px;
  background: var(--color-gold);
  margin: var(--space-md) auto;
  border: none;
}

/* --- Scroll Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.15s;
}

.reveal-delay-2 {
  transition-delay: 0.3s;
}

.reveal-delay-3 {
  transition-delay: 0.45s;
}

.reveal-delay-4 {
  transition-delay: 0.6s;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--space-md) 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  padding: var(--space-sm) 0;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.navbar__logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--color-gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  white-space: nowrap;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
}

.navbar__links a {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--fs-small);
  color: var(--color-cream-dim);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2px;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition);
}

.navbar__links a:hover {
  color: var(--color-gold);
}

.navbar__links a:hover::after {
  width: 100%;
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-gold);
  transition: all var(--transition);
  transform-origin: center;
}

.navbar__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 4px);
}

.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.navbar__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -4px);
}

/* Mobile Nav */
@media (max-width: 768px) {
  .navbar__hamburger {
    display: flex;
  }

  .navbar__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(30px);
    flex-direction: column;
    justify-content: center;
    gap: var(--space-lg);
    transition: right var(--transition);
  }

  .navbar__links.open {
    right: 0;
  }

  .navbar__links a {
    font-size: 1.1rem;
    letter-spacing: 3px;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom,
      rgba(10, 10, 10, 0.5) 0%,
      rgba(10, 10, 10, 0.3) 40%,
      rgba(10, 10, 10, 0.6) 70%,
      rgba(10, 10, 10, 0.95) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: var(--space-md);
}

.hero__label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--fs-small);
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: heroFadeUp 1s 0.3s forwards;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: var(--fs-hero);
  font-weight: 400;
  color: var(--color-cream);
  line-height: 1.05;
  letter-spacing: 4px;
  margin-bottom: var(--space-sm);
  opacity: 0;
  animation: heroFadeUp 1s 0.6s forwards;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--fs-h3);
  color: var(--color-cream-dim);
  margin-bottom: var(--space-xs);
  opacity: 0;
  animation: heroFadeUp 1s 0.9s forwards;
}

.hero__slogan {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--fs-small);
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-lg);
  opacity: 0;
  animation: heroFadeUp 1s 1.2s forwards;
}

.hero__cta {
  opacity: 0;
  animation: heroFadeUp 1s 1.5s forwards;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__scroll-hint {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-cream-dim);
  font-size: var(--fs-tiny);
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: pulseDown 2s infinite;
}

.hero__scroll-hint .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
}

@keyframes pulseDown {

  0%,
  100% {
    opacity: 0.4;
    transform: translateX(-50%) translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) translateY(8px);
  }
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--fs-small);
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 48px;
  border-radius: 0;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  background: transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-gold);
  z-index: -1;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition);
}

.btn:hover {
  color: var(--color-bg);
}

.btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn--filled {
  background: var(--color-gold);
  color: var(--color-bg);
}

.btn--filled::before {
  background: var(--color-gold-light);
}

.btn--small {
  padding: 10px 28px;
  font-size: var(--fs-tiny);
}

/* ============================================
   PHILOSOPHIE SECTION
   ============================================ */
.philosophie {
  background: var(--color-bg);
}

.philosophie__content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.philosophie__text {
  font-size: var(--fs-body);
  color: var(--color-cream-dim);
  line-height: 2;
}

/* ============================================
   SPEISEKARTE (MENU) SECTION
   ============================================ */
.menu {
  background: var(--color-bg-alt);
}

.menu__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (min-width: 768px) {
  .menu__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1200px) {
  .menu__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.menu__category {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}

.menu__category::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition);
}

.menu__category:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.menu__category:hover::before {
  width: 60px;
}

.menu__category-icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
  display: block;
}

.menu__category-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 400;
  color: var(--color-cream);
  margin-bottom: var(--space-md);
}

.menu__item {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.menu__item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.menu__item-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-cream);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.menu__item-desc {
  font-size: var(--fs-small);
  color: var(--color-cream-dim);
  line-height: 1.6;
  font-weight: 300;
}

.menu__item-price {
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  color: var(--color-gold);
  margin-top: 8px;
  display: block;
}

/* ============================================
   SPECIALS / HAPPY HOUR
   ============================================ */
.specials {
  background: var(--color-bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.specials::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.specials__badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 8px 24px;
  font-family: var(--font-body);
  font-size: var(--fs-tiny);
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

.specials__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  font-weight: 400;
  color: var(--color-cream);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.specials__text {
  max-width: 650px;
  margin: 0 auto var(--space-md);
  font-size: var(--fs-body);
  color: var(--color-cream-dim);
  line-height: 2;
}

.specials__countdown {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--fs-small);
  color: var(--color-cream-dim);
  letter-spacing: 1px;
}

.specials__countdown-time {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  color: var(--color-gold);
  letter-spacing: 2px;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team {
  background: var(--color-bg-alt);
}

.team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (min-width: 768px) {
  .team__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }
}

.team__member {
  text-align: center;
}

.team__photo-wrapper {
  width: 220px;
  height: 220px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--color-border);
  position: relative;
  transition: all var(--transition);
}

.team__photo-wrapper::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}

.team__photo-wrapper:hover {
  border-color: var(--color-gold);
  transform: scale(1.03);
}

.team__photo-wrapper:hover::after {
  border-color: rgba(201, 168, 76, 0.3);
}

.team__photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.team__photo-wrapper:hover img {
  transform: scale(1.08);
}

.team__name {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 500;
  color: var(--color-cream);
  margin-bottom: 4px;
}

.team__role {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
}

.team__bio {
  font-size: var(--fs-small);
  color: var(--color-cream-dim);
  line-height: 1.9;
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================
   KONTAKT / FOOTER
   ============================================ */
.contact {
  background: var(--color-bg);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

@media (min-width: 768px) {
  .contact__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.contact__card {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.contact__card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-2px);
}

.contact__card-icon {
  font-size: 1.8rem;
  margin-bottom: var(--space-sm);
  display: block;
}

.contact__card-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 400;
  color: var(--color-cream);
  margin-bottom: var(--space-sm);
}

.contact__card-text {
  font-size: var(--fs-small);
  color: var(--color-cream-dim);
  line-height: 1.8;
}

.contact__card-text a {
  color: var(--color-gold);
}

/* Footer */
.footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: var(--space-md) 0;
  text-align: center;
}

.footer__text {
  font-size: var(--fs-tiny);
  color: var(--color-cream-dim);
  letter-spacing: 1px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.footer__text .heart {
  color: var(--color-gold);
}

.footer__links {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}

.footer__links a {
  font-family: var(--font-body);
  font-size: var(--fs-tiny);
  color: var(--color-cream-dim);
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--color-gold);
}

/* ============================================
   CHATBOT — LION'S CONCIERGE
   ============================================ */
.chatbot__fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  border: none;
  cursor: pointer;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.35);
  transition: all var(--transition);
  animation: fabPulse 3s infinite;
}

.chatbot__fab:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(201, 168, 76, 0.5);
}

.chatbot__fab svg {
  width: 26px;
  height: 26px;
  fill: var(--color-bg);
}

.chatbot__fab.hidden {
  transform: scale(0);
  opacity: 0;
  pointer-events: none;
}

@keyframes fabPulse {

  0%,
  100% {
    box-shadow: 0 8px 32px rgba(201, 168, 76, 0.35);
  }

  50% {
    box-shadow: 0 8px 48px rgba(201, 168, 76, 0.55);
  }
}

/* Chat Window */
.chatbot__window {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 380px;
  max-height: 540px;
  background: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: var(--radius-lg);
  z-index: 9998;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.chatbot__window.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 480px) {
  .chatbot__window {
    right: 0;
    bottom: 0;
    width: 100%;
    max-height: 100vh;
    border-radius: 0;
  }
}

/* Chat Header */
.chatbot__header {
  padding: 18px 20px;
  background: rgba(201, 168, 76, 0.08);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.chatbot__header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold), var(--color-copper));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.chatbot__header-text h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-cream);
  letter-spacing: 1px;
}

.chatbot__header-text span {
  font-size: var(--fs-tiny);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  gap: 4px;
}

.chatbot__header-text span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4CAF50;
  display: inline-block;
}

.chatbot__close {
  background: none;
  border: none;
  color: var(--color-cream-dim);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px;
  transition: color var(--transition);
  line-height: 1;
}

.chatbot__close:hover {
  color: var(--color-cream);
}

/* Chat Messages */
.chatbot__messages {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-md) var(--space-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 280px;
}

.chatbot__messages::-webkit-scrollbar {
  width: 4px;
}

.chatbot__messages::-webkit-scrollbar-track {
  background: transparent;
}

.chatbot__messages::-webkit-scrollbar-thumb {
  background: rgba(201, 168, 76, 0.2);
  border-radius: 2px;
}

.chat-msg {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: var(--fs-small);
  line-height: 1.6;
  animation: msgIn 0.3s ease-out;
}

@keyframes msgIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-msg--bot {
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.12);
  color: var(--color-cream);
  align-self: flex-start;
  border-bottom-left-radius: 2px;
}

.chat-msg--user {
  background: var(--color-gold);
  color: var(--color-bg);
  align-self: flex-end;
  border-bottom-right-radius: 2px;
  font-weight: 400;
}

.chat-msg--typing {
  display: flex;
  gap: 5px;
  padding: 16px 20px;
}

.chat-msg--typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-gold);
  animation: typingDot 1.4s infinite;
}

.chat-msg--typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.chat-msg--typing span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingDot {

  0%,
  60%,
  100% {
    opacity: 0.3;
    transform: scale(0.8);
  }

  30% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Quick Actions */
.chat-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.chat-actions button {
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 0.72rem;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.chat-actions button:hover {
  background: var(--color-gold);
  color: var(--color-bg);
}

/* Chat Input */
.chatbot__input {
  padding: 14px 16px;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  background: rgba(15, 15, 15, 0.8);
}

.chatbot__input input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 10px 18px;
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: var(--fs-small);
  outline: none;
  transition: border-color var(--transition);
}

.chatbot__input input::placeholder {
  color: var(--color-cream-dim);
}

.chatbot__input input:focus {
  border-color: rgba(201, 168, 76, 0.4);
}

.chatbot__input button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}

.chatbot__input button:hover {
  background: var(--color-gold-light);
  transform: scale(1.05);
}

.chatbot__input button svg {
  width: 16px;
  height: 16px;
  fill: var(--color-bg);
}

/* ============================================
   MISC / GLOBAL POLISH
   ============================================ */

/* Elegant separator lines between sections */
.section-sep {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(to right,
      transparent,
      rgba(201, 168, 76, 0.2),
      transparent);
}

/* Page loading overlay */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__inner {
  text-align: center;
}

.page-loader__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-gold);
  letter-spacing: 4px;
  animation: loaderPulse 1.5s infinite;
}

@keyframes loaderPulse {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

/* Grain texture overlay for premium feel */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9990;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ============================================
   SUB-PAGE STYLES
   ============================================ */

/* --- Static Navbar for Sub-Pages --- */
.navbar--static {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--space-sm) 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.navbar--static .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

/* --- Sub-Page Header --- */
.subpage-header {
  padding: var(--space-2xl) 0 var(--space-xl);
  text-align: center;
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.subpage-header::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.subpage-header__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--fs-small);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-md);
  transition: all var(--transition);
}

.subpage-header__back:hover {
  color: var(--color-gold-light);
  gap: 12px;
}

.subpage-header__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h1);
  font-weight: 400;
  color: var(--color-cream);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.subpage-header__subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: var(--fs-body);
  color: var(--color-cream-dim);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* --- Sub-Page Menu Grid --- */
.subpage-menu {
  padding: var(--space-xl) 0;
  background: var(--color-bg);
}

.subpage-menu__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-md);
}

@media (max-width: 768px) {
  .subpage-menu__grid {
    grid-template-columns: 1fr;
  }
}

.subpage-menu__item {
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color var(--transition);
}

.subpage-menu__item:hover {
  border-bottom-color: rgba(201, 168, 76, 0.3);
}

.subpage-menu__item-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-sm);
  margin-bottom: 6px;
}

.subpage-menu__item-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-cream);
  letter-spacing: 0.5px;
}

.subpage-menu__item-price {
  font-family: var(--font-heading);
  font-size: var(--fs-body);
  color: var(--color-gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.subpage-menu__item-desc {
  font-size: var(--fs-small);
  color: var(--color-cream-dim);
  line-height: 1.7;
  font-weight: 300;
}

.subpage-menu__item-meta {
  font-size: var(--fs-tiny);
  color: rgba(176, 169, 158, 0.5);
  margin-top: 4px;
  display: block;
}

/* --- Sub-Page Section Title (in-page) --- */
.subpage-section-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 400;
  color: var(--color-cream);
  text-align: center;
  margin: var(--space-xl) 0 var(--space-md);
  padding-bottom: var(--space-sm);
  position: relative;
}

.subpage-section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--color-gold);
}

/* --- Sides / Extras Grid --- */
.subpage-sides {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
}

.subpage-sides__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 400;
  color: var(--color-cream);
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.subpage-sides__subtitle {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  color: var(--color-cream-dim);
  text-align: center;
  margin-bottom: var(--space-md);
}

.subpage-sides__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-sm);
}

.subpage-side-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: var(--space-md) var(--space-sm);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 140px;
  transition: all var(--transition);
}

.subpage-side-box:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.subpage-side-box__name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-gold);
  margin-bottom: 4px;
}

.subpage-side-box__desc {
  font-size: var(--fs-tiny);
  color: var(--color-cream-dim);
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 8px;
}

.subpage-side-box__price {
  font-family: var(--font-heading);
  font-size: var(--fs-small);
  color: var(--color-cream);
  font-weight: 500;
}

/* --- Sub-Page CTA Section --- */
.subpage-cta {
  text-align: center;
  padding: var(--space-xl) 0;
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
}

.subpage-cta__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 400;
  color: var(--color-cream);
  margin-bottom: var(--space-sm);
}

.subpage-cta__text {
  font-size: var(--fs-body);
  color: var(--color-cream-dim);
  margin-bottom: var(--space-md);
}

/* --- Sub-Page Footer --- */
.subpage-footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: var(--space-md) 0;
  text-align: center;
}

.subpage-footer__text {
  font-size: var(--fs-tiny);
  color: var(--color-cream-dim);
  letter-spacing: 1px;
}

.subpage-footer__text a {
  color: var(--color-gold);
  margin: 0 8px;
}

/* --- Legal Pages (Impressum, Datenschutz) --- */
.legal {
  padding-top: var(--space-2xl);
  padding-bottom: var(--space-xl);
}

.legal__section {
  margin-bottom: var(--space-lg);
}

.legal__section h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 400;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.legal__section h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-cream);
  margin-bottom: var(--space-xs);
  margin-top: var(--space-md);
}

.legal__section p,
.legal__section ul {
  font-size: var(--fs-body);
  color: var(--color-cream-dim);
  line-height: 1.8;
}

.legal__section ul {
  padding-left: var(--space-md);
}

.legal__section li {
  margin-bottom: var(--space-xs);
}

.legal__section a {
  color: var(--color-gold);
}

/* --- Karriere Page --- */
.career-hero {
  padding: var(--space-2xl) 0 var(--space-xl);
  text-align: center;
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.career-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.career-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.career-benefit {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  transition: all var(--transition);
}

.career-benefit:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.career-benefit__icon {
  font-size: 2rem;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
  display: block;
}

.career-benefit h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-cream);
  margin-bottom: var(--space-xs);
}

.career-benefit p {
  font-size: var(--fs-small);
  color: var(--color-cream-dim);
  line-height: 1.6;
}

.career-job {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-gold);
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  transition: all var(--transition);
}

.career-job:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-2px);
}

.career-job h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 500;
  color: var(--color-gold);
  margin-bottom: 4px;
}

.career-job p {
  font-size: var(--fs-small);
  color: var(--color-cream-dim);
}

/* --- Drinks Page --- */
.drinks-section-title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 400;
  color: var(--color-cream);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin: var(--space-xl) 0 var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border);
}

.drinks-section-title i {
  color: var(--color-gold);
}

.drink-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.drink-list h3 {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 400;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.drink-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: var(--fs-body);
  color: var(--color-cream);
}

.drink-item .drink-price {
  color: var(--color-gold);
  font-family: var(--font-heading);
  white-space: nowrap;
}

.drink-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.drink-tile {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--space-md);
  min-height: 120px;
  transition: all var(--transition);
}

.drink-tile:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-3px);
}

.drink-tile__name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-cream);
  margin-bottom: 4px;
}

.drink-tile__sub {
  font-size: var(--fs-tiny);
  color: var(--color-cream-dim);
  font-style: italic;
}

.vegan-badge {
  display: inline-block;
  background: rgba(46, 204, 113, 0.1);
  border: 1px solid rgba(46, 204, 113, 0.3);
  padding: 8px 20px;
  font-size: var(--fs-small);
  color: #2ecc71;
  margin-top: var(--space-sm);
}

.drink-note {
  font-size: var(--fs-small);
  color: var(--color-cream-dim);
  margin-top: var(--space-sm);
}

/* --- Vegan Page Accent --- */
.vegan-header {
  border-bottom-color: #2ecc71;
}

.vegan-section-title {
  color: #2ecc71;
}

.vegan-note {
  background: rgba(46, 204, 113, 0.06);
  border: 1px solid rgba(46, 204, 113, 0.2);
  padding: var(--space-md);
  text-align: center;
  margin-top: var(--space-xl);
  font-style: italic;
  font-size: var(--fs-body);
  color: var(--color-cream-dim);
  line-height: 1.8;
}

.vegan-note strong {
  color: #2ecc71;
}

/* --- Category Hub Grid (Speisekarte overview) --- */
.category-hub {
  padding: var(--space-xl) 0;
}

.category-hub__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
}

.category-hub__box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-cream);
  text-decoration: none;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  text-align: center;
  letter-spacing: 1px;
  padding: var(--space-md);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.category-hub__box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition);
}

.category-hub__box:hover {
  border-color: rgba(201, 168, 76, 0.4);
  color: var(--color-gold);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.category-hub__box:hover::before {
  width: 60px;
}

/* --- Noodle Choice (Pasta page) --- */
.noodle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--space-sm);
  margin: var(--space-md) 0 var(--space-xl);
}

.noodle-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-weight: 500;
  text-transform: uppercase;
  font-size: var(--fs-small);
  letter-spacing: 1px;
  text-align: center;
  padding: var(--space-md);
  aspect-ratio: 1/1;
  transition: all var(--transition);
}

.noodle-box:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-2px);
}

/* --- Addon list (Ofenkartoffel) --- */
.addon-list {
  list-style: none;
  padding: 0;
  margin-top: var(--space-xs);
}

.addon-list li {
  color: var(--color-cream-dim);
  font-size: var(--fs-small);
  padding: 4px 0;
  padding-left: var(--space-sm);
  position: relative;
}

.addon-list li::before {
  content: '›';
  color: var(--color-gold);
  position: absolute;
  left: 0;
}

/* --- Allergen Info --- */
.allergens {
  font-size: var(--fs-tiny);
  color: rgba(176, 169, 158, 0.4);
  margin-top: 4px;
  display: block;
}

/* --- Side Dishes Info --- */
.side-dishes {
  font-size: var(--fs-small);
  color: var(--color-cream-dim);
  font-style: italic;
  margin-top: 8px;
  display: block;
}

.side-dishes strong {
  color: var(--color-gold);
  font-style: normal;
}

/* ============================================
   PASSWORD PROTECTION GATE
   ============================================ */
.pw-gate {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.pw-gate.unlocked {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.pw-gate__bg {
  position: absolute;
  inset: 0;
  background: var(--color-bg);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(201, 168, 76, 0.04) 0%, transparent 60%);
}

.pw-gate__card {
  position: relative;
  width: 90%;
  max-width: 460px;
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  background: rgba(26, 26, 26, 0.7);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  animation: pwCardIn 0.8s 0.2s both cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes pwCardIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.pw-gate__icon {
  font-size: 3rem;
  margin-bottom: var(--space-sm);
  animation: pwIconPulse 3s ease-in-out infinite;
}

@keyframes pwIconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.pw-gate__label {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--fs-tiny);
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-sm);
}

.pw-gate__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 400;
  color: var(--color-cream);
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.pw-gate__divider {
  width: 50px;
  height: 1px;
  background: var(--color-gold);
  margin: var(--space-sm) auto var(--space-md);
  border: none;
}

.pw-gate__text {
  font-family: var(--font-body);
  font-size: var(--fs-small);
  font-weight: 300;
  color: var(--color-cream-dim);
  line-height: 1.8;
  max-width: 360px;
  margin: 0 auto var(--space-md);
}

.pw-gate__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.pw-gate__input-wrapper {
  position: relative;
}

.pw-gate__input {
  width: 100%;
  padding: 14px 48px 14px 20px;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 400;
  color: var(--color-cream);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  letter-spacing: 2px;
}

.pw-gate__input::placeholder {
  color: rgba(176, 169, 158, 0.5);
  letter-spacing: 1px;
  font-weight: 300;
}

.pw-gate__input:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.pw-gate__input.error {
  border-color: #c94c4c;
  box-shadow: 0 0 0 3px rgba(201, 76, 76, 0.15);
  animation: pwShake 0.5s ease;
}

@keyframes pwShake {
  0%, 100% { transform: translateX(0); }
  15% { transform: translateX(-8px); }
  30% { transform: translateX(6px); }
  45% { transform: translateX(-4px); }
  60% { transform: translateX(3px); }
  75% { transform: translateX(-1px); }
}

.pw-gate__toggle {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--color-cream-dim);
  cursor: pointer;
  padding: 4px;
  transition: color var(--transition);
  display: flex;
  align-items: center;
}

.pw-gate__toggle:hover {
  color: var(--color-gold);
}

.pw-gate__btn {
  width: 100%;
  margin-top: var(--space-xs);
  padding: 14px 0;
  font-size: var(--fs-small);
  letter-spacing: 2px;
}

.pw-gate__error {
  font-family: var(--font-body);
  font-size: var(--fs-tiny);
  color: #c94c4c;
  min-height: 1.2em;
  margin-top: var(--space-xs);
  transition: opacity 0.3s ease;
}

.pw-gate__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: var(--space-md);
  font-family: var(--font-heading);
  font-size: var(--fs-tiny);
  color: rgba(176, 169, 158, 0.4);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* On very small screens, tighten card padding */
@media (max-width: 480px) {
  .pw-gate__card {
    padding: var(--space-lg) var(--space-md);
  }
  .pw-gate__title {
    font-size: var(--fs-h3);
  }
}