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

:root{
  --cream:#fdf6ee;
  --cream2:#f5e9d6;
  --cream3:#eddfc8;
  --brown:#2c1a0e;
  --brown2:#4a2e18;
  --brown3:#6b3f1f;
  --red:#c0392b;
  --red2:#e05a3a;
  --gold:#c9973a;
  --gold2:#e8b96a;
  --text:#1e0f05;
  --text2:#5c3d24;
  --text3:#9a7455;
  --white:#fff;
  --font-display:'Cormorant Garamond',serif;
  --font-body:'Outfit',sans-serif;
  --r:16px;
  --transition:0.35s cubic-bezier(0.4,0,0.2,1);
}

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

/* ─── NOISE TEXTURE OVERLAY ─── */
body::before{
  content:'';
  position:fixed;inset:0;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events:none;z-index:9999;opacity:0.5;
}

/* ─── NAV ─── */
nav{
  position:fixed;top:0;left:0;right:0;z-index:100;
  padding:0 4vw;height:72px;
  display:flex;align-items:center;justify-content:space-between;
  transition:background var(--transition), box-shadow var(--transition);
}
nav.scrolled{
  background:rgba(253,246,238,0.92);
  backdrop-filter:blur(16px);
  box-shadow:0 1px 0 rgba(44,26,14,0.08);
}
.nav-logo{
  font-family:var(--font-display);
  font-size:1.6rem;font-weight:700;
  color:var(--brown);letter-spacing:0.04em;
  text-decoration:none;
  display:flex;align-items:center;gap:10px;
}
.nav-logo-mark{
  width:36px;height:36px;
  background:var(--brown);border-radius:50%;
  display:flex;align-items:center;justify-content:center;
}
.nav-logo-mark svg{width:20px;height:20px;fill:var(--cream)}
.nav-links{
  display:flex;gap:2rem;list-style:none;
}
.nav-links a{
  font-size:0.875rem;font-weight:500;
  color:var(--text2);text-decoration:none;
  letter-spacing:0.03em;
  transition:color var(--transition);
}
.nav-links a:hover{color:var(--brown)}
.nav-cta{
  background:var(--brown);color:var(--cream);
  border:none;padding:10px 24px;border-radius:100px;
  font-family:var(--font-body);font-size:0.875rem;font-weight:500;
  cursor:pointer;letter-spacing:0.03em;
  transition:all var(--transition);
  text-decoration:none;display:inline-flex;align-items:center;gap:6px;
}
.nav-cta:hover{background:var(--brown2);transform:translateY(-1px)}
.nav-cta svg{width:14px;height:14px;fill:currentColor}

/* ─── HERO ─── */
.hero{
  min-height:100svh;
  display:grid;grid-template-columns:1fr 1fr;
  align-items:center;
  padding:100px 4vw 60px;
  gap:4rem;
  position:relative;overflow:hidden;
}
.hero::before{
  content:'';
  position:absolute;right:-15%;top:-10%;
  width:70%;height:120%;
  background:radial-gradient(ellipse,var(--cream2) 0%,transparent 70%);
  pointer-events:none;
}
.hero::after{
  content:'白包';
  position:absolute;right:8vw;bottom:5%;
  font-family:var(--font-display);
  font-size:clamp(120px,18vw,260px);
  font-weight:700;
  color:transparent;
  -webkit-text-stroke:1px rgba(44,26,14,0.07);
  pointer-events:none;line-height:1;
  letter-spacing:-0.02em;
}

.hero-left{position:relative;z-index:2}
.hero-tag{
  display:inline-flex;align-items:center;gap:8px;
  background:var(--cream2);border:1px solid var(--cream3);
  border-radius:100px;padding:6px 16px;
  font-size:0.78rem;font-weight:500;color:var(--brown3);
  letter-spacing:0.06em;text-transform:uppercase;
  margin-bottom:28px;
}
.hero-tag-dot{
  width:6px;height:6px;border-radius:50%;
  background:var(--red2);
  animation:blink 1.8s ease-in-out infinite;
}
@keyframes blink{0%,100%{opacity:1}50%{opacity:0.3}}

