:root {
    --cream: #f3e4dd;
    --cream-light: #faf5f1;
    --brown: #70402f;
    --brown-dark: #3e241b;
    --terracotta: #92533e;
    --muted: #86675b;
    --line: rgba(112,64,47,.22);
    --white: #fffaf7;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream-light);
    color: var(--brown-dark);
    font-family: "DM Sans", sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}


/* HEADER */

.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 28px 5%;
    color: white;
}

.brand {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand span {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    letter-spacing: 4px;
}

.brand small {
    font-size: 8px;
    letter-spacing: 3px;
    margin-top: 7px;
}

.header nav {
    display: flex;
    gap: 30px;
}

.header nav a {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.header-button {
    border: 1px solid rgba(255,255,255,.7);
    padding: 11px 18px;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* HERO */

.hero {
    height: 100vh;
    min-height: 720px;
    position: relative;
    color: white;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(30,15,10,.65),
            rgba(30,15,10,.15) 60%,
            rgba(30,15,10,.15)
        ),
        url("/images/hero.jpg") center / cover no-repeat;

    background-color: #9d7563;

    transform: scale(1.01);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 0 7% 9%;
}

.eyebrow,
.section-label {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(75px, 11vw, 160px);
    line-height: .78;
    font-weight: 400;
    letter-spacing: -4px;
    text-transform: uppercase;
    margin: 24px 0 35px;
}

.hero-description {
    max-width: 450px;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 35px;
}

.button {
    display: inline-block;
    padding: 15px 25px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.button-light {
    background: white;
    color: var(--brown-dark);
}

.text-button {
    display: inline-block;
    border-bottom: 1px solid var(--brown);
    padding-bottom: 5px;
    font-size: 12px;
}

.text-button.light {
    color: white;
    border-color: white;
}

.hero-scroll {
    position: absolute;
    right: 5%;
    bottom: 35px;
    z-index: 3;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 2px;
}


/* GENERAL */

.section {
    padding: 150px 7%;
}

.section-heading {
    margin-bottom: 70px;
}

.section-number {
    font-size: 10px;
    letter-spacing: 2px;
    margin-right: 15px;
    color: var(--terracotta);
}

.section-heading h2,
.package-intro h2,
.about-content h2,
.faq-title h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(60px, 8vw, 110px);
    font-weight: 400;
    line-height: .86;
    letter-spacing: -3px;
    margin-top: 25px;
}


/* INTRO */

.intro {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 60px;
    background: var(--cream);
}

.intro-content {
    max-width: 900px;
}

.intro h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(55px, 7vw, 100px);
    font-weight: 400;
    line-height: .9;
    letter-spacing: -3px;
}

.intro h2 em {
    display: block;
    color: var(--terracotta);
}

.intro p {
    max-width: 650px;
    margin-top: 45px;
    color: var(--muted);
    font-size: 16px;
}


/* SERVICES */

.services {
    background: var(--cream-light);
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.service-card {
    position: relative;
    height: 650px;
    overflow: hidden;
    color: white;
}

.service-image,
.gallery-image,
.about-image,
.experience-image {
    background-color: #c8a899;
    background-size: cover;
    background-position: center;
}

.service-image {
    position: absolute;
    inset: 0;
    transition: transform .8s ease;
}

.service-card:hover .service-image {
    transform: scale(1.04);
}

.tourism-image {
    background-image: url("/images/tourism.jpg");
}

.wedding-image {
    background-image: url("/images/wedding.jpg");
}

.service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        transparent 25%,
        rgba(40,18,10,.75)
    );
}

.service-content {
    position: absolute;
    z-index: 2;
    bottom: 45px;
    left: 45px;
    right: 45px;
}

.service-content span {
    font-size: 9px;
    letter-spacing: 3px;
}

.service-content h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 65px;
    line-height: .85;
    font-weight: 400;
    margin: 18px 0;
}

.service-content p {
    max-width: 400px;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 20px;
}

.service-content strong {
    font-size: 11px;
    letter-spacing: 1.5px;
}


/* PORTFOLIO */

.portfolio {
    background: var(--cream);
}

.portfolio-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.gallery {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 20px;
}

.gallery-item {
    position: relative;
    min-height: 520px;
    overflow: hidden;
}

.gallery-large {
    grid-row: span 2;
    min-height: 1060px;
}

.gallery-wide {
    grid-column: 2 / 4;
}

.gallery-image {
    position: absolute;
    inset: 0;
    transition: transform .8s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.04);
}

.giza {
    background-image: url("/images/giza.jpg");
}

