html,
body {
    margin: 0;
    padding: 0;
}

*, *::before, *::after {
    box-sizing: border-box;
}

/* ------ Font Face ------ */
@font-face {
  font-family: InterVariable;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("InterVariable.woff2") format("woff2");
}
@font-face {
  font-family: InterVariable;
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("InterVariable-Italic.woff2") format("woff2");
}

body {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

/* ------ Main Page Layer ------ */
.main-page-wrapper {
    position: relative;
    min-height: 100vh;
    padding: 0;
	margin: 0;
	
}

/* ------ Video Background Layer ------ */
.video-background {
    position: absolute;
    inset: 0;
    z-index: 0;
	margin: 0;
}

.video-background video {
	display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ------ Overlay Layer ------ */
.video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-color: rgb(0 0 0 / 55%);
}

/* ------ Content Layer ------ */
.main-content {
    position: relative;
    z-index: 2;
    padding: 0;
    padding-inline: 1.25rem;
	min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.logo {
    width: clamp(180px, 55vw, 320px);
    height: auto;
    margin-bottom: 3rem;
}

/* ------- Typography ------- */
.heading {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
    text-align: center;
    margin: 0;
    color: #ffffff;
    margin: 0 0 1rem;
}

.description {
    max-width: 600px;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.6;
    text-align: center;
    margin: 0;
    color: rgb(255 255 255 / 85%);
    margin: 0 0 2.5rem;
}

/* ------- CTA ------- */
.contact-button {
    background-color: #f09e39;
    color: #ffffff;
    padding-block: .55rem;
    padding-inline: 1.2rem;
    border-radius: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color .45s ease;
}

.contact-button:hover {
    background-color: #d9892e;
}

.contact-button:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset:3px;
    color: #ffffff;
}

/* ------------- Media query ------------- */
@media (max-height: 500px) {
    .main-content {
        min-height: 100vh;
        padding-block: 1rem;
    }

    .logo {
        width: clamp(140px, 30vw, 200px);
        margin-bottom: 1rem;
    }

    .heading {
        font-size: clamp(1.5rem, 4vw, 2.25rem);
        margin-bottom: 0.5rem;
    }

    .description {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-button {
        transition: none;
    }
}