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

:root {
    --cream:       #fdf8ee;
    --cream-dark:  #f5ead8;
    --brown:       #3b1f0e;
    --brown-mid:   #6b3f1f;
    --brown-light: #a0714f;
    --amber:       #c68b3a;
    --white:       #ffffff;
    --card-bg:     #fffcf5;
    --border:      #e8d8c0;
    --font-head:   'Playfair Display', serif;
    --font-body:   'Nunito', sans-serif;
    --shadow:      0 4px 24px rgba(59,31,14,.08);
    --shadow-lg:   0 8px 40px rgba(59,31,14,.14);
}

html { scroll-behavior:smooth; overflow-x:hidden; }

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--brown);
    overflow-x: hidden;
}

/* Background blobs — fixed, behind everything */
.blob { position:fixed; border-radius:50%; pointer-events:none; z-index:0; }
.blob-tl { width:260px; height:260px; background:#f0d9a8; top:60px; left:-60px; opacity:.5; }
.blob-br { width:320px; height:320px; background:#f0d9a8; bottom:120px; right:-80px; opacity:.4; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top:0; left:0; right:0;
    z-index: 900;
    background: rgba(253,248,238,.95);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s, box-shadow .3s;
}
.navbar.shadowed { border-color:var(--border); box-shadow:0 2px 20px rgba(59,31,14,.08); }

.nav-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 28px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo — strictly contained, NO overflow */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-img {
    height: 64px;
    width: 64px;
    object-fit: contain;
    display: block;
}

.nav-links { display:flex; align-items:center; gap:4px; }
.nav-link {
    padding: 8px 16px;
    font-size: .93rem;
    font-weight: 600;
    color: var(--brown-mid);
    text-decoration: none;
    border-radius: 99px;
    transition: background .2s, color .2s;
}
.nav-link:hover { background:var(--cream-dark); color:var(--brown); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
}
.hamburger span { display:block; width:24px; height:2.5px; background:var(--brown); border-radius:2px; transition:all .3s; }
.hamburger.active span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity:0; }
.hamburger.active span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--cream);
    border-top: 1px solid var(--border);
    padding: 16px 28px 24px;
    gap: 4px;
}
.mobile-menu.open { display:flex; }
.mob-link { padding:12px 16px; font-size:1rem; font-weight:600; color:var(--brown-mid); text-decoration:none; border-radius:12px; transition:background .2s; }
.mob-link:hover { background:var(--cream-dark); }
.mob-cta { margin-top:8px; background:var(--brown); color:white !important; text-align:center; border-radius:12px; }

/* ===== HERO ===== */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 28px 60px;
}
.hero-inner {
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-left { display:flex; flex-direction:column; gap:28px; }

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 99px;
    font-size: .88rem;
    font-weight: 700;
    color: var(--brown);
    width: fit-content;
    box-shadow: var(--shadow);
}

.hero-title {
    font-family: var(--font-head);
    font-size: clamp(2.6rem, 4.5vw, 4rem);
    font-weight: 800;
    color: var(--brown);
    line-height: 1.18;
}
.highlight { color: var(--amber); }

.hero-body {
    font-size: 1.05rem;
    color: var(--brown-light);
    line-height: 1.75;
    max-width: 500px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 99px;
    font-family: var(--font-body);
    font-size: .95rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, background .2s;
    border: none;
}
.btn:hover { transform:translateY(-2px); }
.btn-dark { background:var(--brown); color:var(--white); box-shadow:0 4px 16px rgba(59,31,14,.25); }
.btn-dark:hover { background:var(--brown-mid); }
.btn-outline { background:var(--white); color:var(--brown); border:1.5px solid var(--border); box-shadow:var(--shadow); }
.btn-outline:hover { background:var(--cream-dark); }
.btn-lg { padding:15px 34px; font-size:1.05rem; }

