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

body{

    background:#0b0b0b;
    color:#ddd;
    font-family:'Montserrat',sans-serif;

}

/* ========================================
NAVIGATION
======================================== */

.navbar {

width: 100%;

background: #0b0b0b;

/* border-bottom: 1px solid rgba(214, 179, 163, 0.20); */

}

.nav-container {
    max-width: 1400px;
    height: 115px;
    margin: 0 auto;
    padding: 0 50px;

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


/* LOGO */

.nav-logo {

display: flex;

align-items: center;

text-decoration: none;

}

.nav-logo img {
    width: 300px;
    height: auto;
    display: block;
}


/* NAVIGATION LINKS */

.nav-links {

display: flex;

align-items: center;

gap: 45px;

}

.nav-links a {

color: #D6B3A3;

text-decoration: none;

font-family: 'Montserrat', sans-serif;

font-size: 12px;

font-weight: 500;

text-transform: uppercase;

letter-spacing: 2px;

transition: color 0.3s ease;

}

.nav-links a {

color: #ffffff;

}

/* ========================================
   HAMBURGER MENU
======================================== */

.hamburger {

    display: none;

    background: none;

    border: none;

    padding: 5px;

    cursor: pointer;

}


.hamburger span {

    display: block;

    width: 27px;

    height: 2px;

    background: #D6B3A3;

    margin: 6px 0;

    transition: all 0.3s ease;

}

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

.hero {
    background: #0b0b0b;
    text-align: center;
    padding: 0 0 80px;
}

/* ========================================
GEOMETRIC BANNER
======================================== */

.hero-banner {
    position: relative;

    width: 100%;
    max-width: none;

    min-height: 50                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       0px;

    margin: 0;

    overflow: hidden;

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

    border-top: 2px solid rgba(214,179,163,0.35);
    border-bottom: 2px solid rgba(214,179,163,0.35);
}

/* BACKGROUND IMAGE */

.geo-background {

position: absolute;

inset: 0;

width: 100%;

height: 100%;

object-fit: cover;

object-position: center;

opacity: 0.48;

z-index: 0;

}

/* DARK OVERLAY */

.geo-overlay {

position: absolute;

inset: 0;

background:
    linear-gradient(
        90deg,
        rgba(11,11,11,0.75),
        rgba(11,11,11,0.35),
        rgba(11,11,11,0.75)
    );

z-index: 1;

}

/* CONTENT OVER BANNER */

.hero-content {

position: relative;

z-index: 2;

max-width: 850px;

padding: 70px 30px;

}

/* H1 */

.hero h1 {

font-family: 'Cormorant Garamond', serif;

color: #D6B3A3;

font-size: 72px;

font-weight: 500;

letter-spacing: 3px;

line-height: 1.05;

margin-bottom: 25px;

text-shadow:
    0 3px 20px rgba(0,0,0,0.9);

}

/* INTRO */

.intro {

color: #e5e5e5;

font-size: 18px;

line-height: 1.8;

max-width: 720px;

margin: auto;

text-shadow:
    0 2px 15px rgba(0,0,0,0.9);

}

/* ========================================
PACKAGES
======================================== */

.packages {

max-width: 1200px;

margin: auto;

padding: 30px;

display: grid;

grid-template-columns: repeat(auto-fit,minmax(320px,1fr));

gap: 35px;

}

.package {

border: 2px solid #D6B3A3;

border-radius: 14px;

padding: 40px 30px;

text-align: center;

transition: .35s;

background: #111;

}

.package {

transform: translateY(-8px);

border-color: #D6B3A3;

box-shadow:
    0 0 30px rgba(184,170,98,.15);

}

.featured {

border: 2px solid #D6B3A3;

}

.tag {

display: inline-block;

margin-bottom: 18px;

padding: 6px 14px;

border-radius: 50px;

background: #D6B3A3;

color: #111;

font-size: 12px;

font-weight: 600;

text-transform: uppercase;

letter-spacing: 1px;

}

.package h2 {

font-family: 'Cormorant Garamond', serif;

color: #D6B3A3;

font-size: 48px;

letter-spacing: 2px;

margin-bottom: 10px;

}

.price {

color: white;

font-size: 24px;

font-weight: 600;

margin-bottom: 30px;

}

.package ul {

list-style: none;

margin-bottom: 35px;

}

.package li {

padding: 10px 0;

color: #d4d4d4;

border-bottom: 1px solid rgba(255,255,255,.05);

}

/* ========================================
EXPERIENCE
======================================== */

.experience {

background: #0b0b0b;

padding: 100px 30px;

text-align: center;

}

.experience h2 {

font-family: 'Cormorant Garamond', serif;

color: #D6B3A3;

font-size: 55px;

letter-spacing: 1px;

}

.subtitle {

color: #ccc;

max-width: 600px;

margin: 15px auto 60px;

font-size: 17px;

}

.steps {

max-width: 1200px;

margin: auto;

display: grid;

grid-template-columns: repeat(3,1fr);

gap: 35px;

}

.step {

border: 3px solid #D6B3A3;

padding: 40px 30px;

border-radius: 18px;

background: #111;

}

.number {

color: #D6B3A3;

font-size: 22px;

letter-spacing: 3px;

margin-bottom: 20px;

}

.step h3 {

color: white;

font-family: 'Cormorant Garamond',serif;

font-size: 34px;

margin-bottom: 15px;

}

.step p {

color: #aaa;

line-height: 1.7;

}

/* ========================================
BACKDROPS
======================================== */

.backdrops {

display: grid;

grid-template-columns: repeat(4,1fr);

gap: 12px;

margin-top: 25px;

}

.backdrop {

border: 1px solid #D6B3A3;

border-radius: 8px;

overflow: hidden;

background: #0b0b0b;

transition: all 0.3s ease;

cursor: pointer;

}

.backdrop img {

width: 100%;

height: 75px;

object-fit: cover;

display: block;

}

.backdrop span {

display: block;

color: #d0d0d0;

font-size: 11px;

padding: 8px 3px;

text-align: center;

}

.backdrop {

border-color: #D6B3A3;

transform: translateY(-3px);

box-shadow:
    0 5px 20px rgba(184,170,98,0.12);

}

.backdrop span {

color: #D6B3A3;

}

/* ========================================
LAYOUT PREVIEW
======================================== */

.layout-preview {

    margin-top: 25px;

    border: 1px solid #D6B3A3;

    border-radius: 12px;

    padding: 15px;

    background: #0b0b0b;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: hidden;

}

.layout-preview img {

    width: 100%;

    max-width: 350px;

    height: auto;

    display: block;

    border-radius: 6px;

}

/* ========================================
CONTACT / INQUIRY FORM
======================================== */

.contact-form-section {

background: #0b0b0b;

padding: 100px 30px 120px;

}

.contact-form-container {

max-width: 900px;

margin: 0 auto;

}

.contact-form-heading {

text-align: center;

margin-bottom: 55px;

}

.form-number {

color: #D6B3A3;

font-size: 20px;

letter-spacing: 4px;

margin-bottom: 15px;

}

.contact-form-heading h2 {

font-family: 'Cormorant Garamond', serif;

color: #D6B3A3;

font-size: 55px;

font-weight: 500;

letter-spacing: 1px;

margin-bottom: 15px;

}

.contact-form-heading p {

color: #aaa;

font-size: 16px;

line-height: 1.7;

max-width: 600px;

margin: 0 auto;

}

.inquiry-form {

width: 100%;

}

.form-row {

display: grid;

grid-template-columns: 1fr 1fr;

gap: 30px;

}

.form-group {

margin-bottom: 30px;

}

.form-group label {

display: block;

color: #D6B3A3;

font-family: 'Cormorant Garamond', serif;

font-size: 18px;

margin-bottom: 10px;

}

.form-group input,
.form-group textarea {

width: 100%;

background: #111;

border: 1px solid rgba(214,179,163,0.45);

border-radius: 8px;

padding: 16px 18px;

color: #fff;

font-family: 'Montserrat', sans-serif;

font-size: 14px;

outline: none;

transition: all 0.3s ease;

}

.form-group input::placeholder,
.form-group textarea::placeholder {

color: #666;

}

.form-group input,
.form-group textarea {

border-color: #D6B3A3;

box-shadow:
    0 0 15px rgba(214,179,163,0.08);

}

.form-group textarea {

resize: vertical;

min-height: 160px;

}

.inquiry-form button {

display: block;

margin: 10px auto 0;

padding: 15px 45px;

border: 1px solid #D6B3A3;

border-radius: 50px;

background: #D6B3A3;

color: #111;

font-family: 'Montserrat', sans-serif;

font-size: 13px;

font-weight: 600;

text-transform: uppercase;

letter-spacing: 1.5px;

cursor: pointer;

transition: all 0.3s ease;

}

.inquiry-form button {

background: transparent;

color: #D6B3A3;

transform: translateY(-2px);

}

/* ========================================
   GALLERY PAGE
======================================== */

.gallery-page {

    position: relative;

    min-height: calc(100vh - 115px);

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

}


/* BACKGROUND IMAGE */

.gallery-background {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

    opacity: 0.48;

    z-index: 0;

}


/* DARK OVERLAY */

.gallery-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(11,11,11,0.75),
            rgba(11,11,11,0.35),
            rgba(11,11,11,0.75)
        );

    z-index: 1;

}