.hero h1{
  font-family:var(--font-display);
  font-size:clamp(3rem,7vw,5.5rem);
  font-weight:700;line-height:1.05;
  color:var(--brown);
  margin-bottom:24px;
}
.hero h1 em{
  font-style:italic;color:var(--red2);
}
.hero-desc{
  font-size:1.05rem;color:var(--text2);
  line-height:1.75;max-width:420px;
  margin-bottom:40px;font-weight:300;
}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;align-items:center}
.btn-primary{
  background:var(--brown);color:var(--cream);
  border:none;padding:14px 32px;border-radius:100px;
  font-family:var(--font-body);font-size:0.95rem;font-weight:500;
  cursor:pointer;letter-spacing:0.03em;
  transition:all var(--transition);
  text-decoration:none;display:inline-flex;align-items:center;gap:8px;
}
.btn-primary:hover{background:var(--brown2);transform:translateY(-2px);box-shadow:0 12px 32px rgba(44,26,14,0.2)}
.btn-primary svg{width:16px;height:16px;fill:none;stroke:currentColor;stroke-width:2}

.btn-outline{
  background:transparent;color:var(--brown);
  border:1.5px solid var(--brown3);padding:13px 28px;border-radius:100px;
  font-family:var(--font-body);font-size:0.95rem;font-weight:500;
  cursor:pointer;letter-spacing:0.03em;
  transition:all var(--transition);text-decoration:none;
}
.btn-outline:hover{background:var(--cream2);border-color:var(--brown)}

.hero-stats{
  display:flex;gap:2.5rem;margin-top:52px;
  padding-top:40px;
  border-top:1px solid var(--cream3);
}
.stat-num{
  font-family:var(--font-display);
  font-size:2.2rem;font-weight:700;color:var(--brown);
  line-height:1;
}
.stat-lbl{
  font-size:0.8rem;color:var(--text3);
  margin-top:4px;font-weight:400;
}

/* HERO IMAGE */
.hero-right{
  position:relative;z-index:2;
  display:flex;align-items:center;justify-content:center;
}
.hero-img-wrap{
  position:relative;
  width:100%;max-width:520px;
}
.hero-img-main{
  width:100%;aspect-ratio:4/5;
  border-radius:40% 60% 55% 45% / 45% 55% 60% 40%;
  object-fit:cover;
  display:block;
  background:var(--cream2);
  overflow:hidden;
  position:relative;
}
.hero-img-main img{
  width:100%;height:100%;object-fit:cover;
  display:block;
}
/* Placeholder for hero image */
.hero-img-placeholder{
  width:100%;aspect-ratio:4/5;
  border-radius:40% 60% 55% 45% / 45% 55% 60% 40%;
  background:linear-gradient(145deg,var(--cream2),var(--cream3));
  display:flex;flex-direction:column;
  align-items:center;justify-content:center;gap:12px;
  color:var(--text3);font-size:0.85rem;
  position:relative;overflow:hidden;
}
.hero-img-placeholder::before{
  display:block;animation:float 3s ease-in-out infinite;
}
@keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-12px)}}

.hero-badge-float{
  position:absolute;
  background:var(--white);border-radius:14px;
  padding:12px 16px;
  box-shadow:0 8px 32px rgba(44,26,14,0.12);
  display:flex;align-items:center;gap:10px;
  white-space:nowrap;
}
.hero-badge-float.one{bottom:15%;left:-8%}
.hero-badge-float.two{top:12%;right:-5%}
.hbf-icon{
  width:38px;height:38px;border-radius:10px;
  display:flex;align-items:center;justify-content:center;
  font-size:1.3rem;flex-shrink:0;
}
.hbf-label{font-size:0.72rem;color:var(--text3);font-weight:400}
.hbf-val{font-size:0.9rem;font-weight:600;color:var(--brown);line-height:1.2}

