/* =========================================================
   MELORA MAKER
   ========================================================= */

:root {
    --cream: #fbf1eb;
    --cream-dark: #f4e3d9;
    --brown: #6d4527;
    --brown-dark: #4f2e18;
    --gold: #c89555;
    --gold-light: #e9c89e;
    --text: #594536;
    --white: #fffaf7;
    --border: rgba(109, 69, 39, .18);

    --serif: "Cormorant Garamond", Georgia, serif;
    --sans: "Montserrat", Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--text);
    font-family: var(--sans);
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: .35s ease;
}

.header.scrolled {
    background: rgba(251, 241, 235, .94);
    backdrop-filter: blur(16px);
    box-shadow: 0 5px 30px rgba(80, 48, 25, .06);
}

.nav {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.brand img {
    width: 100px;
    height: auto;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
}

.desktop-nav a {
    position: relative;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: .3s;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.nav-whatsapp {
    padding: 11px 18px;
    border: 1px solid var(--brown);
    font-size: 10px;
    letter-spacing: .11em;
    text-transform: uppercase;
    transition: .3s;
}

.nav-whatsapp:hover {
    background: var(--brown);
    color: white;
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    width: 34px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 1px;
    background: var(--brown);
    margin: 7px 0;
}

.mobile-menu {
    display: none;
}

/* General */
.section {
    padding: 125px 0;
}

.eyebrow {
    display: inline-block;
    color: var(--gold);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .3em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

h1, h2, h3 {
    font-family: var(--serif);
    font-weight: 500;
    color: var(--brown-dark);
    line-height: .98;
}

h1 em, h2 em {
    color: var(--gold);
    font-weight: 500;
}

.section-heading {
    max-width: 650px;
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: clamp(42px, 5vw, 66px);
    margin-bottom: 20px;
}

.section-heading p {
    max-width: 540px;
    font-size: 14px;
    font-weight: 300;
    color: #826e60;
}

.centered {
    text-align: center;
    margin-inline: auto;
}

.centered p {
    margin-inline: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    min-height: 50px;
    padding: 0 24px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .14em;
    text-transform: uppercase;
    transition: .3s ease;
}

.btn span {
    font-size: 17px;
    line-height: 1;
}

.btn-primary {
    background: var(--brown);
    color: white;
}

.btn-primary:hover {
    background: var(--brown-dark);
    transform: translateY(-2px);
}

.btn-link {
    padding-inline: 0;
    color: var(--brown);
    border-bottom: 1px solid var(--gold);
    min-height: 40px;
}

.btn-link:hover {
    color: var(--gold);
}

.btn-outline {
    border: 1px solid var(--brown);
    color: var(--brown);
    margin-top: 15px;
}

.btn-outline:hover {
    background: var(--brown);
    color: white;
}

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

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(35, 20, 10, .15);
}

/* Hero */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 130px 0 70px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}

.hero-content {
    max-width: 570px;
}

.hero-content h1 {
    font-size: clamp(56px, 6.5vw, 90px);
    letter-spacing: -.025em;
    margin-bottom: 28px;
}

.hero-content > p {
    max-width: 490px;
    color: #7f6b5d;
    font-size: 15px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 38px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    justify-self: center;
    width: min(520px, 100%);
}

.image-frame {
    position: relative;
    background: rgba(255,255,255,.32);
    border: 1px solid var(--border);
    padding: 20px;
}

.image-frame::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(109,69,39,.12);
    pointer-events: none;
    z-index: 1;
}

.image-frame img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.floating-note {
    position: absolute;
    right: -25px;
    bottom: 30px;
    background: var(--white);
    padding: 17px 23px;
    box-shadow: 0 18px 45px rgba(74, 43, 23, .1);
    display: flex;
    flex-direction: column;
}

.floating-note span {
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: .2em;
    color: var(--gold);
}

.floating-note strong {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 500;
    color: var(--brown);
}

.hero-decoration {
    position: absolute;
    border: 1px solid rgba(109,69,39,.1);
    border-radius: 50%;
    pointer-events: none;
}

.hero-decoration-1 {
    width: 580px;
    height: 580px;
    right: -250px;
    top: 100px;
}

.hero-decoration-2 {
    width: 180px;
    height: 180px;
    left: -100px;
    bottom: 40px;
}

