:root{
  --bg:#e8d9cc;
  --bg2:rgba(255,255,255,.22);
  --dark:#3b2c27;
  --accent:#b698cb;

  --text:var(--dark);
  --muted:rgba(59,44,39,.72);

  --card:rgba(255,255,255,.52);
  --card2:rgba(255,255,255,.38);
  --border:rgba(59,44,39,.14);

  --shadow:0 20px 60px rgba(59,44,39,.18);
  --shadow2:0 26px 90px rgba(59,44,39,.22);

  --radius:22px;
  --radius2:18px;
  --ring:0 0 0 7px rgba(182,152,203,.20);
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1100px 520px at 15% 8%, rgba(182,152,203,.25), transparent 60%),
    radial-gradient(900px 450px at 85% 0%, rgba(59,44,39,.12), transparent 55%),
    radial-gradient(900px 500px at 50% 100%, rgba(182,152,203,.12), transparent 60%),
    var(--bg);
  line-height:1.55;
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
.container{max-width:1140px;margin:0 auto;padding:0 16px}
::selection{background:rgba(182,152,203,.45)}

.skip{
  position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden;
}
.skip:focus{
  left:16px;top:16px;width:auto;height:auto;z-index:9999;
  padding:10px 12px;border-radius:12px;
  background:var(--dark);color:var(--bg);
}

/* subtle grain */
body::before{
  content:"";
  position:fixed;inset:0;
  pointer-events:none;
  opacity:.12;
  mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
}

/* Header */
.topbar{
  position:sticky;top:0;z-index:60;
  background:rgba(232,217,204,.86);
  backdrop-filter: blur(14px);
  border-bottom:1px solid var(--border);
}
.topbar-inner{
  display:flex;align-items:center;justify-content:space-between;
  gap:12px;padding:14px 0;
}
.brand{display:flex;align-items:center;gap:10px;font-weight:980}
.logo{
  width:42px;height:42px;border-radius:16px;
  object-fit:cover;
  border:1px solid rgba(59,44,39,.18);
  background:rgba(255,255,255,.4);
  box-shadow:0 10px 22px rgba(59,44,39,.10);
}
.brand-name{white-space:nowrap;letter-spacing:.2px}

.nav{display:flex;gap:18px;align-items:center;flex-wrap:wrap}
.nav a{
  font-weight:930;
  opacity:.78;
  position:relative;
  padding:6px 0;
}
.nav a:hover{opacity:1}
.nav a.active{opacity:1}
.nav a.active::after{
  content:"";
  position:absolute;left:0;right:0;bottom:-2px;
  height:3px;border-radius:999px;
  background:rgba(182,152,203,.88);
}

.top-actions{display:flex;gap:10px;align-items:center}
.menu{
  display:none;
  border:1px solid var(--border);
  background:rgba(255,255,255,.42);
  border-radius:16px;
  padding:10px 12px;
  font-size:18px;
  cursor:pointer;
}

.chip{
  display:inline-flex;align-items:center;gap:10px;
  padding:10px 12px;border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.48);
  font-weight:980;
}
.chip::before{
  content:"●";
  color:var(--accent);
  font-size:12px;
  filter:drop-shadow(0 0 10px rgba(182,152,203,.55));
}

.mobile-nav{
  display:none;
  flex-direction:column;
  gap:12px;
  padding:12px 16px 16px;
  border-bottom:1px solid var(--border);
  background:rgba(232,217,204,.96);
}
.mobile-nav.show{display:flex}
.mobile-nav a{font-weight:980;opacity:.92}

/* Buttons */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:18px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.55);
  font-weight:980;
  cursor:pointer;
  transition:transform .12s ease, filter .12s ease, box-shadow .12s ease;
}
.btn:hover{filter:brightness(1.02);transform:translateY(-1px)}
.btn:active{transform:translateY(0)}
.btn.primary{
  background:var(--dark);
  color:var(--bg);
  border-color:rgba(59,44,39,.35);
  box-shadow:0 16px 34px rgba(59,44,39,.18);
}
.btn.ghost{background:rgba(255,255,255,.30)}
.btn.small{padding:10px 12px;border-radius:16px}
.btn.full{width:100%}

.badge{
  display:inline-flex;align-items:center;gap:10px;
  padding:8px 10px;border-radius:999px;
  background:rgba(182,152,203,.16);
  border:1px solid rgba(182,152,203,.35);
  font-weight:980;
}