/* ─── SECTION COMMONS ─── */
.section{padding:100px 4vw}
.section-tag{
  display:inline-flex;align-items:center;gap:8px;
  font-size:0.75rem;font-weight:600;letter-spacing:0.12em;
  text-transform:uppercase;color:var(--gold);
  margin-bottom:16px;
}
.section-tag::before{
  content:'';width:24px;height:1.5px;background:var(--gold);display:block;
}
.section-title{
  font-family:var(--font-display);
  font-size:clamp(2.2rem,5vw,3.8rem);
  font-weight:700;color:var(--brown);line-height:1.1;
  margin-bottom:16px;
}
.section-title em{font-style:italic;color:var(--red2)}
.section-desc{
  font-size:1rem;color:var(--text2);
  line-height:1.75;max-width:480px;
  font-weight:300;
}

/* ─── WHY ─── */
.why{
  background:var(--brown);
  padding:100px 4vw;
  position:relative;overflow:hidden;
}
.why::before{
  content:'';
  position:absolute;top:-60%;right:-10%;
  width:600px;height:600px;border-radius:50%;
  background:radial-gradient(circle,rgba(201,151,58,0.15),transparent 60%);
  pointer-events:none;
}
.why .section-tag{color:var(--gold2)}
.why .section-tag::before{background:var(--gold2)}
.why .section-title{color:var(--cream)}
.why .section-desc{color:rgba(253,246,238,0.65)}

.why-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:24px;
  margin-top:60px;
}
.why-card{
  background:rgba(253,246,238,0.05);
  border:1px solid rgba(253,246,238,0.1);
  border-radius:20px;padding:32px 28px;
  transition:all var(--transition);
  position:relative;overflow:hidden;
}
.why-card::before{
  content:'';position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(201,151,58,0.08),transparent);
  opacity:0;transition:opacity var(--transition);
}
.why-card:hover{border-color:rgba(201,151,58,0.3);transform:translateY(-4px)}
.why-card:hover::before{opacity:1}
.why-card-icon{
  width:52px;height:52px;border-radius:14px;
  background:rgba(201,151,58,0.15);
  display:flex;align-items:center;justify-content:center;
  font-size:1.5rem;margin-bottom:20px;
}
.why-card-title{
  font-family:var(--font-display);
  font-size:1.35rem;font-weight:600;
  color:var(--cream);margin-bottom:10px;
  line-height:1.2;
}
.why-card-desc{
  font-size:0.875rem;color:rgba(253,246,238,0.6);
  line-height:1.7;font-weight:300;
}

/* ─── PRODUCTS ─── */
.products{background:var(--cream);padding:100px 4vw}
.products-header{
  display:flex;align-items:flex-end;justify-content:space-between;
  margin-bottom:60px;gap:2rem;
}

.product-grid{
  display:grid;grid-template-columns:repeat(2,1fr);
  gap:24px;
}
.product-card{
  border-radius:24px;overflow:hidden;
  background:var(--white);
  border:1px solid var(--cream3);
  transition:all var(--transition);
  cursor:pointer;
}
.product-card:hover{transform:translateY(-6px);box-shadow:0 24px 64px rgba(44,26,14,0.1)}

.product-card-img{
  width:100%;aspect-ratio:16/10;
  background:var(--cream2);
  position:relative;overflow:hidden;
  display:flex;align-items:center;justify-content:center;
}
.product-card-img img{
  width:100%;height:100%;object-fit:cover;
  transition:transform 0.5s ease;
}
.product-card:hover .product-card-img img{transform:scale(1.05)}
.product-emoji{font-size:4rem;animation:float 3s ease-in-out infinite}

.product-badge{
  position:absolute;top:14px;left:14px;
  background:var(--brown);color:var(--cream);
  border-radius:100px;padding:4px 14px;
  font-size:0.72rem;font-weight:600;letter-spacing:0.06em;
}
.product-badge.jumbo{background:var(--red2)}

