* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1a1a1a;
  background: #f7f4ef;
  line-height: 1.6;
}

a {
  color: #1a1a1a;
  text-decoration: none;
}

img {
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 6%;
  background: #fff8ef;
  border-bottom: 1px solid #eadfd2;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-name {
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
}

.ad-label {
  font-size: 12px;
  color: #6c5947;
  background: #f1e7da;
  padding: 6px 10px;
  border-radius: 20px;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 14px;
}

.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 120px 6% 80px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 15, 10, 0.52);
}

.hero-content {
  position: relative;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-size: 42px;
  line-height: 1.2;
  margin: 0;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffb572;
  color: #2d1b0f;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.section {
  padding: 70px 6%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section-alt {
  background: #fff;
}

.section-cream {
  background: #f1e7da;
}

.columns {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.column {
  flex: 1 1 260px;
  min-width: 240px;
}

.magazine-stack {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.inline-link {
  font-weight: 700;
  text-decoration: underline;
}

.image-frame {
  background: #e6d7c7;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex: 1 1 240px;
  min-width: 240px;
  border: 1px solid #efe3d6;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #6b3f22;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.secondary-button {
  border: 1px solid #6b3f22;
  color: #6b3f22;
  background: transparent;
  padding: 10px 18px;
  border-radius: 20px;
  cursor: pointer;
}

.form-wrap {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid #eadfd2;
}

.form-wrap label {
  font-weight: 600;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d9c8b6;
  border-radius: 10px;
  font-size: 14px;
}

.form-wrap button {
  align-self: flex-start;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #2d1b0f;
  color: #fff;
  padding: 12px 18px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 8;
}

.sticky-cta button {
  background: #ffb572;
  color: #2d1b0f;
  border: none;
  padding: 8px 14px;
  border-radius: 18px;
  cursor: pointer;
  font-weight: 700;
}

.footer {
  background: #20160f;
  color: #f9f4ef;
  padding: 40px 6%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: #d9cbbd;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 340px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #eadfd2;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border: none;
  border-radius: 16px;
  padding: 8px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: #2d1b0f;
  color: #fff;
}

.cookie-reject {
  background: #f1e7da;
  color: #2d1b0f;
}

.notice {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #eadfd2;
}

.text-muted {
  color: #6c5947;
}

.image-slab {
  height: 220px;
  border-radius: 18px;
  overflow: hidden;
}

.list-reset {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wide-feature {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.wide-feature .feature-text {
  flex: 1 1 320px;
}

.wide-feature .feature-media {
  flex: 1 1 280px;
}

.page-title {
  margin: 0;
  font-size: 32px;
}

.section-title {
  margin: 0;
  font-size: 26px;
}

.spaced {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (max-width: 780px) {
  .hero {
    padding-top: 90px;
  }

  .hero-title {
    font-size: 34px;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
    justify-content: space-between;
  }
}

.hero-home {
  background-image: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1400&q=80");
}

.hero-about {
  background-image: url("https://images.unsplash.com/photo-1506089676908-3592f7389d4d?w=1400&q=80");
}

.hero-services {
  background-image: url("https://images.unsplash.com/photo-1466978913421-dad2ebd01d17?w=1400&q=80");
}

.hero-contact {
  background-image: url("https://images.unsplash.com/photo-1482049016688-2d3e1b311543?w=1400&q=80");
}

.section-bg-pantry {
  background-image: url("https://images.unsplash.com/photo-1447078806655-40579c2520d6?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.section-bg-pantry::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(32, 22, 15, 0.58);
}

.section-bg-pantry .section-layer {
  position: relative;
}

.section-bg-workshop {
  background-image: url("https://images.unsplash.com/photo-1476224203421-9ac39bcb3327?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.section-bg-workshop::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(32, 22, 15, 0.58);
}

.section-bg-workshop .section-layer {
  position: relative;
}
