/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Montserrat', -apple-system, sans-serif;
    color: #2C2C2C;
    background: #FFF8F9;
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ========== COLOR PALETTE ========== */
:root {
    --sky-blue: #CFE0EE;
    --blush: #FBE0E0;
    --blush-light: #FCEFF1;
    --blush-bg: #FFF8F9;
    --coral: #F49A8E;
    --rose: #E63E7B;
    --rose-dark: #C7325F;
    --charcoal: #2C2C2C;
    --soft-gray: #6B6B6B;
    --line: #EFE3E5;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: -0.01em;
    line-height: 1.15;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 400; }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 400; }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: 1.15rem; font-family: 'Montserrat', sans-serif; font-weight: 600; letter-spacing: 0.02em; }
em { font-style: italic; color: var(--rose); font-weight: 500; }
.heart { color: var(--rose); display: inline-block; }
.section-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--rose);
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
}
.section-eyebrow.center { text-align: center; }
.section-sub { color: var(--soft-gray); max-width: 600px; margin: 1rem auto 0; font-size: 1.05rem; }
.lead { font-size: 1.15rem; color: var(--charcoal); margin-bottom: 1.25rem; }

/* ========== LAYOUT ========== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
section { padding: 100px 0; }
.section-header { margin-bottom: 60px; }
.section-header.center { text-align: center; }
.center { text-align: center; }
.center-cta { text-align: center; margin-top: 50px; }

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 36px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 50px;
    transition: all 0.35s ease;
    cursor: pointer;
}
.btn-primary {
    background: var(--rose);
    color: #fff;
    box-shadow: 0 8px 24px rgba(230, 62, 123, 0.25);
}
.btn-primary:hover {
    background: var(--rose-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(230, 62, 123, 0.4);
}
.btn-secondary {
    background: transparent;
    color: var(--charcoal);
    border: 1.5px solid var(--charcoal);
}
.btn-secondary:hover {
    background: var(--charcoal);
    color: #fff;
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    background: rgba(255, 248, 249, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid var(--line);
    transition: all 0.3s ease;
}
.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo img { height: 38px; width: auto; }
.nav-logo .logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--charcoal);
}
.nav-menu {
    display: flex;
    gap: 36px;
    list-style: none;
}
.nav-menu a {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--charcoal);
    position: relative;
    padding: 4px 0;
}
.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--rose);
    transition: width 0.3s ease;
}
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.nav-menu a.active { color: var(--rose); }
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--charcoal);
    transition: all 0.3s ease;
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--blush-light) 0%, var(--sky-blue) 100%);
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}
.hero-eyebrow {
    color: var(--rose);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 24px;
}
.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 28px;
}
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--soft-gray);
    max-width: 540px;
    margin: 0 auto 44px;
}
.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-decoration {
    position: absolute;
    top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(230, 62, 123, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ========== VALUES ========== */
.values { background: #fff; padding: 80px 0; }
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 48px;
}
.value-item {
    text-align: center;
    padding: 24px;
}
.value-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--blush);
    color: var(--rose);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
}
.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-family: 'Cormorant Garamond', serif;
}
.value-item p { color: var(--soft-gray); font-size: 0.98rem; }

/* ========== ABOUT TEASER ========== */
.about-teaser { background: var(--blush-light); }
.about-teaser-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-teaser-img img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(230, 62, 123, 0.15);
}
.about-teaser-content h2 { margin-bottom: 24px; }
.about-teaser-content p { margin-bottom: 18px; color: var(--charcoal); }
.about-teaser-content .btn { margin-top: 16px; }

