:root {
    --bg: #ffffff;
    --surface: #faf8f5;
    --surface-2: #f4f1ec;
    --text: #111111;
    --muted: #6f6a63;
    --line: rgba(17, 17, 17, 0.08);
    --gold: #b38b42;
    --gold-soft: rgba(179, 139, 66, 0.08);
    --white: #ffffff;

    --font-display: 'Cormorant', serif;
    --font-body: 'Satoshi', sans-serif;

    --radius-sm: 10px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-full: 999px;

    --shadow-sm: 0 8px 30px rgba(0,0,0,.05);
    --shadow-md: 0 18px 50px rgba(0,0,0,.08);

    --container: 1240px;

    --text-xs: clamp(.75rem, .72rem + .2vw, .85rem);
    --text-sm: clamp(.9rem, .84rem + .2vw, 1rem);
    --text-base: clamp(1rem, .98rem + .25vw, 1.1rem);
    --text-lg: clamp(1.1rem, 1rem + .6vw, 1.45rem);
    --text-xl: clamp(1.6rem, 1.2rem + 1.4vw, 2.4rem);
    --text-2xl: clamp(2.3rem, 1.6rem + 2.8vw, 4.5rem);
    --text-hero: clamp(3.2rem, 1.5rem + 6vw, 7rem);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

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

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

button {
    font: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

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

.topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
}

.topbar-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.brand-name {
    font-family: var(--font-display);
    font-size: 2rem;
    letter-spacing: .06em;
    color: var(--text);
}

.menu {
    display: flex;
    align-items: center;
    gap: 34px;
}

.menu a {
    font-size: var(--text-sm);
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .12em;
    transition: .25s ease;
}

.menu a:hover {
    color: var(--text);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-outline,
.btn-solid {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: .12em;
    transition: .28s ease;
}

.btn-outline {
    border: 1px solid var(--line);
    color: var(--text);
    background: #fff;
}

.btn-outline:hover {
    background: var(--surface);
}

.btn-solid {
    background: var(--text);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-solid:hover {
    transform: translateY(-2px);
    background: #222;
}

.hero {
    position: relative;
    padding: 80px 0 40px;
}

.hero::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(179,139,66,.14) 0%, rgba(179,139,66,0) 70%);
    top: -100px;
    right: -120px;
    filter: blur(10px);
    pointer-events: none;
}

.hero-grid {
    min-height: calc(100vh - 120px);
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 48px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(179,139,66,.22);
    background: var(--gold-soft);
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: var(--text-xs);
    font-weight: 700;
    margin-bottom: 26px;
}

.eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

.hero h1 {
    font-family: var(--font-display);
    font-size: var(--text-hero);
    line-height: .95;
    font-weight: 400;
    letter-spacing: -.03em;
    margin-bottom: 24px;
}

.hero h1 span {
    color: var(--gold);
    font-style: italic;
}

.hero p {
    max-width: 590px;
    font-size: var(--text-lg);
    color: var(--muted);
    margin-bottom: 34px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 46px;
}

.hero-note {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    color: var(--muted);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: .12em;
}

.hero-visual {
    position: relative;
    height: 100%;
    min-height: 620px;
    display: grid;
    place-items: center;

}

.hero-card {
    position: relative;
    width: min(100%, 520px);
    aspect-ratio: 4 / 5;
    border-radius: 36px;
    overflow: hidden;
    background:
       linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.02)),
        url("resources/images/perfumeCuadradoRosaNaranja.jpeg") center/cover no-repeat;
    box-shadow: var(--shadow-md);
}

.hero-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.52), rgba(0,0,0,.08) 55%, rgba(0,0,0,0));
}

.hero-badge {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
}

.hero-badge small {
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .16em;
    opacity: .75;
    font-size: .75rem;
}

.hero-badge strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 6px;
}

.hero-badge span {
    opacity: .8;
    font-size: .95rem;
}

.section {
    padding: 100px 0;
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 40px;
}

