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

:root {
    --pink:     #f06292;
    --orange:   #ffb347;
    --blue:     #64b5f6;
    --lavender: #dddcf0;
    --text:     #333;
    --muted:    #888;
}

body {
    font-family: 'Inter', sans-serif;
    background: #fff;
    color: var(--text);
    width: 100%;
    overflow-x: hidden;
}

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

/* ── HEADER ── */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 120px;
    background: #fff;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    font-weight: 600;
}

.logo img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 50%;
}

nav {
    display: flex;
    align-items: center;
    gap: 48px;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.nav-cards {
    background: var(--pink);
    color: #fff;
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

/* ── HERO ── */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 120px;
    background: #fff;
    width: 100%;
    height: calc(90vh - 100px);
    gap: 60px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin-top: -60px;
}

.hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 5.5vw, 82px);
    font-weight: 700;
    line-height: 1.05;
    color: #222;
    margin-bottom: 32px;
    text-align: left;
}

.hero-text h1 span {
    font-weight: 400;
    font-style: italic;
    font-size: clamp(38px, 4.2vw, 66px);
    display: block;
    text-align: left;
}

.hero-btn {
    display: inline-block;
    background: var(--pink);
    color: #fff;
    font-size: 15px;
    padding: 14px 30px;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    align-self: flex-start;
    letter-spacing: 0.02em;
}

.hero-image {
    flex-shrink: 0;
    width: 36vw;
    border-radius: 12px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── WAVE ── */
.wave-wrap {
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.wave-wrap svg {
    display: block;
    width: 100%;
    height: 120px;
}

.wave-top {
    margin-bottom: -2px;
}

.wave-bottom {
    margin-top: -2px;
}

/* ── CARDS SECTION ── */
.cards-section {
    background: var(--lavender);
    padding: 40px 80px 60px;
    width: 100%;
}

.cards-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 4.5vw, 64px);
    font-weight: 400;
    text-align: center;
    margin-bottom: 40px;
    color: #222;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ── POLAROID ── */
.polaroid {
    background: #fff;
    padding: 14px 14px 22px 14px;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.10),
        0 1px 3px rgba(0, 0, 0, 0.08);
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}

.polaroid:hover {
    transform: translateY(-5px) rotate(0.5deg);
    box-shadow:
        0 12px 24px rgba(0, 0, 0, 0.13),
        0 4px 8px rgba(0, 0, 0, 0.10);
}

.polaroid-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: block;
    overflow: hidden;
}

.polaroid-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.polaroid-img.pink   { background: var(--pink); }
.polaroid-img.orange { background: var(--orange); }
.polaroid-img.blue   { background: var(--blue); }

.polaroid-caption {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 14px;
    padding-left: 2px;
    padding-right: 2px;
}

.card-name {
    font-family: 'Patrick Hand', Arial, Helvetica, sans-serif;
    font-size: 20px;
    color: #333;
    line-height: 1;
}

.card-price {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--muted);
    line-height: 1;
}

/* ── FOOTER ── */
footer {
    background: #fff;
    padding: 36px 80px 20px;
    text-align: center;
    width: 100%;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    margin-bottom: 12px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.footer-copy {
    font-size: 11px;
    color: var(--muted);
    margin-top: 10px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .hero-image {
        width: 340px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hero-image {
        width: 100%;
        height: 280px;
    }
}

@media (max-width: 1024px) {
    header, .cards-section, footer {
        padding-left: 48px;
        padding-right: 48px;
    }

    .hero {
        padding-left: 48px;
        padding-right: 48px;
    }

    .hero-cards {
        width: 300px;
        height: 240px;
    }

    .hero-card {
        width: 210px;
        height: 155px;
    }
}

@media (max-width: 768px) {
    header, .cards-section, footer {
        padding-left: 28px;
        padding-right: 28px;
    }

    .hero {
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 40px 28px;
        height: auto;
        min-height: 90vh;
        gap: 40px;
    }

    .hero-cards {
        align-self: center;
        width: 280px;
        height: 220px;
    }

    .hero-card {
        width: 190px;
        height: 140px;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    nav {
        gap: 20px;
    }
}

@media (max-width: 520px) {
    header {
        padding: 18px 20px;
    }

    header, .cards-section, footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero {
        padding: 30px 20px;
    }

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

    nav {
        gap: 14px;
        font-size: 12px;
    }

    .nav-cards {
        font-size: 12px;
        padding: 8px 14px;
    }
}
