/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

/* ── FONTS ── */
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-v20-latin/inter-v20-latin-200.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-v20-latin/inter-v20-latin-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-v20-latin/inter-v20-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-v20-latin/inter-v20-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: #f5f3ef;
  color: #1a1a1a;
  font-weight: 300;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; justify-content: flex-end; align-items: center;
  gap: 28px;
  padding: 0 48px;
  height: 64px;
  background: transparent;
  transition: background 0.4s;
  display: none; /* Hidden as per instructions */
}

/* Nav Lang-Switcher */
.nav-lang {
  display: flex; gap: 8px; align-items: center;
}
.nav-lang-btn {
  font-size: 9px; letter-spacing: 0.22em; color: rgba(240,237,232,0.45);
  background: none; border: none; cursor: pointer;
  font-family: inherit; text-transform: lowercase; padding: 0;
  transition: color 0.3s;
}
.nav-lang-btn.active {
  color: rgba(240,237,232,0.9);
  border-bottom: 0.5px solid rgba(240,237,232,0.5);
  padding-bottom: 1px;
}
.nav-lang-btn:hover { color: rgba(240,237,232,0.9); }
.nav-lang-divider { width: 0.5px; height: 9px; background: rgba(240,237,232,0.2); }
nav.scrolled .nav-lang-btn { color: rgba(79,94,82,0.45); }
nav.scrolled .nav-lang-btn.active { color: #4f5e52; border-bottom-color: #4f5e52; }
nav.scrolled .nav-lang-btn:hover { color: #4f5e52; }
nav.scrolled .nav-lang-divider { background: rgba(79,94,82,0.25); }
nav.scrolled {
  background: rgba(245,243,239,0.97);
  border-bottom: 0.5px solid #d8d4cc;
  backdrop-filter: blur(8px);
}

/* Burger — 3 filigrane Striche */
.burger {
  display: flex; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.burger span {
  display: block; width: 24px; height: 0.5px;
  background: #f0ede8; transition: background 0.4s;
}
.burger span:nth-child(3) { width: 16px; }
nav.scrolled .burger span { background: #4f5e52; }

/* Fullscreen overlay menu */
.menu-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: #4f5e52;
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 0 80px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.menu-overlay.open { opacity: 1; pointer-events: all; }
.menu-close {
  position: absolute; top: 24px; right: 48px;
  background: none; border: none; cursor: pointer;
  font-size: 22px; color: #f0ede8; font-weight: 200;
}
.menu-links { list-style: none; }
.menu-links li {
  margin-bottom: 12px;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.menu-overlay.open .menu-links li { opacity: 1; transform: translateY(0); }
.menu-overlay.open .menu-links li:nth-child(1) { transition-delay: 0.05s; }
.menu-overlay.open .menu-links li:nth-child(2) { transition-delay: 0.10s; }
.menu-overlay.open .menu-links li:nth-child(3) { transition-delay: 0.15s; }
.menu-overlay.open .menu-links li:nth-child(4) { transition-delay: 0.20s; }
.menu-overlay.open .menu-links li:nth-child(5) { transition-delay: 0.25s; }
.menu-overlay.open .menu-links li:nth-child(6) { transition-delay: 0.30s; }
.menu-links a {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 200; letter-spacing: 0.08em;
  color: #f0ede8; text-decoration: none; text-transform: lowercase;
  transition: color 0.2s, letter-spacing 0.3s;
  display: block;
}
.menu-links a:hover { color: #b8c4b9; letter-spacing: 0.14em; }
.menu-footer {
  position: absolute; bottom: 48px; left: 80px; right: 80px;
  display: flex; justify-content: space-between; align-items: center;
}
.menu-footer-logo {
  font-size: 11px; letter-spacing: 0.22em; color: #8a9e8d; text-transform: lowercase;
}
.menu-social { display: flex; gap: 24px; }
.menu-social a {
  font-size: 10px; letter-spacing: 0.2em; color: #8a9e8d;
  text-decoration: none; text-transform: lowercase; transition: color 0.2s;
}
.menu-social a:hover { color: #f0ede8; }

/* ── HERO ── */
.hero {
  height: 100vh; min-height: 600px;
  background: #4f5e52;
  display: flex;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.hero-wordmark {
  font-size: clamp(40px, 9vw, 130px);
  font-weight: 200; letter-spacing: 0.12em;
  color: #f0ede8; line-height: 1.0;
  text-transform: lowercase;
  text-align: center;
  position: relative; z-index: 2;
  user-select: none;
}
.hero-wordmark-dot { color: rgba(240,237,232,0.35); }
.hero-scroll {
  position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  z-index: 2;
}
.hero-scroll-line {
  width: 0.5px; height: 40px; background: rgba(240,237,232,0.25);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.25; transform: scaleY(1); }
  50% { opacity: 0.6; transform: scaleY(1.2); }
}

/* ── HERO LANG + SOCIAL ── */
.hero-lang {
  position: absolute; bottom: 48px; left: 48px; z-index: 3;
  display: flex; gap: 10px; align-items: center;
}
.hero-lang-btn {
  font-size: 9px; letter-spacing: 0.22em; color: rgba(240,237,232,0.45);
  background: none; border: none; cursor: pointer;
  font-family: inherit; text-transform: uppercase; padding: 0;
  transition: color 0.3s;
}
.hero-lang-btn.active {
  color: #f0ede8;
  border-bottom: 0.5px solid rgba(240,237,232,0.6);
  padding-bottom: 1px;
}
.hero-lang-btn:hover { color: #f0ede8; }
.hero-lang-divider { width: 0.5px; height: 10px; background: rgba(240,237,232,0.2); }

.hero-social {
  position: absolute; bottom: 40px; right: 48px; z-index: 3;
  display: flex; gap: 20px; align-items: center;
}

.hero-legal {
  position: absolute; bottom: 40px; left: 48px; z-index: 3;
  display: flex; gap: 20px; align-items: center;
}

.hero-legal-link, .hero-social-link {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  text-decoration: none; color: rgba(240,237,232,0.5);
  transition: color 0.2s;
}
.hero-legal-link:hover, .hero-social-link:hover { color: #f0ede8; }
.hero-social-icon {
  width: 32px; height: 32px;
  border: 0.5px solid rgba(240,237,232,0.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s;
}
.hero-social-link:hover .hero-social-icon { border-color: rgba(240,237,232,0.6); }
.hero-social-icon svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.hero-social-name, .hero-legal-name {
  font-size: 8px; letter-spacing: 0.2em; text-transform: lowercase;
}

/* Social neben dem Wordmark (nur sichtbar wenn Menü geöffnet) */
.hero-wordmark-social {
  display: none; /* standard ausgeblendet */
  gap: 20px; align-items: center;
  position: absolute; top: 50%; transform: translateY(-50%);
  left: calc(50% + 220px); /* Platz für Icons + Text */
  z-index: 4; pointer-events: auto;
}
.menu-overlay.open ~ .hero .hero-wordmark-social { display: flex; }
.hero-wordmark-social .hero-social-link { 
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  text-decoration: none; color: #f0ede8;
}

/* ── SECTION BASE ── */
section { width: 100%; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

/* ── INTRO ── */
.intro {
  padding: 120px 0;
  background: #f5f3ef;
  border-bottom: 0.5px solid #d8d4cc;
}
.intro-grid {
  display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start;
}
.intro-label {
  font-size: 9px; letter-spacing: 0.35em; color: #4f5e52;
  text-transform: lowercase; padding-top: 8px;
}
.intro-text {
  font-size: 22px; font-weight: 200; line-height: 1.8;
  letter-spacing: 0.03em; color: #1a1a1a;
}
.intro-text em { color: #4f5e52; font-style: normal; }

/* ── LEISTUNGEN ── */
.leistungen {
  padding: 120px 0;
  background: #fff;
  border-bottom: 0.5px solid #d8d4cc;
}
.leistungen-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 72px;
}
.leistungen-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 200; letter-spacing: 0.06em; color: #1a1a1a;
}
.leistungen-label {
  font-size: 9px; letter-spacing: 0.35em; color: #4f5e52; text-transform: lowercase;
}
.leistungen-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.leistung-item {
  padding: 40px 32px 40px 0;
}
.leistung-item:last-child { padding-right: 0; }
.leistung-num {
  font-size: 9px; letter-spacing: 0.2em; color: #4f5e52; margin-bottom: 24px;
}
.leistung-name {
  font-size: 14px; font-weight: 300; letter-spacing: 0.1em;
  color: #1a1a1a; margin-bottom: 16px; line-height: 1.4;
}
.leistung-desc {
  font-size: 11px; color: #7a7a7a; letter-spacing: 0.06em; line-height: 1.9;
}

/* ── PORTFOLIO ── */
.portfolio {
  padding: 120px 0;
  background: #f5f3ef;
  border-bottom: 0.5px solid #d8d4cc;
}
.portfolio-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 56px;
}
.portfolio-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 200; letter-spacing: 0.06em; color: #1a1a1a;
}
.portfolio-link {
  font-size: 9px; letter-spacing: 0.3em; color: #4f5e52;
  text-transform: lowercase; text-decoration: none;
  border-bottom: 0.5px solid #4f5e52; padding-bottom: 2px; cursor: pointer;
}

/* Slider */
.portfolio-slider-wrap {
  position: relative; overflow: hidden;
}
.portfolio-slider {
  display: flex; transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}
.projekt-card {
  position: relative; overflow: hidden; cursor: pointer;
  flex: 0 0 100%; aspect-ratio: 16/9; background: #e0ddd8;
}
.projekt-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.6s ease;
}
.projekt-card:hover .projekt-bg { transform: scale(1.03); }
.projekt-bg-1 { background: linear-gradient(135deg, #4f5e52 0%, #3d4d40 100%); }
.projekt-bg-2 { background: linear-gradient(135deg, #5a6b5d 0%, #4f5e52 100%); }
.projekt-bg-3 { background: linear-gradient(135deg, #4a5a4d 0%, #3a4a3d 100%); }
.projekt-bg-4 { background: linear-gradient(135deg, #6a7a6d 0%, #4f5e52 100%); }
.projekt-bg-5 { background: linear-gradient(135deg, #3d4d40 0%, #2d3d30 100%); }
.projekt-bg-6 { background: linear-gradient(135deg, #5d6e60 0%, #4a5a4d 100%); }
.projekt-bg-7 { background: linear-gradient(135deg, #4f5e52 0%, #5a6b5d 100%); }
.projekt-bg-8 { background: linear-gradient(135deg, #3a4a3d 0%, #4f5e52 100%); }
.projekt-placeholder-text {
  font-size: 9px; letter-spacing: 0.2em; color: rgba(240,237,232,0.3); text-transform: lowercase;
}
.projekt-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px 40px;
  background: linear-gradient(to top, rgba(30,40,32,0.6) 0%, transparent 100%);
}
.projekt-title {
  font-size: 14px; font-weight: 300; letter-spacing: 0.14em;
  color: #f0ede8; margin-bottom: 6px;
}
.projekt-cat {
  font-size: 9px; letter-spacing: 0.2em; color: rgba(240,237,232,0.65);
}

/* Progress bar */
.portfolio-progress {
  margin-top: 28px; display: flex; gap: 6px; align-items: center;
}
.progress-track {
  flex: 1; height: 0.5px; background: #d8d4cc; position: relative; overflow: hidden;
}
.progress-fill {
  position: absolute; top: 0; left: 0; height: 100%;
  background: #4f5e52; transition: width 0.5s ease;
}
.portfolio-nav {
  display: flex; gap: 20px; align-items: center;
}
.portfolio-nav-btn {
  background: none; border: none; cursor: pointer;
  font-size: 16px; color: #4f5e52; padding: 4px;
  transition: opacity 0.2s; line-height: 1;
}
.portfolio-nav-btn:disabled { opacity: 0.25; cursor: default; }
.portfolio-counter {
  font-size: 9px; letter-spacing: 0.2em; color: #9a9a9a; min-width: 36px; text-align: center;
}

/* ── KÜNSTLER ── */
.kuenstler {
  padding: 120px 0;
  background: #fff;
  border-bottom: 0.5px solid #d8d4cc;
}
.kuenstler-header {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 80px; margin-bottom: 72px;
}
.kuenstler-label {
  font-size: 9px; letter-spacing: 0.35em; color: #4f5e52;
  text-transform: lowercase; padding-top: 6px;
}
.kuenstler-headline {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 200; letter-spacing: 0.06em; color: #1a1a1a; line-height: 1.3;
}
.kuenstler-list { border-top: 0.5px solid #d8d4cc; }
.kuenstler-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; border-bottom: 0.5px solid #d8d4cc;
  cursor: pointer; transition: padding-left 0.3s ease;
}
.kuenstler-item:hover { padding-left: 12px; }
.kuenstler-item:hover .kuenstler-name { color: #4f5e52; }
.kuenstler-name {
  font-size: 15px; font-weight: 200; letter-spacing: 0.12em;
  color: #1a1a1a; transition: color 0.2s;
}
.kuenstler-meta { display: flex; align-items: center; gap: 32px; }
.kuenstler-arrow { color: #4f5e52; font-size: 14px; }

/* ── ÜBER ── */
.ueber {
  background: #f5f3ef;
  border-bottom: 0.5px solid #d8d4cc;
}
.ueber-banner {
  width: 100%; height: 520px;
  background: #d8d4cc;
  display: flex; align-items: center; justify-content: center;
}
.ueber-banner-text {
  font-size: 10px; letter-spacing: 0.25em; color: #a0a09a; text-transform: lowercase;
}
.ueber-content {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 80px; padding: 100px 48px;
  max-width: 1200px; margin: 0 auto;
}
.ueber-label-col { padding-top: 8px; }
.ueber-label {
  font-size: 9px; letter-spacing: 0.35em; color: #4f5e52;
  text-transform: lowercase; margin-bottom: 16px;
}
.ueber-name {
  font-size: 18px; font-weight: 200; letter-spacing: 0.1em;
  color: #1a1a1a; margin-bottom: 6px;
}
.ueber-role {
  font-size: 10px; letter-spacing: 0.18em; color: #7a7a7a; text-transform: lowercase;
}
.ueber-text {
  font-size: 15px; font-weight: 300; line-height: 2.0;
  letter-spacing: 0.03em; color: #3a3a3a;
}
.ueber-text p { margin-bottom: 24px; }
.ueber-text .highlight { color: #4f5e52; }
.ueber-closing {
  margin-top: 40px;
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 200; letter-spacing: 0.06em;
  color: #1a1a1a; line-height: 1.3;
}

/* ── KONTAKT ── */
.kontakt {
  padding: 120px 0;
  background: #fff;
  border-bottom: 0.5px solid #d8d4cc;
}
.kontakt-touch {
  text-align: center; margin-bottom: 80px;
  border-bottom: 0.5px solid #e8e4de; padding-bottom: 72px;
}
.kontakt-touch-label {
  font-size: 9px; letter-spacing: 0.4em; color: #4f5e52;
  text-transform: lowercase; margin-bottom: 20px;
}
.kontakt-touch-headline {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 200; letter-spacing: 0.08em; color: #1a1a1a;
  margin-bottom: 20px;
}
.kontakt-touch-person {
  font-size: 13px; letter-spacing: 0.28em; color: #4f5e52;
  text-transform: lowercase; margin-bottom: 10px;
}
.kontakt-touch-sub {
  font-size: 11px; letter-spacing: 0.18em; color: #9a9a9a; text-transform: lowercase;
}
.kontakt-touch-email {
  display: inline-block; margin-top: 32px;
  font-size: 14px; letter-spacing: 0.14em; color: #4f5e52;
  text-decoration: none; font-weight: 300;
  border-bottom: 0.5px solid #c8c4bc; padding-bottom: 4px;
  transition: border-color 0.2s;
}
.kontakt-touch-email:hover { border-color: #4f5e52; }
.kontakt-touch-phone {
  margin-top: 14px; font-size: 11px; letter-spacing: 0.2em;
  color: #b0aca4; text-transform: lowercase;
}
.kontakt-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
}
.kontakt-headline {
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 200; letter-spacing: 0.06em; color: #1a1a1a; margin-bottom: 12px;
}
.kontakt-sub {
  font-size: 12px; letter-spacing: 0.1em; color: #7a7a7a;
  margin-bottom: 40px; line-height: 1.8;
}
.nachricht-btn {
  margin-top: 12px;
  background: transparent; color: #4f5e52;
  border: 0.5px solid #4f5e52;
  padding: 14px 36px; font-size: 9px; letter-spacing: 0.3em;
  cursor: pointer; text-transform: lowercase; font-family: inherit;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}
.nachricht-btn:hover { background: #4f5e52; color: #f0ede8; }
.einladungen-text {
  font-size: 13px; line-height: 2.0; color: #6a6a6a;
  margin-bottom: 36px; max-width: 380px;
}
.email-input {
  width: 100%; border: none; border-bottom: 0.5px solid #c8c4bc;
  padding: 14px 0; font-size: 12px; letter-spacing: 0.1em;
  outline: none; color: #1a1a1a; background: transparent;
  font-family: inherit; display: block; margin-bottom: 20px;
  transition: border-color 0.2s;
}
.email-input:focus { border-bottom-color: #4f5e52; }
.email-input::placeholder { color: #b0aca4; }
.submit-btn {
  background: #4f5e52; color: #f0ede8; border: none;
  padding: 14px 36px; font-size: 9px; letter-spacing: 0.3em;
  cursor: pointer; text-transform: lowercase; font-family: inherit;
  transition: opacity 0.2s;
}
.submit-btn:hover { opacity: 0.85; }
.datenschutz-hinweis {
  margin-top: 48px; padding-top: 32px;
  max-width: 680px;
}
.checkbox-row {
  display: flex; gap: 12px; align-items: flex-start;
}
.checkbox-row input { margin-top: 3px; accent-color: #4f5e52; }
.checkbox-text {
  font-size: 10px; color: #9a9a9a; line-height: 1.7; letter-spacing: 0.04em;
}
.datenschutz-link {
  color: #4f5e52; text-decoration: none;
  border-bottom: 0.5px solid #c8c4bc; transition: border-color 0.2s;
}
.datenschutz-link:hover { border-color: #4f5e52; }

/* ── STAY SOCIAL ── */
.social-section {
  padding: 80px 0;
  background: #f5f3ef;
  border-bottom: 0.5px solid #d8d4cc;
}
.social-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 48px;
  display: flex; justify-content: space-between; align-items: center;
}
.social-label {
  font-size: 9px; letter-spacing: 0.35em; color: #4f5e52; text-transform: lowercase;
}
.social-headline {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 200; letter-spacing: 0.08em; color: #1a1a1a;
}
.social-links { display: flex; gap: 40px; align-items: center; }
.social-link {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-decoration: none; color: #4f5e52;
  transition: color 0.2s, transform 0.2s;
}
.social-link:hover { color: #3d4d40; transform: translateY(-2px); }
.social-icon {
  width: 40px; height: 40px;
  border: 0.5px solid #c8c4bc; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.social-link:hover .social-icon { border-color: #4f5e52; background: #4f5e52; }
.social-link:hover .social-icon svg { stroke: #f0ede8; }
.social-icon svg { width: 16px; height: 16px; stroke: #4f5e52; fill: none; stroke-width: 1.5; }
.social-name {
  font-size: 9px; letter-spacing: 0.2em; color: #7a7a7a; text-transform: lowercase;
}

/* ── FOOTER ── */
footer {
  background: #4f5e52;
  padding: 48px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-logo {
  font-size: 13px; font-weight: 200; letter-spacing: 0.22em;
  color: #f0ede8; text-transform: lowercase;
}
.footer-links { display: flex; gap: 32px; }
.footer-links a {
  font-size: 9px; letter-spacing: 0.18em; color: #8a9e8d;
  text-decoration: none; text-transform: lowercase; transition: color 0.2s;
}
.footer-links a:hover { color: #f0ede8; }
.footer-copy {
  font-size: 9px; letter-spacing: 0.12em; color: #6a7a6d;
}

/* ── RESPONSIVE OPTIMIZATIONS ── */
@media (max-width: 1024px) {
  .intro-grid, .leistungen-grid, .kuenstler-header, .ueber-content, .kontakt-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .leistungen-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-inner, .ueber-content, .social-inner, footer {
    padding: 0 24px;
  }
  footer {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  .social-inner {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }
  .leistungen-grid {
    grid-template-columns: 1fr;
  }
  .hero-legal {
    left: 24px;
    bottom: 24px;
  }
  .hero-social {
    right: 24px;
    bottom: 24px;
  }
}
