@font-face {
  font-family: "Prater Sans";
  src:
    url("assets/fonts/PraterSans-Regular.otf") format("opentype"),
    local("Prater Sans OT"),
    local("Prater Sans"),
    local("PraterSansOT");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hellschreiber Serif";
  src: url("assets/fonts/HellschreiberSerif-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Hellschreiber Serif";
  src: url("assets/fonts/HellschreiberSerif-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #efedeb;
  --surface: transparent;
  --surface-strong: #ffffff;
  --ink: #040404;
  --muted: #4e4c49;
  --yellow: #fff54d;
  --yellow-strong: #ffe600;
  --line: rgba(0, 0, 0, 0.06);
  --shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
  --radius-xl: 0;
  --radius-lg: 0;
  --radius-md: 0;
  --content-width: 980px;
  --content-padding-x: clamp(1.5rem, 6vw, 6rem);
  --display-font: "Prater Sans", Impact, Haettenschweiler, "Arial Narrow Bold",
    sans-serif;
  --body-font: "Hellschreiber Serif", Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.93)),
    url("assets/images/Bierhintergrund.png") center center / cover no-repeat fixed;
  font-family: "Hellschreiber Serif", Georgia, "Times New Roman", serif !important;
  font-weight: 400;
  font-size: 18px;
  overflow-x: hidden;
}

main:focus {
  outline: none;
}

body,
p,
span,
strong,
li,
h1,
h2,
h3,
a {
  -webkit-user-select: text;
  user-select: text;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
iframe:focus-visible,
[tabindex="-1"]:focus-visible {
  outline: 3px solid var(--yellow-strong);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  top: 0.5rem;
  left: 0.75rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(0, 0, 0, 0.16);
  transform: translateY(-140%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

code {
  padding: 0.15rem 0.45rem;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.08);
}

.page-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--content-width);
  margin: 0 auto;
  padding:
    clamp(1.25rem, 2.5vw, 2rem)
    var(--content-padding-x)
    clamp(3.5rem, 6vw, 5.5rem);
}

.site-header,
.hero,
.featured-video,
.video-list-section,
.shorts-section,
.welcome-section,
.playlist-section,
.about-section,
.proof-section,
.site-note,
.site-footer {
  position: relative;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-logo {
  display: block;
  width: 92px;
  height: 92px;
  flex: 0 0 auto;
  object-fit: contain;
  background: transparent;
  transform-origin: 50% 82%;
  transition: filter 0.25s ease;
}

.brand:hover .brand-logo,
.brand:focus-visible .brand-logo {
  animation: logo-cheers 700ms ease;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, 0.12));
}

.brand-copy {
  display: inline-flex;
  flex-direction: column;
  gap: 0.1rem;
}

.brand-title,
.eyebrow,
h1,
h2,
h3,
.video-kicker,
.card-tag {
  font-family: var(--display-font);
  letter-spacing: 0.015em;
}

.brand-title {
  font-size: clamp(1.7rem, 2.8vw, 2.9rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.brand-subtitle {
  font-size: 1rem;
  font-family: var(--body-font);
}

.hero-kicker,
.section-index {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-family: var(--body-font);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@keyframes logo-cheers {
  0% {
    transform: rotate(0deg) translateY(0);
  }

  22% {
    transform: rotate(-7deg) translateY(-2px);
  }

  48% {
    transform: rotate(5deg) translateY(-1px);
  }

  72% {
    transform: rotate(-3deg) translateY(0);
  }

  100% {
    transform: rotate(0deg) translateY(0);
  }
}

.header-actions,
.hero-actions,
.featured-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 48px;
  padding: 0.8rem 1.15rem;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.36);
  color: var(--ink);
  font-family: var(--body-font);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.hero,
.featured-video,
.video-list-section,
.shorts-section,
.about-section {
  scroll-margin-top: 1rem;
}

.button-primary {
  background: rgba(4, 4, 4, 0.92);
  color: #fff;
}

.button-secondary {
  background: transparent;
}

.hero,
.featured-video,
.video-list-section,
.shorts-section,
.welcome-section,
.playlist-section,
.about-section,
.proof-section,
.site-note {
  overflow: hidden;
  margin-top: clamp(2rem, 4vw, 3.5rem);
  padding: clamp(1.25rem, 2.2vw, 2rem) 0;
  border: 0;
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: none;
}

.hero {
  display: block;
  min-height: 0;
  background: transparent;
  box-shadow: none;
  padding: clamp(1.75rem, 3.5vw, 3rem) 0 clamp(3.25rem, 6vw, 5.5rem);
}

.hero-copy,
.featured-copy,
.section-heading,
.playlist-groups,
.about-grid,
.proof-grid,
.cta-strip,
.site-note {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 58rem;
  --hero-text-width: min(100%, 42rem);
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.97;
  letter-spacing: 0.04em;
}

h1 {
  max-width: none;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  letter-spacing: 0.04em;
}

.hero-headline {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.08em;
  max-width: var(--hero-text-width);
  line-height: 0.92;
  margin-bottom: clamp(1.4rem, 2.4vw, 2rem);
  letter-spacing: 0.04em;
}

.hero-headline span {
  display: block;
  letter-spacing: 0.04em;
}

h2 {
  font-size: clamp(1.58rem, 3.15vw, 2.92rem);
}

h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.5rem);
}