.product-card-body{padding:24px 26px 28px}
.product-card-title{
  font-family:var(--font-display);
  font-size:1.6rem;font-weight:700;
  color:var(--brown);margin-bottom:8px;
}
.product-card-desc{
  font-size:0.875rem;color:var(--text2);
  line-height:1.65;font-weight:300;margin-bottom:18px;
}
.product-card-footer{
  display:flex;align-items:center;justify-content:space-between;
}
.product-chips{display:flex;gap:8px;flex-wrap:wrap}
.chip{
  background:var(--cream2);
  border:1px solid var(--cream3);
  border-radius:100px;padding:4px 12px;
  font-size:0.75rem;color:var(--text2);font-weight:400;
}
.product-order-btn{
  background:var(--brown);color:var(--cream);
  border:none;padding:9px 20px;border-radius:100px;
  font-family:var(--font-body);font-size:0.82rem;font-weight:500;
  cursor:pointer;transition:all var(--transition);
  white-space:nowrap;text-decoration:none;
  display:inline-block;
}
.product-order-btn:hover{background:var(--red2);transform:scale(1.02)}

/* ─── COMMITMENT ─── */
.commitment{
  background:var(--cream2);padding:100px 4vw;
}
.commit-inner{
  display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center;
}
.commit-visual{
  position:relative;
}
.commit-img-big{
  width:100%;aspect-ratio:4/5;border-radius:24px;
  background:var(--cream3);overflow:hidden;
  display:flex;align-items:center;justify-content:center;
  font-size:6rem;
}
.commit-img-big img{width:100%;height:100%;object-fit:cover}
.commit-pill{
  position:absolute;bottom:-20px;right:-20px;
  background:var(--brown);color:var(--cream);
  border-radius:20px;padding:20px 24px;
  box-shadow:0 16px 48px rgba(44,26,14,0.2);
}
.commit-pill-num{
  font-family:var(--font-display);
  font-size:2.5rem;font-weight:700;line-height:1;
}
.commit-pill-lbl{font-size:0.8rem;opacity:0.7;margin-top:4px}

.commit-list{margin-top:40px;display:flex;flex-direction:column;gap:20px}
.commit-item{
  display:flex;gap:16px;align-items:flex-start;
}
.commit-item-icon{
  width:44px;height:44px;border-radius:12px;
  background:var(--white);border:1px solid var(--cream3);
  display:flex;align-items:center;justify-content:center;
  font-size:1.2rem;flex-shrink:0;
}
.commit-item-title{
  font-family:var(--font-display);
  font-size:1.1rem;font-weight:600;color:var(--brown);margin-bottom:4px;
}
.commit-item-desc{
  font-size:0.86rem;color:var(--text2);line-height:1.65;font-weight:300;
}

/* ─── PROMO STRIP ─── */
.promo-strip{
  background:var(--red2);
  padding:20px 0;overflow:hidden;
  position:relative;
}
.promo-track{
  display:flex;gap:0;
  animation:scroll-track 20s linear infinite;
  white-space:nowrap;
}
@keyframes scroll-track{
  0%{transform:translateX(0)}
  100%{transform:translateX(-50%)}
}
.promo-item{
  font-family:var(--font-display);
  font-size:1.1rem;font-weight:600;color:var(--white);
  padding:0 3rem;
  display:inline-flex;align-items:center;gap:1rem;
  letter-spacing:0.05em;
}
.promo-item::after{content:'✦';opacity:0.6}

