/* Reset & Variables */
:root {
    /* Color Palette - Rose Pink / Peachy */
    --bg-color: #EFDCD5;
    /* Muted Rose/Peach */
    --bg-light: #F7EBE8;
    /* Lighter shade */

    --text-color: #FFFFFF;
    --text-dark: #3E2F2C;
    /* deeply warm charcoal/brown */
    --text-heading-color: #2C1E1C;
    /* High contrast dark for headings */

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --padding-side: 4vw;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Top Bar */
.top-bar {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem var(--padding-side);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(62, 47, 44, 0.2);
}

.brand-tagline {
    font-weight: 400;
    color: var(--text-dark);
}

.top-social {
    color: var(--text-dark);
    transition: opacity 0.3s ease;
}

.top-social:hover {
    opacity: 0.7;
}

/* Brand Title */
.brand-title-container {
    text-align: center;
    padding: 2rem var(--padding-side);
    border-bottom: 1px solid rgba(62, 47, 44, 0.2);
    background-color: var(--bg-color);
}

.brand-logo {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 20vh;
    object-fit: contain;
}

.brand-title {
    font-family: var(--font-heading);
    font-size: 14vw;
    /* Massive size like screenshot */
    line-height: 0.8;
    color: var(--text-heading-color);
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: -1vw;
    /* Pull it closer to the line/grid below */
    text-shadow: none;
}

/* Hero Grid */
.hero-grid {
    display: grid;
    grid-template-columns: 25% 50% 25%;
    padding: 4rem var(--padding-side);
    min-height: 80vh;
    border-bottom: 1px solid rgba(62, 47, 44, 0.2);
}

.hero-col-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding-right: 2rem;
}

.collection-year {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1;
    color: var(--text-heading-color);
}

.hero-desc {
    font-size: 0.85rem;
    color: var(--text-dark);
    line-height: 1.6;
    max-width: 250px;
}

.btn-primary {
    background-color: #333;
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    width: fit-content;
    transition: transform 0.3s;
}

.btn-primary:hover {
    transform: scale(1.05);
}

.hero-col-center {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* Align image towards bottom */
}

.image-frame-arched {
    width: 80%;
    height: 90%;
    background-color: rgba(0, 0, 0, 0.05);
    border-top-left-radius: 500px;
    border-top-right-radius: 500px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-caption {
    position: absolute;
    top: 10%;
    right: -10%;
    color: var(--text-heading-color);
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.5rem;
    text-align: right;
    max-width: 200px;
}

.hero-col-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    text-align: right;
}

.feature-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-nav li {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--text-dark);
    cursor: pointer;
    border-bottom: 1px solid rgba(62, 47, 44, 0.3);
    padding-bottom: 0.5rem;
    transition: color 0.3s;
}

.feature-nav li:hover {
    color: #333;
    border-color: #333;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 40% 60%;
    background-color: var(--bg-light);
    /* Lighter section */
    padding: 6rem var(--padding-side);
    align-items: start;
}

.about-title-col h2 {
    font-family: var(--font-heading);
    font-size: 6rem;
    line-height: 0.9;
    color: var(--text-heading-color);
    /* High contrast */
    text-transform: uppercase;
}

.about-content-col {
    padding-left: 4rem;
}

.about-lead {
    font-size: 0.9rem;
    margin-bottom: 3rem;
    max-width: 500px;
}

.about-model-image {
    width: 100%;
    height: 400px;
    background-color: #eee;
    border-top-left-radius: 200px;
    margin-bottom: 3rem;
    overflow: hidden;
}

.about-model-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-subtext {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
}

.btn-text {
    background: #333;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
}

/* CTA/Products Frame */
.products-frame {
    background-color: var(--bg-light);
    padding: 4rem var(--padding-side);
    border-top: 1px solid #e0e0e0;
}

.products-title h2 {
    font-family: var(--font-heading);
    font-size: 4rem;
    text-align: center;
    color: var(--text-heading-color);
    margin-bottom: 3rem;
}

.cta-wrapper {
    display: flex;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: center;
}

.cta-card {
    flex: 1;
    background: #fff;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.cta-desc {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #666;
}

.input-group {
    display: flex;
    border-bottom: 1px solid #333;
    padding-bottom: 0.5rem;
}

.input-group input {
    flex: 1;
    border: none;
    outline: none;
    font-family: var(--font-body);
}

.input-group button {
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    color: #333;
}

.cta-visual {
    flex: 1;
    height: 300px;
    overflow: hidden;
    /* Optional rounded stacking look */
}

.cta-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* Footer */
.main-footer {
    background-color: var(--text-dark);
    padding: 3rem var(--padding-side);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-cols {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: #fff;
    text-transform: uppercase;
}

.footer-col h4 {
    margin-bottom: 1rem;
    opacity: 0.7;
}

.social-links a,
.social-links span {
    margin-right: 1.5rem;
    cursor: pointer;
    color: #fff;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 900px) {
    .brand-title {
        font-size: 18vw;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-col-left,
    .hero-col-right {
        align-items: center;
        text-align: center;
        padding: 0;
    }

    .hero-col-left p {
        max-width: 100%;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-title-col h2 {
        font-size: 4rem;
        margin-bottom: 2rem;
    }

    .about-content-col {
        padding: 0;
    }

    .cta-wrapper {
        flex-direction: column;
    }
}

/* Modal from previous step preserved */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(62, 47, 44, 0.6);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: var(--bg-light);
    padding: 3rem;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.close-modal {
    float: right;
    cursor: pointer;
    font-size: 1.5rem;
}