.hero-text,
.section-text,
.video-description,
.video-card p,
.about-copy p,
.quote-card p,
.site-note p,
.site-footer p,
.footer-links a {
  font-family: "Hellschreiber Serif", Georgia, "Times New Roman", serif !important;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-text {
  font-family: "Hellschreiber Serif", Georgia, "Times New Roman", serif !important;
  font-weight: 400;
  width: var(--hero-text-width);
  max-width: none;
  margin: 0;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.55;
  text-align: left;
  text-wrap: pretty;
}

.hero-text p {
  margin: 0 0 clamp(0.55rem, 0.9vw, 0.85rem);
}

.hero-text p:last-child {
  margin-bottom: 0;
}

.hero-text strong {
  font-weight: 700;
}

.hero-actions {
  margin-top: clamp(1.75rem, 2.8vw, 2.5rem);
  gap: 0.9rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  font-family: var(--body-font);
}

.welcome-copy {
  max-width: 56rem;
}

.welcome-copy p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-family: var(--body-font);
  font-size: 1.08rem;
  line-height: 1.78;
}

.welcome-lead {
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 700;
}

.welcome-signature {
  color: var(--ink);
  font-style: italic;
}

.welcome-tags {
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.welcome-section,
.featured-video,
.video-list-section,
.shorts-section,
.playlist-section,
.about-section,
.proof-section,
.site-note {
  background: transparent;
}

.welcome-section {
  border: 0;
  border-top: 0;
  box-shadow: none;
}

.section-heading {
  display: block;
  margin-bottom: clamp(1.5rem, 2.5vw, 2.25rem);
  max-width: 40rem;
}

.section-heading .eyebrow {
  margin-bottom: 0.5rem;
}

.section-heading .section-text {
  margin: 0.75rem 0 0;
  max-width: 40rem;
}

.featured-video-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 2.2rem 2.8rem;
  align-items: start;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.8rem, 3vw, 2.6rem);
  align-items: start;
}

.about-section {
  background: #ffb100;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  padding-block: clamp(1.75rem, 3vw, 2.75rem);
  border-radius: 0;
  margin-block: clamp(1.75rem, 3vw, 2.75rem);
}

.about-inner {
  max-width: var(--content-width);
  margin-inline: auto;
  padding-inline: var(--content-padding-x);
}

.about-section .section-index,
.about-section .section-heading h2,
.about-section .about-copy,
.about-section .about-copy p {
  color: #ffffff;
  font-weight: 600;
}

.about-section .section-index {
  opacity: 1;
  font-weight: 700;
}

.about-section .about-copy p {
  color: #ffffff;
}

.video-frame-wrap {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  max-width: 48rem;
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-height: 0;
  border-radius: 0;
  background: #000;
}

.video-poster {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background-position: center;
  background-size: cover;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.video-poster:focus-visible .play-button,
.video-card-thumb:focus-visible {
  box-shadow: 0 0 0 4px rgba(238, 189, 15, 0.28);
}

.video-poster-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.34));
}

.play-button {
  position: relative;
  z-index: 1;
  width: 84px;
  height: 84px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.play-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid var(--ink);
  transform: translate(-35%, -50%);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.video-frame.is-playing iframe {
  z-index: 3;
}

.video-frame.is-playing .video-poster {
  opacity: 0;
  pointer-events: none;
}

.video-frame iframe[hidden],
.video-poster[hidden] {
  display: none !important;
}

.video-kicker,
.video-meta,
.card-tag,
.card-meta {
  text-transform: uppercase;
}

.video-kicker,
.card-tag {
  display: none;
}

.video-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.featured-copy {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  max-width: 34rem;
  padding-top: 0;
  padding-right: 0;
}

.video-meta {
  margin: 1rem 0 1.25rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--muted);
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 62rem;
}