/* CONTENT */

.gallery-content {

    position: relative;

    z-index: 2;

    padding: 60px 25px;

}


/* HEADING */

.gallery-content h1 {

    font-family: 'Cormorant Garamond', serif;

    color: #D6B3A3;

    font-size: 80px;

    font-weight: 500;

    letter-spacing: 4px;

    line-height: 1.1;

    text-shadow:
        0 3px 20px rgba(0,0,0,0.9);

}


/* ========================================
   ABOUT PAGE
======================================== */

.about-story {

    max-width: 900px;

    margin: 0 auto;

    padding: 100px 30px 120px;

    text-align: center;

}


.about-story h1 {

    font-family: 'Cormorant Garamond', serif;

    color: #D6B3A3;

    font-size: 72px;

    font-weight: 500;

    letter-spacing: 3px;

    margin-bottom: 45px;

}


.about-story p {

    color: #d0d0d0;

    font-family: 'Montserrat', sans-serif;

    font-size: 17px;

    line-height: 1.9;

    margin-bottom: 30px;

}

/* ========================================
   FAQ PAGE
======================================== */

.faq-page {

    max-width: 950px;

    margin: 0 auto;

    padding: 100px 30px 120px;

}


/* MAIN HEADING */

.faq-page h1 {

    font-family: 'Cormorant Garamond', serif;

    color: #D6B3A3;

    font-size: 72px;

    font-weight: 500;

    letter-spacing: 3px;

    line-height: 1.1;

    text-align: center;

    margin: 0 0 80px;

}


