* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #2b2a28;
  background: #faf7f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  width: 100%;
  overflow-x: hidden;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6%;
  background: #f4efe7;
  border-bottom: 1px solid #e2d8c9;
}

.nav-brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 20px;
  border: 1px solid transparent;
}

.nav-links a:hover {
  border-color: #c6b39a;
}

.ad-label {
  font-size: 0.8rem;
  color: #5a4c3c;
  background: #efe2d0;
  padding: 6px 12px;
  border-radius: 18px;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 64px 6% 32px;
  position: relative;
}

.hero-text {
  flex: 1;
  max-width: 520px;
}

.hero-text h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin: 0 0 16px;
}

.hero-text p {
  margin: 0 0 20px;
  color: #5a4c3c;
}

.hero-media {
  flex: 1;
  max-width: 520px;
  margin-left: 20px;
}

.image-frame {
  background: #e6d8c7;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.hero-card {
  background: #fff6e9;
  padding: 18px 20px;
  border-radius: 16px;
  position: absolute;
  bottom: -20px;
  left: 10%;
  width: 240px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 24px;
  background: #3f2d21;
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.cta-primary:hover {
  background: #2c1f16;
}

.cta-secondary {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 22px;
  border: 1px solid #3f2d21;
  color: #3f2d21;
  font-weight: 600;
}

.cta-secondary:hover {
  background: #efe2d0;
}

.section {
  padding: 56px 6%;
}

.section.asym {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.section.asym.reverse {
  flex-direction: row-reverse;
}

.section.asym .content {
  flex: 1;
  min-width: 280px;
}

.section.asym .media {
  flex: 1;
  min-width: 280px;
  transform: translateY(20px);
}

.section.asym.reverse .media {
  transform: translateY(-20px);
}

.section h2 {
  margin: 0 0 14px;
  font-size: 2rem;
}

.section p {
  margin: 0 0 14px;
  color: #5f5548;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 220px;
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 16px;
  width: 100%;
  height: 160px;
}

.price {
  font-weight: 700;
  color: #3f2d21;
}

.band {
  background: #2e241c;
  color: #f7efe2;
  position: relative;
}

.band .cta-secondary {
  border-color: #f7efe2;
  color: #f7efe2;
}

.band .cta-secondary:hover {
  background: #5a4637;
}

.steps {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 200px;
  background: #fef9f2;
  padding: 16px;
  border-radius: 16px;
  border-left: 4px solid #b78952;
}

.form-wrap {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
}

form {
  flex: 1;
  min-width: 260px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #cbb9a4;
  font-size: 1rem;
  font-family: inherit;
}

.form-status {
  font-size: 0.9rem;
  color: #5a4c3c;
}

.footer {
  padding: 36px 6% 60px;
  background: #f4efe7;
  border-top: 1px solid #e2d8c9;
  font-size: 0.9rem;
  color: #5a4c3c;
}

.footer .footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer .references {
  margin-top: 18px;
  font-size: 0.85rem;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #b78952;
  color: #fff;
  padding: 12px 18px;
  border-radius: 24px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.sticky-cta:hover {
  background: #9e7340;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-btn {
  flex: 1;
  border: none;
  padding: 8px 10px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: #3f2d21;
  color: #fff;
}

.cookie-reject {
  background: #e9ddcf;
  color: #3f2d21;
}

.cookie-btn:hover {
  opacity: 0.9;
}

.legal-block {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.contact-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-item {
  flex: 1;
  min-width: 220px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #eadfce;
}

.bg-beans {
  background-image: url("https://images.unsplash.com/photo-1509042239860-f550ce710b93?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-cafe {
  background-image: url("https://images.unsplash.com/photo-1511920170033-f8396924c348?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-delivery {
  background-image: url("https://images.unsplash.com/photo-1504754524776-8f4f37790ca0?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.overlay {
  background: rgba(46, 36, 28, 0.7);
  color: #f7efe2;
  padding: 40px;
  border-radius: 20px;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .hero-card {
    position: static;
    margin-top: 16px;
    width: auto;
  }

  .sticky-cta {
    position: static;
    display: inline-flex;
    margin: 20px 6% 0;
  }
}
