* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d1c1b;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #1f2a2e;
  color: #f8f5f0;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand {
  font-size: 1.4rem;
  letter-spacing: 0.12rem;
  text-transform: uppercase;
}

.side-tagline {
  font-size: 0.95rem;
  opacity: 0.8;
}

.side-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.side-nav a {
  font-weight: 600;
}

.side-cta {
  margin-top: auto;
  padding: 12px 16px;
  border: 1px solid #f8f5f0;
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px 6vw 120px;
}

.section {
  padding: 32px 0;
  border-bottom: 1px solid #dedad4;
}

.section:last-of-type {
  border-bottom: none;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero h1 {
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  line-height: 1.1;
}

.hero-visual {
  position: relative;
  min-height: 260px;
  border-radius: 24px;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(19, 27, 29, 0.75), rgba(19, 27, 29, 0.2));
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: #fefcf8;
  font-weight: 600;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 280px;
}

.callout {
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(31, 42, 46, 0.08);
}

.pill {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: #ede8df;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
  height: 140px;
  object-fit: cover;
}

.price {
  font-weight: 700;
  color: #1b4b43;
}

.inline-cta {
  font-weight: 700;
  border-bottom: 2px solid #1b4b43;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  padding: 12px 20px;
  border-radius: 999px;
  background: #1b4b43;
  color: #fefcf8;
  font-weight: 600;
  text-align: center;
}

.button.light {
  background: #ffffff;
  color: #1b4b43;
  border: 1px solid #1b4b43;
}

.layered {
  background: #e7e1d6;
  padding: 30px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.layered::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  background: rgba(27, 75, 67, 0.2);
  border-radius: 30px;
  top: -30px;
  right: -40px;
}

.form-panel {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-panel label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-panel input,
.form-panel select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc7bc;
  background: #fdfbf8;
}

.form-panel button {
  border: none;
  cursor: pointer;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  border-left: 4px solid #1b4b43;
  padding: 18px 20px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #f5b84c;
  color: #1d1c1b;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #dedad4;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #1f2a2e;
  color: #f8f5f0;
  padding: 18px;
  border-radius: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: #f5b84c;
  color: #1d1c1b;
}

.cookie-reject {
  background: transparent;
  color: #f8f5f0;
  border: 1px solid #f8f5f0;
}

.single-column {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.contact-card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
}

@media (max-width: 900px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
  }

  .side-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .side-cta {
    margin-top: 0;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