/* INDIVIDUAL FAQ */

.faq-item {

    margin-bottom: 55px;

}


/* QUESTION */

.faq-item h2 {

    font-family: 'Cormorant Garamond', serif;

    color: #D6B3A3;

    font-size: 34px;

    font-weight: 500;

    letter-spacing: 1px;

    line-height: 1.3;

    margin: 0 0 18px;

}


/* ANSWER */

.faq-item p {

    color: #d0d0d0;

    font-family: 'Montserrat', sans-serif;

    font-size: 16px;

    font-weight: 300;

    line-height: 1.9;

    margin: 0;

    max-width: 850px;

}


/* SUBTLE DIVIDER */

.faq-item {

    padding-bottom: 45px;

    border-bottom: 1px solid rgba(214, 179, 163, 0.15);

}


/* REMOVE DIVIDER FROM LAST QUESTION */

.faq-item:last-child {

    border-bottom: none;

}

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

.contact-page {

    max-width: 900px;

    margin: 0 auto;

    padding: 100px 30px 100px;

}


/* HEADING */

.contact-page-heading {

    text-align: center;

    margin-bottom: 55px;

}


.contact-page-heading h1 {

    font-family: 'Cormorant Garamond', serif;

    color: #D6B3A3;

    font-size: 72px;

    font-weight: 500;

    letter-spacing: 3px;

    line-height: 1.1;

    margin-bottom: 18px;

}


.contact-page-heading p {

    color: #aaa;

    font-size: 16px;

    line-height: 1.7;

    max-width: 600px;

    margin: 0 auto;

}


/* FORM */

.contact-page-form {

    width: 100%;

}


/* FORM ROW */

.contact-page-form .form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 30px;

}


/* FORM GROUP */

.contact-page-form .form-group {

    margin-bottom: 30px;

}


.contact-page-form label {

    display: block;

    color: #D6B3A3;

    font-family: 'Cormorant Garamond', serif;

    font-size: 18px;

    margin-bottom: 10px;

}