/* ========== ABOUT FULL PAGE ========== */
.page-header {
    background: linear-gradient(135deg, var(--blush-light) 0%, var(--sky-blue) 100%);
    padding: 180px 0 80px;
    text-align: center;
}
.page-header h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-bottom: 16px;
}
.page-header-sub {
    color: var(--soft-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 16px auto 0;
}
.about-full { background: #fff; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 100px;
}
.about-images {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.about-img-main {
    width: 100%;
    height: 580px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(230, 62, 123, 0.15);
}
.about-img-small {
    width: 70%;
    height: 320px;
    object-fit: cover;
    border-radius: 8px;
    margin-left: auto;
    margin-top: -100px;
    border: 8px solid #fff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}
.about-content h2 { margin-bottom: 28px; }
.about-content p { margin-bottom: 20px; }
.about-mission-block {
    background: var(--blush-light);
    padding: 60px;
    border-radius: 12px;
    margin: 60px 0;
}
.mission-card { max-width: 800px; margin: 0 auto; text-align: center; }
.mission-card h3 { margin-bottom: 24px; font-size: 2rem; color: var(--rose); }
.mission-card p { margin-bottom: 16px; }
.founder-block {
    max-width: 800px;
    margin: 80px auto;
    text-align: center;
}
.founder-block h3 { margin-bottom: 24px; font-size: 2.5rem; }
.founder-block p { margin-bottom: 20px; font-size: 1.05rem; }
.signature-block {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid var(--line);
}
.signature-text { font-style: italic; color: var(--soft-gray); margin-bottom: 8px; }
.signature-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--rose);
    font-style: italic;
}
.values-block {
    margin: 100px 0;
}
.values-block h3 { margin-bottom: 60px; }
.values-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}
.value-list-item {
    padding: 32px;
    background: var(--blush-light);
    border-radius: 12px;
    position: relative;
}
.value-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--rose);
    font-weight: 300;
    line-height: 1;
    display: block;
    margin-bottom: 12px;
}
.value-list-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    margin-bottom: 12px;
}
.value-list-item p { color: var(--soft-gray); }
.cta-block {
    text-align: center;
    background: linear-gradient(135deg, var(--blush) 0%, var(--coral) 100%);
    padding: 80px 40px;
    border-radius: 12px;
    margin-top: 60px;
}
.cta-block h3 { font-size: 2.5rem; color: #fff; margin-bottom: 16px; }
.cta-block h3 em { color: #fff; text-decoration: underline wavy; }
.cta-block p { color: #fff; margin-bottom: 32px; font-size: 1.1rem; }
.cta-block .btn-secondary { color: #fff; border-color: #fff; }
.cta-block .btn-secondary:hover { background: #fff; color: var(--rose); }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ========== COLLECTION ========== */
.collection-teaser, .collection-page { background: #fff; }
.categories {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 60px;
}
.cat-btn {
    padding: 10px 24px;
    border: 1px solid var(--line);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--charcoal);
    background: #fff;
    transition: all 0.3s ease;
}
.cat-btn:hover { border-color: var(--rose); color: var(--rose); }
.cat-btn.active {
    background: var(--rose);
    color: #fff;
    border-color: var(--rose);
}
.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 32px;
}
.collection-grid.four-col {
    grid-template-columns: repeat(4, 1fr);
}
.product-card {
    cursor: pointer;
    transition: all 0.4s ease;
}
.product-card:hover { transform: translateY(-6px); }
.product-img {
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 16px;
    aspect-ratio: 4/5;
    background: var(--blush-light);
}
.product-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.product-card:hover .product-img img { transform: scale(1.05); }
.product-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 4px;
}
.product-card p {
    font-size: 0.85rem;
    color: var(--soft-gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.collection-cta {
    text-align: center;
    margin-top: 80px;
    padding: 60px 40px;
    background: var(--blush-light);
    border-radius: 12px;
}
.collection-cta h3 { margin-bottom: 12px; }
.collection-cta p { color: var(--soft-gray); margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ========== TESTIMONIALS ========== */
.testimonials { background: var(--blush-light); }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}
.testimonial-card {
    background: #fff;
    padding: 36px 32px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(230, 62, 123, 0.06);
    transition: transform 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-4px); }
.stars { color: var(--rose); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 0.1em; }
.testimonial-card p {
    font-style: italic;
    color: var(--charcoal);
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.7;
}
.testimonial-author strong {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 2px;
}
.testimonial-author span {
    font-size: 0.8rem;
    color: var(--soft-gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.google-rating {
    text-align: center;
    margin-top: 60px;
    padding: 32px;
    background: #fff;
    border-radius: 12px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.google-rating p:first-child { color: var(--rose); font-size: 1.5rem; letter-spacing: 0.1em; }
.google-rating p:last-child { color: var(--soft-gray); margin-top: 8px; }
.google-rating strong { color: var(--charcoal); font-size: 1.2rem; }

/* ========== INSTAGRAM ========== */
.instagram-section { background: #fff; }
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-bottom: 48px;
}
.ig-tile {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    transition: transform 0.3s ease;
}
.ig-tile:hover { transform: scale(1.03); }
.ig-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(230, 62, 123, 0);
    transition: background 0.3s ease;
}
.ig-tile:hover::after { background: rgba(230, 62, 123, 0.15); }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; }

/* ========== VISIT PAGE ========== */
.visit-page { background: #fff; }
.visit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.visit-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.info-block {
    background: var(--blush-light);
    padding: 32px;
    border-radius: 12px;
}
.info-block h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--charcoal);
}
.info-icon { font-size: 1.3rem; }
.info-block p { margin-bottom: 8px; line-height: 1.7; }
.info-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--rose);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}
.info-link:hover { color: var(--rose-dark); }
.closed-note {
    font-size: 0.9rem;
    color: var(--soft-gray);
    margin-top: 12px;
    font-style: italic;
}
.hours-table {
    width: 100%;
    border-collapse: collapse;
}
.hours-table tr { border-bottom: 1px solid rgba(230, 62, 123, 0.08); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td {
    padding: 12px 0;
    font-size: 0.95rem;
}
.hours-table td:first-child {
    font-weight: 600;
    color: var(--charcoal);
}
.hours-table td:last-child {
    text-align: right;
    color: var(--soft-gray);
}
.hours-table .closed { color: var(--rose); font-style: italic; }
.visit-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    min-height: 600px;
}

/* ========== CONTACT ========== */
.contact { background: var(--blush-light); }
.contact-card {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.contact-card h2 { margin-bottom: 20px; }
.contact-card > p {
    color: var(--soft-gray);
    margin-bottom: 50px;
    font-size: 1.05rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.contact-link {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
    transition: all 0.3s ease;
    color: var(--charcoal);
}
.contact-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(230, 62, 123, 0.12);
}
.contact-link svg { color: var(--rose); flex-shrink: 0; }
.contact-link strong {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 0.95rem;
}
.contact-link span {
    font-size: 0.85rem;
    color: var(--soft-gray);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--charcoal);
    color: #fff;
    padding: 80px 0 32px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 60px;
}
.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
    color: #fff;
}
.footer h4 {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
}
.footer p { color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; line-height: 1.8; }
.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}
.footer-social a {
    color: var(--blush);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.footer-social a:hover { color: var(--coral); }
.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255, 255, 255, 0.5); }

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 60px; height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
    position: fixed;
    bottom: 24px; left: 24px;
    background: #fff;
    padding: 20px 24px;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    max-width: 380px;
    z-index: 998;
    display: flex;
    align-items: center;
    gap: 16px;
    transform: translateY(150%);
    transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { font-size: 0.85rem; color: var(--soft-gray); margin: 0; }
.cookie-banner a { color: var(--rose); text-decoration: underline; }
.cookie-banner button {
    background: var(--rose);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    flex-shrink: 0;
}
.cookie-banner button:hover { background: var(--rose-dark); }

/* ========== RESPONSIVE ========== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px; left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    .nav-menu.active { transform: translateY(0); }
    .hamburger { display: flex; }
    .about-teaser-grid, .about-grid, .visit-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-img-small { display: none; }
    .about-img-main { height: 450px; }
    .values-list { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .collection-grid.four-col { grid-template-columns: repeat(2, 1fr); }
    .instagram-grid { grid-template-columns: repeat(3, 1fr); }
    section { padding: 70px 0; }
    .about-mission-block { padding: 40px 24px; }
    .visit-map { min-height: 400px; }
}

@media (max-width: 540px) {
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .collection-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .instagram-grid { grid-template-columns: repeat(2, 1fr); }
    .cookie-banner { left: 16px; right: 16px; max-width: none; }
    .whatsapp-float { width: 54px; height: 54px; bottom: 16px; right: 16px; }
    .cta-buttons .btn { width: 100%; justify-content: center; }
}
