* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f7f3ef;
    color: #292929;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

/* HEADER */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 20;
    color: white;
    background: linear-gradient(to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0));
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 70px;
    width: auto;
    display: block;
}

.header nav {
    display: flex;
    gap: 28px;
}

.header nav a {
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
}

.header nav a:hover {
    opacity: 1;
}

/* HERO */

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 7%;
    color: white;
    background-image: url("images/IMG_7841.JPG");
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.15)
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.eyebrow,
.section-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 700;
    color: #c8ab9b;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(44px, 7vw, 92px);
    line-height: 0.95;
    margin: 0;
    max-width: 950px;
}

.hero-text {
    font-size: 22px;
    line-height: 1.6;
    max-width: 650px;
    margin: 28px 0 36px;
    color: rgba(255,255,255,0.88);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
}

.btn.primary {
    background: white;
    color: #1e1e1e;
}

.btn.secondary {
    border: 1px solid rgba(255,255,255,0.6);
    color: white;
}

/* SECTIONS */

.section {
    padding: 110px 7%;
}

.section h2 {
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.05;
    margin: 0 0 28px;
    color: #343434;
}

.section p {
    font-size: 19px;
    line-height: 1.8;
    color: #666;
}

/* INTRO */

.intro {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 70px;
    align-items: center;
    background: #f7f3ef;
}

.intro-text {
    max-width: 680px;
}

.intro-image img {
    height: 650px;
    width: 100%;
    object-fit: cover;
    border-radius: 28px;
}

/* DARK PORTFOLIO */

.dark {
    background: #171717;
    color: white;
}

.dark h2 {
    color: white;
    max-width: 850px;
}

.dark .section-label {
    color: #c8ab9b;
}

.film-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 50px;
}

.film-card {
    background: #242424;
    border-radius: 24px;
    overflow: hidden;
}

.film-card img {
    height: 360px;
    width: 100%;
    object-fit: cover;
}
.film-card iframe {
    width: 100%;
    height: 360px;
    border: none;
    display: block;
}
.film-card div {
    padding: 26px;
}

.film-card h3 {
    font-size: 24px;
    margin: 0 0 10px;
}

.film-card p {
    margin: 0;
    color: #cfcfcf;
    font-size: 16px;
    line-height: 1.6;
}

/* APPROACH */

.approach {
    background: #ffffff;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.step {
    background: #f7f3ef;
    padding: 34px;
    border-radius: 24px;
}

.step span {
    color: #c8ab9b;
    font-weight: 800;
    font-size: 14px;
}

.step h3 {
    font-size: 25px;
    margin: 20px 0 12px;
}

.step p {
    font-size: 17px;
    margin: 0;
}

/* QUOTE */

.quote-section {
    padding: 120px 7%;
    background-image: linear-gradient(rgba(0,0,0,0.60), rgba(0,0,0,0.60)), url("images/IMG_8059.JPG");
    background-size: cover;
    background-position: center;
    color: white;
}

.quote-box {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.quote {
    font-size: clamp(30px, 4vw, 58px);
    line-height: 1.25;
    margin: 0;
    font-weight: 800;
}

.quote-name {
    margin-top: 28px;
    color: #c8ab9b;
    font-weight: 700;
}

/* FAQ */

.faq {
    background: #f7f3ef;
}

.faq-list {
    max-width: 900px;
    margin-top: 45px;
}

details {
    border-bottom: 1px solid #ddd2ca;
    padding: 26px 0;
}

summary {
    cursor: pointer;
    font-size: 24px;
    font-weight: 800;
    color: #4d4d4d;
}

details p {
    max-width: 760px;
    margin-bottom: 0;
}

/* CONTACT */

.contact {
    padding: 130px 7%;
    background: #171717;
    color: white;
    text-align: center;
}

.contact-content {
    max-width: 900px;
    margin: auto;
}

.contact h2 {
    font-size: clamp(38px, 6vw, 78px);
    line-height: 1.05;
    margin: 0 0 25px;
}

.contact p {
    font-size: 20px;
    line-height: 1.7;
    color: #d4d4d4;
}

.contact-links {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.contact-links a {
    border: 1px solid rgba(255,255,255,0.25);
    padding: 16px 22px;
    border-radius: 999px;
    text-decoration: none;
    color: white;
}

.contact-links a:hover {
    background: white;
    color: #171717;
}

footer {
    padding: 26px 7%;
    text-align: center;
    background: #101010;
    color: #8e8e8e;
    font-size: 14px;
}

/* RESPONSIVE TABLETTE */

@media (max-width: 950px) {
    .intro,
    .steps,
    .film-grid {
        grid-template-columns: 1fr;
    }

    .intro-image img {
        height: 480px;
    }

    .header nav {
        gap: 16px;
    }
}

/* RESPONSIVE MOBILE */

@media (max-width: 600px) {
    .header {
        padding: 18px 22px;
    }

    .header nav {
        display: none;
    }

    .hero {
        padding: 110px 24px 70px;
        min-height: 92vh;
        background-position: center;
    }

    .hero h1 {
        font-size: 44px;
    }

    .hero-text {
        font-size: 18px;
    }

    .section {
        padding: 80px 24px;
    }

    .section p {
        font-size: 17px;
    }

    .intro-image img {
        height: 420px;
        border-radius: 20px;
    }

    .film-card img {
        height: 300px;
    }

    .step {
        padding: 26px;
    }

    .quote-section {
        padding: 90px 24px;
    }

    .contact {
        padding: 90px 24px;
    }

    .contact-links {
        flex-direction: column;
    }

    .contact-links a {
        width: 100%;
    }
}
.small-quote {
    font-size: clamp(24px, 3vw, 42px);
    line-height: 1.35;
    font-weight: 700;
}
.film-card iframe {
    width: 100%;
    height: 360px;
    border: none;
    display: block;
}
