/* ============================================================
   VISIMONSTUDIO — Main Stylesheet
   ============================================================ */

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black: #000000;
  --white: #ffffff;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-400: #9e9e9e;
  --gray-600: #666666;
  --gray-800: #1a1a1a;
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Fira Sans Condensed', sans-serif;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 28px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background var(--transition), padding var(--transition);
}

.nav.scrolled,
.nav--dark {
  background: rgba(0, 0, 0, 0.97);
  padding: 18px 56px;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav__links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--white);
}

.nav__links a.active {
  border-bottom: 1px solid var(--white);
  padding-bottom: 2px;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ============================================================
   MOBILE MENU OVERLAY
   ============================================================ */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 10000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.nav-overlay.active {
  display: flex;
}

.nav-overlay a {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  transition: opacity var(--transition);
}

.nav-overlay a:hover {
  opacity: 0.5;
}

.nav-overlay__close {
  position: absolute;
  top: 28px;
  right: 56px;
  color: var(--white);
  font-size: 36px;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  font-family: var(--font-display);
}

/* ============================================================
   VIDEO SCENE (scroll-to-play hero)
   ============================================================ */
.video-scene {
  position: relative;
  height: 350vh;
}

.video-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.hero__title {
  font-size: clamp(52px, 10vw, 128px);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero__subtitle {
  font-size: clamp(14px, 2.5vw, 20px);
  font-weight: 300;
  letter-spacing: 0.4em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  margin-bottom: 56px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 15px 40px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  outline: none;
  background: none;
}

.btn--outline-white {
  border-color: var(--white);
  color: var(--white);
}

.btn--outline-white:hover {
  background: var(--white);
  color: var(--black);
}

.btn--black {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.btn--black:hover {
  background: transparent;
  color: var(--black);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: 160px 0 88px;
  background:
    linear-gradient(rgba(0,0,0,0.58), rgba(0,0,0,0.58)),
    url('../images/titelseite.jpg') center / cover no-repeat var(--black);
  color: var(--white);
}

.page-hero h1 {
  font-size: clamp(44px, 8vw, 96px);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero .section-label {
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 12px;
}

.page-hero__sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  margin-top: 12px;
  max-width: 600px;
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 56px;
}

.section-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 16px;
}

.section-header {
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: clamp(32px, 5vw, 56px);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: var(--gray-600);
  max-width: 560px;
  line-height: 1.75;
}

/* ============================================================
   ABOUT / WELCOME
   ============================================================ */
.about {
  padding: 112px 0;
  background: var(--white);
  position: relative;
  z-index: 1;
}

.about__intro {
  max-width: 760px;
  margin-bottom: 72px;
}

.about__intro h2 {
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 28px;
  line-height: 1.2;
}

.about__intro p {
  font-size: 18px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 18px;
}

.about__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--gray-800);
  cursor: pointer;
}

.portfolio-card__img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.portfolio-card__img-wrap > * {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.portfolio-card:hover .portfolio-card__img-wrap > * {
  transform: scale(1.06);
}

.portfolio-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  transition: background var(--transition);
}

.portfolio-card:hover .portfolio-card__overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.25) 60%);
}

.portfolio-card__label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.portfolio-card__title {
  font-size: 30px;
  color: var(--white);
  margin-bottom: 20px;
}

.portfolio-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  padding-bottom: 3px;
  transition: border-color var(--transition), opacity var(--transition);
}

.portfolio-card__link:hover {
  border-color: var(--white);
  opacity: 0.8;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  padding: 96px 0;
  background: var(--gray-100);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.feature-item {
  background: var(--white);
  text-align: center;
  padding: 56px 40px;
}

.feature-item__icon {
  font-size: 40px;
  margin-bottom: 24px;
  display: block;
  color: var(--black);
}

.feature-item h3 {
  font-size: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.feature-item p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.75;
}

/* ============================================================
   PORTFOLIO SECTION
   ============================================================ */
.portfolio {
  padding: 112px 0;
  background: var(--white);
  position: relative;
  z-index: 1;
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}

.project-card {
  overflow: hidden;
  background: var(--gray-100);
}

.project-card__img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--gray-800);
}

.project-card__img-wrap > * {
  width: 100%;
  height: 100%;
  transition: transform 0.7s ease;
}

