


:root {
  --amber:      #C8892A;
  --terracotta: #B85C38;
  --cream:      #F5EDD8;
  --dark:       #1A0F07;
  --warm-mid:   #3D2010;
  --gold:       #D4A843;
  --text-light: #EDE0C4;
}


* { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--cream);
  overflow-x: hidden;
  position: relative;
}


nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 3rem;
  background: linear-gradient(to bottom, rgba(26,15,7,0.95) 0%, transparent 100%);
  backdrop-filter: blur(2px);
  border-bottom: 1px solid rgba(200,137,42,0.15);
}

.nav-left {
  display: flex; align-items: center; gap: 1.5rem;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--gold); text-decoration: none;
}
.nav-logo span { font-style: italic; color: var(--cream); }


.social-icons {
  display: flex; align-items: center; gap: 0.8rem;
}
.social-icons a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  color: var(--text-light);
  border: 1px solid rgba(200,137,42,0.25);
  border-radius: 50%;
  transition: all 0.3s;
}
.social-icons a:hover {
  color: var(--dark);
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.icon-mask {
  display: block;
  width: 15px; height: 15px;
  background-color: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}
.icon-instagram {
  mask-image: url('Icons/instagram_logo.svg');
  -webkit-mask-image: url('Icons/instagram_logo.svg');
}
.icon-facebook {
  mask-image: url('Icons/facebook_logo.svg');
  -webkit-mask-image: url('Icons/facebook_logo.svg');
}


.contact-social {
  margin-top: 0.8rem;
}
.contact-social a {
  width: 40px; height: 40px;
}
.contact-social .icon-mask {
  width: 17px; height: 17px;
}

nav ul { list-style: none; display: flex; gap: 2.5rem; }
nav ul a {
  text-decoration: none; color: var(--text-light);
  font-size: 0.8rem; letter-spacing: 0.12em;
  text-transform: uppercase; font-weight: 400;
  transition: color 0.3s;
}
nav ul a:hover { color: var(--gold); }


#hero {
  position: relative; height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('Fotos/rooms/bar and barkeeper.jpeg');
  background-size: cover; background-position: center 30%;
  filter: brightness(0.45) saturate(1.2);
  transform: scale(1.05);
  animation: subtleZoom 20s ease-in-out infinite alternate;
}
@keyframes subtleZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26,15,7,0.2) 0%,
    rgba(26,15,7,0.1) 40%,
    rgba(26,15,7,0.7) 80%,
    rgba(26,15,7,1) 100%
  );
}

.hero-content {
  position: relative; z-index: 2; text-align: center;
  animation: fadeUp 1.4s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 0.75rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 300; line-height: 0.95;
  color: var(--cream); margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: 0.9rem; letter-spacing: 0.08em;
  color: var(--text-light); margin-bottom: 2.5rem; opacity: 0.8;
}

.hero-cta {
  display: inline-block; padding: 0.9rem 2.8rem;
  border: 1px solid var(--gold); color: var(--gold);
  text-decoration: none; font-size: 0.78rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  transition: all 0.35s;
}
.hero-cta:hover { background: var(--gold); color: var(--dark); }

.scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--gold); font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; opacity: 0.6; animation: pulse 2s infinite;
}
.scroll-hint::after {
  content: ''; display: block; width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes pulse { 0%,100% { opacity: 0.6; } 50% { opacity: 1; } }


section { padding: 7rem 3rem; }

.section-label {
  font-size: 0.65rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300; line-height: 1.1; margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--gold); }

.divider {
  width: 60px; height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin: 1.5rem 0;
}


#about {
  background: var(--warm-mid);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; padding: 0;
}

.about-img {
  height: 600px; overflow: hidden;
}
.about-img img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center;
  filter: brightness(0.85) saturate(1.1);
  transition: transform 0.6s ease;
}
.about-img:hover img { transform: scale(1.04); }

.about-text {
  padding: 5rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
}
.about-text p {
  color: var(--text-light); line-height: 1.8; font-size: 1rem;
  opacity: 0.85; margin-bottom: 1.2rem;
}

.opening-badge {
  display: inline-flex; align-items: center; gap: 1rem;
  margin-top: 2rem; padding: 1rem 1.5rem;
  border: 1px solid rgba(200,137,42,0.3);
  background: rgba(200,137,42,0.06);
}
.badge-time {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; color: var(--gold);
}
.badge-label {
  font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase; opacity: 0.6;
}


