@font-face {
  font-family: "Playfair Display";
  src: url("fonts/playfair-display-v37-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Playfair Display";
  src: url("fonts/playfair-display-v37-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("fonts/lato-v24-latin-regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Lato";
  src: url("fonts/lato-v24-latin-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

:root {
  --white: #fff5f8;
  --bg: #fde8f0;
  --light: #f5c6d8;
  --mid: #e8899a;
  --accent: #d4607a;
  --dark: #8b3a52;
  --text-body: #6b2840;
  --text-heading: #5c1f35;
  --radius: 16px;
  --shadow-card: 0 4px 20px rgba(139, 58, 82, 0.08);
  --shadow-card-hover: 0 8px 28px rgba(139, 58, 82, 0.14);
  --font-body: "Lato", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  min-height: 100%;
  background-color: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-body);
  background-color: var(--bg);
  position: relative;
}

p,
li {
  font-family: var(--font-body);
  color: var(--text-body);
  opacity: 1;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("images/pattern-vogel.png");
  background-repeat: repeat;
  background-size: 300px;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

main,
section,
.site-footer,
.page-hero,
nav {
  position: relative;
  z-index: 1;
}

main a:not(.btn):not(.chip):not(.card--link) {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  opacity: 1;
}

main a:not(.btn):not(.chip):not(.card--link):hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-feature-settings: "kern" 1;
  color: var(--text-heading);
}

.wrap {
  width: min(1100px, 92vw);
  margin-inline: auto;
}

.narrow {
  width: min(640px, 92vw);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 245, 248, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--light);
}

.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 1rem 0;
  text-align: center;
}

.logo {
  font-family: var(--font-display);
  font-feature-settings: "kern" 1;
  font-weight: 700;
  font-size: clamp(1.35rem, 3.5vw, 1.65rem);
  letter-spacing: 0.02em;
  color: var(--text-heading);
  text-decoration: none;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  row-gap: 0.35rem;
}

.nav a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--accent);
}

.nav a:not(:last-child)::after {
  content: "·";
  margin: 0 0.75rem;
  color: var(--mid);
  font-weight: 700;
  pointer-events: none;
}

.nav a[aria-current="page"] {
  color: var(--accent);
  text-decoration: none;
}

.home-hero {
  background: transparent;
}

.home-hero__kirsch {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(280px, min(72vh, 700px));
  width: 100%;
  overflow: hidden;
  background: var(--dark);
}

.home-hero__kirsch::before {
  content: "";
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(139, 58, 82, 0.45),
    rgba(139, 58, 82, 0.62)
  );
  pointer-events: none;
}

.home-hero__kirsch-img {
  grid-area: 1 / 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
}

.home-hero__kirsch-overlay {
  display: none;
}

.hero-content {
  grid-area: 1 / 1;
  align-self: end;
  justify-self: center;
  width: 100%;
  max-width: min(1100px, 92vw);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 2;
  padding: 2rem;
  box-sizing: border-box;
}

.hero-content .eyebrow {
  display: inline-block;
  align-self: flex-start;
  background: var(--light);
  color: var(--dark);
  border-radius: 12px;
  padding: 2px 10px;
  font-family: var(--font-body);
  text-shadow: none;
  margin: 0;
  opacity: 1;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 3.35rem);
  font-weight: 700;
  color: var(--white);
  max-width: 24ch;
  margin: 0;
  text-shadow: 0 2px 24px rgba(139, 58, 82, 0.45);
}

.hero-content .lead {
  font-family: var(--font-body);
  color: var(--white);
  opacity: 0.92;
  max-width: 36rem;
  margin: 0;
  text-shadow: 0 1px 16px rgba(139, 58, 82, 0.4);
}

.hero-content .btn {
  align-self: flex-start;
  background: var(--accent);
  color: var(--white);
  border-radius: 25px;
  padding: 12px 28px;
  box-shadow: var(--shadow-card-hover);
  transition: background 0.2s ease;
  opacity: 1;
}

.hero-content .btn:hover {
  background: #c0506a;
}

@media (max-width: 720px) {
  .home-hero__kirsch {
    grid-template-rows: minmax(240px, min(62vh, 560px));
  }
}

.hero-liebling {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4px;
  width: 100%;
  background: transparent;
}

.hero-liebling__item {
  margin: 0;
  overflow: hidden;
  background: rgba(245, 198, 216, 0.4);
}