.section-kicker {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .18em;
    font-size: var(--text-xs);
    font-weight: 700;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    line-height: 1;
    font-weight: 400;
    letter-spacing: -.02em;
}

.section-title em {
    color: var(--gold);
    font-style: italic;
}

.section-text {
    max-width: 460px;
    color: var(--muted);
    font-size: var(--text-base);
}

.collection-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr;
    gap: 18px;
}

.collection-card {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
    min-height: 320px;
    background: var(--surface);
    box-shadow: 0 0 0 1px rgba(17,17,17,.04) inset;
    transition: transform .35s ease, box-shadow .35s ease;
}

.collection-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.collection-card.large {
    min-height: 620px;
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collection-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: end;
    padding: 24px;
    background: linear-gradient(to top, rgba(0,0,0,.62), rgba(0,0,0,.08) 50%, rgba(0,0,0,0));
    color: #fff;
}

.collection-info small {
    display: block;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: .75rem;
    opacity: .7;
    margin-bottom: 10px;
}

.collection-info h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 6px;
}

.collection-info p {
    font-size: .96rem;
    opacity: .84;
}

.story {
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.story-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 50px;
    align-items: center;
}

.story-panel,
.story-image {
    height: 100%;
    background: #fff;
    border-radius: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(17,17,17,.05);
}
.story-panel{
    padding: 42px;

}

.story-image{
    min-height: 0;
}
.story-image img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    object-fit: cover;
}

.story-panel h2 {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    line-height: 1;
    font-weight: 400;
    margin-bottom: 22px;
}

.story-panel h2 em {
    color: var(--gold);
    font-style: italic;
}

.story-panel p {
    color: var(--muted);
    margin-bottom: 18px;
    font-size: var(--text-base);
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 28px;
}

.stat {
    padding: 18px 0;
    border-top: 1px solid var(--line);
}

.stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2.3rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}

.stat span {
    color: var(--muted);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: .12em;
}


.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.value-card {
    padding: 34px 28px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--line);
    transition: .3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(179,139,66,.24);
}

.value-number {
    font-family: var(--font-display);
    font-size: 3rem;
    color: rgba(179,139,66,.55);
    line-height: 1;
    margin-bottom: 18px;
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.value-card p {
    color: var(--muted);
    font-size: var(--text-base);
}

.cta-box {
    text-align: center;
    background: linear-gradient(180deg, #fff, var(--surface));
    border: 1px solid var(--line);
    border-radius: 34px;
    padding: 60px 24px;
    box-shadow: var(--shadow-sm);
}

.cta-box h2 {
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 18px;
}

.cta-box h2 em {
    color: var(--gold);
    font-style: italic;
}

.cta-box p {
    max-width: 600px;
    margin: 0 auto 28px;
    color: var(--muted);
    font-size: var(--text-base);
}

.cta-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

footer {
    padding: 32px 0 48px;
}

.footer-inner {
    border-top: 1px solid var(--line);
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-inner p,
.footer-inner a {
    color: var(--muted);
    font-size: var(--text-sm);
}

.footer-links {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

@media (max-width: 1100px) {
    .hero-grid,
    .story-grid,
    .collection-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: auto;
    }

    .hero-card,
    .story-image {
        min-height: 20px;
    }

    .collection-card.large {
        min-height: 420px;
    }
}

@media (max-width: 860px) {
    .menu,
    .nav-actions .btn-outline {
        display: none;
    }

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

    .section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .story-panel {
        padding: 30px 22px;
    }

    .hero {
        padding-top: 48px;
    }

    .hero-grid {
        min-height: auto;
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .topbar-inner {
        min-height: 70px;
    }

    .brand-name {
        font-size: 1.7rem;
    }

    .hero h1 {
        line-height: .98;
    }

    .hero-actions,
    .cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-outline,
    .btn-solid {
        width: 100%;
    }

    .story-stats {
        grid-template-columns: 1fr;
    }

    .hero-card,
    .story-image {
        min-height: 320px;
    }
}