.project-card:hover .project-card__img-wrap > * {
  transform: scale(1.05);
}

.project-card__body {
  padding: 28px 32px 32px;
}

.project-card__category {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 8px;
}

.project-card__title {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 600;
}

.project-card__desc {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.65;
}

.project-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 11px;
  letter-spacing: 0.06em;
  border: 1px solid var(--gray-200);
  color: var(--gray-600);
}

.project-card__img-wrap--switch {
  overflow: hidden;
}

.img-track {
  --carousel-count: 2;
  display: flex;
  width: calc(var(--carousel-count) * 100%);
  height: 100%;
  will-change: transform;
}

.img-track img {
  width: calc(100% / var(--carousel-count));
  height: 100%;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  transition: none;
  transform: none !important;
}

.img-track {
  transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
}

.project-card--wide {
  grid-column: 1 / -1;
}

.project-card--wide .project-card__img-wrap {
  aspect-ratio: 21 / 8;
}

.project-card--video .project-card__img-wrap {
  aspect-ratio: 16 / 9;
}

.project-card__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: none !important;
  transition: none;
}

.project-card__img-wrap--scroll-hover {
  overflow: hidden;
  position: relative;
}

.project-card__img-wrap--scroll-hover::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 18px rgba(0, 0, 0, 0.18);
  pointer-events: none;
  z-index: 1;
}

.project-card__img-wrap--scroll-hover > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 0%;
  display: block;
  transform: none !important;
  transition: object-position 10s ease-in-out;
}

.project-card:hover .project-card__img-wrap--scroll-hover > img {
  object-position: center 100%;
  transform: none !important;
}

/* ============================================================
   3D MODEL SHOWCASE & HEADER ROW
   ============================================================ */
.portfolio__top-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

.portfolio__top-row .section-header {
  margin-bottom: 0;
}

model-viewer.model-showcase {
  display: block;
  width: 100%;
  height: 450px;
  background-color: #ffffff !important;
  --progress-bar-color: transparent;
  --progress-bar-height: 0px;
}

@media (max-width: 992px) {
  .portfolio__top-row {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 56px;
  }
  
  model-viewer.model-showcase {
    height: 380px;
  }
}

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial {
  padding: 112px 0;
  background: var(--black);
  color: var(--white);
}

.testimonial__inner {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.testimonial__stars {
  font-size: 24px;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-bottom: 36px;
}

.testimonial__quote {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 44px;
  color: rgba(255, 255, 255, 0.88);
}

.testimonial__author {
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   TATTOO GALLERY
   ============================================================ */
.tattoo {
  padding: 112px 0;
  background: var(--white);
}

.tattoo__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.tattoo__item {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--gray-800);
  position: relative;
}

.tattoo__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
  filter: grayscale(100%);
}

.tattoo__item:hover img {
  transform: scale(1.08);
  filter: grayscale(20%);
}

.tattoo__ig-link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.tattoo__ig-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
  filter: grayscale(100%);
}

.tattoo__item:hover .tattoo__ig-link img {
  transform: scale(1.08);
  filter: grayscale(0%);
}

.tattoo__ig-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  transition: background var(--transition);
}

.tattoo__item:hover .tattoo__ig-overlay {
  background: rgba(0, 0, 0, 0.55);
}

.tattoo__ig-caption {
  font-size: 14px;
  color: var(--white);
  text-align: center;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--transition), transform var(--transition);
  line-height: 1.4;
}

.tattoo__ig-icon {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  transition: opacity var(--transition);
}

.tattoo__item:hover .tattoo__ig-caption,
.tattoo__item:hover .tattoo__ig-icon {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
  padding: 112px 0;
  background: var(--gray-100);
}

.contact__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact__info h2 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 24px;
}

.contact__info p {
  font-size: 17px;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 44px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact__detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--gray-600);
}

.contact__detail .material-icons {
  font-size: 20px;
  color: var(--black);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact__detail a {
  color: var(--gray-600);
  text-decoration: none;
  transition: color var(--transition);
}

.contact__detail a:hover {
  color: var(--black);
}

/* Form */
.contact-form {
  background: var(--white);
  padding: 48px;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 10px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--black);
  outline: none;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  border-radius: 0;
}

