@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800&display=swap');

:root {
    --navy: #173765;
    --navy-dark: #10284b;
    --sage: #aebca4;
    --coral: #ee9783;
    --yellow: #f3d49a;
    --blue: #aebfd6;
    --lavender: #c8b8d8;
    --cream: #f7f2ea;
    --paper: #fffdf9;
    --text: #18345f;
    --muted: #66738a;
    --border: rgba(23, 55, 101, .12);
    --shadow: 0 24px 70px rgba(28, 49, 78, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--text);
    background: var(--paper);
    font-family: "Nunito", Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 50;
    padding: 18px 0;
    transition: .3s ease;
}
.site-header.scrolled {
    padding: 10px 0;
    background: rgba(255, 253, 249, .88);
    box-shadow: 0 10px 34px rgba(23, 55, 101, .08);
    backdrop-filter: blur(16px);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand img { width: 155px; height: 62px; object-fit: contain; object-position: left center; }
.main-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 700; }
.main-nav a { position: relative; }
.main-nav a:not(.nav-cta)::after {
    content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 2px;
    background: var(--coral); transition: .25s;
}
.main-nav a:hover::after { right: 0; }
.nav-cta { background: var(--navy); color: white; padding: 12px 20px; border-radius: 999px; }
.menu-toggle { display: none; border: 0; background: none; padding: 8px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px; }

.hero {
    min-height: 810px;
    padding: 155px 0 95px;
    background:
        radial-gradient(circle at 12% 25%, rgba(238,151,131,.17), transparent 28%),
        radial-gradient(circle at 88% 20%, rgba(174,188,164,.23), transparent 30%),
        var(--cream);
    position: relative;
    overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 70px; position: relative; z-index: 2; }
.eyebrow {
    display: inline-block; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .19em;
    font-size: 12px; font-weight: 800; color: var(--coral);
}
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(48px, 6vw, 79px); line-height: 1.04; letter-spacing: -.045em; margin-bottom: 24px; }
h1 em { font-style: normal; color: var(--coral); }
.hero-copy > p { max-width: 610px; font-size: 18px; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 34px 0 44px; }
.btn {
    display: inline-flex; align-items: center; justify-content: center; min-height: 52px;
    padding: 0 25px; border-radius: 999px; font-weight: 800; transition: transform .25s, box-shadow .25s;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { color: white; background: var(--navy); box-shadow: 0 14px 30px rgba(23,55,101,.2); }
.btn-secondary { color: var(--navy); border: 1px solid var(--border); background: rgba(255,255,255,.55); }
.hero-trust { display: flex; gap: 30px; }
.hero-trust div { display: flex; flex-direction: column; }
.hero-trust strong { font-size: 14px; }
.hero-trust span { color: var(--muted); font-size: 12px; }

.hero-visual { min-height: 560px; position: relative; }
.visual-backdrop {
    position: absolute; width: 430px; height: 430px; border-radius: 46% 54% 56% 44% / 43% 44% 56% 57%;
    background: var(--sage); opacity: .72; left: 65px; top: 40px; transform: rotate(-7deg);
}
.product-card {
    background: white; overflow: hidden; box-shadow: var(--shadow); position: absolute;
}
.product-card img { width: 100%; height: 100%; object-fit: cover; }
.product-card-main { width: 335px; height: 440px; border-radius: 170px 170px 28px 28px; left: 115px; top: 20px; transform: rotate(3deg); }
.product-card-small { width: 215px; height: 240px; border-radius: 28px; right: -10px; bottom: 24px; transform: rotate(-4deg); }
.product-pill {
    position: absolute; z-index: 2; top: 20px; left: 20px; padding: 8px 14px; border-radius: 999px;
    background: rgba(255,255,255,.88); font-size: 11px; font-weight: 800; letter-spacing: .14em;
}
.floating-note {
    position: absolute; left: 0; bottom: 15px; width: 255px; padding: 15px 18px; border-radius: 18px;
    display: flex; gap: 13px; align-items: center; background: rgba(255,255,255,.92); box-shadow: var(--shadow);
}
.note-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--yellow); font-size: 24px; }
.floating-note div { display: flex; flex-direction: column; }
.floating-note strong { font-size: 13px; }
.floating-note small { color: var(--muted); }

.promise-strip { background: white; border-block: 1px solid var(--border); }
.promise-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.promise-item { padding: 30px 18px; display: flex; align-items: center; justify-content: center; gap: 14px; border-right: 1px solid var(--border); }
.promise-item:last-child { border-right: 0; }
.promise-item div { display: flex; flex-direction: column; }
.promise-item strong { text-transform: uppercase; font-size: 12px; letter-spacing: .14em; }
.promise-item small { color: var(--muted); }
.promise-icon { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; font-size: 20px; }
.sage { background: var(--sage); }.coral { background: var(--coral); }.yellow { background: var(--yellow); }.blue { background: var(--blue); }

.section { padding: 110px 0; }
.section-heading { max-width: 700px; margin-bottom: 48px; }
.section-heading h2, .why-copy h2, .story-card h2, .contact-card h2 {
    font-size: clamp(38px, 4.3vw, 58px); line-height: 1.08; letter-spacing: -.035em; margin-bottom: 20px;
}
.section-heading p, .why-copy > p, .story-card p, .contact-card p { color: var(--muted); font-size: 17px; }