#drinks {
  background: linear-gradient(135deg, #1A0F07 0%, #2A1308 100%);
  padding-bottom: 5rem;
}

.drinks-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3rem;
}
.drinks-header p {
  max-width: 300px; font-size: 0.85rem; opacity: 0.55;
  line-height: 1.7; text-align: right;
}


.cocktail-carousel {
  perspective: 1400px;
  display: flex; align-items: center; justify-content: center;
  padding: 2rem 0;
  position: relative;
  min-height: 560px;
  overflow: hidden; 
}
.cocktail-stage {
  position: relative;
  width: 100%; max-width: 1000px;
  height: 520px;
}


.cocktail-card {
  position: absolute;
  width: 280px; height: 440px;
  top: 50%; left: 50%;
  border-radius: 10px; overflow: hidden;
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
  background: var(--dark);
}
.cocktail-card img,
.cocktail-card video {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}


.cocktail-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.2rem 1.3rem 1.2rem;
  background: linear-gradient(to top, rgba(26,15,7,0.97) 40%, transparent);
  opacity: 0; transition: opacity 0.5s ease 0.2s;
}
.cocktail-card.active .cocktail-info { opacity: 1; }

.cocktail-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 300;
}
.cocktail-desc {
  font-size: 0.72rem; opacity: 0.7; margin-top: 0.35rem;
  letter-spacing: 0.05em;
}


.cocktail-badge {
  position: absolute; top: 1rem; right: 1rem;
  font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); padding: 0.3rem 0.7rem;
  background: rgba(26,15,7,0.75);
  border: 1px solid rgba(200,137,42,0.4);
  backdrop-filter: blur(4px);
  border-radius: 4px;
  opacity: 0; transition: opacity 0.5s ease 0.2s;
  z-index: 2;
}
.cocktail-card.active .cocktail-badge { opacity: 1; }


.cocktail-controls {
  display: flex; justify-content: center; align-items: center;
  gap: 1.5rem; margin-top: 2rem;
}
.cocktail-counter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; color: var(--gold);
  letter-spacing: 0.12em; min-width: 80px; text-align: center;
}


.carousel-btn {
  width: 52px; height: 52px;
  border: 1px solid rgba(200,137,42,0.4);
  background: transparent; color: var(--gold);
  font-size: 1.2rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.carousel-btn:hover { background: var(--gold); color: var(--dark); }
.carousel-btn:disabled { opacity: 0.25; cursor: default; pointer-events: none; }


#cocktailkarte {
  background: var(--warm-mid);
  padding: 5rem 3rem;
  text-align: center;
  position: relative; overflow: hidden;
}
#cocktailkarte::before {
  content: 'KARTE';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 20vw; font-weight: 600;
  color: rgba(200,137,42,0.04);
  white-space: nowrap; pointer-events: none;
}

.karte-header {
  position: relative; z-index: 1;
  max-width: 700px; margin: 0 auto;
}
.karte-desc {
  font-size: 0.95rem; opacity: 0.7; line-height: 1.8; margin-bottom: 2.5rem;
}
.karte-btns {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}


.btn-primary {
  display: inline-block; padding: 1rem 3rem;
  background: var(--gold); color: var(--dark);
  text-decoration: none; font-size: 0.78rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 500; transition: all 0.3s;
  border: 1px solid var(--gold);
  cursor: pointer; font-family: inherit;
}
.btn-primary:hover { background: transparent; color: var(--gold); }

.btn-outline {
  display: inline-block; padding: 1rem 3rem;
  border: 1px solid rgba(200,137,42,0.4); color: var(--gold);
  text-decoration: none; font-size: 0.78rem;
  letter-spacing: 0.2em; text-transform: uppercase;
  transition: all 0.3s;
}
.btn-outline:hover { background: rgba(200,137,42,0.1); }


.flipbook-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.flipbook-wrap.open {
  max-height: 2000px;
}

.flipbook-container {
  margin-top: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  width: 100%;
}


.flipbook-controls {
  display: flex; align-items: center; gap: 1.5rem;
}
.flip-counter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; color: var(--gold);
  letter-spacing: 0.1em; min-width: 110px; text-align: center;
}
.flip-hint {
  font-size: 0.68rem; letter-spacing: 0.15em;
  text-transform: uppercase; opacity: 0.35;
  margin-top: 0.5rem;
  text-align: center;
}