.form-control::placeholder {
  color: var(--gray-400);
}

.form-control:focus {
  border-color: var(--black);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.checkboxes-group {
  display: flex;
  gap: 32px;
  padding: 4px 0;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 15px;
  color: var(--gray-600);
  font-family: var(--font-body);
}

.checkbox-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--black);
  cursor: pointer;
  flex-shrink: 0;
}

/* ============================================================
   IMAGE PLACEHOLDER UTILITY
   ============================================================ */
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-800);
}

.img-placeholder__label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 64px 0 36px;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 32px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.footer__tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.footer__nav a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.footer__nav a:hover {
  color: var(--white);
}

.footer__social {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}

.footer__social a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color var(--transition);
}

.footer__social a:hover {
  color: var(--white);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 80px;
  padding-bottom: 16px;
}

.footer__copy,
.footer__location {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.04em;
}

.footer__legal {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__legal-link {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  touch-action: manipulation;
}

.footer__legal-link:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero__title {
    font-size: clamp(38px, 6vw, 72px);
    letter-spacing: 0.12em;
    margin-bottom: 16px;
  }

  .hero__subtitle {
    font-size: clamp(13px, 2vw, 16px);
    letter-spacing: 0.28em;
    margin-bottom: 40px;
  }

  .container {
    padding: 0 36px;
  }

  .nav,
  .nav.scrolled,
  .nav--dark {
    padding-left: 36px;
    padding-right: 36px;
  }

  .nav-overlay__close {
    right: 36px;
  }
}

@media (max-width: 768px) {
  .hero__title {
    font-size: clamp(28px, 6.5vw, 48px);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
  }

  .hero__subtitle {
    font-size: clamp(12px, 2vw, 14px);
    letter-spacing: 0.22em;
    margin-bottom: 32px;
  }

  .container {
    padding: 0 24px;
  }

  .nav,
  .nav.scrolled,
  .nav--dark {
    padding: 20px 24px;
  }

  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .nav-overlay__close {
    right: 24px;
    top: 20px;
  }

  .about {
    padding: 80px 0;
  }

  .about__cards {
    grid-template-columns: 1fr;
  }

  .features {
    padding: 72px 0;
  }

  .features__grid {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .portfolio {
    padding: 80px 0;
  }

  .portfolio__grid {
    grid-template-columns: 1fr;
  }

  .project-card--wide {
    grid-column: 1;
  }

  .project-card--wide .project-card__img-wrap {
    aspect-ratio: 16 / 10;
  }

  .testimonial {
    padding: 80px 0;
  }

  .tattoo {
    padding: 80px 0;
  }

  .tattoo__gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact {
    padding: 80px 0;
  }

  .contact__layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-form {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer__top {
    flex-direction: column;
    gap: 36px;
  }

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

  .footer__bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: clamp(20px, 6.5vw, 28px);
    letter-spacing: 0.06em;
  }

  .hero__subtitle {
    font-size: clamp(11px, 2vw, 12px);
    letter-spacing: 0.16em;
    margin-bottom: 24px;
  }

  .checkboxes-group {
    flex-direction: column;
    gap: 14px;
  }

  .tattoo__gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-hero {
    padding-top: 120px;
    padding-bottom: 60px;
  }
}

/* ============================================================
   BLUR-IN / BLUR-OUT TITLE ANIMATION
   ============================================================ */
.blur-title__word {
  display: inline-block;
  white-space: nowrap;
  pointer-events: none;
}

.blur-title__letter {
  display: inline-block;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity var(--dur, 0.35s) ease var(--delay, 0s),
    filter var(--dur, 0.35s) ease var(--delay, 0s);
}

.blur-title.visible .blur-title__letter {
  opacity: 1;
  filter: blur(0px);
}

/* ============================================================
   TOUCH / MOBILE OPTIMISATIONS
   ============================================================ */
a, button, [role="button"],
.btn, .nav__hamburger, .nav-overlay a,
.nav-overlay__close, .footer__legal-link {
  touch-action: manipulation;
}

.nav__hamburger,
.nav-overlay a,
.nav-overlay__close {
  min-height: 44px;
  min-width: 44px;
}

.video-overlay {
  pointer-events: none;
}