/* Hero */
.hero{padding:26px 0 18px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap:22px;
  align-items:center;
}
.pill{
  display:inline-flex;align-items:center;gap:10px;
  padding:9px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.46);
  border:1px solid var(--border);
  font-weight:980;
  margin-bottom:14px;
}
.pill .dot{
  width:10px;height:10px;border-radius:999px;
  background:var(--accent);
  box-shadow:0 0 0 6px rgba(182,152,203,.24);
}
.hero-title{
  font-size:50px;
  line-height:1.04;
  letter-spacing:-.9px;
}
.hero-title .accent{
  position:relative;
  display:inline-block;
}
.hero-title .accent::after{
  content:"";
  position:absolute;left:-4px;right:-4px;bottom:7px;
  height:10px;border-radius:999px;
  background:rgba(182,152,203,.45);
  z-index:-1;
}
.hero-sub{
  margin-top:12px;
  max-width:600px;
  color:var(--muted);
  font-weight:820;
}
.hero-cta{display:flex;gap:10px;flex-wrap:wrap;margin-top:16px}

.hero-stats{display:flex;gap:14px;flex-wrap:wrap;margin-top:18px}
.stat{
  background:rgba(255,255,255,.48);
  border:1px solid var(--border);
  border-radius:20px;
  padding:12px;
  min-width:160px;
  box-shadow:0 14px 30px rgba(59,44,39,.10);
}
.stat-num{font-size:18px;font-weight:990}
.stat-label{opacity:.85;font-weight:950;font-size:13px;margin-top:2px}

.hero-media{position:relative}
.hero-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:10px;
  box-shadow:var(--shadow2);
}
.hero-card img{
  width:100%;
  height:450px;
  object-fit:cover;
  border-radius:20px;
}
.floating{
  position:absolute;left:14px;bottom:14px;
  display:flex;align-items:center;gap:10px;
  background:rgba(59,44,39,.92);
  color:var(--bg);
  padding:10px 12px;
  border-radius:999px;
  font-weight:980;
  box-shadow:0 20px 40px rgba(0,0,0,.18);
}
.floating .dot{
  width:9px;height:9px;border-radius:999px;background:var(--accent);
  box-shadow:0 0 0 6px rgba(182,152,203,.22);
}

/* Headings */
.page-head{padding:22px 0 10px}
.page-head h1{font-size:38px;letter-spacing:-.6px}
.page-head p{color:var(--muted);font-weight:850;margin-top:6px;max-width:780px}

/* Sections */
.section{padding:22px 0 36px}
.section.alt{
  background:rgba(255,255,255,.18);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.section-head{
  display:flex;gap:16px;flex-wrap:wrap;
  align-items:flex-end;justify-content:space-between;
  margin-bottom:14px;
}
.section-head h2{font-size:26px;letter-spacing:-.2px}
.section-head p{color:var(--muted);font-weight:850;margin-top:6px}

/* Feature slider */
.slider{
  border:1px solid var(--border);
  background:rgba(255,255,255,.30);
  border-radius:var(--radius);
  padding:14px;
  box-shadow:0 16px 40px rgba(59,44,39,.10);
}
.slider-row{
  display:flex;gap:14px;
  overflow:auto;
  scroll-snap-type:x mandatory;
  padding-bottom:8px;
}
.slider-row::-webkit-scrollbar{height:10px}
.slider-row::-webkit-scrollbar-thumb{
  background:rgba(59,44,39,.18);
  border-radius:999px;
}
.feature-card{
  min-width:245px;max-width:245px;
  scroll-snap-align:start;
  background:rgba(255,255,255,.55);
  border:1px solid var(--border);
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 16px 32px rgba(59,44,39,.10);
}
.feature-card img{height:150px;object-fit:cover;cursor:pointer}
.feature-meta{padding:12px}
.feature-meta h3{font-size:14px;font-weight:990}
.cat{
  display:inline-flex;
  margin-top:8px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(182,152,203,.16);
  border:1px solid rgba(182,152,203,.35);
  font-weight:980;
  font-size:12px;
}

/* Controls */
.controls{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}
.control{
  padding:12px 12px;
  border-radius:18px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.55);
  font-weight:950;
  outline:none;
}
.control:focus{box-shadow:var(--ring);border-color:rgba(182,152,203,.65)}
.search-wrap{display:flex;gap:10px;align-items:center;width:min(520px,100%)}
.search-wrap input{width:100%}