/* Hero right — tilted card */
.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 520px;
}
.product-card {
    width: 360px;
    background: var(--white);
    border-radius: 24px;
    padding: 14px;
    box-shadow: var(--shadow-lg);
    transform: rotate(2.5deg);
    transition: transform .4s;
    z-index: 2;
    position: relative;
}
.product-card:hover { transform:rotate(0deg) scale(1.02); }
.product-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border-radius: 14px;
    padding: 10px 16px;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    animation: badgeFloat 4s ease-in-out infinite;
}
.fb-top    { top:20px;   left:-10px;  animation-delay:0s; }
.fb-bottom { bottom:40px; right:-10px; animation-delay:2s; }

@keyframes badgeFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.fb-icon {
    width: 32px; height: 32px;
    background: #fff8ee;
    border-radius: 10px;
    display: flex; align-items:center; justify-content:center;
    font-size: .95rem;
    color: var(--amber);
    flex-shrink: 0;
}
.fb-text { display:flex; flex-direction:column; gap:1px; }
.fb-text strong { font-size:.83rem; font-weight:700; color:var(--brown); }
.fb-text span   { font-size:.73rem; color:var(--brown-light); }

.heart-btn {
    position: absolute; top:16px; right:-8px; z-index:4;
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--white); border: none;
    box-shadow: var(--shadow);
    display: flex; align-items:center; justify-content:center;
    cursor: pointer; transition: transform .2s;
}
.heart-btn:hover { transform:scale(1.15); }

/* ===== FEATURED ===== */
.featured { position:relative; z-index:1; padding:80px 28px; }
.featured-inner { max-width:1200px; margin:0 auto; text-align:center; }

.section-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--cream-dark);
    border: 1px solid var(--border);
    border-radius: 99px;
    font-size: .85rem;
    font-weight: 700;
    color: var(--brown-mid);
    margin-bottom: 20px;
}
.section-title {
    font-family: var(--font-head);
    font-size: clamp(2rem,3.5vw,2.8rem);
    font-weight: 800;
    color: var(--brown);
    margin-bottom: 12px;
}
.section-sub {
    font-size: 1rem;
    color: var(--brown-light);
    margin-bottom: 48px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.products-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
    gap: 28px;
    text-align: left;
}

.p-tile {
    background: var(--white);
    border-radius: 18px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform .3s, box-shadow .3s;
}
.p-tile:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); }

.p-img { position:relative; height:220px; overflow:hidden; }
.p-img img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.p-tile:hover .p-img img { transform:scale(1.06); }

.p-cat {
    position: absolute; top:12px; left:12px;
    background: rgba(253,248,238,.92);
    color: var(--brown-mid);
    font-size: .73rem; font-weight:700;
    padding: 4px 12px;
    border-radius: 99px;
}

.p-info { padding:20px 22px; }
.p-info h3 { font-family:var(--font-head); font-size:1.1rem; font-weight:700; color:var(--brown); margin-bottom:8px; }
.p-info p  { font-size:.87rem; color:var(--brown-light); margin-bottom:18px; line-height:1.55; }
.p-foot { display:flex; align-items:center; justify-content:space-between; }
.price  { font-size:1.2rem; font-weight:800; color:var(--brown); font-family:var(--font-head); }
.p-btn {
    display: inline-flex; align-items:center; gap:6px;
    font-size: .87rem; font-weight:700;
    color: white; background: var(--brown);
    text-decoration: none;
    padding: 9px 16px; border-radius:99px;
    transition: background .2s, transform .2s;
}
.p-btn:hover { background:var(--brown-mid); transform:translateY(-1px); }

/* ===== WHY US ===== */
.why { position:relative; z-index:1; padding:80px 28px; }
.why-inner { max-width:1200px; margin:0 auto; text-align:center; }
.why-cards { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:24px; margin-top:48px; text-align:left; }
.why-card { background:var(--card-bg); border:1px solid var(--border); border-radius:22px; padding:32px 28px; box-shadow:var(--shadow); transition:transform .3s, box-shadow .3s; }
.why-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-lg); }
.wc-icon { font-size:2.4rem; margin-bottom:16px; }
.why-card h3 { font-family:var(--font-head); font-size:1.1rem; font-weight:700; color:var(--brown); margin-bottom:10px; }
.why-card p  { font-size:.9rem; color:var(--brown-light); line-height:1.65; }