.scroll-indicator {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    color: #a28b79;
    font-size: 9px;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.scroll-indicator i {
    font-style: normal;
    font-size: 18px;
}

/* Products */
.products {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 28px;
}

.product-card {
    min-width: 0;
}

.product-image {
    position: relative;
    background: var(--cream);
    overflow: hidden;
    margin-bottom: 25px;
}

.product-image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform .7s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.035);
}

.product-large .product-image img {
    aspect-ratio: 1 / .95;
}

.product-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--brown);
    color: white;
    padding: 7px 11px;
    font-size: 8px;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.product-info > span {
    color: var(--gold);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .2em;
}

.product-info h3 {
    font-size: 30px;
    margin: 9px 0 10px;
}

.product-info p {
    color: #806e61;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.8;
    max-width: 360px;
}

.product-link {
    display: inline-flex;
    gap: 15px;
    align-items: center;
    margin-top: 17px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--gold);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.product-link span {
    font-size: 15px;
    transition: transform .3s;
}

.product-link:hover span {
    transform: translate(3px, -3px);
}

.placeholder-product {
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
}

.placeholder-product > div {
    text-align: center;
}

.placeholder-product span {
    display: block;
    color: var(--gold);
    font-size: 9px;
    letter-spacing: .25em;
}

.placeholder-product strong {
    display: block;
    font-family: var(--serif);
    font-size: 35px;
    font-weight: 500;
    margin-top: 5px;
}

/* Photographer */
.photographers {
    background: var(--cream);
}

.photographer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 110px;
}

.photographer-visual {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 50px;
}

.circle-art {
    width: min(430px, 100%);
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid rgba(109,69,39,.25);
    position: relative;
    display: grid;
    place-items: center;
}

.circle-art::before,
.circle-art::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(109,69,39,.15);
}

.circle-art::before {
    inset: 13px;
}

.circle-art::after {
    inset: 45px;
}

.circle-inner {
    text-align: center;
    position: relative;
    z-index: 2;
}

.circle-inner span {
    display: block;
    font-family: var(--serif);
    font-size: 62px;
    line-height: .7;
    color: var(--brown);
}

.circle-inner strong {
    display: block;
    font-size: 10px;
    letter-spacing: .5em;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--gold);
    margin: 24px 0 0 8px;
}

.visual-caption {
    position: absolute;
    bottom: 15px;
    right: 0;
    max-width: 160px;
    font-family: var(--serif);
    font-size: 17px;
    font-style: italic;
    color: var(--brown);
    line-height: 1.2;
}

.photographer-content h2 {
    font-size: clamp(45px, 5vw, 68px);
    margin-bottom: 28px;
}

.photographer-content p {
    max-width: 510px;
    color: #806e61;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 15px;
}

/* Gallery */
.gallery {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr .8fr;
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: var(--cream);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    transition: transform .6s;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

.gallery-tall {
    grid-row: span 2;
}

.gallery-tall img {
    min-height: 580px;
}

.gallery-logo {
    display: grid;
    place-items: center;
    padding: 45px;
}

.gallery-logo img {
    width: 75%;
    height: auto;
    min-height: auto;
    object-fit: contain;
}

.gallery-label {
    position: absolute;
    left: 22px;
    bottom: 20px;
    background: rgba(255,250,247,.9);
    padding: 10px 14px;
    font-family: var(--serif);
    font-size: 18px;
    color: var(--brown);
}

/* Steps */
.steps {
    background: var(--cream-dark);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--border);
}

.step {
    padding: 35px 28px 10px 0;
    border-right: 1px solid var(--border);
    margin-right: 28px;
}

.step:last-child {
    border-right: 0;
}

.step > span {
    font-family: var(--serif);
    font-size: 22px;
    color: var(--gold);
}

.step h3 {
    font-size: 29px;
    margin: 13px 0 10px;
}

.step p {
    color: #806e61;
    font-size: 12px;
    font-weight: 300;
    max-width: 220px;
}

/* CTA */
.cta {
    position: relative;
    overflow: hidden;
    background: var(--brown);
    color: white;
    padding: 130px 0;
    text-align: center;
}

.cta::before,
.cta::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;
}

