:root {
  --bg: #f8f4ef;
  --ink: #2a1f1a;
  --muted: #6c5a52;
  --accent: #8a4b2f;
  --accent-soft: #f0e2d7;
  --card: #ffffff;
  --sand: #efe7dd;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 6vw 10px;
}

.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 10px;
  background: var(--accent-soft);
  border-radius: 999px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 30px 6vw 40px;
}

.hero-split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 320px;
  background: var(--card);
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.hero-visual {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-visual img {
  width: 100%;
  height: 360px;
  border-radius: 24px;
  object-fit: cover;
  background: #d9cbbf;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-cta {
  text-decoration: underline;
  color: var(--accent);
}

.section {
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.section.alt {
  background: var(--sand);
}

.section.bg-roast {
  background-image: url("https://images.pexels.com/photos/31986824/pexels-photo-31986824.jpeg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.section.bg-roast .section-title,
.section.bg-roast p {
  color: #fff;
}

.section-title {
  font-size: 1.6rem;
  margin: 0;
}

.split-block {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}

.split-text,
.split-media {
  flex: 1 1 280px;
}

.split-media img {
  width: 100%;
  height: 260px;
  border-radius: 18px;
  object-fit: cover;
  background: #d9cbbf;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: var(--card);
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  object-fit: cover;
  background: #d9cbbf;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.quote {
  padding: 16px 18px;
  border-left: 3px solid var(--accent);
  background: #fffaf6;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

form {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--card);
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d3c4b7;
  font-family: inherit;
}

.footer {
  padding: 30px 6vw 50px;
  background: #1f1713;
  color: #f5eee7;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.footer small {
  color: #d7c9bc;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  text-decoration: none;
  font-weight: 600;
}

.banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  right: 16px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px;
  display: none;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  z-index: 10;
}

.banner.show {
  display: flex;
}

.banner-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.centered {
  text-align: center;
}

.wide-note {
  background: var(--accent-soft);
  padding: 20px;
  border-radius: 16px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 16px;
}

.contact-box {
  background: var(--card);
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