/* INPUTS */

.contact-page-form input,
.contact-page-form textarea {

    width: 100%;

    background: #111;

    border: 1px solid rgba(214, 179, 163, 0.45);

    border-radius: 8px;

    padding: 16px 18px;

    color: #fff;

    font-family: 'Montserrat', sans-serif;

    font-size: 14px;

    outline: none;

    transition: all 0.3s ease;

}


.contact-page-form input::placeholder,
.contact-page-form textarea::placeholder {

    color: #666;

}


/* FOCUS */

.contact-page-form input:focus,
.contact-page-form textarea:focus {

    border-color: #D6B3A3;

    box-shadow: 0 0 15px rgba(214, 179, 163, 0.08);

}


/* MESSAGE */

.contact-page-form textarea {

    resize: vertical;

    min-height: 160px;

}


/* BUTTON */

.contact-page-form button {

    display: block;

    margin: 10px auto 0;

    padding: 15px 45px;

    border: 1px solid #D6B3A3;

    border-radius: 50px;

    background: #D6B3A3;

    color: #111;

    font-family: 'Montserrat', sans-serif;

    font-size: 13px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    cursor: pointer;

    transition: all 0.3s ease;

}


.contact-page-form button:hover {

    background: transparent;

    color: #D6B3A3;

    transform: translateY(-2px);

}


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

.contact-page-info {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 45px;

    margin-top: 55px;

    padding-top: 35px;

    border-top: 1px solid rgba(214, 179, 163, 0.15);

}


.contact-page-info a {

    color: #d0d0d0;

    text-decoration: none;

    font-size: 15px;

    transition: color 0.3s ease;

}


.contact-page-info a:hover {

    color: #D6B3A3;

}



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

.site-footer {

background: #090909;

color: #aaa;

padding: 75px 0 30px;

border-top: 5px solid rgba(255,255,255,0.12);

}

.footer-main {

max-width: 1100px;

margin: 0 auto;

padding: 0 40px 65px;

display: grid;

grid-template-columns: 1.5fr 1.2fr 1fr;

gap: 80px;

}

.footer-brand {

max-width: 350px;

}

.footer-logo {

width: 190px;

height: auto;

display: block;

margin-bottom: 20px;

}

.footer-brand p {

color: #999;

font-size: 14px;

line-height: 1.7;

max-width: 330px;

}

.footer-column h3 {

font-family: 'Cormorant Garamond', serif;

font-size: 15px;

font-weight: 500;

color: #D6B3A3;

text-transform: uppercase;

letter-spacing: 1.5px;

margin: 0 0 22px;

}

.areas {

display: grid;

grid-template-columns: 1fr 1fr;

gap: 35px;

}

.areas a {

display: block;

color: #d0d0d0;

text-decoration: none;

font-size: 14px;

margin-bottom: 16px;

transition: color 0.3s ease;

}

.areas a {

color: #D6B3A3;

}

.contact > a {

display: block;

color: #d0d0d0;

text-decoration: none;

font-size: 14px;

margin-bottom: 15px;

transition: color 0.3s ease;

}

.contact > a {

color: #D6B3A3;

}

/* SOCIAL MEDIA */

.socials {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-top: 25px;

}


.socials a {

    width: 28px;

    height: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    transition: transform 0.3s ease,
                opacity 0.3s ease;

}


.socials img {

    width: 24px;

    height: 24px;

    object-fit: contain;

    display: block;

}


.socials a:hover {

    transform: translateY(-2px);

    opacity: 0.7;

}

.footer-bottom {

max-width: 1100px;

margin: 0 auto;

padding: 25px 40px 0;

border-top: 5px solid rgba(255,255,255,0.12);

display: flex;

justify-content: space-between;

align-items: center;

}

.footer-bottom p {

margin: 0;

font-size: 12px;

color: #777;

}

.footer-bottom a {

color: #777;

text-decoration: none;

font-size: 12px;

transition: color 0.3s ease;

}

.footer-bottom a {

color: #D6B3A3;

}

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