.portrait {
    background-image: url("/images/portrait.jpg");
}

.couple {
    background-image: url("/images/couple.jpg");
}

.desert {
    background-image: url("/images/desert.jpg");
}

.gallery-caption {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: white;
    text-shadow: 0 2px 15px rgba(0,0,0,.4);
}

.gallery-caption span {
    font-size: 9px;
    letter-spacing: 2px;
}

.gallery-caption h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1;
    margin: 7px 0;
}

.gallery-caption small {
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* PACKAGES */

.packages {
    background: var(--brown-dark);
    color: var(--cream-light);
}

.packages .section-label,
.packages .section-number {
    color: #d8aa96;
}

.package-intro {
    max-width: 700px;
}

.package-intro h2 {
    color: var(--cream);
}

.package-intro p {
    max-width: 520px;
    color: #c9ada1;
    margin-top: 35px;
}

.package-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 80px;
}

.package-card {
    position: relative;
    padding: 45px 35px;
    border: 1px solid rgba(243,228,221,.2);
    min-height: 600px;
    display: flex;
    flex-direction: column;
}

.package-card.featured {
    background: var(--cream);
    color: var(--brown-dark);
}

.package-tag {
    font-size: 9px;
    letter-spacing: 2px;
    color: #c8a092;
}

.package-card.featured .package-tag {
    color: var(--terracotta);
}

.package-card h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 52px;
    font-weight: 400;
    line-height: .9;
    margin: 30px 0 20px;
}

.price {
    font-family: "Cormorant Garamond", serif;
    font-size: 55px;
}

.price small {
    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
}

.price.quote {
    font-size: 45px;
}

.package-card > p {
    color: #bca199;
    font-size: 13px;
    margin: 25px 0;
}

.package-card.featured > p {
    color: var(--muted);
}

.package-card ul {
    list-style: none;
    border-top: 1px solid rgba(243,228,221,.15);
    padding-top: 20px;
}

.package-card.featured ul {
    border-color: var(--line);
}

.package-card li {
    font-size: 12px;
    padding: 7px 0;
}

.package-card li::before {
    content: "✓";
    margin-right: 10px;
    color: #c49a87;
}

.package-button {
    margin-top: auto;
    padding-top: 25px;
    border-top: 1px solid rgba(243,228,221,.15);
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.package-card.featured .package-button {
    border-color: var(--line);
}

.popular {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 15px;
    background: var(--terracotta);
    color: white;
    font-size: 8px;
    letter-spacing: 1.5px;
}

.package-notes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
    padding-top: 35px;
    border-top: 1px solid rgba(243,228,221,.15);
}

.package-notes strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
    font-weight: 400;
}

.package-notes p {
    color: #bca199;
    font-size: 12px;
    max-width: 550px;
    margin-top: 8px;
}


/* EXPERIENCE */

.experience {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 850px;
    background: var(--cream);
}

.experience-image {
    background-image: url("/images/pyramids.jpg");
    min-height: 700px;
}

.experience-content {
    padding: 12%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.experience-content h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(65px, 8vw, 110px);
    font-weight: 400;
    line-height: .8;
    margin: 25px 0 70px;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.steps > div {
    display: grid;
    grid-template-columns: 40px 1fr;
    column-gap: 15px;
}

.steps span {
    grid-row: span 2;
    font-size: 9px;
    color: var(--terracotta);
    letter-spacing: 2px;
}

.steps h4 {
    font-family: "Cormorant Garamond", serif;
    font-size: 27px;
    font-weight: 500;
}

.steps p {
    color: var(--muted);
    font-size: 12px;
}


/* WEDDINGS */

.weddings {
    background: var(--cream-light);
}

.wedding-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.wedding-card {
    border: 1px solid var(--line);
    padding: 40px 25px;
    min-height: 480px;
    display: flex;
    flex-direction: column;
}

.wedding-card.featured-wedding {
    background: var(--brown);
    color: var(--cream);
}

.wedding-card > span {
    font-size: 8px;
    letter-spacing: 2px;
    color: var(--terracotta);
}

.featured-wedding > span {
    color: #e1b8a5;
}

.wedding-card h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 48px;
    font-weight: 400;
    margin: 30px 0 15px;
}

.wedding-price {
    font-family: "Cormorant Garamond", serif;
    font-size: 35px;
}

.wedding-card p {
    color: var(--muted);
    font-size: 12px;
    margin-top: 25px;
}

.featured-wedding p {
    color: #d0b7ad;
}

