* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #1f1f1f;
  background-color: #f7f4ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.top-bar {
  background: #f0e8dd;
  color: #3f3428;
  padding: 8px 0;
  font-size: 0.9rem;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.nav a {
  padding: 4px 6px;
  border-radius: 999px;
}

.nav a:hover,
.nav a:focus {
  background: #e5d7c4;
}

header {
  padding: 28px 0 10px;
}

.hero {
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(247, 244, 239, 0.8)),
    url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1400&q=80") center/cover no-repeat;
}

.hero-inner {
  padding: 70px 0;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 0 0 16px;
  max-width: 520px;
}

.hero p {
  font-size: 1.1rem;
  max-width: 520px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1f1f1f;
  background: #1f1f1f;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: #1f1f1f;
}

.button:hover,
.button:focus {
  background: #3a2f23;
  border-color: #3a2f23;
}

.split {
  display: flex;
  align-items: stretch;
  gap: 32px;
  padding: 60px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.panel-image {
  background-color: #e1d7c9;
  border-radius: 18px;
  overflow: hidden;
  min-height: 320px;
}

.panel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panel h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.panel ul {
  margin: 0;
  padding-left: 18px;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #d2c0a8;
  font-size: 0.85rem;
  font-weight: 600;
  width: fit-content;
}

.section-muted {
  background: #f2ede6;
}

.bg-pantry {
  background: linear-gradient(120deg, rgba(247, 244, 239, 0.95), rgba(247, 244, 239, 0.85)),
    url("https://images.unsplash.com/photo-1490645935967-10de6ba17061?w=1400&q=80") center/cover no-repeat;
}

.bg-table {
  background: linear-gradient(120deg, rgba(247, 244, 239, 0.96), rgba(247, 244, 239, 0.88)),
    url("https://images.unsplash.com/photo-1498837167922-ddd27525d352?w=1400&q=80") center/cover no-repeat;
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.card .card-image {
  background-color: #eadfd0;
  border-radius: 12px;
  overflow: hidden;
  height: 150px;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price {
  font-weight: 700;
  color: #3a2f23;
}

.form-section {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d1c4b2;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  margin-top: auto;
  background: #1f1f1f;
  color: #f6f3ee;
  padding: 40px 0;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.footer a {
  color: #f6f3ee;
}

.notice {
  font-size: 0.9rem;
  color: #3a2f23;
  background: #efe3d4;
  padding: 14px;
  border-radius: 12px;
}

#cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  display: none;
  width: min(680px, 92%);
  z-index: 10;
}

#cookie-banner.show {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

#sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #3a2f23;
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9;
}

#sticky-cta .button {
  background: #fff;
  color: #3a2f23;
  border-color: #fff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.meta-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.95rem;
}

.page-title {
  margin-top: 0;
}

.wide-image {
  background-color: #eadfd0;
  border-radius: 18px;
  overflow: hidden;
  height: 320px;
}

.wide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 860px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  #sticky-cta {
    position: static;
    margin: 20px auto 0;
    width: min(520px, 92%);
    justify-content: space-between;
  }
}
