:root{
  --green:#2E7D32;
  --green-deep:#1F5723;
  --gold:#D4A017;
  --cream:#FFF8F2;
  --cream-2:#FBF0E4;
  --dark:#2A2A28;
  --line: rgba(42,42,40,0.08);
  --font-display:'Manrope', sans-serif;
  --font-serif:'Fraunces', serif;
  --font-body:'Inter', sans-serif;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--cream);
  color:var(--dark);
  font-family:var(--font-body);
  font-size:18px;
  line-height:1.6;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
button{font-family:inherit; cursor:pointer; border:none; background:none;}
::selection{background:var(--gold); color:#fff;}

.grain{
  position:fixed; inset:0; pointer-events:none; z-index:9998;
  opacity:0.03; mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.wrap{max-width:1280px; margin:0 auto; padding:0 32px;}
section{position:relative;}
.eyebrow{
  font-family:var(--font-display); font-weight:700; font-size:13px;
  letter-spacing:0.14em; text-transform:uppercase; color:var(--green);
  display:inline-flex; align-items:center; gap:10px; margin-bottom:16px;
}
.eyebrow::before{content:''; width:20px; height:2px; background:var(--gold); display:inline-block;}
h1,h2,h3{font-family:var(--font-display); font-weight:800; letter-spacing:-0.02em; color:var(--dark);}

/* ---------- NAV ---------- */
header{
  position:sticky; top:0; left:0; right:0; z-index:500;
  background:rgba(255,248,242,0.9); backdrop-filter:blur(14px) saturate(160%);
  border-bottom:1px solid var(--line); padding:16px 0;
}
nav{display:flex; align-items:center; justify-content:space-between; gap:20px;}
.logo{display:flex; align-items:center; gap:10px;}
.logo .mark{width:38px; height:38px; border-radius:50%; background:conic-gradient(from 180deg, var(--green), var(--gold), var(--green)); display:flex; align-items:center; justify-content:center; flex-shrink:0;}
.logo .mark span{width:27px; height:27px; background:var(--cream); border-radius:50%;}
.logo-text{display:flex; flex-direction:column; line-height:1.2;}
.logo-name{font-family:var(--font-display); font-weight:800; font-size:19px; letter-spacing:-0.01em; color:var(--dark);}
.logo-sub{font-size:10.5px; color:rgba(42,42,40,0.55); font-weight:600; letter-spacing:0.01em;}
.nav-links{display:flex; gap:28px; font-size:14.5px; font-weight:600;}
.nav-links a{opacity:0.7; transition:opacity .25s, color .25s; position:relative; padding-bottom:4px;}
.nav-links a:hover{opacity:1;}
.nav-links a.active{opacity:1; color:var(--green);}
.nav-links a.active::after{content:''; position:absolute; bottom:0; left:0; right:0; height:2px; background:var(--green); border-radius:2px;}
.nav-cta{display:flex; align-items:center; gap:12px; flex-shrink:0;}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 26px; border-radius:100px; font-family:var(--font-display); font-weight:700; font-size:15px;
  position:relative; overflow:hidden; transition:transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s;
  white-space:nowrap;
}
.btn-primary{background:var(--green); color:#fff; box-shadow:0 8px 22px -8px rgba(46,125,50,0.5);}
.btn-primary:hover{transform:translateY(-2px); box-shadow:0 14px 28px -8px rgba(46,125,50,0.6);}
.btn-whatsapp{background:#fff; color:var(--dark); border:1.5px solid var(--line);}
.btn-whatsapp:hover{border-color:var(--green); color:var(--green); transform:translateY(-2px);}
.btn-outline{background:transparent; color:var(--dark); border:1.5px solid var(--line);}
.btn-outline:hover{border-color:var(--green); color:var(--green); transform:translateY(-2px);}
.btn-sm{padding:11px 20px; font-size:13.5px;}

.btn .ripple{position:absolute; border-radius:50%; background:rgba(255,255,255,0.5); transform:scale(0); animation:ripple .6s linear; pointer-events:none;}
@keyframes ripple{to{transform:scale(3); opacity:0;}}

.wa-icon{display:inline-flex; align-items:center; justify-content:center; flex-shrink:0;}
.wa-icon svg{width:20px; height:20px; display:block; fill:currentColor;}
.btn-sm .wa-icon svg{width:16px; height:16px;}

/* ---------- HERO ---------- */
.hero{padding-top:72px; padding-bottom:80px; position:relative; overflow:hidden;}
.hero-bg{
  position:absolute; inset:0; z-index:0;
  background:
    radial-gradient(ellipse 900px 700px at 85% 12%, rgba(212,160,23,0.14), transparent 60%),
    radial-gradient(ellipse 800px 600px at 8% 90%, rgba(46,125,50,0.1), transparent 60%),
    var(--cream);
}
.blob{position:absolute; z-index:0;}
.blob svg{width:100%; height:100%;}
.blob-1{top:-8%; right:-6%; width:520px; height:520px; animation:float1 16s ease-in-out infinite;}
@keyframes float1{0%,100%{transform:translate(0,0) rotate(0deg);} 50%{transform:translate(-24px,30px) rotate(8deg);}}

.hero-grid{position:relative; z-index:2; display:grid; grid-template-columns:1fr 1.05fr; gap:56px; align-items:center; padding-top:40px;}
.hero h1{font-size:clamp(38px, 4.6vw, 60px); line-height:1.08; color:var(--green); margin-bottom:20px;}
.hero p.sub{font-size:18px; color:rgba(42,42,40,0.68); max-width:480px; margin-bottom:32px;}

.feature-row{display:flex; flex-wrap:wrap; gap:28px; margin-bottom:36px;}
.feature-item{display:flex; flex-direction:column; align-items:flex-start; gap:10px; max-width:110px;}
.feature-icon{width:46px; height:46px; border-radius:14px; background:#fff; border:1px solid var(--line); display:flex; align-items:center; justify-content:center;}
.feature-icon i{width:20px; height:20px; color:var(--green);}
.feature-item span{font-size:12.5px; font-weight:600; color:rgba(42,42,40,0.7); line-height:1.3;}

.hero-cta{display:flex; gap:16px; margin-bottom:26px; flex-wrap:wrap;}
.location-pill{
  display:inline-flex; align-items:center; gap:8px; padding:9px 18px; border-radius:100px;
  background:#fff; border:1px solid var(--line); font-size:13px; font-weight:600;
}
.location-pill i{width:14px; height:14px; color:var(--green);}

.hero-visual{position:relative; height:560px;}
.plate-wrap{
  position:relative; height:100%; border-radius:32px; overflow:hidden;
  background:linear-gradient(160deg, #F3E4C8 0%, #E8D2A8 100%);
  box-shadow:0 40px 80px -30px rgba(46,71,26,0.3);
}
.plate-photo{position:absolute; inset:0; width:100%; height:100%; object-fit:cover; animation:float3 7s ease-in-out infinite;}
@keyframes float3{0%,100%{transform:translateY(0) scale(1.01);} 50%{transform:translateY(-14px) scale(1.01);}}
.steam{position:absolute; bottom:44%; left:50%; width:2px; pointer-events:none;}
.steam span{position:absolute; bottom:0; width:6px; height:6px; border-radius:50%; background:rgba(255,255,255,0.85); filter:blur(3px); animation:steamRise 3.4s ease-in infinite;}
@keyframes steamRise{0%{transform:translate(0,0) scale(0.6); opacity:0;} 15%{opacity:0.7;} 100%{transform:translate(12px,-160px) scale(1.6); opacity:0;}}

.fresh-badge{
  position:absolute; bottom:28px; right:28px; width:110px; height:110px; border-radius:50%;
  background:var(--green); color:#fff; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:4px;
  box-shadow:0 20px 40px -12px rgba(46,125,50,0.5); text-align:center; animation:chipFloat 5s ease-in-out infinite;
}
.fresh-badge i{width:20px; height:20px;}
.fresh-badge span{font-family:var(--font-display); font-weight:700; font-size:11.5px; line-height:1.3;}
@keyframes chipFloat{0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);}}

/* ---------- SECTIONS ---------- */
.section-pad{padding:88px 0;}
.section-pad-panel{padding:52px 0;}
.section-head{max-width:640px; margin-bottom:56px;}
.section-head h2{font-size:clamp(30px,3.6vw,44px); line-height:1.1;}
.section-head p{font-size:16px; color:rgba(42,42,40,0.6); margin-top:14px;}
.center{margin-left:auto; margin-right:auto; text-align:center;}

.reveal{opacity:0; transform:translateY(32px); transition:opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);}
.reveal.in{opacity:1; transform:translateY(0);}

/* ---------- ABOUT ---------- */
.about-grid{display:grid; grid-template-columns:0.9fr 1.1fr; gap:56px; align-items:center;}
.about-photo{border-radius:28px; overflow:hidden; box-shadow:0 30px 60px -24px rgba(46,71,26,0.28);}
.about-photo img{width:100%; height:100%; object-fit:cover; aspect-ratio:4/3.4;}
.about-points{display:grid; grid-template-columns:1fr 1fr; gap:18px;}
.about-point{display:flex; align-items:flex-start; gap:12px;}
.about-point i{width:20px; height:20px; color:var(--green); flex-shrink:0; margin-top:2px;}
.about-point b{display:block; font-size:14.5px; margin-bottom:2px;}
.about-point span{font-size:13px; color:rgba(42,42,40,0.58);}

/* ---------- WHY CHOOSE ---------- */
.why-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:22px;}
.why-grid.why-grid-7{grid-template-columns:repeat(4,1fr);}
.why-card{
  background:#fff; border:1px solid var(--line); border-radius:22px; padding:30px 26px;
  transition:transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s, border-color .35s;
}
.why-card:hover{transform:translateY(-6px); box-shadow:0 26px 44px -22px rgba(42,42,40,0.16); border-color:transparent;}
.why-icon{width:48px; height:48px; border-radius:14px; display:flex; align-items:center; justify-content:center; background:var(--cream-2); margin-bottom:18px;}
.why-icon i{width:22px; height:22px; color:var(--green);}
.why-card h3{font-size:17px; margin-bottom:8px;}
.why-card p{font-size:14px; color:rgba(42,42,40,0.6);}

/* ---------- WHAT'S INSIDE BOX ---------- */
.box-grid{display:grid; grid-template-columns:0.9fr 1.1fr; gap:56px; align-items:center;}
.box-photo{position:relative; border-radius:28px; overflow:hidden; box-shadow:0 30px 60px -24px rgba(46,71,26,0.28);}
.box-mosaic{display:grid; grid-template-columns:1fr 1fr; grid-template-rows:1fr 1fr; gap:4px; min-height:380px; padding-bottom:60px; background:var(--cream-2);}
.mosaic-tile{display:flex; flex-direction:column; align-items:center; justify-content:center; gap:10px; color:#fff;}
.mosaic-tile i{width:34px; height:34px;}
.mosaic-tile span{font-family:var(--font-display); font-weight:700; font-size:13px; letter-spacing:0.03em;}
.mosaic-t1{background:linear-gradient(160deg,#2E7D32,#4C9A50);}
.mosaic-t2{background:linear-gradient(160deg,#D4A017,#E6BA3C);}
.mosaic-t3{background:linear-gradient(160deg,#1F5723,#2E7D32);}
.mosaic-t4{background:linear-gradient(160deg,#C98A17,#E0A93F);}
.box-badge{
  position:absolute; bottom:18px; left:18px; right:18px; background:rgba(31,87,35,0.9); color:#fff;
  backdrop-filter:blur(6px); border-radius:14px; padding:12px 16px; font-size:13px; font-weight:700;
  display:flex; align-items:center; gap:8px;
}
.box-badge i{width:16px; height:16px; flex-shrink:0;}
.box-checklist{list-style:none;}
.box-checklist li{
  display:flex; align-items:center; gap:12px; font-size:15px; font-weight:600; padding:12px 0; border-top:1px solid var(--line);
}
.box-checklist li:first-child{border-top:none;}
.box-checklist li i{width:20px; height:20px; color:var(--green); flex-shrink:0;}
.box-checklist li.box-checklist-muted{color:rgba(42,42,40,0.4); font-weight:500;}
.box-checklist li.box-checklist-muted i{color:rgba(42,42,40,0.35);}

/* ---------- WEEKLY MENU ---------- */
.menu-panel{background:#fff; border:1px solid var(--line); border-radius:28px; padding:32px;}
.menu-tabs{display:grid; grid-template-columns:repeat(7,1fr); gap:10px; margin-bottom:28px;}
.menu-tab{
  text-align:center; padding:10px 6px; border-radius:12px; background:var(--cream-2);
  font-family:var(--font-display); font-weight:700; font-size:12px; letter-spacing:0.04em; text-transform:uppercase;
  color:rgba(42,42,40,0.6); transition:background .3s, color .3s; cursor:pointer;
}
.menu-tab.active, .menu-tab:hover{background:var(--green); color:#fff;}
.menu-content-grid{display:grid; grid-template-columns:repeat(7,1fr); gap:10px; text-align:center;}
.menu-photo{
  width:64px; height:64px; border-radius:50%; margin:0 auto 12px;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 10px 20px -6px rgba(42,42,40,0.22);
}
.menu-photo i{width:26px; height:26px; color:#fff;}
.menu-c1{background:linear-gradient(160deg,#2E7D32,#4C9A50);}
.menu-c2{background:linear-gradient(160deg,#3F8C3F,#6BAF5E);}
.menu-c3{background:linear-gradient(160deg,#D4A017,#E6BA3C);}
.menu-c4{background:linear-gradient(160deg,#C98A17,#E0A93F);}
.menu-c5{background:linear-gradient(160deg,#1F5723,#2E7D32);}
.menu-c6{background:linear-gradient(160deg,#B8890F,#D4A017);}
.menu-c7{background:linear-gradient(160deg,#16401A,#2E7D32);}
.menu-item-main{font-size:12px; font-weight:700; color:var(--dark); line-height:1.35; margin-bottom:3px;}
.menu-item-sub{font-size:11.5px; color:rgba(42,42,40,0.5); font-weight:500;}
.menu-footnote{text-align:center; font-size:12.5px; color:rgba(42,42,40,0.45); margin-top:24px;}

/* ---------- PLANS ---------- */
.plans{background:var(--cream-2); border-radius:36px; margin:0 32px; padding:72px 48px;}
.plans .wrap{padding:0; max-width:1256px;}
.plan-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:24px; align-items:stretch;}
.plan-grid.two-col{grid-template-columns:repeat(2,1fr); max-width:700px; margin:0 auto;}
.plan-card{
  background:#fff; border:1.5px solid var(--line); border-radius:20px; padding:32px 30px;
  display:flex; flex-direction:column; text-align:center;
  transition:transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s; position:relative; overflow:hidden;
}
.plan-card:hover{transform:translateY(-8px); box-shadow:0 36px 56px -26px rgba(42,42,40,0.18);}
.plan-card.featured{border:2px solid var(--green); padding-top:0; transform:scale(1.02);}
.plan-card.featured:hover{transform:scale(1.02) translateY(-8px);}
.plan-ribbon{
  background:var(--green); color:#fff; font-family:var(--font-display); font-weight:700; font-size:11.5px;
  letter-spacing:0.08em; text-transform:uppercase; padding:10px 12px; margin:0 -30px 24px; text-align:center;
}
.plan-name{font-family:var(--font-display); font-weight:800; font-size:19px; color:var(--dark); margin-bottom:6px;}
.plan-sub{font-size:13px; color:rgba(42,42,40,0.5); font-weight:600; margin-bottom:18px;}
.plan-price{font-family:var(--font-display); font-weight:800; font-size:32px; color:var(--dark); margin-bottom:22px;}
.plan-price span{font-size:14px; font-weight:600; color:rgba(42,42,40,0.5);}
.plan-features{list-style:none; margin-bottom:26px; flex:1; text-align:left;}
.plan-features li{display:flex; gap:10px; align-items:flex-start; font-size:14px; margin-bottom:13px; color:rgba(42,42,40,0.75);}
.plan-features li i{width:17px; height:17px; flex-shrink:0; margin-top:1px; color:var(--green);}
.plan-card .btn{width:100%;}

/* ---------- BENEFITS ---------- */
.benefits-row{display:grid; grid-template-columns:repeat(4,1fr); gap:24px; background:#fff; border:1px solid var(--line); border-radius:24px; padding:32px;}
.benefit-item{display:flex; align-items:center; gap:14px;}
.benefit-icon{width:46px; height:46px; border-radius:14px; background:var(--cream-2); display:flex; align-items:center; justify-content:center; flex-shrink:0;}
.benefit-icon i{width:20px; height:20px; color:var(--green);}
.benefit-item b{display:block; font-size:14.5px;}
.benefit-item span{font-size:12.5px; color:rgba(42,42,40,0.55);}

/* ---------- DELIVERY SPLIT ---------- */
.delivery-split{display:grid; grid-template-columns:1fr 1fr; gap:24px;}
.delivery-panel{border-radius:28px; padding:40px;}
.delivery-panel-dark{background:linear-gradient(160deg, var(--green) 0%, var(--green-deep) 100%); color:#fff;}
.delivery-panel-light{background:#fff; border:1px solid var(--line);}
.delivery-checklist{list-style:none;}
.delivery-checklist li{display:flex; align-items:center; gap:12px; font-size:14.5px; font-weight:600; padding:12px 0; border-top:1px solid rgba(255,255,255,0.15);}
.delivery-checklist li:first-child{border-top:none;}
.delivery-checklist li i{width:18px; height:18px; color:var(--gold); flex-shrink:0;}
.delivery-checklist-dark li{border-top:1px solid var(--line); color:var(--dark);}
.delivery-checklist-dark li i{color:var(--green);}

/* ---------- FAQ ---------- */
.faq-grid{display:grid; grid-template-columns:1fr 1fr; gap:0 40px; max-width:1000px; margin:0 auto;}
.faq-col{display:flex; flex-direction:column;}
.faq-item{border-bottom:1px solid var(--line);}
.faq-q{display:flex; justify-content:space-between; align-items:center; padding:22px 4px; cursor:pointer; font-family:var(--font-display); font-weight:700; font-size:15.5px;}
.faq-q i{width:18px; height:18px; color:var(--green); transition:transform .35s ease; flex-shrink:0; margin-left:16px;}
.faq-item.open .faq-q i{transform:rotate(180deg);}
.faq-a{max-height:0; overflow:hidden; transition:max-height .4s ease;}
.faq-a p{padding:0 4px 22px; font-size:14.5px; color:rgba(42,42,40,0.6); max-width:640px;}

/* ---------- CTA BANNER ---------- */
.cta-banner{border-radius:40px; margin:0 32px; padding:72px 48px; text-align:center; position:relative; overflow:hidden; background:linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%); color:#fff;}
.cta-banner .blob{opacity:0.15;}
.cta-eyebrow-serif{font-family:var(--font-serif); font-style:italic; font-weight:500; font-size:19px; color:var(--gold); margin-bottom:14px; position:relative; z-index:2;}
.cta-banner h2{color:#fff; font-size:clamp(30px,4.6vw,50px); max-width:720px; margin:0 auto 18px;}
.cta-banner p{color:rgba(255,248,242,0.8); font-size:16.5px; max-width:500px; margin:0 auto 36px;}
.cta-actions{display:flex; gap:16px; justify-content:center; flex-wrap:wrap; position:relative; z-index:2;}
.cta-banner .btn-primary{background:#fff; color:var(--green);}
.cta-banner .btn-whatsapp{background:transparent; border-color:rgba(255,255,255,0.3); color:#fff;}

/* ---------- FOOTER ---------- */
footer{background:linear-gradient(160deg, var(--green-deep) 0%, #16401A 100%); color:rgba(255,248,242,0.85); padding:70px 0 0;}
.footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:44px; padding-bottom:50px; border-bottom:1px solid rgba(255,255,255,0.12);}
.footer-brand .logo-footer .logo-name{color:#fff;}
.footer-brand .logo-footer .logo-sub{color:rgba(255,248,242,0.6);}
.footer-brand .logo-footer .mark{background:conic-gradient(from 180deg, var(--gold), #fff, var(--gold));}
.footer-social{display:flex; gap:12px; margin-top:22px;}
.footer-social a{width:36px; height:36px; border-radius:50%; border:1px solid rgba(255,255,255,0.2); display:flex; align-items:center; justify-content:center; transition:all .3s;}
.footer-social a:hover{background:var(--gold); border-color:var(--gold);}
.footer-social i{width:15px; height:15px;}
.footer-social .wa-icon svg{width:15px; height:15px;}
.footer-col h4{font-family:var(--font-display); font-size:13px; letter-spacing:0.06em; text-transform:uppercase; margin-bottom:20px; color:rgba(255,248,242,0.55);}
.footer-col ul{list-style:none;}
.footer-col li{margin-bottom:13px; font-size:14px;}
.footer-col a{opacity:0.85; transition:opacity .25s; display:inline-flex; align-items:center; gap:8px;}
.footer-col a:hover{opacity:1; color:var(--gold);}
.footer-col a i{width:14px; height:14px; flex-shrink:0;}
.footer-newsletter p{font-size:13.5px; margin-bottom:16px; opacity:0.75;}
.newsletter-form{display:flex; gap:8px;}
.newsletter-form input{
  flex:1; min-width:0; padding:12px 14px; border-radius:100px; border:1px solid rgba(255,255,255,0.2);
  background:rgba(255,255,255,0.08); color:#fff; font-size:13.5px;
}
.newsletter-form input::placeholder{color:rgba(255,248,242,0.5);}
.newsletter-form input:focus{outline:none; border-color:var(--gold);}
.footer-bottom{display:flex; justify-content:space-between; align-items:center; padding:26px 0; font-size:12.5px; color:rgba(255,248,242,0.55); flex-wrap:wrap; gap:12px;}
.footer-legal{display:flex; gap:20px;}
.footer-legal a{opacity:0.85;}
.footer-legal a:hover{opacity:1; color:var(--gold);}

/* ---------- STICKY MOBILE CTA ---------- */
.sticky-mobile{
  display:none; position:fixed; bottom:0; left:0; right:0; z-index:400;
  background:rgba(255,248,242,0.92); backdrop-filter:blur(16px); border-top:1px solid var(--line);
  padding:12px 16px calc(12px + env(safe-area-inset-bottom)); gap:10px;
}
.sticky-mobile .btn{flex:1; padding:14px 10px; font-size:14px;}
.sticky-mobile .btn-whatsapp{background:#25D366; color:#fff; border-color:#25D366;}
.sticky-mobile .wa-icon svg{width:18px; height:18px;}

.wa-float{
  position:fixed; bottom:96px; right:24px; z-index:399; width:56px; height:56px; border-radius:50%;
  background:#25D366; display:flex; align-items:center; justify-content:center; box-shadow:0 12px 26px -8px rgba(37,211,102,0.6);
  animation:waPulse 2.6s ease-in-out infinite; color:#fff;
}
.wa-float .wa-icon svg{width:27px; height:27px;}
@keyframes waPulse{0%,100%{transform:scale(1);} 50%{transform:scale(1.07);}}

/* ---------- SUBSCRIPTION POPUP ---------- */
.popup-overlay{position:fixed; inset:0; z-index:900; display:none; align-items:center; justify-content:center; background:rgba(27,27,27,0.55); backdrop-filter:blur(4px); padding:20px; opacity:0; transition:opacity .35s ease;}
.popup-overlay.open{display:flex;}
.popup-overlay.show{opacity:1;}
.popup-card{position:relative; background:var(--cream); border-radius:28px; max-width:440px; width:100%; padding:40px 32px 32px; box-shadow:0 50px 90px -30px rgba(27,27,27,0.5); transform:translateY(24px) scale(0.97); opacity:0; transition:transform .4s cubic-bezier(.2,.8,.2,1), opacity .4s ease; max-height:90vh; overflow-y:auto;}
.popup-overlay.show .popup-card{transform:translateY(0) scale(1); opacity:1;}
.popup-close{position:absolute; top:18px; right:18px; width:34px; height:34px; border-radius:50%; background:#fff; border:1px solid var(--line); display:flex; align-items:center; justify-content:center; transition:background .25s, transform .25s;}
.popup-close:hover{background:var(--cream-2); transform:rotate(90deg);}
.popup-close i{width:16px; height:16px; color:var(--dark);}
.popup-eyebrow{display:inline-flex; align-items:center; gap:6px; font-family:var(--font-display); font-weight:700; font-size:12px; letter-spacing:0.06em; text-transform:uppercase; color:var(--gold); margin-bottom:12px;}
.popup-eyebrow i{width:14px; height:14px;}
.popup-card h3{font-family:var(--font-display); font-weight:800; font-size:26px; margin-bottom:8px; line-height:1.15;}
.popup-sub{font-size:14.5px; color:rgba(42,42,40,0.62); margin-bottom:26px;}
.popup-field{display:block; margin-bottom:16px;}
.popup-field span{display:block; font-size:12.5px; font-weight:700; letter-spacing:0.03em; text-transform:uppercase; color:rgba(42,42,40,0.55); margin-bottom:7px;}
.popup-field input, .popup-field select{width:100%; padding:13px 16px; border-radius:14px; border:1.5px solid var(--line); background:#fff; font-family:var(--font-body); font-size:15px; color:var(--dark); transition:border-color .25s, box-shadow .25s;}
.popup-field input:focus, .popup-field select:focus{outline:none; border-color:var(--green); box-shadow:0 0 0 4px rgba(46,125,50,0.12);}
.popup-field select{appearance:none; background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%232A2A28' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 14px center;}
.popup-error{font-size:13px; color:#C0392B; margin:-4px 0 14px;}
.popup-submit{width:100%; margin-top:6px;}
.popup-note{text-align:center; font-size:12px; color:rgba(42,42,40,0.45); margin-top:16px;}

/* ---------- RESPONSIVE ---------- */
@media(max-width:1080px){
  .hero-grid{grid-template-columns:1fr; gap:48px;}
  .hero-visual{height:420px; order:-1;}
  .why-grid, .plan-grid{grid-template-columns:1fr 1fr;}
  .plan-grid{grid-template-columns:1fr; max-width:440px; margin:0 auto;}
  .why-grid.why-grid-7{grid-template-columns:1fr 1fr;}
  .about-grid, .box-grid{grid-template-columns:1fr;}
  .about-photo, .box-photo{max-width:480px; margin:0 auto;}
  .delivery-split{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr 1fr; gap:36px;}
  .menu-tabs, .menu-content-grid{grid-template-columns:repeat(4,1fr); row-gap:20px;}
  .benefits-row{grid-template-columns:1fr 1fr;}
}
@media(max-width:680px){
  body{font-size:16px;}
  .wrap{padding:0 20px;}
  .nav-links{display:none;}
  header .btn-whatsapp{display:none;}
  .section-pad{padding:56px 0;}
  .section-pad-panel{padding:36px 0;}
  .why-grid, .plan-grid, .footer-grid, .faq-grid{grid-template-columns:1fr;}
  .why-grid.why-grid-7{grid-template-columns:1fr 1fr;}
  .plan-card.featured{transform:none;}
  .plans, .cta-banner{margin:0 16px; padding:48px 24px; border-radius:26px;}
  .hero{padding-top:24px;}
  .feature-row{gap:20px;}
  .sticky-mobile{display:flex;}
  body{padding-bottom:82px;}
  .wa-float{display:none;}
  .menu-tabs, .menu-content-grid{grid-template-columns:repeat(3,1fr); row-gap:18px;}
  .menu-panel{padding:24px 18px;}
  .about-points{grid-template-columns:1fr;}
  .fresh-badge{width:88px; height:88px;}
}

a:focus-visible, button:focus-visible{outline:2px solid var(--green); outline-offset:3px; border-radius:6px;}
@media(prefers-reduced-motion:reduce){
  *{animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important;}
}