.hero-liebling__item img {
  width: 100%;
  height: clamp(220px, min(70vh, 720px), 720px);
  object-fit: cover;
  object-position: center;
  display: block;
  vertical-align: middle;
}

@media (max-width: 720px) {
  .hero-liebling {
    grid-template-columns: 1fr;
  }

  .hero-liebling__item--primary img {
    height: min(52vh, 480px);
  }

  .hero-liebling__item--secondary img {
    height: min(40vh, 360px);
  }
}

.btn--ghost {
  background: var(--white);
  border: 1px solid var(--light);
  backdrop-filter: blur(6px);
  color: var(--dark);
  opacity: 1;
}

.btn--ghost:hover {
  background: var(--light);
  border-color: var(--mid);
}

.hero {
  padding: clamp(3rem, 10vw, 6rem) 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 20%, rgba(232, 137, 154, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 50% at 85% 70%, rgba(245, 198, 216, 0.35), transparent 50%),
    transparent;
}

.hero-inner {
  max-width: 38rem;
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-block;
  background: var(--light);
  color: var(--text-body);
  border-radius: 12px;
  padding: 2px 10px;
  font-family: var(--font-body);
  opacity: 1;
}

h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-heading);
}

.lead {
  margin: 0 0 1.75rem;
  font-size: 1.1rem;
  color: var(--text-body);
  opacity: 1;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  border-radius: 25px;
  border: none;
  box-shadow: var(--shadow-card);
  transition: background 0.2s, transform 0.15s;
  opacity: 1;
}

.btn:hover {
  background: #c0506a;
  color: var(--white);
  transform: translateY(-1px);
}

.section {
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: transparent;
}

.section--alt {
  background: transparent;
}

h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-heading);
}

.section-intro {
  margin: 0 0 2rem;
  color: var(--text-body);
  opacity: 1;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: 16px;
  padding: 1.25rem;
  border: none;
  box-shadow: var(--shadow-card);
}

a.card--link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

a.card--link:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.card-more {
  margin-top: auto;
  padding-top: 0.75rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 1;
}

.card-visual--tile {
  height: 200px;
}

.hint {
  margin: 1.5rem 0 0;
  font-size: 0.9rem;
  color: var(--text-body);
  opacity: 1;
}

.hint code {
  font-size: 0.85em;
  background: var(--light);
  color: var(--text-body);
  padding: 2px 10px;
  border-radius: 12px;
  opacity: 1;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.75rem, 5vw, 3rem);
  align-items: start;
}

.about-split__text h2 {
  margin-bottom: 1rem;
}

.about-split__text p:last-child {
  margin-bottom: 0;
}

.about-split__photo {
  position: sticky;
  top: 5.5rem;
}

.portrait-note {
  display: none;
}

.portrait-placeholder {
  min-height: 300px;
  margin: 0;
  border-radius: 16px;
  background: var(--light);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  opacity: 1;
}

.portrait-frame.portrait-frame--split .portrait-placeholder {
  width: 100%;
}

@media (max-width: 860px) {
  .about-split {
    grid-template-columns: 1fr;
  }

  .about-split__photo {
    position: static;
    order: -1;
  }
}

.portrait-frame {
  margin: 1.5rem 0 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--light);
  box-shadow: var(--shadow-card);
  max-width: 420px;
}

.portrait-frame img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

.portrait-frame.portrait-frame--split {
  margin: 0;
  border: none;
  box-shadow: none;
  max-width: none;
}

@media (min-width: 861px) {
  .portrait-frame.portrait-frame--split {
    max-width: none;
  }
}

@media (max-width: 860px) {
  .portrait-frame.portrait-frame--split {
    max-width: 420px;
    margin-inline: auto;
  }
}

.page-main {
  padding-top: 0.5rem;
}

.page-hero {
  background: var(--light);
  padding: clamp(2.5rem, 8vw, 4.25rem) 0;
  text-align: center;
}

.page-hero h1 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  color: var(--text-heading);
}

.page-hero__lead {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-body);
  opacity: 1;
  max-width: 36rem;
  margin-inline: auto;
  line-height: 1.55;
}

.page-title-block {
  padding: clamp(2rem, 6vw, 3.5rem) 0 0;
}

.page-title-block h1 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  color: var(--text-heading);
}

.page-lead {
  margin: 0 0 1.25rem;
  color: var(--text-body);
  opacity: 1;
  max-width: 42rem;
}