.wedding-card a {
    margin-top: auto;
    border-top: 1px solid var(--line);
    padding-top: 20px;
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.wedding-details {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
    margin-top: 60px;
    padding-top: 35px;
    border-top: 1px solid var(--line);
}

.wedding-details strong {
    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
    font-weight: 400;
}

.wedding-details p {
    color: var(--muted);
    font-size: 12px;
    margin-top: 8px;
}


/* ABOUT */

.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0;
    background: var(--cream);
}

.about-image {
    min-height: 800px;
    background-image: url("/images/about.jpg");
}

.about-content {
    padding: 12%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    margin-bottom: 40px;
}

.about-content p {
    max-width: 520px;
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 20px;
}


/* TESTIMONIAL */

.testimonial {
    background: var(--brown);
    color: var(--cream);
    text-align: center;
}

.testimonial .section-label {
    color: #d9aa96;
}

.testimonial blockquote {
    max-width: 1000px;
    margin: 50px auto 35px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(40px, 5vw, 70px);
    line-height: .95;
}

.testimonial p {
    color: #d4b4a8;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* FAQ */

.faq {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 100px;
    background: var(--cream-light);
}

.faq-title h2 {
    margin-top: 30px;
}

.faq-list details {
    border-top: 1px solid var(--line);
    padding: 25px 0;
}

.faq-list details:last-child {
    border-bottom: 1px solid var(--line);
}

.faq-list summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    font-family: "Cormorant Garamond", serif;
    font-size: 25px;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary span {
    font-family: "DM Sans", sans-serif;
    font-size: 20px;
}

.faq-list p {
    color: var(--muted);
    font-size: 13px;
    max-width: 650px;
    padding-top: 15px;
}


/* CONTACT */

.contact {
    background: var(--brown-dark);
    color: var(--cream);
    text-align: center;
}

.contact-inner {
    max-width: 900px;
    margin: auto;
}

.contact .section-label {
    color: #d8aa96;
}

.contact h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(75px, 10vw, 140px);
    font-weight: 400;
    line-height: .78;
    letter-spacing: -4px;
    margin: 35px 0;
}

.contact p {
    color: #c9ada1;
    max-width: 450px;
    margin: auto;
}

.contact-button {
    display: inline-block;
    background: var(--cream);
    color: var(--brown-dark);
    padding: 18px 30px;
    margin-top: 40px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-links {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* FOOTER */

footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 5%;
    background: #271712;
    color: #bca199;
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-brand small {
    font-size: 7px;
    margin-top: 4px;
}


/* MOBILE */

@media (max-width: 900px) {

    .header nav,
    .header-button {
        display: none;
    }

    .hero {
        min-height: 700px;
    }

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

    .section {
        padding: 100px 6%;
    }

    .intro,
    .faq {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .service-grid,
    .package-cards,
    .wedding-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        height: 600px;
    }

    .gallery {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-large {
        grid-row: auto;
        min-height: 650px;
        grid-column: 1 / -1;
    }

    .gallery-wide {
        grid-column: 1 / -1;
    }

    .experience,
    .about {
        grid-template-columns: 1fr;
    }

    .experience-image,
    .about-image {
        min-height: 600px;
    }

    .package-notes,
    .wedding-details {
        grid-template-columns: 1fr;
    }

    .contact h2 {
        font-size: 75px;
    }

    footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}


@media (max-width: 600px) {

    .brand span {
        font-size: 22px;
    }

    .brand small {
        font-size: 6px;
    }

    .hero h1 {
        font-size: 65px;
        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 13px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .section-heading h2,
    .package-intro h2,
    .about-content h2,
    .faq-title h2 {
        font-size: 65px;
    }

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

    .gallery {
        grid-template-columns: 1fr;
    }

    .gallery-large,
    .gallery-wide {
        grid-column: auto;
    }

    .gallery-item,
    .gallery-large {
        min-height: 550px;
    }

    .experience-content {
        padding: 80px 6%;
    }

    .contact h2 {
        font-size: 65px;
    }
}


/* ================= INNER PAGES ================= */

.inner-header {
    position: absolute;
    color: var(--brown-dark);
}

.inner-header nav a {
    color: var(--brown-dark);
}

.inner-header .header-button {
    border-color: var(--brown);
}

.inner-page {
    background: var(--cream-light);
}


/* INNER HERO */

.inner-hero,
.wedding-hero {
    min-height: 700px;
    padding: 190px 7% 110px;
    display: flex;
    align-items: flex-end;
    background:
        linear-gradient(
            90deg,
            rgba(243,228,221,.98),
            rgba(243,228,221,.72)
        ),
        url("/images/pyramids.jpg") center / cover;
}

.inner-hero > div,
.wedding-hero > div {
    max-width: 950px;
}

.inner-hero h1,
.wedding-hero h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(80px, 12vw, 170px);
    font-weight: 400;
    line-height: .78;
    letter-spacing: -5px;
    margin: 25px 0 35px;
}

.inner-hero h1 em,
.wedding-hero h1 em {
    color: var(--terracotta);
    font-style: normal;
}

.inner-hero p,
.wedding-hero p {
    max-width: 600px;
    color: var(--muted);
    font-size: 16px;
}


/* INNER INTRO */

.experience-intro,
.wedding-intro {
    background: var(--cream);
}

.experience-intro h2,
.wedding-intro h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(65px, 8vw, 115px);
    font-weight: 400;
    line-height: .82;
    letter-spacing: -4px;
    margin: 30px 0 45px;
}

.experience-intro h2 em {
    color: var(--terracotta);
    font-style: normal;
}

.experience-intro p,
.wedding-intro p {
    max-width: 650px;
    color: var(--muted);
}


/* INCLUDED */

.included {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 100px;
    background: var(--cream);
}

.included h2,
.important-info h2,
.wedding-process h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(60px, 7vw, 100px);
    font-weight: 400;
    line-height: .85;
    letter-spacing: -3px;
    margin-top: 25px;
}

.included-grid,
.process-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px 40px;
}

