:root {
  --edge: clamp(1.5rem, 3vw, 3.5rem);
  --white: #fff;
  --black: #000;
}

* { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--black);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  background: var(--black);
}

/* Strong bottom fade like the mockup, keeping video visible above. */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 55%, rgba(0,0,0,.78) 76%, #000 100%),
    linear-gradient(to right, rgba(0,0,0,.18), rgba(0,0,0,0) 42%, rgba(0,0,0,.15));
}

.hero__header {
  position: absolute;
  top: clamp(1rem, 2.5vw, 2rem);
  left: var(--edge);
}

.logo {
  color: var(--white);
  text-decoration: none;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.hero__content {
  position: absolute;
  left: var(--edge);
  right: var(--edge);
  bottom: clamp(2rem, 7vh, 4.5rem);
  display: grid;
  grid-template-columns: minmax(16rem, 1fr) auto;
  align-items: end;
  gap: 2rem;
}

h1 {
  margin: 0;
  max-width: 35rem;
  font-size: clamp(1.05rem, 2.25vw, 2rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.contact {
  margin: 0;
  font-style: normal;
  display: grid;
  gap: .25rem;
  justify-items: start;
  font-size: clamp(.95rem, 1.5vw, 1.2rem);
  line-height: 1.25;
}

.contact a {
  color: var(--white);
  text-decoration: none;
}

.contact a:hover { text-decoration: underline; }

@media (max-width: 720px) {
  .hero__content {
    grid-template-columns: 1fr;
    align-items: start;
    bottom: 2rem;
  }

  h1 { max-width: 20rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__video { display: none; }
  .hero { background: url('mockup.png') center / cover no-repeat; }
}

.logo {
    position: absolute;
  
    z-index: 100;
    display: block;
}

.logo img {
    display: block;
    width: 180px; /* adjust as needed */
    height: auto;
}



.play-button {
    display: none;
}

@media (max-width: 720px) {

    .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90px;
        height: 90px;
        border: 0;
        border-radius: 50%;
        background: rgba(0,0,0,.35);
        backdrop-filter: blur(10px);
        z-index: 9999;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .play-button svg {
        width: 40px;
        height: 40px;
        margin-left: 4px;
    }
}