.malerei-subnav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.75rem;
  padding: 0.25rem 0 1.25rem;
  font-family: var(--font-body);
  font-size: 0.98rem;
}

.malerei-subnav a {
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 2px solid var(--light);
  padding-bottom: 2px;
  letter-spacing: 0.03em;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.malerei-subnav a:hover {
  color: var(--dark);
  border-color: var(--accent);
}

.malerei-subnav__sep {
  color: var(--mid);
  font-weight: 700;
  user-select: none;
}

.section-anchor {
  scroll-margin-top: 6rem;
}

.works-section-intro {
  margin-top: 0.35rem;
  margin-bottom: 1.75rem;
}

.subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1rem;
}

.subnav a {
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 2px solid var(--light);
  padding-bottom: 2px;
  letter-spacing: 0.03em;
  transition: color 0.2s ease, border-color 0.2s ease;
  opacity: 1;
}

.subnav a:hover {
  color: var(--dark);
  border-color: var(--accent);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.works-grid--magnete {
  grid-template-columns: repeat(auto-fit, minmax(260px, 380px));
  max-width: 820px;
}

@media (max-width: 900px) {
  .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .works-grid--magnete {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    max-width: none;
  }
}

@media (max-width: 540px) {
  .works-grid {
    grid-template-columns: 1fr;
  }

  .works-grid--magnete {
    grid-template-columns: 1fr;
  }
}

.work-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.work-card__media {
  margin: 0;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1rem;
  border-radius: 12px 12px 0 0;
  background: var(--light);
  overflow: hidden;
}

.work-card__media img {
  max-width: 100%;
  max-height: min(88vh, 960px);
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  vertical-align: middle;
}

.work-card__placeholder {
  min-height: 220px;
  background: var(--light);
  border-radius: 12px 12px 0 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-body);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
  opacity: 1;
}

.work-card__body {
  flex-shrink: 0;
  padding: 1.15rem 1.25rem 1.35rem;
}

.work-card__title {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-heading);
}

.work-card__material {
  margin: 0 0 0.25rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-body);
  opacity: 1;
}

.work-card__year {
  margin: 0 0 0.65rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-body);
  opacity: 1;
}

.work-card__desc {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--text-body);
  opacity: 1;
  line-height: 1.55;
}

.content-card {
  background: var(--white);
  border-radius: 16px;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  box-shadow: var(--shadow-card);
  max-width: 42rem;
  margin-inline: auto;
}

.content-card h2 {
  margin-top: 1.5rem;
  margin-bottom: 0.65rem;
  font-size: clamp(1.2rem, 2.5vw, 1.45rem);
  color: var(--text-heading);
}

.content-card h2:first-child {
  margin-top: 0;
}

.content-card p,
.content-card address {
  margin: 0 0 0.75rem;
  font-style: normal;
  color: var(--text-body);
  opacity: 1;
}

.content-hint {
  margin: 1.25rem 0 0;
  font-size: 0.9rem;
  color: var(--text-body);
  opacity: 1;
}

.content-card--legal {
  max-width: 800px;
  padding: 2rem;
  background: var(--white);
}

.content-card--legal h1 {
  margin-top: 0;
  color: var(--text-heading);
}

.content-card--legal h2 {
  margin-top: 1.75rem;
  color: var(--text-heading);
}

.content-card--legal p,
.content-card--legal address {
  color: var(--text-body);
  font-family: var(--font-body);
  font-style: normal;
  opacity: 1;
}

.content-card--legal a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  opacity: 1;
}