.collection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.collection-card { min-height: 510px; padding: 34px; border-radius: 34px; overflow: hidden; position: relative; display: flex; flex-direction: column; }
.collection-card::after { content: ""; position: absolute; inset: auto -60px -110px; height: 340px; background: rgba(255,255,255,.45); border-radius: 50%; }
.collection-card.kids { background: #dfe6d8; }
.collection-card.go { background: #f7c4b6; }
.collection-card.lunch { background: #f8dfae; }
.collection-content { position: relative; z-index: 3; }
.mini-label { font-size: 11px; font-weight: 800; letter-spacing: .16em; }
.collection-card h3 { font-size: 27px; line-height: 1.2; margin: 14px 0 18px; }
.collection-card a { font-weight: 800; font-size: 14px; }
.collection-card img {
    position: absolute; z-index: 2; left: 14%; right: 14%; bottom: 0; width: 72%; height: 245px;
    object-fit: cover; object-position: center; border-radius: 150px 150px 18px 18px; box-shadow: 0 18px 45px rgba(23,55,101,.12);
}

.why { background: #f4f5f1; }
.why-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 95px; align-items: center; }
.why-image { position: relative; padding: 35px; }
.image-frame { border-radius: 210px 210px 30px 30px; overflow: hidden; height: 580px; background: var(--sage); }
.image-frame img { width: 100%; height: 100%; object-fit: cover; }
.round-stamp {
    width: 145px; height: 145px; position: absolute; right: -8px; bottom: 50px; border-radius: 50%;
    display: grid; place-content: center; text-align: center; background: var(--paper); border: 2px solid var(--navy);
    transform: rotate(7deg); box-shadow: 0 14px 40px rgba(23,55,101,.13);
}
.round-stamp span { font-size: 10px; letter-spacing: .18em; font-weight: 800; }
.round-stamp strong { font-size: 12px; line-height: 1.35; }
.feature-list { margin-top: 40px; }
.feature { display: grid; grid-template-columns: 48px 1fr; gap: 18px; padding: 22px 0; border-top: 1px solid var(--border); }
.feature > span { width: 40px; height: 40px; border-radius: 50%; background: var(--cream); display: grid; place-items: center; font-size: 11px; font-weight: 800; }
.feature h3 { margin: 0 0 5px; font-size: 18px; }
.feature p { margin: 0; color: var(--muted); font-size: 14px; }

.story { background: var(--paper); }
.story-card { background: var(--navy); color: white; border-radius: 40px; padding: 70px; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.story-card p { color: rgba(255,255,255,.72); }
.text-link { display: inline-flex; margin-top: 18px; font-weight: 800; border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 4px; }

.contact { padding-top: 0; }
.contact-card { background: var(--coral); border-radius: 40px; padding: 65px 70px; display: flex; justify-content: space-between; align-items: center; gap: 45px; }
.contact-card .eyebrow { color: var(--navy); }
.contact-card h2 { max-width: 650px; }
.contact-card p { color: rgba(23,55,101,.75); margin-bottom: 0; }
.contact-actions { display: flex; flex-direction: column; gap: 10px; min-width: 230px; }
.btn-light { background: white; color: var(--navy); }
.btn-outline-light { border: 1px solid rgba(255,255,255,.65); color: white; }

.site-footer { background: #112c52; color: white; padding: 70px 0 25px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .7fr 1.2fr; gap: 55px; }
.footer-brand img { width: 170px; filter: brightness(0) invert(1); }
.footer-brand p, .site-footer p { color: rgba(255,255,255,.63); }
.site-footer h3 { font-size: 14px; margin-bottom: 18px; }
.site-footer a { display: block; color: rgba(255,255,255,.7); margin: 8px 0; font-size: 14px; }
.newsletter form { display: flex; background: rgba(255,255,255,.08); border-radius: 999px; padding: 5px; }
.newsletter input { flex: 1; min-width: 0; color: white; border: 0; outline: 0; background: none; padding: 10px 15px; }
.newsletter input::placeholder { color: rgba(255,255,255,.45); }
.newsletter button { width: 43px; height: 43px; border: 0; border-radius: 50%; color: var(--navy); background: var(--yellow); cursor: pointer; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 55px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: 12px; color: rgba(255,255,255,.52); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 960px) {
    .menu-toggle { display: block; z-index: 3; }
    .main-nav {
        position: fixed; inset: 0 0 auto; padding: 105px 28px 35px; background: var(--paper);
        flex-direction: column; align-items: flex-start; transform: translateY(-110%); transition: .35s; box-shadow: var(--shadow);
    }
    .main-nav.open { transform: translateY(0); }
    .hero { padding-top: 125px; }
    .hero-grid, .why-grid { grid-template-columns: 1fr; }
    .hero-visual { max-width: 590px; width: 100%; margin: 0 auto; }
    .collection-grid { grid-template-columns: 1fr 1fr; }
    .collection-card:last-child { grid-column: 1 / -1; }
    .story-card { grid-template-columns: 1fr; gap: 20px; }
    .contact-card { align-items: flex-start; flex-direction: column; }
    .contact-actions { flex-direction: row; width: 100%; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .container { width: min(100% - 24px, 1160px); }
    .brand img { width: 125px; height: 50px; }
    .hero { min-height: auto; padding-bottom: 65px; }
    h1 { font-size: 46px; }
    .hero-trust { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
    .hero-visual { min-height: 455px; }
    .visual-backdrop { width: 315px; height: 315px; left: 20px; }
    .product-card-main { width: 250px; height: 345px; left: 42px; }
    .product-card-small { width: 155px; height: 170px; right: 0; }
    .floating-note { width: 220px; }
    .promise-grid { grid-template-columns: 1fr 1fr; }
    .promise-item:nth-child(2) { border-right: 0; }
    .promise-item:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
    .section { padding: 75px 0; }
    .collection-grid { grid-template-columns: 1fr; }
    .collection-card:last-child { grid-column: auto; }
    .why-grid { gap: 45px; }
    .why-image { padding: 0 15px; }
    .image-frame { height: 470px; }
    .story-card, .contact-card { padding: 42px 25px; border-radius: 28px; }
    .contact-actions { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 12px; }
}