/* ===== CTA + CONTACT ===== */
.cta-section { position:relative; z-index:1; padding:100px 28px; overflow:hidden; }
.cta-blob {
    position: absolute; width:500px; height:500px;
    background: radial-gradient(circle, #f0d9a8 0%, transparent 70%);
    border-radius: 50%; top:50%; left:50%;
    transform: translate(-50%,-50%);
    pointer-events: none; z-index:0;
}
.cta-inner {
    position: relative; z-index:1;
    max-width: 1100px; margin:0 auto;
    display: grid; grid-template-columns:1fr 1fr;
    gap: 60px; align-items:center;
}
.cta-left { display:flex; flex-direction:column; gap:24px; }
.cta-title { font-family:var(--font-head); font-size:clamp(2rem,3.5vw,2.8rem); font-weight:800; color:var(--brown); line-height:1.25; }
.cta-sub { font-size:1rem; color:var(--brown-light); line-height:1.7; }

.contact-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: var(--shadow-lg);
    display: flex; flex-direction:column; gap:24px;
}
.contact-card h3 { font-family:var(--font-head); font-size:1.5rem; font-weight:700; color:var(--brown); }
.contact-item { display:flex; align-items:flex-start; gap:14px; }
.ci-icon { width:40px; height:40px; flex-shrink:0; background:var(--cream-dark); border-radius:12px; display:flex; align-items:center; justify-content:center; color:var(--brown-mid); }
.ci-label { display:block; font-size:.72rem; font-weight:700; color:var(--brown-light); text-transform:uppercase; letter-spacing:.07em; margin-bottom:3px; }
.ci-value { display:block; font-size:.95rem; font-weight:600; color:var(--brown); text-decoration:none; word-break:break-word; transition:color .2s; }
.ci-value:hover { color:var(--amber); }

/* ===== FOOTER ===== */
.footer { position:relative; z-index:1; background:var(--brown); padding:36px 28px; }
.footer-inner { max-width:1200px; margin:0 auto; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:20px; }
.f-logo-img {
    height: 44px;
    width: 44px;
    object-fit: contain;
    display: block;
    /* invert to white for dark footer */
    filter: brightness(0) invert(1);
    opacity: .85;
}
.f-copy { font-size:.88rem; color:rgba(255,255,255,.6); }
.f-site-link { font-size:.9rem; font-weight:700; color:var(--cream); text-decoration:none; padding:8px 20px; border:1.5px solid rgba(255,255,255,.3); border-radius:99px; transition:background .2s; }
.f-site-link:hover { background:rgba(255,255,255,.12); }

/* ===== REVEAL ===== */
.reveal { opacity:0; transform:translateY(28px); transition:opacity .65s ease, transform .65s ease; }
.reveal.reveal-delay { transition-delay:.18s; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width:960px) {
    .hero-inner { grid-template-columns:1fr; gap:48px; }
    .hero { min-height:auto; padding:110px 28px 60px; }
    .hero-right { height:400px; }
    .product-card { width:280px; }
    .product-card img { height:260px; }
    .nav-links { display:none; }
    .hamburger { display:flex; }
    .cta-inner { grid-template-columns:1fr; }
}
@media (max-width:600px) {
    .hero-right { height:320px; }
    .product-card { width:240px; }
    .product-card img { height:220px; }
    .fb-top  { top:5px; left:0; }
    .fb-bottom { bottom:15px; right:0; }
    .footer-inner { flex-direction:column; text-align:center; }
    .cta-row { flex-direction:column; }
    .btn { justify-content:center; }
    .products-row { grid-template-columns:1fr; }
}