/* ─── CTA ─── */
.cta-section{
  padding:120px 4vw;text-align:center;
  background:var(--cream);
  position:relative;overflow:hidden;
}
.cta-section::before{
  content:'';position:absolute;
  top:50%;left:50%;transform:translate(-50%,-50%);
  width:600px;height:400px;
  background:radial-gradient(ellipse,var(--cream2) 0%,transparent 65%);
  pointer-events:none;
}
.cta-section .section-title{font-size:clamp(2.5rem,6vw,5rem);margin-bottom:20px}
.cta-section .section-desc{margin:0 auto 40px;max-width:440px}
.cta-wa{
  display:inline-flex;align-items:center;gap:12px;
  background:#25D366;color:white;
  border:none;padding:16px 36px;border-radius:100px;
  font-family:var(--font-body);font-size:1rem;font-weight:600;
  cursor:pointer;transition:all var(--transition);
  text-decoration:none;letter-spacing:0.02em;
}
.cta-wa:hover{background:#1fba59;transform:translateY(-3px);box-shadow:0 16px 40px rgba(37,211,102,0.3)}
.cta-wa svg{width:22px;height:22px;fill:currentColor}

/* ─── FOOTER ─── */
footer{
  background:var(--brown);
  padding:60px 4vw 32px;
}
.footer-inner{
  display:grid;grid-template-columns:1.5fr 1fr 1fr;gap:4rem;
  padding-bottom:48px;
  border-bottom:1px solid rgba(253,246,238,0.1);
}
.footer-brand .nav-logo{color:var(--cream);margin-bottom:16px;display:inline-flex}
.footer-brand .nav-logo-mark{background:var(--cream)}
.footer-brand .nav-logo-mark svg{fill:var(--brown)}
.footer-tagline{
  font-size:0.875rem;color:rgba(253,246,238,0.55);
  line-height:1.7;font-weight:300;max-width:260px;
}
.footer-heading{
  font-family:var(--font-display);
  font-size:1rem;font-weight:600;color:var(--cream);
  margin-bottom:16px;letter-spacing:0.03em;
}
.footer-links{list-style:none;display:flex;flex-direction:column;gap:10px}
.footer-links a{
  font-size:0.875rem;color:rgba(253,246,238,0.55);
  text-decoration:none;transition:color var(--transition);font-weight:300;
}
.footer-links a:hover{color:var(--cream)}
.footer-bottom{
  display:flex;align-items:center;justify-content:space-between;
  padding-top:28px;
  font-size:0.8rem;color:rgba(253,246,238,0.35);
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal{
  opacity:0;transform:translateY(28px);
  transition:opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in{opacity:1;transform:none}
.reveal-delay-1{transition-delay:0.1s}
.reveal-delay-2{transition-delay:0.2s}
.reveal-delay-3{transition-delay:0.3s}

/* ─── MOBILE HAMBURGER ─── */
.hamburger{
  display:none;background:none;border:none;
  width:32px;height:32px;cursor:pointer;
  flex-direction:column;gap:5px;align-items:center;justify-content:center;
}
.hamburger span{
  display:block;width:22px;height:1.5px;
  background:var(--brown);border-radius:2px;
  transition:all var(--transition);
}
.mobile-menu{
  display:none;position:fixed;inset:0;z-index:99;
  background:var(--cream);padding:80px 4vw 4vw;
  flex-direction:column;gap:2rem;
}
.mobile-menu.open{display:flex}
.mobile-menu a{
  font-family:var(--font-display);
  font-size:2.2rem;font-weight:700;color:var(--brown);
  text-decoration:none;border-bottom:1px solid var(--cream3);
  padding-bottom:1rem;
}

/* ─── RESPONSIVE ─── */
@media(max-width:900px){
  .hero{grid-template-columns:1fr;padding-top:100px;gap:2rem;text-align:center}
  .hero::after{display:none}
  .hero-desc{margin:0 auto 40px}
  .hero-actions{justify-content:center}
  .hero-stats{justify-content:center}
  .hero-right{order:-1}
  .hero-badge-float.one{bottom:5%;left:-4%}
  .hero-badge-float.two{top:5%;right:-4%}
  .why-grid{grid-template-columns:1fr}
  .products-header{flex-direction:column;align-items:flex-start}
  .product-grid{grid-template-columns:1fr}
  .commit-inner{grid-template-columns:1fr;gap:3rem}
  .commit-pill{position:relative;inset:auto;margin-top:16px;display:inline-block}
  .footer-inner{grid-template-columns:1fr;gap:2rem}
  .footer-bottom{flex-direction:column;gap:8px;text-align:center}
  .nav-links{display:none}
  .hamburger{display:flex}
}
@media(max-width:500px){
  .hero h1{font-size:2.8rem}
  .hero-stats{gap:1.5rem}
  .stat-num{font-size:1.8rem}
}