.flipbook-stage {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}


#flipbook {
  display: block;
  margin: 0 auto;
  touch-action: pan-y;
}

.page {
  background: var(--dark);
  overflow: hidden;
  box-shadow: inset 0 0 40px rgba(0,0,0,0.4);
}
.page-cover {
  background: var(--dark);
}


.page-cover img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}


.page-crop {
  width: 100%; height: 100%;
  overflow: hidden;
  position: relative;
}
.page-crop img {
  position: absolute; top: 0;
  height: 100%;
  width: 200%;          
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
.crop-left img {
  left: 0;              
}
.crop-right img {
  right: 0; left: auto; 
}


#entertainment {
  background: var(--warm-mid);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; padding: 0;
}

.ent-visual {
  padding: 3.5rem 3rem; background: var(--dark);
  display: flex; flex-direction: column; justify-content: center;
}
.ent-items {
  padding: 3.5rem 3rem;
  display: flex; flex-direction: column; justify-content: center;
}

.ent-item {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding: 1.2rem 0; border-bottom: 1px solid rgba(200,137,42,0.15);
}
.ent-item:last-child { border-bottom: none; padding-bottom: 0; }
.ent-item:first-of-type { padding-top: 0.5rem; }

.ent-icon { font-size: 1.6rem; width: 40px; text-align: center; flex-shrink: 0; margin-top: 0.2rem; }
.ent-label {
  font-size: 0.58rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.3rem;
}
.ent-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem; margin-bottom: 0.3rem;
}
.ent-desc { font-size: 0.78rem; opacity: 0.6; line-height: 1.6; }

.switch-games { margin-top: 0.5rem; display: flex; flex-wrap: wrap; gap: 0.3rem; }
.game-tag {
  font-size: 0.6rem; padding: 0.2rem 0.6rem;
  border: 1px solid rgba(200,137,42,0.3);
  color: var(--gold); letter-spacing: 0.05em;
}

.ent-deco {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10rem; line-height: 1;
  color: rgba(200,137,42,0.06);
  position: relative; margin-bottom: -2rem;
}
.ent-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300; line-height: 1.1; margin-bottom: 1rem;
}
.ent-headline em { font-style: italic; color: var(--gold); }


#galerie { background: var(--dark); padding-bottom: 0; }

.gallery-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 280px 280px;
  gap: 4px;
}
.g1 { grid-column: span 7; grid-row: span 2; }
.g2 { grid-column: span 5; }
.g3 { grid-column: span 3; }
.g4 { grid-column: span 2; }

.gallery-grid div { overflow: hidden; background: var(--warm-mid); }
.gallery-grid div img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.8) saturate(1.1);
  transition: transform 0.5s, filter 0.5s;
  display: block;
}
.gallery-grid div:hover img {
  transform: scale(1.05); filter: brightness(1) saturate(1.3);
}


#kontakt {
  background: var(--warm-mid);
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 0; padding: 0;
  align-items: center;
}

.contact-info { padding: 3.5rem 3rem; }


.contact-details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}
.contact-detail {
  display: flex; gap: 0.8rem; align-items: flex-start;
}
.contact-icon { font-size: 1.05rem; margin-top: 0.15rem; opacity: 0.6; }
.contact-label {
  font-size: 0.58rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.25rem;
}
.contact-val { font-size: 0.82rem; opacity: 0.85; line-height: 1.5; }
.contact-val a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(200,137,42,0.3);
  transition: color 0.2s, border-color 0.2s;
}
.contact-val a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.contact-buttons {
  margin-top: 0.5rem;
  display: flex; gap: 0.8rem; flex-wrap: wrap;
}
.contact-buttons .btn-outline {
  padding: 0.8rem 2rem;
  font-size: 0.72rem;
}

.map-container {
  background: #2a1a0a;
  position: relative; overflow: hidden;
  margin: 0 3rem;
  border: 1px solid rgba(200,137,42,0.15);
}
.map-container iframe {
  width: 100%; height: 260px; border: none;
  display: block;
  filter: sepia(0.4) saturate(0.8) brightness(0.85);
}