.shorts-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0 0 clamp(1.4rem, 2vw, 2rem);
  max-width: 62rem;
}

.filter-button {
  min-height: 36px;
  min-width: 36px;
  padding: 0.42rem 0.7rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: transparent;
  color: var(--ink);
  font-family: var(--body-font);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.filter-button:hover,
.filter-button:focus-visible {
  transform: translateY(-1px);
}

.filter-button.is-active {
  border-color: rgba(4, 4, 4, 0.92);
  background: rgba(4, 4, 4, 0.92);
  color: #fff;
}

.video-card,
.playlist-card,
.about-card,
.quote-card {
  display: grid;
  gap: 0.6rem;
  padding: 0;
  border-radius: var(--radius-lg);
}

.video-card {
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 0.75rem 1.75rem;
  align-items: start;
  padding: clamp(1.6rem, 2.4vw, 2.2rem) 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.shorts-grid .video-card {
  grid-template-columns: 120px minmax(0, 1fr);
}

.shorts-grid .video-card-thumb {
  aspect-ratio: 9 / 16;
}

.video-card-thumb {
  grid-column: 1;
  grid-row: 1 / span 5;
  align-self: start;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 0;
  aspect-ratio: 16 / 9;
  max-height: none;
  background: #d8d8d8;
  cursor: pointer;
}

.video-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-tag {
  margin: 0;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
}

.video-card .card-tag,
.video-card h3,
.video-card p,
.video-card .card-meta,
.video-card .card-actions {
  grid-column: 2;
  margin: 0;
}

.video-card h3 {
  font-size: clamp(1.34rem, 2vw, 1.7rem);
  line-height: 0.98;
}

.card-meta {
  font-size: 0.9rem;
  font-family: var(--body-font);
  font-weight: 700;
  color: var(--muted);
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.card-actions .button {
  width: auto;
  min-height: 38px;
  padding: 0.5rem 0.85rem;
  font-size: 0.9rem;
}

.playlist-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.2rem;
}

.playlist-card h3 {
  font-size: clamp(1.7rem, 2vw, 2.2rem);
}

.playlist-card,
.quote-card,
.about-card,
.milestone {
  box-shadow: none;
}

.playlist-card,
.quote-card,
.about-card {
  background: transparent;
}

.playlist-card ul {
  margin: 0;
  padding-left: 1rem;
  color: var(--muted);
  line-height: 1.6;
  font-family: var(--body-font);
}

.about-visual {
  display: flex;
  justify-content: flex-start;
}

.about-portrait-frame {
  width: min(100%, 13rem);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 50%;
  background: #ffffff;
}

.about-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
  transform: scale(1.58);
  transform-origin: center center;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.8rem;
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
}

.cta-strip p {
  margin: 0;
  font-size: 1.1rem;
  color: var(--ink);
  font-family: var(--body-font);
  font-weight: 700;
}

.site-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  padding: clamp(2.5rem, 4vw, 3.5rem) 0 1rem;
  border-top: 1px solid var(--line);
  flex-wrap: nowrap;
}

.site-footer p {
  margin: 0;
  white-space: nowrap;
}

.site-footer p,
.footer-links a {
  font-size: 0.95rem;
  line-height: 1;
  vertical-align: middle;
}

.footer-links {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  white-space: nowrap;
}

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

.footer-links a {
  color: var(--ink);
  display: inline-block;
  padding: 0;
}

