:root {
  --bg: #ffffff;
  --text: #2a1b14;
  --muted: #6f5a4e;
  --coffee: #5a351f;
  --coffee-dark: #321a10;
  --honey: #d99a25;
  --honey-soft: #fff5dd;
  --cream: #fbf3e8;
  --green: #426b4a;
  --line: rgba(90, 53, 31, 0.16);
  --shadow: 0 24px 70px rgba(50, 26, 16, 0.13);
  --radius-lg: 32px;
  --radius-md: 22px;
  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(92%, var(--container)); margin: 0 auto; }
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 64px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.navbar {
  width: min(94%, 1200px);
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 700; }
.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coffee-dark), var(--coffee), var(--honey));
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 24px rgba(90, 53, 31, 0.24);
}
.brand-text { font-size: 1rem; }
.nav-links { display: flex; align-items: center; gap: 26px; color: var(--muted); font-weight: 700; }
.nav-links a { transition: color .25s ease; }
.nav-links a:hover { color: var(--coffee); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.menu-toggle span { display: block; width: 26px; height: 3px; background: var(--coffee); margin: 5px 0; border-radius: 8px; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 15%, rgba(217,154,37,.18), transparent 32%),
    radial-gradient(circle at 80% 20%, rgba(66,107,74,.13), transparent 30%),
    linear-gradient(180deg, #fff, #fffaf2);
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 48px; }
.eyebrow, .section-kicker, .card-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .78rem;
}
.hero h1 {
  font-size: clamp(2.7rem, 7vw, 5.9rem);
  line-height: .96;
  margin: 14px 0 22px;
  color: var(--coffee-dark);
  letter-spacing: -0.06em;
}
.hero-text { font-size: 1.12rem; color: var(--muted); max-width: 680px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--coffee-dark); color: white; box-shadow: 0 14px 30px rgba(50,26,16,.24); }
.btn-secondary { background: white; color: var(--coffee); border: 1px solid var(--line); }

.hero-card {
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow);
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.cup-illustration { height: 220px; position: relative; display: grid; place-items: center; }
.cup {
  width: 170px;
  height: 120px;
  border-radius: 0 0 54px 54px;
  background: linear-gradient(135deg, var(--coffee), var(--coffee-dark));
  position: relative;
  box-shadow: inset 0 18px 0 rgba(255,255,255,.12), 0 24px 40px rgba(50,26,16,.2);
}
.cup::after {
  content: '';
  position: absolute;
  right: -54px;
  top: 22px;
  width: 68px;
  height: 62px;
  border: 14px solid var(--coffee);
  border-left: 0;
  border-radius: 0 40px 40px 0;
}
.cup span {
  position: absolute;
  bottom: -20px;
  left: 20px;
  width: 130px;
  height: 14px;
  background: rgba(217,154,37,.35);
  border-radius: 50%;
}
.steam {
  position: absolute;
  top: 18px;
  width: 18px;
  height: 82px;
  border-radius: 50%;
  border-left: 4px solid rgba(90,53,31,.25);
  animation: steam 3s infinite ease-in-out;
}
.steam-a { left: 42%; }
.steam-b { left: 50%; animation-delay: .4s; }
.steam-c { left: 58%; animation-delay: .8s; }
@keyframes steam { 0%,100% { transform: translateY(0); opacity:.45; } 50% { transform: translateY(-14px); opacity: .9; } }
.hero-card h2 { font-size: 2rem; margin: 0 0 10px; }
.hero-card p { color: var(--muted); margin: 0; }
.mini-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.mini-tags span, .badge {
  background: var(--honey-soft);
  color: var(--coffee-dark);
  border: 1px solid rgba(217,154,37,.22);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 800;
  font-size: .84rem;
}

.intro-box {
  background: var(--coffee-dark);
  color: white;
  border-radius: var(--radius-lg);
  padding: clamp(30px, 5vw, 56px);
  box-shadow: var(--shadow);
}
.intro-box h2 { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.05; margin: 8px 0 14px; }
.intro-box p { color: rgba(255,255,255,.78); max-width: 850px; margin: 0; }
.intro-box .section-kicker { color: var(--honey); }

