/* Bloom & Petal — Boutique Floristry */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
    --cream: #fdf8f0;
    --sage: #7a8c6e;
    --sage-dark: #5d6b53;
    --rose: #c9827a;
    --rose-light: #e8b4ae;
    --charcoal: #2c2c2c;
    --warm-gray: #6b6560;
    --gold: #c5a55a;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Lato', 'Helvetica Neue', Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
}

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

a {
    color: var(--sage-dark);
    text-decoration: none;
    transition: color 0.25s ease;
}

a:hover {
    color: var(--rose);
}

/* Layout */
.container {
    width: 100%;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* ---- Navigation ---- */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    background-color: rgba(253, 248, 240, 0.92);
    border-bottom: 1px solid rgba(122, 140, 110, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.site-logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: 0.5px;
}

.site-logo em {
    font-style: italic;
    color: var(--rose);
    font-weight: 400;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--warm-gray);
    position: relative;
    padding-bottom: 4px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--rose);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.current::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.current {
    color: var(--charcoal);
}

/* ---- Hero Section ---- */
.hero-section {
    padding-top: 72px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--cream) 0%, #f5ece0 50%, #f0e6d6 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -120px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--rose-light) 0%, transparent 70%);
    opacity: 0.3;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(122, 140, 110, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 3.6rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.hero-text h1 span {
    color: var(--rose);
    font-style: italic;
    font-weight: 400;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--warm-gray);
    max-width: 440px;
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: inline-block;
    padding: 0.9rem 2.8rem;
    background-color: var(--sage);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.hero-cta:hover {
    background-color: var(--sage-dark);
    color: #fff;
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
}

.hero-img-wrapper {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 200px 200px 20px 20px;
    overflow: hidden;
    background: linear-gradient(145deg, var(--rose-light), var(--sage));
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    bottom: 30px;
    left: -40px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background-color: var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(197, 165, 90, 0.3);
}

.hero-badge strong {
    font-family: var(--font-display);
    font-size: 2rem;
    color: #fff;
    line-height: 1;
}

.hero-badge small {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ---- Collections Section ---- */
.collections {
    padding: 7rem 0;
    background-color: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.section-header p {
    font-size: 1rem;
    color: var(--warm-gray);
    max-width: 520px;
    margin: 0 auto;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.collection-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--cream);
    border: 1px solid rgba(122,140,110,0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
}

.card-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: linear-gradient(180deg, var(--rose-light), var(--sage));
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.collection-card:hover .card-img img {
    transform: scale(1.05);
}

.card-body {
    padding: 1.5rem 1.5rem 2rem;
}

.card-body h3 {
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.card-body p {
    font-size: 0.9rem;
    color: var(--warm-gray);
}

.card-price {
    display: inline-block;
    margin-top: 1rem;
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--sage-dark);
}

/* ---- About / Story ---- */
.story-section {
    padding: 7rem 0;
    background-color: var(--cream);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--charcoal);
}

.story-content h2 em {
    color: var(--rose);
    font-weight: 400;
}

.story-content p {
    margin-bottom: 1.25rem;
    color: var(--warm-gray);
    font-size: 1rem;
}

.story-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0,0,0,0.06);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ---- Footer ---- */
.site-footer {
    background-color: var(--charcoal);
    color: rgba(255,255,255,0.6);
    padding: 3.5rem 0 2rem;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: #fff;
}

.footer-brand em {
    font-style: italic;
    color: var(--rose-light);
    font-weight: 400;
}

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.5rem;
    font-size: 0.78rem;
}

/* ---- Legal pages ---- */
.page-body {
    padding-top: 120px;
    padding-bottom: 5rem;
    min-height: 70vh;
}

.page-body h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.page-body h2 {
    font-size: 1.4rem;
    margin-top: 2.5rem;
    margin-bottom: 0.75rem;
    color: var(--charcoal);
}

.page-body p {
    margin-bottom: 1rem;
    color: var(--warm-gray);
    max-width: 720px;
}

.page-body .updated {
    font-size: 0.85rem;
    color: var(--rose);
    margin-bottom: 2rem;
    display: block;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        max-width: 360px;
        margin: 0 auto;
    }

    .hero-badge {
        left: auto;
        right: -10px;
        bottom: 20px;
        width: 100px;
        height: 100px;
    }

    .hero-badge strong {
        font-size: 1.5rem;
    }

    .hero-text h1 {
        font-size: 2.6rem;
    }

    .collection-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .nav-menu {
        gap: 1rem;
    }

    .nav-menu a {
        font-size: 0.75rem;
    }
}