@media (max-width: 768px) {



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

    .nav-container {

        height: auto;

        min-height: 85px;

        padding: 8px 20px;

        display: flex;

        flex-direction: row;

        align-items: center;

        justify-content: space-between;

        position: relative;

    }


    /* LOGO */

    .nav-logo img {

        width: 210px;

        height: auto;

        display: block;

    }


    /* HAMBURGER */

    .hamburger {

        display: block;

        z-index: 1001;

    }


    /* NAV LINKS */

    .nav-links {

        position: absolute;

        top: 100%;

        left: 0;

        width: 100%;

        background: #0b0b0b;

        border-top: 1px solid rgba(214, 179, 163, 0.2);

        border-bottom: 1px solid rgba(214, 179, 163, 0.2);

        display: flex;

        flex-direction: column;

        align-items: center;

        gap: 0;

        padding: 10px 0 20px;

        opacity: 0;

        visibility: hidden;

        transform: translateY(-10px);

        transition: all 0.3s ease;

        z-index: 1000;

    }


    /* OPEN MENU */

    .nav-links.active {

        opacity: 1;

        visibility: visible;

        transform: translateY(0);

    }


    /* LINKS */

    .nav-links a {

        width: 100%;

        padding: 14px 20px;

        text-align: center;

        font-size: 12px;

        letter-spacing: 2px;

    }


    /* HAMBURGER ANIMATION */

    .hamburger.active span:nth-child(1) {

        transform: translateY(8px) rotate(45deg);

    }


    .hamburger.active span:nth-child(2) {

        opacity: 0;

    }


    .hamburger.active span:nth-child(3) {

        transform: translateY(-8px) rotate(-45deg);

    }


/* HERO */

.hero {

    padding: 25px 15px 60px;

}


.hero-banner {

    min-height: 500px;

}


.hero-content {

    padding: 60px 20px;

}


.hero h1 {

    font-size: 52px;

    letter-spacing: 2px;

}


.intro {

    font-size: 16px;

    line-height: 1.7;

}


/* EXPERIENCE */

.steps {

    grid-template-columns: 1fr;

}


.backdrops {

    grid-template-columns: repeat(2,1fr);

    gap: 10px;

}


.backdrop img {

    height: 90px;

}


/* CONTACT */

.contact-form-section {

    padding: 70px 25px 90px;

}


.contact-form-heading h2 {

    font-size: 42px;

}


.form-row {

    grid-template-columns: 1fr;

    gap: 0;

}


.form-group {

    margin-bottom: 25px;

}


.gallery-page {

        min-height: calc(100vh - 150px);

    }

    .gallery-content {

        padding: 40px 20px;

    }

    .gallery-content h1 {

        font-size: 55px;

        letter-spacing: 3px;

    }

.about-story {

        padding: 65px 25px 80px;

    }

    .about-story h1 {

        font-size: 52px;

        margin-bottom: 35px;

    }

    .about-story p {

        font-size: 15px;

        line-height: 1.8;

    }

.faq-page {

        padding: 65px 25px 80px;

    }


    .faq-page h1 {

        font-size: 50px;

        line-height: 1.1;

        letter-spacing: 2px;

        margin-bottom: 55px;

    }


    .faq-item {

        margin-bottom: 40px;

        padding-bottom: 35px;

    }


    .faq-item h2 {

        font-size: 28px;

        line-height: 1.3;

        letter-spacing: 0.5px;

        margin-bottom: 15px;

    }


    .faq-item p {

        font-size: 15px;

        line-height: 1.8;

    }

.contact-page {

        padding: 65px 25px 80px;

    }


    .contact-page-heading h1 {

        font-size: 52px;

        letter-spacing: 2px;

    }


    .contact-page-heading p {

        font-size: 15px;

    }


    .contact-page-form .form-row {

        grid-template-columns: 1fr;

        gap: 0;

    }


    .contact-page-form .form-group {

        margin-bottom: 25px;

    }


    .contact-page-info {

        flex-direction: column;

        gap: 15px;

        margin-top: 45px;

    }


/* FOOTER */

.site-footer {

    padding-top: 60px;

}


.footer-main {

    grid-template-columns: 1fr;

    gap: 50px;

    padding-left: 25px;

    padding-right: 25px;

}


.footer-brand {

    max-width: 400px;

}


.footer-logo {

    width: 180px;

}


.footer-bottom {

    margin: 0 25px;

    padding-left: 0;

    padding-right: 0;

    flex-direction: column;

    align-items: flex-start;

    gap: 12px;

}

}