.site-title {
  letter-spacing: 0;
}

.home-hero {
  position: relative;
  min-height: calc(100vh - 104px);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.24));
  pointer-events: none;
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.home-hero-content {
  position: relative;
  z-index: 1;
  width: min(34rem, calc(100% - 2rem));
  margin: 0 clamp(1rem, 7vw, 6rem) 0 0;
  padding: clamp(1rem, 2vw, 1.35rem);
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(7px);
  color: #111827;
}

.home-hero-content h1 {
  margin: 0 0 0.8rem;
  font-size: clamp(2.25rem, 5vw, 4.75rem);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: 0;
}

.home-hero-text {
  max-width: 34rem;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.65;
}

.home-hero-text p {
  margin: 0 0 0.85rem;
}

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

@media (max-width: 900px) {
  .home-hero {
    min-height: auto;
    display: block;
    overflow: visible;
  }

  .home-hero::after {
    display: none;
  }

  .home-hero-bg {
    position: relative;
    height: min(72svh, 620px);
    min-height: 460px;
    background-position: 12% center;
  }

  .home-hero-content {
    width: auto;
    margin: 0;
    padding: 1.25rem 1rem 2rem;
    background: #fff;
    backdrop-filter: none;
  }
}

@media (max-width: 640px) {
  .home-hero-bg {
    height: 72svh;
    min-height: 460px;
    max-height: 620px;
    background-position: 10% center;
  }

  .home-hero-content h1 {
    font-size: 2.4rem;
  }

  .home-hero-text {
    font-size: 1rem;
    line-height: 1.58;
  }
}
.performance-meta {
  display: grid;
  gap: 0.45rem;
}

.performance-meta div {
  display: grid;
  grid-template-columns: 5.5rem minmax(0, 1fr);
  gap: 1rem;
}

.performance-meta dt {
  font-weight: 600;
}

.performance-meta dd {
  margin: 0;
}

.performance-meta.compact {
  gap: 0.25rem;
}

#contact-form p {
  margin-bottom: 1.2rem;
}

#contact-form input[type="text"],
#contact-form input[type="email"],
#contact-form textarea {
  width: 100%;
  padding: 0.6rem 0.7rem;
  font-size: 1rem;
  border-radius: 0;
  border: 1.5px solid #d1d5db;
  background: #fff;
  color: #111827;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

#contact-form input:focus,
#contact-form textarea:focus {
  outline: none;
  border-color: #111827;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
}

#contact-form input:hover,
#contact-form textarea:hover {
  border-color: #6b7280;
}

#contact-form button {
  padding: 0.55rem 1.2rem;
  font-size: 1rem;
  border: none;
  background: #111827;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.15s ease, transform 0.05s ease;
}

#contact-form button:hover {
  opacity: 0.9;
}

#contact-form button:active {
  transform: translateY(1px);
}

#contact-status {
  font-weight: 500;
}

.yt-thumb {
  position: relative;
  display: inline-block;
  max-width: 520px;
}

.yt-thumb img {
  display: block;
  width: 100%;
  height: auto;
}

.yt-play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
}


@media (max-width: 640px) {
  .performance-meta div {
    grid-template-columns: 1fr;
    gap: 0.1rem;
  }
}