.cta::before {
    width: 500px;
    height: 500px;
    left: -180px;
    top: -150px;
}

.cta::after {
    width: 350px;
    height: 350px;
    right: -120px;
    bottom: -160px;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta .eyebrow {
    color: var(--gold-light);
}

.cta h2 {
    max-width: 820px;
    margin: 0 auto 25px;
    color: white;
    font-size: clamp(45px, 6vw, 75px);
}

.cta h2 em {
    color: var(--gold-light);
}

.cta p {
    color: rgba(255,255,255,.72);
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 35px;
}

.cta-stars {
    position: absolute;
    top: 20%;
    left: 18%;
    color: var(--gold-light);
    font-size: 30px;
}

/* Footer */
.footer {
    background: #4d301e;
    color: rgba(255,255,255,.65);
    padding: 65px 0 35px;
    text-align: center;
}

.footer-content {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.footer-logo {
    width: 150px;
    opacity: .9;
    margin-bottom: 14px;
}

.footer p {
    font-family: var(--serif);
    font-size: 19px;
    margin-bottom: 25px;
}

.footer-links {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.footer-links a {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .15em;
}

.footer-links a:hover {
    color: white;
}

.footer small {
    font-size: 9px;
    opacity: .5;
}

/* WhatsApp */
.floating-whatsapp {
    position: fixed;
    z-index: 900;
    right: 25px;
    bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    border-radius: 50px;
    padding: 13px 19px 13px 14px;
    box-shadow: 0 12px 30px rgba(37,211,102,.28);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: .3s;
}

.floating-whatsapp:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(37,211,102,.35);
}

.wa-icon {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 50%;
    font-size: 11px;
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity .8s ease, transform .8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 980px) {
    .desktop-nav,
    .nav-whatsapp {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-menu {
        position: absolute;
        top: 92px;
        left: 0;
        width: 100%;
        background: rgba(251,241,235,.98);
        backdrop-filter: blur(15px);
        padding: 18px 24px 28px;
        display: flex;
        flex-direction: column;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: .3s;
    }

    .mobile-menu.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .mobile-menu a {
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
        font-size: 10px;
        letter-spacing: .14em;
        text-transform: uppercase;
    }

    .mobile-menu .mobile-wa {
        color: var(--gold);
        font-weight: 600;
    }

    .hero-grid,
    .photographer-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-content {
        max-width: 700px;
    }

    .hero-image {
        max-width: 560px;
    }

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

    .product-large {
        grid-column: 1 / -1;
    }

    .photographer-visual {
        order: 2;
    }

    .photographer-content {
        order: 1;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 30px;
    }

    .step:nth-child(2) {
        border-right: 0;
    }

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

    .gallery-tall {
        grid-row: span 2;
    }

    .gallery-logo {
        grid-column: 2;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(100% - 34px, 1180px);
    }

    .nav {
        min-height: 78px;
    }

    .brand img {
        width: 115px;
    }

    .mobile-menu {
        top: 78px;
    }

    .hero {
        padding-top: 115px;
        padding-bottom: 90px;
    }

    .hero-content h1 {
        font-size: clamp(48px, 15vw, 68px);
    }

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

    .btn-primary {
        width: 100%;
    }

    .floating-note {
        right: -4px;
        bottom: 15px;
    }

    .section {
        padding: 90px 0;
    }

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

    .section-heading h2,
    .photographer-content h2 {
        font-size: 46px;
    }

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

    .product-large {
        grid-column: auto;
    }

    .photographer-visual {
        padding: 25px 10px 55px;
    }

    .circle-inner span {
        font-size: 48px;
    }

    .visual-caption {
        right: 5px;
    }

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

    .gallery-tall {
        grid-row: auto;
    }

    .gallery-tall img {
        min-height: 400px;
    }

    .gallery-logo {
        grid-column: auto;
        min-height: 280px;
    }

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

    .step,
    .step:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid var(--border);
        margin-right: 0;
        padding-bottom: 30px;
    }

    .step:last-child {
        border-bottom: 0;
    }

    .cta {
        padding: 100px 0;
    }

    .cta h2 {
        font-size: 47px;
    }

    .floating-whatsapp {
        right: 15px;
        bottom: 15px;
        padding: 12px;
    }

    .wa-text {
        display: none;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}