/* Products grid */
.grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:14px;
}
.card{
  background:rgba(255,255,255,.46);
  border:1px solid var(--border);
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 14px 30px rgba(59,44,39,.08);
  transition: transform .16s ease, box-shadow .16s ease;
}
.card:hover{
  transform: translateY(-3px);
  box-shadow: 0 22px 60px rgba(59,44,39,.16);
}
.card img{
  width:100%;
  height:210px;
  object-fit:cover;
  cursor:pointer;
}
.meta{padding:12px}
.meta h3{font-size:14px;font-weight:990}
.meta .cat{margin-top:10px}
.order-btn{margin-top:10px;width:100%}

/* Services */
.services-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.service{
  background:rgba(255,255,255,.44);
  border:1px solid var(--border);
  border-radius:22px;
  padding:16px;
  box-shadow:0 16px 32px rgba(59,44,39,.08);
}
.service h3{font-size:15px;font-weight:990}
.service p{margin-top:8px;color:var(--muted);font-weight:860}
.service .row{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px}

/* Form */
.form{
  background:rgba(255,255,255,.55);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:var(--shadow2);
  max-width:780px;
}
.form label{display:block;font-weight:990;font-size:13px;margin-bottom:10px}
.form input, .form select, .form textarea{
  width:100%;
  margin-top:6px;
  padding:12px 12px;
  border-radius:18px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.62);
  outline:none;
  font-weight:950;
}
.form input:focus, .form select:focus, .form textarea:focus{
  box-shadow:var(--ring);
  border-color:rgba(182,152,203,.65);
}
.two{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.note-box{
  margin:14px 0 0;
  background:rgba(182,152,203,.16);
  border:1px solid rgba(182,152,203,.35);
  border-radius:18px;
  padding:12px;
  font-weight:950;
}
.tiny{margin-top:10px;color:var(--muted);font-weight:900;font-size:12px}

/* Contact */
.contact-card{
  display:flex;gap:16px;flex-wrap:wrap;align-items:center;justify-content:space-between;
  background:rgba(255,255,255,.40);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:0 16px 32px rgba(59,44,39,.10);
}

/* Footer */
.footer{padding:18px 0;border-top:1px solid var(--border)}
.footer-inner{
  display:flex;align-items:center;justify-content:space-between;
  gap:12px;flex-wrap:wrap;
  color:var(--muted);font-weight:980;
}

/* Modal preview */
.modal{
  position:fixed;inset:0;
  display:none;place-items:center;
  background:rgba(59,44,39,.76);
  z-index:200;
  padding:18px;
}
.modal.show{display:grid}
.modal img{
  max-width:92vw;
  max-height:82vh;
  border-radius:22px;
  border:1px solid rgba(232,217,204,.35);
  box-shadow:0 26px 90px rgba(0,0,0,.30);
}
.close{
  position:absolute;top:14px;right:16px;
  width:46px;height:46px;
  border-radius:16px;
  border:1px solid rgba(232,217,204,.35);
  background:rgba(232,217,204,.22);
  color:var(--bg);
  font-size:28px;
  cursor:pointer;
}

/* Sticky WhatsApp */
.whatsapp-float{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:999;
  padding:12px 14px;
  border-radius:999px;
  font-weight:990;
  background:var(--dark);
  color:var(--bg);
  border:1px solid rgba(59,44,39,.35);
  box-shadow:0 18px 45px rgba(59,44,39,.22);
  display:inline-flex;align-items:center;gap:10px;
}
.whatsapp-float::before{content:"💬";filter:drop-shadow(0 0 10px rgba(182,152,203,.45))}
.whatsapp-float:hover{filter:brightness(1.05)}

/* Reveal animation */
.reveal{opacity:0;transform:translateY(10px);transition:opacity .45s ease, transform .45s ease}
.reveal.show{opacity:1;transform:translateY(0)}

/* Responsive */
@media (max-width: 980px){
  .hero-title{font-size:44px}
  .grid{grid-template-columns:repeat(3,1fr)}
  .services-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width: 760px){
  .nav{display:none}
  .menu{display:inline-flex}
  .hero-grid{grid-template-columns:1fr}
  .hero-card img{height:320px}
  .grid{grid-template-columns:repeat(2,1fr)}
  .two{grid-template-columns:1fr}
}
@media (max-width: 380px){
  .grid{grid-template-columns:1fr}
  .services-grid{grid-template-columns:1fr}
  .feature-card{min-width:230px;max-width:230px}
}