* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1b1b1b;
  background: #f6f4f1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  background: #efe9e1;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand-name {
  font-size: 20px;
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.6px;
}

.ad-label {
  margin-top: 8px;
  font-size: 12px;
  color: #6b5c4d;
  line-height: 1.4;
}

.side-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 600;
}

.side-nav a {
  padding: 6px 0;
}

.side-nav a:hover,
.cta-link:hover,
.btn:hover,
.ghost-link:hover,
.sticky-cta:hover {
  color: #1f4d3a;
}

.side-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section {
  padding: 64px 8vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: #fff;
}

.section.split {
  flex-direction: row;
  align-items: stretch;
  gap: 32px;
}

.section.split.reverse {
  flex-direction: row-reverse;
}

.hero {
  padding-top: 48px;
  gap: 32px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 520px;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 700;
}

p {
  margin: 0;
  line-height: 1.6;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #7a6550;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn,
button.btn {
  background: #1f4d3a;
  color: #fff;
  padding: 12px 18px;
  border-radius: 24px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.btn.light {
  background: #f2d7b8;
  color: #1b1b1b;
}

.ghost-link {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.image-frame {
  background: #d8cbbd;
  border-radius: 18px;
  overflow: hidden;
  min-height: 280px;
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  min-width: 220px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-weight: 700;
  font-size: 20px;
  color: #1f4d3a;
}

.tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6b5c4d;
}

.overlay-section {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.overlay-section-alt {
  background-image: url("https://images.unsplash.com/photo-1507207611509-ec012433ff52?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.overlay-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 28, 31, 0.62);
}

.overlay-section-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 28, 31, 0.62);
}

.overlay-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.testimonial {
  background: #f1ede8;
  padding: 18px;
  border-radius: 16px;
  font-style: italic;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 480px;
}

label {
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #c8b8a7;
  font-size: 14px;
}

.disclaimer {
  font-size: 12px;
  color: #6b5c4d;
  max-width: 680px;
}

.footer {
  padding: 36px 8vw 48px;
  background: #efe9e1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 600;
}

.footer-meta {
  font-size: 12px;
  color: #6b5c4d;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

.notice {
  background: #fff;
  padding: 18px;
  border-radius: 16px;
}

.plain-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-row .card {
  flex: 1 1 260px;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  max-width: 420px;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
  }

  .side-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .section.split,
  .section.split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
