* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f2a24;
  background: #f6f4ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.site-header {
  padding: 24px 6%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #f6f4ef;
}

.header-top {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  background: #1f2a24;
  color: #f6f4ef;
  padding: 6px 12px;
  align-self: flex-start;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  padding: 30px 6% 50px;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-media {
  flex: 1.1;
  background: #d9e5df;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.hero-media img {
  height: 100%;
  min-height: 360px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #1f2a24;
  color: #f6f4ef;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.cta-button:hover,
.cta-link:hover,
.nav-links a:hover,
.sticky-cta:hover {
  opacity: 0.85;
}

.cta-link {
  text-decoration: underline;
  font-weight: 600;
}

.section {
  padding: 50px 6%;
  position: relative;
}

.section-alt {
  background: #ffffff;
}

.section-dark {
  background: #1f2a24;
  color: #f6f4ef;
}

.split-row {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split-row.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1;
  min-width: 260px;
}

.split-media {
  flex: 1;
  min-width: 260px;
  background: #e5e0d7;
  border-radius: 18px;
  overflow: hidden;
}

.split-media img {
  height: 320px;
}

.card-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: stretch;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 220px;
}

.card-media {
  background: #dbe8f1;
}

.card-media img {
  height: 180px;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offset-left {
  margin-left: -40px;
}

.offset-right {
  margin-right: -40px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.form-wrap {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(31, 42, 36, 0.12);
  max-width: 540px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c8d0c8;
  font-size: 1rem;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #d28a2c;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 20;
}

.image-banner {
  background: #e4e0d7;
  border-radius: 18px;
  overflow: hidden;
}

.image-banner img {
  height: 260px;
}

.site-footer {
  padding: 30px 6%;
  background: #101612;
  color: #c8d0c8;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
  z-index: 30;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  flex: 1;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1517849845537-4d257902454a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-hero .cta-button {
  background: #ffffff;
  color: #1f2a24;
}

.callout {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #f0eee8;
  padding: 20px;
  border-radius: 16px;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .offset-left,
  .offset-right {
    margin: 0;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