footer {
  background: var(--dark);
  border-top: 1px solid rgba(200,137,42,0.15);
  padding: 3rem;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 300;
  letter-spacing: 0.15em; color: var(--gold);
}
.footer-copy { font-size: 0.7rem; opacity: 0.4; letter-spacing: 0.1em; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a {
  font-size: 0.7rem; opacity: 0.5; text-decoration: none;
  color: var(--cream); letter-spacing: 0.1em; transition: opacity 0.3s;
}
.footer-links a:hover { opacity: 1; color: var(--gold); }


@media (max-width: 900px) {
  nav ul { display: none; }
  nav { padding: 1rem 1.5rem; }
  .nav-left { gap: 1rem; }
  .social-icons { gap: 0.5rem; }
  .social-icons a { width: 30px; height: 30px; }
  .social-icons .icon-mask { width: 13px; height: 13px; }

  #about,
  #entertainment,
  #kontakt { grid-template-columns: 1fr; }

  .contact-details-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .map-container { margin: 0 1.5rem 2rem; }

  .about-img { height: 300px; }

  .drinks-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .drinks-header p { text-align: left; }

  .cocktail-carousel { min-height: 450px; }
  .cocktail-stage { height: 420px; }
  .cocktail-card { width: 220px; height: 350px; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .g1 { grid-column: span 2; grid-row: span 1; }
  .g2, .g3, .g4 { grid-column: span 1; grid-row: span 1; }

  footer { flex-direction: column; gap: 1.5rem; text-align: center; }

  .karte-btns { flex-direction: column; align-items: center; }
  .flipbook-wrap.open { max-height: 1500px; }
}


.legal-body {
  background: var(--warm-mid);
}

.legal-page {
  padding: 9rem 1.5rem 6rem; 
  background: var(--warm-mid);
  position: relative;
  overflow: hidden;
}
.legal-page::before {
  content: '§';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 30vw; font-weight: 600;
  color: rgba(200,137,42,0.04);
  pointer-events: none; line-height: 1;
}

.legal-container {
  position: relative; z-index: 1;
  max-width: 760px; margin: 0 auto;
}

.legal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300; line-height: 1.1;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.legal-container h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 400;
  color: var(--gold);
  margin: 2.8rem 0 0.8rem;
  letter-spacing: 0.02em;
}

.legal-container p {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-light);
  opacity: 0.9;
  margin-bottom: 1rem;
}

.legal-container a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(212,168,67,0.3);
  transition: border-color 0.2s, color 0.2s;
}
.legal-container a:hover {
  border-bottom-color: var(--gold);
  color: var(--cream);
}

.legal-note {
  font-size: 0.8rem;
  opacity: 0.55;
  letter-spacing: 0.05em;
  font-style: italic;
}

.legal-placeholder {
  display: inline-block;
  padding: 0.1rem 0.5rem;
  background: rgba(200,137,42,0.08);
  border: 1px dashed rgba(200,137,42,0.4);
  color: var(--gold);
  font-size: 0.85rem;
  font-family: 'DM Sans', sans-serif;
}

.legal-back {
  display: inline-block;
  margin-top: 3.5rem;
}
.legal-back:hover {
  border-bottom: 1px solid rgba(200,137,42,0.4); 
}

@media (max-width: 900px) {
  .legal-page { padding: 7rem 1.25rem 4rem; }
  .legal-container h2 { font-size: 1.3rem; margin-top: 2.2rem; }
  .legal-container p { font-size: 0.88rem; }
}


.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 9rem 1.5rem 6rem;
  background: var(--warm-mid);
  position: relative;
  overflow: hidden;
}
.error-container {
  position: relative; z-index: 1;
  max-width: 620px;
}
.error-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(7rem, 22vw, 16rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}
.error-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 300;
  margin: 0.5rem 0 1.5rem;
  color: var(--cream);
  line-height: 1.2;
}
.error-title em { font-style: italic; color: var(--gold); }
.error-message {
  color: var(--text-light);
  opacity: 0.8;
  line-height: 1.75;
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}
.error-back {
  display: inline-block;
}
.error-suggestions {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(200,137,42,0.2);
}
.error-suggestions > p {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 1rem;
}
.error-suggestions a {
  display: inline-block;
  margin: 0.3rem 0.9rem;
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, color 0.2s;
}
.error-suggestions a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

@media (max-width: 900px) {
  .error-page { padding: 6rem 1.25rem 4rem; }
  .error-number { font-size: clamp(5rem, 30vw, 8rem); }
  .error-suggestions a { margin: 0.4rem 0.6rem; font-size: 0.82rem; }
}