:root {
    --mint: #e8f8ee;
    --light: #b7e4c7;
    --mid: #52b788;
    --green: #2d6a4f;
    --dark: #1b4332;
    --forest: #081c15;
    --white: #ffffff;
    --cream: #f7fff9;
    --shadow: 0 18px 50px rgba(27, 67, 50, 0.12);
    --radius: 24px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: var(--dark);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

header {
    position: sticky; top: 0; z-index: 50;
    backdrop-filter: blur(16px);
    background: rgba(247, 255, 249, 0.88);
    border-bottom: 1px solid rgba(45, 106, 79, 0.08);
}
nav {
    display: flex; align-items: center; justify-content: space-between;
    height: 78px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; }
.brand img { width: 48px; height: 48px; object-fit: contain; border-radius: 12px; }
.brand span { color: var(--dark); letter-spacing: -0.03em; }
.brand b { color: var(--mid); }
.nav-links { display: flex; align-items: center; gap: 28px; font-weight: 600; font-size: 0.95rem; }
.nav-links a { color: var(--green); }
.nav-links a:hover { color: var(--dark); }
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--dark); color: var(--white);
    padding: 12px 20px; border-radius: 999px; font-weight: 700;
    transition: transform .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); background: var(--green); }
.btn-light { background: var(--white); color: var(--dark); border: 1px solid var(--light); }
.menu-toggle {
    display: none; border: 0; background: none; font-size: 1.6rem; cursor: pointer; color: var(--dark);
}

.hero {
    position: relative;
    padding: 48px 0 80px;
    background:
        radial-gradient(circle at 12% 18%, rgba(183, 228, 199, .9), transparent 42%),
        radial-gradient(circle at 90% 10%, rgba(82, 183, 136, .25), transparent 36%),
        linear-gradient(180deg, #f7fff9 0%, #e8f8ee 100%);
    overflow: hidden;
}
.hero-grid {
    display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center;
}
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--white); color: var(--green);
    padding: 8px 14px; border-radius: 999px; font-weight: 700; font-size: .82rem;
    box-shadow: var(--shadow);
}
h1 {
    font-family: Fraunces, serif;
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    line-height: 1.08; letter-spacing: -0.04em;
    margin: 18px 0 16px;
}
h1 em { font-style: italic; color: var(--mid); }
.lead { font-size: 1.08rem; max-width: 520px; color: #3d5c4e; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0 22px; }
.meta { display: flex; gap: 22px; flex-wrap: wrap; color: var(--green); font-weight: 700; font-size: .92rem; }
.hero-visual { position: relative; min-height: 520px; }
.hero-visual .main {
    width: 86%; margin-left: auto; height: 520px; object-fit: cover;
    border-radius: 36px; box-shadow: var(--shadow);
}
.float-card {
    position: absolute; background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
    border-radius: 20px; padding: 12px; box-shadow: var(--shadow);
}
.float-card img { width: 150px; height: 150px; object-fit: cover; border-radius: 14px; }
.card-a { left: 0; top: 48px; }
.card-b { left: 18px; bottom: 28px; display: flex; align-items: center; gap: 12px; width: 230px; padding: 14px 16px; }
.card-b strong { display: block; }
.ice {
    position: absolute; border-radius: 10px; background: rgba(255,255,255,.55);
    border: 1px solid rgba(255,255,255,.8); animation: float 5s ease-in-out infinite;
}
.ice.i1 { width: 28px; height: 28px; top: 20px; right: 40px; }
.ice.i2 { width: 18px; height: 18px; top: 90px; right: 8px; animation-delay: .8s; }
.ice.i3 { width: 22px; height: 22px; bottom: 120px; right: 60px; animation-delay: 1.4s; }
@keyframes float { 50% { transform: translateY(-10px); } }

section { padding: 84px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 {
    font-family: Fraunces, serif; font-size: clamp(1.8rem, 3vw, 2.7rem);
    letter-spacing: -0.03em; margin-bottom: 10px;
}
.kicker { color: var(--mid); font-weight: 800; letter-spacing: .14em; text-transform: uppercase; font-size: .75rem; }

.about { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.about img { height: 460px; width: 100%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.pills { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.pill { background: var(--mint); color: var(--dark); padding: 8px 14px; border-radius: 999px; font-weight: 700; font-size: .86rem; }

.menu { background: linear-gradient(180deg, #ffffff, #eaf8ef); }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product {
    background: var(--white); border-radius: 22px; overflow: hidden;
    box-shadow: var(--shadow); transition: transform .25s;
}
.product:hover { transform: translateY(-8px); }
.product img { height: 240px; width: 100%; object-fit: cover; }
.product .body { padding: 18px 20px 22px; }
.product h3 { font-size: 1.15rem; margin-bottom: 6px; }
.price { color: var(--green); font-weight: 800; }

.why { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.why article {
    background: var(--white); border: 1px solid var(--light);
    border-radius: 20px; padding: 22px;
}
.why h3 { margin: 10px 0 6px; font-size: 1.05rem; }
.icon { width: 46px; height: 46px; border-radius: 14px; background: var(--mint); display: grid; place-items: center; font-size: 1.3rem; }

.gallery { display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: 220px 220px; gap: 14px; }
.gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; }
.gallery img:first-child { grid-row: 1 / 3; }

.place { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: stretch; }
.place-card { background: var(--dark); color: var(--white); border-radius: var(--radius); padding: 36px; }
.place-card h2 { font-family: Fraunces, serif; margin: 8px 0 14px; }
.place iframe { width: 100%; height: 100%; min-height: 340px; border: 0; border-radius: var(--radius); }

.cta {
    text-align: center;
    background: linear-gradient(135deg, var(--dark), var(--green));
    color: var(--white); border-radius: 32px; padding: 64px 24px;
    position: relative; overflow: hidden;
}
.cta h2 { font-family: Fraunces, serif; font-size: clamp(1.8rem, 4vw, 3rem); margin: 8px 0 12px; }
.cta .btn { background: var(--white); color: var(--dark); margin-top: 18px; }

footer { padding: 28px 0 40px; color: var(--green); }
.foot { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; align-items: center; }

.ig-float {
    position: fixed; right: 18px; bottom: 18px; z-index: 60;
    background: #d62976; color: white; width: 58px; height: 58px;
    border-radius: 50%; display: grid; place-items: center;
    box-shadow: 0 12px 30px rgba(214, 41, 118, .35); font-size: 1.5rem;
}
.ig-layout { display: grid; grid-template-columns: 340px 1fr; gap: 24px; align-items: start; }
.ig-layout-wide { grid-template-columns: 1fr; }
.ig-posts { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.ig-embed { min-width: 0; }
.ig-embed blockquote { margin: 0 auto !important; }
.ig-empty { background: var(--white); border-radius: 20px; padding: 28px; box-shadow: var(--shadow); }
.ig-follow { text-align: center; margin-top: 28px; }

@media (max-width: 900px) {
    .menu-toggle { display: block; }
    .nav-links {
        display: none; position: absolute; top: 78px; left: 0; right: 0;
        background: #f7fff9; flex-direction: column; padding: 18px 20px 24px; gap: 14px;
        border-bottom: 1px solid var(--light);
    }
    .nav-links.open { display: flex; }
    .hero-grid, .about, .place, .why, .menu-grid, .ig-layout { grid-template-columns: 1fr; }
    .hero-visual { min-height: 420px; }
    .hero-visual .main { width: 100%; height: 380px; }
    .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 180px 180px 180px; }
    .gallery img:first-child { grid-row: auto; grid-column: 1 / 3; height: 220px; }
    .float-card.card-a { display: none; }
}