@media (max-width: 1024px) {
  .playlist-groups,
  .about-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 100%;
    --hero-text-width: 100%;
  }

  .video-card {
    grid-template-columns: 138px minmax(0, 1fr);
  }

  .shorts-grid .video-card {
    grid-template-columns: 116px minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .featured-video-grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }

  body {
    background-attachment: scroll;
    font-size: 17px;
  }

  .page-shell {
    width: min(calc(100% - 1.5rem), var(--content-width));
    padding-top: 0.75rem;
    padding-bottom: 1.75rem;
  }

  .site-header,
  .site-footer,
  .cta-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header {
    gap: 0.8rem;
  }

  .brand {
    align-items: flex-start;
  }

  .brand-copy {
    gap: 0.2rem;
  }

  .header-actions,
  .hero-actions,
  .featured-actions,
  .footer-links {
    width: 100%;
  }

  .hero-actions .button,
  .featured-actions .button {
    flex: 1 1 100%;
    width: 100%;
  }

  .header-actions .button {
    width: auto;
  }

  .hero,
  .featured-video,
  .video-list-section,
  .shorts-section,
  .playlist-section,
  .about-section,
  .proof-section,
  .site-note {
    padding: 0.75rem 0;
    border-radius: 0;
  }

  .section-heading {
    display: block;
    margin-bottom: 1.2rem;
  }

  .hero-copy {
    gap: 0.9rem;
  }

  .brand-title {
    font-size: 2rem;
  }

  .brand-logo {
    width: 69px;
    height: 69px;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.7rem, 12vw, 4.1rem);
  }

  .hero-headline {
    max-width: 8ch;
    gap: 0.06em;
    margin-block: 0.5rem 0.8rem;
  }

  .hero-headline span {
    max-width: 100%;
    white-space: normal;
    text-wrap: balance;
  }

  .hero-text {
    max-width: 32rem;
    line-height: 1.5;
  }

  .hero-text p {
    margin-bottom: 0.55rem;
  }

  h2 {
    font-size: clamp(1.3rem, 5.5vw, 1.96rem);
  }

  h3 {
    font-size: clamp(1.45rem, 8vw, 2rem);
  }

  .about-portrait-frame {
    width: min(100%, 18rem);
  }

  .about-grid {
    gap: 1.25rem;
  }

  .play-button {
    width: 70px;
    height: 70px;
  }

  .video-grid {
    gap: 1.2rem;
  }

  .video-card {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .video-card-thumb,
  .video-card .card-tag,
  .video-card h3,
  .video-card p,
  .video-card .card-meta,
  .video-card .card-actions {
    grid-column: 1;
  }

  .video-card-thumb {
    grid-row: auto;
  }

  .card-actions {
    flex-direction: column;
  }

  .card-actions .button {
    width: 100%;
  }

  .playlist-groups {
    grid-template-columns: 1fr;
  }

  .shorts-filters {
    margin-bottom: 1rem;
  }

  .filter-button {
    width: auto;
  }

  .featured-copy {
    gap: 0.5rem;
  }

  .site-footer {
    padding-block: 1.75rem 0.8rem;
    gap: 0.85rem;
  }
}

@media (max-width: 430px) {
  body {
    font-size: 16px;
  }

  .page-shell {
    width: min(calc(100% - 1rem), var(--content-width));
    padding-top: 0.5rem;
    padding-bottom: 1.25rem;
  }

  .hero,
  .featured-video,
  .video-list-section,
  .shorts-section,
  .playlist-section,
  .about-section,
  .proof-section,
  .site-note {
    padding: 0.5rem 0;
  }

  .section-heading {
    margin-bottom: 0.9rem;
  }

  .hero-copy {
    gap: 0.7rem;
  }

  .brand {
    gap: 0.65rem;
  }

  .brand-logo {
    width: 62px;
    height: 62px;
  }

  .brand-title {
    font-size: clamp(1.4rem, 8vw, 1.8rem);
  }

  .brand-subtitle {
    font-size: 0.92rem;
    display: none;
  }

  h1 {
    font-size: clamp(2.35rem, 12.2vw, 3.4rem);
    line-height: 1.03;
  }

  .hero-headline {
    max-width: 7ch;
    gap: 0.05em;
    margin-block: 0.35rem 0.6rem;
  }

  .hero-headline span:first-child {
    max-width: 6.6ch;
  }

  .hero-headline span:last-child {
    max-width: 7ch;
  }

  .hero-text {
    line-height: 1.43;
  }

  .hero-text p {
    margin-bottom: 0.45rem;
  }

  h2 {
    font-size: clamp(1.18rem, 6.2vw, 1.7rem);
  }

  h3 {
    font-size: clamp(1.3rem, 7.5vw, 1.8rem);
  }

  .about-portrait-frame {
    width: min(100%, 15rem);
  }

  .about-grid {
    gap: 1rem;
  }

  .about-section .about-copy p {
    line-height: 1.48;
    margin-bottom: 0.75rem;
  }

  .video-grid {
    gap: 1rem;
  }

  .featured-video-grid {
    gap: 1.1rem;
  }

  .hero-actions,
  .featured-actions,
  .card-actions {
    gap: 0.6rem;
  }

  .button {
    padding-inline: 1rem;
    padding-block: 0.75rem 0.8rem;
  }

  .site-footer {
    padding-block: 1.4rem 0.5rem;
    gap: 0.7rem;
  }

  .footer-links {
    gap: 0.45rem 1rem;
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .brand:hover .brand-logo,
  .brand:focus-visible .brand-logo {
    animation: none;
  }
}

@media (hover: none) and (pointer: coarse) {
  .brand:hover .brand-logo {
    animation: none;
    filter: none;
  }
}
