* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f7f3ef;
  --ink: #1c1b19;
  --muted: #6f665f;
  --accent: #8b4b27;
  --accent-2: #2f4f4f;
  --cream: #efe6dc;
  --sand: #dccbb9;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 28px 6vw 10px 6vw;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  border-bottom: 1px solid #e2d7cb;
  padding-bottom: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand h1,
.brand h2 {
  font-size: 1.6rem;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: #efe2d6;
  padding: 4px 8px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.nav-toggle {
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
  cursor: pointer;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

.nav-links.hidden {
  display: none;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--muted);
}

main {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 16px 6vw 60px 6vw;
}

section {
  padding: 28px;
  border-radius: 24px;
  background: #ffffff;
}

.split {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.split .visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

.hero {
  background: var(--cream);
}

.hero .headline {
  font-size: 2.5rem;
  line-height: 1.1;
}

.hero .subline {
  font-size: 1.05rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.btn {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn.secondary {
  background: var(--accent-2);
}

.btn.light {
  background: #f0ded1;
  color: var(--ink);
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.image-frame {
  background: #d9c8b7;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.h-360 {
  height: 360px;
}

.h-340 {
  height: 340px;
}

.h-320 {
  height: 320px;
}

.h-240 {
  height: 240px;
}

.h-150 {
  height: 150px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: var(--cream);
  padding: 18px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card h3 {
  font-size: 1.1rem;
}

.price {
  font-weight: 600;
  color: var(--accent);
}

.tag {
  font-size: 0.85rem;
  background: #e8d9cc;
  padding: 4px 10px;
  border-radius: 999px;
  align-self: flex-start;
}

.note {
  font-size: 0.92rem;
  color: var(--muted);
}

.banner-bg {
  background: #2f2a25;
  color: #fff;
}

.banner-bg .inline-link {
  color: #f6d0b2;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d6c7b8;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.95rem;
}

.footer {
  padding: 30px 6vw 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #f0ded1;
  padding: 10px 12px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.sticky-cta span {
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 340px;
  background: #ffffff;
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.page-hero {
  background: var(--sand);
}

.simple-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dual-column {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.dual-column > div {
  flex: 1 1 220px;
}

.bg-image-block {
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-coffee-route {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
}

.bg-image-block .btn {
  background: #f4d0b5;
  color: #241a13;
}

@media (max-width: 960px) {
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    align-items: flex-start;
  }

  .nav-links {
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: center;
  }
}
