* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Trebuchet MS", Arial, sans-serif;
  color: #2b1f16;
  background: #fbf7f2;
  line-height: 1.5;
}

a {
  color: #5a3a22;
  text-decoration: underline;
}

img {
  display: block;
  max-width: 100%;
}

.img-cover {
  object-fit: cover;
}

.img-frame {
  background-color: #e7dacb;
  padding: 6px;
  border-radius: 18px;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border: 1px solid #8b6b4c;
  border-radius: 999px;
}

.split {
  display: flex;
  gap: 28px;
  align-items: stretch;
  padding: 44px 0;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .col {
  flex: 1 1 320px;
  min-width: 280px;
}

.hero {
  background: #efe4d7;
}

.hero h1 {
  font-size: 40px;
  margin: 0 0 12px;
}

.lead {
  font-size: 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.btn {
  border: none;
  background: #5a3a22;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: #d4bda5;
  color: #2b1f16;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  display: flex;
  gap: 14px;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.card img {
  border-radius: 12px;
}

.pricing {
  background: #f7efe6;
}

.bg-cafe {
  background-image: url("https://images.unsplash.com/photo-1421622548261-c45bfe178854?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-cafe .notice {
  background: rgba(255, 255, 255, 0.9);
  color: #2b1f16;
}

.price-tag {
  font-weight: 700;
  color: #5a3a22;
}

.inline-cta {
  font-weight: 700;
}

.banner {
  background: #f0ddd0;
  padding: 10px 0;
}

.banner p {
  margin: 0;
  text-align: center;
}

.form-box {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d5c1ae;
  font-size: 15px;
}

.sticky-cta {
  position: fixed;
  bottom: 12px;
  right: 12px;
  background: #2b1f16;
  color: #fff;
  padding: 10px 14px;
  border-radius: 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 20;
}

.sticky-cta button {
  background: #f0ddd0;
  color: #2b1f16;
  border: none;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.footer {
  padding: 28px 0 80px;
  background: #efe4d7;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.cookie-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  background: #ffffff;
  border: 1px solid #d9c6b4;
  border-radius: 14px;
  padding: 16px;
  display: none;
  z-index: 30;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.two-tone {
  background: #f8f1e9;
}

.notice {
  font-size: 14px;
  background: #fff9f4;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #e0cdbb;
}

.legal-page h1 {
  font-size: 32px;
  margin-top: 20px;
}

.legal-page p {
  max-width: 720px;
}

@media (max-width: 860px) {
  .hero h1 {
    font-size: 32px;
  }

  .sticky-cta {
    left: 12px;
    right: 12px;
    justify-content: space-between;
  }
}
