:root {
    --sage: #bfd4cd;
    --sage-deep: #8faea4;
    --blush: #e8c2c0;
    --ivory: #fcfaf7;
    --sand: #efe7df;
    --ink: #1b1b1b;
    --muted: #6b6b6b;
    --card: rgba(255, 255, 255, .72);
    --line: rgba(27, 27, 27, .09);
    --shadow: 0 20px 60px rgba(70, 84, 79, 0.12);
    --radius-xl: 32px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top right, rgba(232, 194, 192, .32), transparent 32%),
        radial-gradient(circle at bottom left, rgba(191, 212, 205, .44), transparent 28%),
        linear-gradient(180deg, #fdfcf9 0%, #f8f4ef 100%);
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.topbar {
    background: var(--sage-deep);
    color: white;
    font-size: 13px;
    letter-spacing: .03em;
}

.topbar .container {
    padding: 10px 0;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}

header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(252, 250, 247, .82);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

.nav {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
    border: 3px solid rgba(255, 255, 255, .8);
}

.brand-copy strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 31px;
    line-height: .9;
    letter-spacing: .02em;
    font-weight: 600;
}

.brand-copy span {
    color: var(--muted);
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.menu {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 15px;
}

.menu a {
    color: #333;
    position: relative;
}

.menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 1.5px;
    background: var(--ink);
    transition: width .2s ease;
}

.menu a:hover::after {
    width: 100%;
}

.actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn,
.ghost-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn {
    background: var(--ink);
    color: white;
    box-shadow: 0 14px 30px rgba(27, 27, 27, .16);
}

.btn:hover {
    transform: translateY(-1px);
}

.ghost-btn {
    background: rgba(255, 255, 255, .7);
    border: 1px solid var(--line);
    color: var(--ink);
}

.hero {
    padding: 54px 0 32px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 26px;
    align-items: stretch;
}

.hero-copy,
.hero-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.hero-copy {
    background:
        radial-gradient(circle at 20% 15%, rgba(255, 255, 255, .75), transparent 33%),
        linear-gradient(135deg, rgba(255, 255, 255, .72), rgba(239, 231, 223, .86)),
        linear-gradient(180deg, var(--ivory), #f4eee7);
    padding: 70px 58px;
    min-height: 620px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(191, 212, 205, .34);
    color: #365148;
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 22px;
}

h1,
h2,
h3 {
    font-family: 'Cormorant Garamond', serif;
    margin: 0;
    letter-spacing: .01em;
    font-weight: 600;
}

h1 {
    font-size: clamp(48px, 6vw, 86px);
    line-height: .9;
    max-width: 10ch;
    margin-bottom: 22px;
}

.hero-copy p {
    font-size: 18px;
    line-height: 1.8;
    color: #4e4e4e;
    max-width: 54ch;
    margin: 0 0 30px;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-badges {
    margin-top: 36px;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 14px;
}

.hero-badges span::before {
    content: '•';
    color: var(--sage-deep);
    margin-right: 8px;
}

.hero-card {
    background:
        radial-gradient(circle at top, rgba(255, 255, 255, .46), transparent 30%),
        linear-gradient(180deg, rgba(191, 212, 205, .88), rgba(232, 194, 192, .5));
    min-height: 620px;
    display: grid;
    place-items: center;
    padding: 30px;
}

.logo-panel {
    background: rgba(255, 255, 255, .5);
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 32px;
    padding: 24px;
    width: min(100%, 420px);
    box-shadow: 0 18px 40px rgba(111, 137, 129, .15);
}

.logo-panel img {
    width: 100%;
    border-radius: 24px;
    object-fit: cover;
}

.logo-note {
    margin-top: 18px;
    text-align: center;
    font-size: 15px;
    color: #46544f;
    line-height: 1.7;
}

.section {
    padding: 34px 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    margin-bottom: 22px;
}

.section-head p {
    margin: 10px 0 0;
    color: var(--muted);
    max-width: 58ch;
    line-height: 1.7;
}

h2 {
    font-size: clamp(34px, 4.6vw, 54px);
    line-height: .95;
}

h3 {
    font-size: 30px;
    line-height: 1;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .74);
    padding: 12px 16px;
    font-size: 14px;
    color: var(--ink);
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.card {
    background: var(--card);
    border: 1px solid rgba(255, 255, 255, .85);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.product-visual,
.category-visual {
    aspect-ratio: 4 / 5;
    padding: 18px;
    position: relative;
    overflow: hidden;
}

.product-visual::before,
.category-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, .2), transparent 45%),
        radial-gradient(circle at 70% 20%, rgba(255, 255, 255, .55), transparent 28%);
    pointer-events: none;
}

