* {
  box-sizing: border-box;
}

:root {
  --ink: #1f1a17;
  --muted: #5e534a;
  --cream: #f5efe8;
  --espresso: #4b2d1f;
  --copper: #c27a3a;
  --leaf: #5a6c52;
  --mist: #efe7dd;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  padding: 24px 6vw 8px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 32px;
  justify-content: space-between;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
}

.ad-label {
  background: var(--mist);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 24px 6vw 64px;
  align-items: stretch;
  position: relative;
}

.hero-media {
  flex: 1 1 360px;
  min-height: 360px;
  background: #d7c9bb;
  border-radius: 28px;
  overflow: hidden;
  transform: translateY(16px);
}

.hero-content {
  flex: 1 1 320px;
  padding: 32px;
  background: var(--cream);
  border-radius: 28px;
  position: relative;
  margin-top: -18px;
}

.hero-content h1 {
  font-size: 2.4rem;
  margin-top: 0;
}

.accent-block {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 120px;
  height: 120px;
  background: var(--copper);
  border-radius: 18px;
  opacity: 0.25;
}

.section {
  padding: 52px 6vw;
  position: relative;
}

.bg-roast {
  background-image: url("https://images.unsplash.com/photo-1507133750040-4a8f57021571?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #d6c8bb;
}

.bg-roast::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 26, 23, 0.45);
}

.bg-roast .section-inner {
  position: relative;
  z-index: 1;
}

.bg-roast h2,
.bg-roast p {
  color: #fff;
}

.section.alt {
  background: var(--mist);
}

.section .section-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.section .section-text {
  flex: 1 1 320px;
}

.section .section-media {
  flex: 1 1 320px;
  min-height: 240px;
  background: #dbcfc3;
  border-radius: 24px;
  overflow: hidden;
}

.offset-right {
  margin-left: auto;
  margin-right: 0;
  max-width: 880px;
}

.offset-left {
  margin-right: auto;
  margin-left: 0;
  max-width: 880px;
}

.floating-panel {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(31, 26, 23, 0.1);
  margin-top: -42px;
}

.bg-roast .floating-panel {
  background: rgba(31, 26, 23, 0.55);
  color: #fff;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 14px 30px rgba(31, 26, 23, 0.08);
}

.card-content {
  padding: 20px;
}

.price {
  font-weight: 700;
  color: var(--espresso);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--espresso);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn.alt {
  background: var(--leaf);
}

.btn.ghost {
  background: transparent;
  color: var(--espresso);
  border: 1px solid var(--espresso);
}

.inline-link {
  text-decoration: underline;
  cursor: pointer;
}

.form-wrap {
  background: #fff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(31, 26, 23, 0.1);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #cfc4b7;
  font-size: 0.95rem;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  box-shadow: 0 12px 24px rgba(31, 26, 23, 0.2);
}

.footer {
  margin-top: auto;
  padding: 32px 6vw 50px;
  background: #1f1a17;
  color: #f5efe8;
}

.footer a {
  color: #f5efe8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 0 16px 36px rgba(31, 26, 23, 0.18);
  display: none;
  z-index: 25;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.banner-image {
  background: #d9cdbf;
  border-radius: 24px;
  overflow: hidden;
  min-height: 220px;
}

.split-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.list-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list-steps div {
  background: #fff;
  padding: 16px 18px;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(31, 26, 23, 0.08);
}

.notice {
  background: var(--cream);
  border-left: 4px solid var(--copper);
  padding: 16px 20px;
  border-radius: 16px;
}

.legal-wrap {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.legal-hero .section-media {
  min-height: 220px;
}

@media (max-width: 840px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