.content-card--legal a:hover {
  color: var(--text-heading);
  text-decoration: underline;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.gallery--dense {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.gallery-item {
  margin: 0;
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  border: 1px solid var(--light);
  background: rgba(245, 198, 216, 0.35);
  display: flex;
  flex-direction: column;
}

.gallery-item > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.gallery--dense .gallery-item > img {
  aspect-ratio: 1;
}

.gallery-item figcaption {
  padding: 0.65rem 0.5rem 0.35rem;
  font-size: 0.86rem;
  color: var(--text-body);
  opacity: 1;
  line-height: 1.45;
  background: var(--white);
}

.gallery--leinwand {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.gallery--leinwand .gallery-item > img {
  min-height: 200px;
}

.project-block {
  margin: 0 0 clamp(2.5rem, 6vw, 4rem);
  padding-bottom: clamp(2rem, 5vw, 3rem);
  border-bottom: 1px solid var(--light);
}

.project-block:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.project-block h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  color: var(--text-heading);
}

.project-block .project-intro {
  margin: 0 0 1rem;
  color: var(--text-body);
  opacity: 1;
  max-width: 42rem;
}

.project-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 0 0 1rem;
}

.project-pair figure {
  margin: 0;
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  border: 1px solid var(--light);
  background: rgba(245, 198, 216, 0.35);
}

.project-pair img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.project-pair figcaption {
  padding: 0.5rem 0.65rem;
  font-size: 0.82rem;
  color: var(--text-body);
  opacity: 1;
  background: var(--white);
}

.project-video {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.project-video .hint-inline {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-body);
  opacity: 1;
}

@media (max-width: 640px) {
  .project-pair {
    grid-template-columns: 1fr;
  }
}

.link-chips {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.chip {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 12px;
  background: var(--mid);
  border: none;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--white);
  transition: background 0.2s ease, color 0.2s ease;
  opacity: 1;
}

.chip:not(.chip--disabled):hover {
  background: var(--accent);
  color: var(--white);
}

.chip--disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.card h3 {
  margin: 1rem 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-heading);
}

.card p {
  margin: 0;
  font-size: 0.98rem;
  color: var(--text-body);
  opacity: 1;
}

.card-visual {
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(
    145deg,
    rgba(232, 137, 154, 0.4) 0%,
    rgba(245, 198, 216, 0.55) 100%
  );
}

.card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section--alt h2 + p {
  margin-top: 0.75rem;
}

.gaming-panel {
  background: #f5c6d8;
  padding: 3rem 2rem;
  border-radius: 16px;
  margin: 2rem auto;
  max-width: 960px;
  box-sizing: border-box;
}

.gaming-panel__layout {
  display: grid;
  grid-template-columns: minmax(110px, 168px) minmax(0, 1fr);
  gap: 1.75rem 2rem;
  align-items: start;
}

.gaming-panel__stage {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.gaming-panel__stage-img {
  width: clamp(104px, 18vw, 152px);
  height: clamp(104px, 18vw, 152px);
  border-radius: 50%;
  object-fit: cover;
  object-position: 22% 45%;
  border: 3px solid rgba(255, 245, 248, 0.85);
  box-shadow: 0 6px 24px rgba(139, 58, 82, 0.18);
  box-sizing: border-box;
}

.gaming-panel__stage-caption {
  margin: 0.75rem 0 0;
  padding: 0 0.15rem;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--text-body);
}

.gaming-panel__stage-caption cite {
  font-style: normal;
  font-weight: 700;
}

.gaming-panel__body {
  min-width: 0;
}

.gaming-panel h2 {
  margin-top: 0;
}

@media (max-width: 640px) {
  .gaming-panel__layout {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .gaming-panel__body {
    text-align: left;
    width: 100%;
  }

  .gaming-panel__body .link-chips {
    justify-content: center;
  }
}

.gaming-panel .link-chips {
  margin-top: 1.25rem;
}

.gaming-panel .chip {
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  background: #d4607a;
  color: #fff5f8;
  border-radius: 25px;
}

.gaming-panel .chip:not(.chip--disabled):hover {
  background: #c0506a;
  color: #fff5f8;
}

.gaming-panel__note {
  margin: 1.5rem 0 0;
  font-size: 0.9rem;
  color: #8b3a52;
  opacity: 0.85;
  font-style: italic;
}

.email-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 1;
}

.site-footer {
  padding: 24px;
  background: var(--light);
  color: var(--text-heading);
  text-align: center;
  font-size: 1rem;
  border-top: none;
}

.footer-inner {
  text-align: center;
}

.footer-contact {
  margin: 0 0 0.5rem;
  font-family: var(--font-body);
  color: var(--text-heading);
  opacity: 1;
}

.footer-contact a {
  color: var(--text-heading);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
  opacity: 1;
}

.footer-contact a:hover {
  color: var(--accent);
}

.footer-sep {
  margin: 0 0.35rem;
  color: var(--mid);
  opacity: 1;
}

.footer-copy {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-heading);
  opacity: 1;
}

hr {
  border: none;
  border-top: 1px solid var(--light);
  margin: 2rem 0;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--light);
  border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--mid);
}