.v1 {
    background: linear-gradient(180deg, #e8d1cb, #f6eee7);
}

.v2 {
    background: linear-gradient(180deg, #d8e3df, #eef4f1);
}

.v3 {
    background: linear-gradient(180deg, #eee3da, #f9f4ef);
}

.v4 {
    background: linear-gradient(180deg, #dfe8e2, #f4f8f6);
}

.mannequin {
    position: absolute;
    inset: 22px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 50% 18%, rgba(27, 27, 27, .18) 0 6%, transparent 7%),
        linear-gradient(180deg, transparent 0 20%, rgba(255, 255, 255, .7) 20% 100%);
    opacity: .48;
}

.dress {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 18px;
    width: 56%;
    height: 74%;
    border-radius: 44% 44% 18% 18% / 18% 18% 12% 12%;
    background: rgba(255, 255, 255, .84);
    box-shadow: inset 0 -12px 22px rgba(0, 0, 0, .04);
}

.dress.blush {
    background: rgba(232, 194, 192, .82);
}

.dress.sage {
    background: rgba(191, 212, 205, .86);
}

.dress.sand {
    background: rgba(245, 235, 225, .88);
}

.tag {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(27, 27, 27, .08);
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #4d4d4d;
}

.card-body {
    padding: 18px 18px 20px;
}

.price {
    margin: 8px 0 14px;
    color: #565656;
    font-weight: 600;
}

.tiny {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
    margin: 0 0 14px;
}

.mini-btn {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 12px 14px;
    border-radius: 999px;
    background: rgba(27, 27, 27, .92);
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.story {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 22px;
    align-items: stretch;
}

.story-panel {
    background: rgba(255, 255, 255, .74);
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.story-copy {
    padding: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-copy p {
    color: var(--muted);
    line-height: 1.9;
    margin: 16px 0 28px;
}

.story-visual {
    min-height: 420px;
    background:
        linear-gradient(180deg, rgba(191, 212, 205, .8), rgba(252, 250, 247, .8)),
        url('assets/logo.jpeg') center/cover no-repeat;
    background-blend-mode: soft-light;
    position: relative;
    isolation: isolate;
}

.story-visual::after {
    content: '';
    position: absolute;
    inset: 24px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, .75);
    z-index: -1;
}

.story-quote {
    position: absolute;
    left: 32px;
    bottom: 32px;
    background: rgba(255, 255, 255, .76);
    border: 1px solid rgba(255, 255, 255, .84);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    padding: 30px;
    width: min(360px, calc(100% - 64px));
    box-shadow: var(--shadow);

    text-align: center; 
}

.story-quote strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    margin-bottom: 8px;
    right: 40px;
   
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    min-height: 320px;
    display: flex;
    align-items: end;
    padding: 24px;
    color: white;
    isolation: isolate;
}

.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(27, 27, 27, .02), rgba(27, 27, 27, .6));
    z-index: -1;
}

.category-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, .2), transparent 24%),
        linear-gradient(135deg, rgba(191, 212, 205, .85), rgba(232, 194, 192, .68));
    z-index: -2;
}

.category-card:nth-child(2)::after {
    background: linear-gradient(135deg, rgba(232, 194, 192, .84), rgba(191, 212, 205, .62));
}

.category-card:nth-child(3)::after {
    background: linear-gradient(135deg, rgba(196, 214, 207, .92), rgba(239, 231, 223, .68));
}

.category-card h3 {
    margin-bottom: 8px;
}

.category-card p {
    margin: 0 0 18px;
    max-width: 25ch;
    line-height: 1.7;
    color: rgba(255, 255, 255, .9);
}

.feature-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 18px;
}

.feature {
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(255, 255, 255, .84);
    border-radius: var(--radius-md);
    padding: 22px;
    box-shadow: var(--shadow);
}

.feature strong {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
}

.feature span {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.cta-banner {
    margin: 30px 0 44px;
    background: linear-gradient(135deg, rgba(27, 27, 27, .96), rgba(61, 79, 73, .96));
    color: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.cta-wrap {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 10px;
    align-items: center;
    padding: 42px;
}

.cta-wrap p {
    color: rgba(255, 255, 255, .8);
    line-height: 1.8;
    margin: 14px 0 24px;
}

.cta-card {
    justify-self: end;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 24px;
    padding: 24px;
    width: min(100%, 390px);
}

.cta-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
    color: rgba(255, 255, 255, .84);
}

.cta-card li::before {
    content: '✦';
    color: var(--blush);
    margin-right: 10px;
}

footer {
    padding: 18px 0 48px;
}

.footer-box {
    background: rgba(255, 255, 255, .76);
    border: 1px solid rgba(255, 255, 255, .84);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    padding: 30px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 28px;
}

.footer-brand {
    display: flex;
    gap: 16px;
    align-items: start;
}

.footer-brand img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-box h4 {
    margin: 0 0 12px;
    font-size: 14px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
}

.footer-box p,
.footer-box a {
    color: #4f4f4f;
    line-height: 1.9;
    font-size: 15px;
}

.whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 50;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    box-shadow: 0 16px 30px rgba(37, 211, 102, .36);
    font-size: 28px;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: 0;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

@media (max-width: 980px) {
    .mobile-toggle {
        display: block;
    }

    .menu {
        display: none;
        position: absolute;
        top: 83px;
        left: 16px;
        right: 16px;
        flex-direction: column;
        align-items: start;
        background: rgba(252, 250, 247, .98);
        border: 1px solid var(--line);
        border-radius: 24px;
        box-shadow: var(--shadow);
        padding: 18px;
    }

    .menu.open {
        display: flex;
    }

    .actions .btn {
        display: none;
    }

    .hero-grid,
    .story,
    .cta-wrap,
    .footer-box {
        grid-template-columns: 1fr;
    }

    .cards,
    .feature-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy,
    .hero-card {
        min-height: auto;
    }

    .hero-copy {
        padding: 42px 28px;
    }

    .story-copy {
        padding: 32px 24px;
    }

    .cta-wrap {
        padding: 28px;
    }

    .cta-card {
        justify-self: start;
    }
}

@media (max-width: 640px) {
    .brand-copy strong {
        font-size: 26px;
    }

    .brand img {
        width: 52px;
        height: 52px;
    }

    .nav {
        min-height: 76px;
    }

    .hero {
        padding-top: 28px;
    }

    .hero-copy p {
        font-size: 16px;
    }

    .cards,
    .feature-strip {
        grid-template-columns: 1fr;
    }

    .section-head {
        flex-direction: column;
        align-items: start;
    }

    .footer-box {
        padding: 22px;
    }
}