:root {
  --bg: #f7f1e8;
  --card: #fffaf3;
  --text: #2b1b12;
  --muted: #6f5a4b;
  --dark: #24150e;
  --accent: #8b5a2b;
  --accent-dark: #68401e;
  --border: #eadccc;
  --whatsapp: #25D366;
  --shadow: 0 12px 30px rgba(36, 21, 14, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(36, 21, 14, 0.96);
  color: white;
  backdrop-filter: blur(10px);
}

.navbar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.5px;
  font-size: 20px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  background: #fffaf3;
}

.brand-logo span {
  color: #d4a56c;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  opacity: 0.9;
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
  color: #d4a56c;
}

.nav-button {
  background: var(--whatsapp);
  color: white !important;
  padding: 10px 14px;
  border-radius: 999px;
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  border-radius: 10px;
  color: white;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: white;
  border-radius: 2px;
}

.hero {
  background:
    linear-gradient(rgba(36, 21, 14, 0.72), rgba(36, 21, 14, 0.72)),
    radial-gradient(circle at top left, #8b5a2b, #24150e 65%);
  color: white;
  padding: 90px 20px;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1;
  margin: 0 0 18px;
  letter-spacing: -2px;
}

.hero p {
  font-size: 19px;
  max-width: 620px;
  opacity: 0.94;
  margin-bottom: 28px;
}

.hero-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-card h2 {
  margin-top: 0;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--whatsapp);
  color: white;
}

.btn-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.6);
}

.btn-dark {
  background: var(--dark);
  color: white;
}

.page-title {
  background: var(--dark);
  color: white;
  padding: 58px 20px;
  text-align: center;
}

.page-title h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 54px);
}

.page-title p {
  max-width: 700px;
  margin: 14px auto 0;
  opacity: 0.9;
}

.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 20px;
}

.section-narrow {
  max-width: 820px;
}

.section h2 {
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 18px;
  letter-spacing: -1px;
}

.lead {
  color: var(--muted);
  font-size: 18px;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.coffee-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.coffee-card h3 {
  margin: 0;
  font-size: 24px;
}

.price {
  font-size: 28px;
  font-weight: 900;
  color: var(--accent-dark);
}

.notes {
  color: var(--muted);
}

.badge {
  display: inline-block;
  width: fit-content;
  background: #f0ddc3;
  color: var(--accent-dark);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
}

.info-strip {
  background: var(--dark);
  color: white;
}

.info-strip .section {
  padding-top: 36px;
  padding-bottom: 36px;
}

.steps {
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 54px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: white;
  font-weight: 900;
}

.notice {
  border-left: 5px solid var(--accent);
}

.footer {
  background: var(--dark);
  color: white;
  padding: 30px 20px;
  text-align: center;
}

.footer p {
  margin: 6px 0;
  opacity: 0.85;
}

.footer a {
  color: #d4a56c;
  text-decoration: none;
}

@media (max-width: 850px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: var(--dark);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 14px;
    border-radius: 12px;
  }

  .nav-button {
    text-align: center;
    margin-top: 6px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .grid-2,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 64px 20px;
  }
}
