* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background: #f5f3ee;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #1f2a24;
  color: #f7f5f1;
  display: flex;
  flex-direction: column;
  padding: 28px 20px;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 18px;
}

.ad-label {
  font-size: 12px;
  line-height: 1.4;
  padding: 10px 12px;
  background: #2e3b33;
  border-radius: 10px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav a {
  color: #f7f5f1;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
}

.nav a:focus {
  outline: 2px solid #f1c375;
  outline-offset: 2px;
}

.sidebar-note {
  font-size: 13px;
  line-height: 1.5;
  color: #d6d1c8;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 56px 8%;
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.section.tight {
  padding: 32px 8%;
}

.section.alt {
  background: #fff;
}

.section.feature-bg {
  color: #fff;
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: #2b342e;
}

.section.feature-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 30, 26, 0.65);
}

.section.feature-bg > * {
  position: relative;
}

.hero {
  min-height: 70vh;
  color: #fff;
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: #2b342e;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16, 20, 18, 0.62);
}

.hero-content {
  position: relative;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
}

h1,
h2,
h3 {
  margin: 0;
}

p {
  margin: 0;
  line-height: 1.6;
}

.button {
  background: #f1c375;
  color: #1b1b1b;
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.button.secondary {
  background: #ffffff;
  color: #1b1b1b;
  border: 1px solid #d6d1c8;
}

.link-inline {
  color: #1f4c3a;
  text-decoration: underline;
}

.columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 280px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.card img {
  width: 100%;
  height: 180px;
  border-radius: 12px;
  object-fit: cover;
  background-color: #dcd6cc;
}

.price {
  font-weight: 700;
  font-size: 18px;
  color: #1f4c3a;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split > div {
  flex: 1 1 280px;
}

.image-frame {
  background-color: #d7d2c9;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  background-color: #d7d2c9;
}

.form-wrap {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 520px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc9bd;
  font-size: 14px;
}

.note {
  font-size: 13px;
  color: #4f4f4f;
}

.footer {
  background: #1f2a24;
  color: #f7f5f1;
  padding: 32px 8%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #f7f5f1;
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #1f4c3a;
  color: #fff;
  padding: 14px 18px;
  border-radius: 18px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 30;
}

.sticky-cta button {
  background: #f1c375;
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  z-index: 40;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.feature-bg-1 {
  background-image: url("https://images.unsplash.com/photo-1470770841072-f978cf4d019e?w=1400&q=80");
}

.feature-bg-2 {
  background-image: url("https://images.unsplash.com/photo-1501785888041-af3ef285b470?w=1400&q=80");
}

.feature-bg-3 {
  background-image: url("https://images.unsplash.com/photo-1507149833265-60c372daea22?w=1400&q=80");
}

.feature-bg-4 {
  background-image: url("https://images.unsplash.com/photo-1504309092620-4d0ec726efa4?w=1400&q=80");
}

.feature-bg-5 {
  background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=1400&q=80");
}

.feature-bg-6 {
  background-image: url("https://images.pexels.com/photos/30290374/pexels-photo-30290374.jpeg");
}

.inline-img-1 {
  background-color: #dcd6cc;
}

.inline-img-2 {
  background-color: #e0d9cf;
}

.legal-wrap {
  padding: 48px 8%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.legal-wrap ul {
  padding-left: 18px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-card {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.services-grid .card {
  width: 260px;
}
