```css
/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #f5f2ed;
    color: #242321;
    font-family: Arial, sans-serif;
}


/* =========================
   HEADER
========================= */

.wedding-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    padding: 30px 5%;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wedding-logo img {
    width: 120px;
}

.wedding-header nav {
    display: flex;
    gap: 40px;
}

.wedding-header a {
    color: white;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.instagram-link {
    border-bottom: 1px solid rgba(255,255,255,0.6);
    padding-bottom: 5px;
}


/* =========================
   HERO
========================= */

.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    max-width: 850px;
    padding: 30px;
}

.eyebrow,
.section-label {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: clamp(45px, 7vw, 95px);
    line-height: 1.05;
    font-weight: 400;
    margin-bottom: 30px;
}

.hero-text {
    max-width: 520px;
    margin: auto;
    font-size: 17px;
    line-height: 1.7;
}

.hero-button,
.contact-button {
    display: inline-block;
    margin-top: 40px;
    padding: 16px 30px;
    border: 1px solid white;
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 2px;
    transition: 0.3s;
}

.hero-button:hover {
    background: white;
    color: #222;
}

.scroll-indicator {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
}

.scroll-indicator div {
    width: 1px;
    height: 45px;
    background: white;
    margin: 15px auto 0;
}


/* =========================
   INTRO
========================= */

.intro-section {
    padding: 160px 8%;
}

.intro-container {
    max-width: 850px;
    margin: auto;
    text-align: center;
}

.intro-section h2,
.services-section h2,
.contact-section h2 {
    font-size: clamp(40px, 6vw, 75px);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 40px;
}

.intro-text {
    max-width: 650px;
    margin: 20px auto;
    line-height: 1.8;
    color: #6e6b65;
}


/* =========================
   SERVICES
========================= */

.services-section {
    padding: 120px 8%;
}

.section-heading {
    max-width: 1200px;
    margin: 0 auto 100px;
}

.service-card {
    max-width: 1200px;
    margin: 0 auto 150px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service-card-reverse {
    direction: rtl;
}

.service-card-reverse > * {
    direction: ltr;
}

.service-image {
    height: 600px;
    overflow: hidden;
    background: #222;
}

.service-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    max-width: 480px;
}

.service-number {
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 25px;
}

.service-content h3 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 30px;
}

.service-content p {
    color: #6e6b65;
    line-height: 1.8;
    margin-bottom: 20px;
}


/* =========================
   AUDIO
========================= */

.audio-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    background: #37352f;
}

.audio-icon {
    font-size: 60px;
    margin-bottom: 25px;
}

.audio-visual p {
    color: white;
    font-size: 24px;
    line-height: 1.4;
}


/* =========================
   QUOTE
========================= */

.quote-section {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ded8ce;
    text-align: center;
    padding: 80px 20px;
}

.quote-content p {
    font-size: clamp(35px, 5vw, 65px);
    line-height: 1.2;
    font-weight: 400;
}


/* =========================
   CONTACT
========================= */

.contact-section {
    padding: 160px 20px;
    text-align: center;
}

.contact-content {
    max-width: 700px;
    margin: auto;
}

.contact-section p:not(.section-label) {
    max-width: 500px;
    margin: 0 auto;
    color: #6e6b65;
    line-height: 1.8;
}

.contact-button {
    color: #242321;
    border-color: #242321;
}

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


/* =========================
   FOOTER
========================= */

footer {
    padding: 30px 5%;
    border-top: 1px solid #d8d3cb;
    text-align: center;
    font-size: 12px;
    color: #77736c;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .wedding-header {
        padding: 25px 20px;
    }

    .wedding-header nav {
        display: none;
    }

    .hero {
        min-height: 650px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .intro-section,
    .services-section,
    .contact-section {
        padding: 100px 25px;
    }

    .service-card,
    .service-card-reverse {
        display: flex;
        flex-direction: column;
        gap: 50px;
        margin-bottom: 100px;
    }

    .service-image {
        width: 100%;
        height: 450px;
    }

    .service-content h3 {
        font-size: 40px;
    }

    .quote-section {
        min-height: 400px;
    }

}