* {
  box-sizing: border-box;
}

:root {
  --ink: #1c1b18;
  --muted: #5a564e;
  --paper: #faf7f2;
  --sand: #f1ebe2;
  --accent: #c86b3b;
  --accent-dark: #9f4f28;
  --leaf: #4d6a52;
  --sky: #e5edf2;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-dark);
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6%;
  gap: 24px;
}

.nav__group {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.nav__brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.nav__link {
  color: var(--ink);
  font-size: 0.95rem;
}

.nav__link--cta {
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--sand);
  font-size: 0.85rem;
}

.split {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 48px 6%;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split__content,
.split__media {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 32px;
}

.split__media {
  min-height: 320px;
  border-radius: 26px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.split__media .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
}

.split__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.section-muted {
  background: var(--sand);
}

.section-sky {
  background: var(--sky);
}

.section-leaf {
  background: rgba(77, 106, 82, 0.08);
}

.section-callout {
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.eyebrow {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.display {
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1.1;
  margin: 12px 0;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  gap: 8px;
}

.btn.alt {
  background: var(--ink);
}

.btn.outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}

.inline-cta {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.service-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.price {
  font-weight: 700;
  color: var(--leaf);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(200, 107, 59, 0.15);
  font-size: 0.82rem;
  align-self: flex-start;
}

.form-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 0.95rem;
  font-family: inherit;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 6%;
}

.cta-strip .btn {
  flex-shrink: 0;
}

.footer {
  margin-top: auto;
  padding: 32px 6%;
  background: var(--ink);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #fff;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #fff;
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 90px;
  padding: 12px 18px;
  background: var(--leaf);
  color: #fff;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 15;
  font-weight: 600;
}

.image-hero {
  background-image: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1400&q=80");
}

.image-flavors {
  background-image: url("https://images.unsplash.com/photo-1505253758473-96b7015fcd4e?auto=format&fit=crop&w=1200&q=80");
}

.image-lab {
  background-image: url("https://images.unsplash.com/photo-1506368249639-73a05d6f6488?auto=format&fit=crop&w=1200&q=80");
}

.image-gather {
  background-image: url("https://images.unsplash.com/photo-1473093295043-cdd812d0e601?auto=format&fit=crop&w=1200&q=80");
}

.image-table {
  background-image: url("https://images.unsplash.com/photo-1504754524776-8f4f37790ca0?auto=format&fit=crop&w=1200&q=80");
}

.image-sandwich {
  background-image: url("https://images.unsplash.com/photo-1508736793122-f516e3ba5569?auto=format&fit=crop&w=1200&q=80");
}

.image-dessert {
  background-image: url("https://images.unsplash.com/photo-1505253216365-14c706762413?auto=format&fit=crop&w=1200&q=80");
}

.image-simmer {
  background-image: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1200&q=80");
}

.image-kitchen {
  background-image: url("https://images.unsplash.com/photo-1506368083636-6defb67639f0?auto=format&fit=crop&w=1200&q=80");
}

.image-handmade {
  background-image: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1200&q=80");
}

.list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.list-inline span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.05);
}

.contact-card {
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 16px;
    bottom: 120px;
  }
}