.section-heading { max-width: 720px; margin-bottom: 38px; }
.section-heading h2, .packaging-text h2, .area-box h2, .contact-content h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.05;
  margin: 8px 0 14px;
  color: var(--coffee-dark);
  letter-spacing: -0.04em;
}
.section-heading p, .packaging-text p, .contact-content p { color: var(--muted); margin: 0; }
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 42px);
  min-height: 430px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  overflow: hidden;
  background: white;
  box-shadow: 0 18px 55px rgba(50,26,16,.08);
}
.product-card::before {
  content: '';
  position: absolute;
  inset: auto -80px -110px auto;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(217,154,37,.15);
}
.product-icon { font-size: 3rem; }
.product-card h3 { font-size: 2rem; margin: 4px 0 10px; }
.product-card p { color: var(--muted); margin: 0; }
.clean-list { list-style: none; padding: 0; margin: auto 0 0; display: grid; gap: 12px; }
.clean-list li {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fffaf4;
  font-weight: 800;
}

.packaging { background: linear-gradient(135deg, #fff, var(--cream)); }
.packaging-grid { display: grid; grid-template-columns: 1fr .78fr; gap: 26px; align-items: stretch; }
.packaging-card {
  border-radius: var(--radius-lg);
  padding: 38px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(50,26,16,.08);
}
.packaging-card h3 { font-size: 2rem; margin: 24px 0 10px; }
.packaging-card p { color: var(--muted); }

.size-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.size-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  box-shadow: 0 12px 34px rgba(50,26,16,.07);
}
.size-card span { color: var(--green); font-weight: 800; font-size: .88rem; }
.size-card h3 { font-size: 2rem; margin: 10px 0 4px; color: var(--coffee-dark); }
.size-card p { margin: 0; color: var(--muted); }

.area-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 40px;
  background: linear-gradient(135deg, var(--honey-soft), #fff);
  border: 1px solid rgba(217,154,37,.24);
  border-radius: var(--radius-lg);
}
.area-box h2 { margin-bottom: 0; }

.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 28px; align-items: center; }
.contact-card {
  background: var(--coffee-dark);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow);
}
.contact-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: white;
  border-radius: 20px;
  margin-bottom: 14px;
  transition: background .25s ease, transform .25s ease;
  overflow-wrap: anywhere;
}
.contact-row:last-child { margin-bottom: 0; }
.contact-row:hover { background: rgba(255,255,255,.14); transform: translateY(-3px); }
.contact-row span { color: var(--honey); font-weight: 800; }

.footer { padding: 34px 0; background: #1f110b; color: white; }
.footer-grid { display: flex; justify-content: space-between; gap: 20px; }
.footer p { margin: 4px 0; color: rgba(255,255,255,.7); }
.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  background: #1f8f4d;
  color: white;
  font-weight: 900;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(31,143,77,.3);
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 850px) {
  .section-pad { padding: 70px 0; }
  .hero-grid, .product-grid, .packaging-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-card { min-height: auto; }
  .size-grid { grid-template-columns: repeat(2, 1fr); }
  .area-box, .footer-grid { flex-direction: column; align-items: flex-start; }
  .nav-links {
    position: absolute;
    top: 76px;
    left: 3%;
    right: 3%;
    background: white;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: var(--shadow);
    display: none;
  }
  .nav-links.open { display: flex; }
  .menu-toggle { display: block; }
}

@media (max-width: 520px) {
  .brand-text { font-size: .88rem; }
  .hero h1 { font-size: 2.55rem; }
  .size-grid { grid-template-columns: 1fr; }
  .contact-row { flex-direction: column; }
  .floating-whatsapp { right: 12px; bottom: 12px; padding: 12px 14px; font-size: .86rem; }
}