.included-grid span,
.process-grid span {
    color: var(--terracotta);
    font-size: 10px;
    letter-spacing: 2px;
}

.included-grid h3,
.process-grid h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-weight: 500;
    margin: 12px 0;
}

.included-grid p,
.process-grid p {
    color: var(--muted);
    font-size: 12px;
}


/* INFORMATION */

.important-info,
.wedding-notes {
    background: var(--cream-light);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 0;
    margin-top: 80px;
    border-top: 1px solid var(--line);
}

.info-grid > div {
    padding: 35px 30px 35px 0;
    border-bottom: 1px solid var(--line);
}

.info-grid h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-weight: 500;
}

.info-grid p {
    color: var(--muted);
    font-size: 12px;
    margin-top: 10px;
    max-width: 330px;
}


/* WEDDING PAGE */

.wedding-hero {
    background:
        linear-gradient(
            90deg,
            rgba(243,228,221,.96),
            rgba(243,228,221,.68)
        ),
        url("/images/wedding.jpg") center / cover;
}

.wedding-intro {
    text-align: center;
}

.wedding-intro p {
    margin: auto;
}

.wedding-packages {
    background: var(--cream-light);
}

.wedding-card ul {
    list-style: none;
    border-top: 1px solid var(--line);
    margin-top: 25px;
    padding-top: 15px;
}

.wedding-card li {
    font-size: 11px;
    padding: 6px 0;
}

.wedding-card li::before {
    content: "✓";
    color: var(--terracotta);
    margin-right: 10px;
}

.wedding-process {
    background: var(--cream);
}

.wedding-process > h2 {
    margin-bottom: 80px;
}

.wedding-notes {
    padding-top: 100px;
}


/* CTA */

.cta-banner {
    background: var(--brown);
    color: var(--cream);
    text-align: center;
    padding: 160px 7%;
}

.cta-banner .section-label {
    color: #d9aa96;
}

.cta-banner h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(70px, 10vw, 145px);
    line-height: .78;
    font-weight: 400;
    letter-spacing: -5px;
    margin: 30px 0 50px;
}

.cta-banner .button {
    display: inline-block;
}


/* INNER MOBILE */

@media (max-width: 900px) {

    .inner-header {
        position: absolute;
    }

    .inner-header nav {
        display: none;
    }

    .inner-hero,
    .wedding-hero {
        min-height: 650px;
        padding: 160px 6% 90px;
    }

    .inner-hero h1,
    .wedding-hero h1 {
        font-size: 80px;
        letter-spacing: -3px;
    }

    .included {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .included-grid,
    .process-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .info-grid > div {
        padding-right: 0;
    }

    .cta-banner {
        padding: 120px 6%;
    }

    .cta-banner h2 {
        font-size: 75px;
    }
}

@media (max-width: 600px) {

    .inner-hero h1,
    .wedding-hero h1 {
        font-size: 65px;
    }

    .experience-intro h2,
    .wedding-intro h2,
    .included h2,
    .important-info h2,
    .wedding-process h2 {
        font-size: 65px;
    }

    .cta-banner h2 {
        font-size: 65px;
    }
}
