* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #102027;
  --muted: #4d5b60;
  --accent: #2f6f5b;
  --accent-dark: #215242;
  --sand: #f3f1ec;
  --mist: #e5ece8;
  --sun: #f4d07d;
  --stone: #c2c8c6;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  min-height: 100vh;
  background: #fff;
}

.side-nav {
  width: 220px;
  padding: 32px 24px;
  border-right: 1px solid var(--mist);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 0;
  align-self: flex-start;
  height: fit-content;
  background: #fff;
}

.brand {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 40px 6vw 80px 6vw;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--sand);
  padding: 48px;
  border-radius: 28px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -80px;
  width: 220px;
  height: 220px;
  background: var(--sun);
  border-radius: 50%;
  opacity: 0.7;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.section-title {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
}

.offset-left {
  margin-left: -40px;
  padding-left: 40px;
  border-left: 3px solid var(--mist);
}

.offset-right {
  margin-right: -40px;
  padding-right: 40px;
  border-right: 3px solid var(--mist);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 280px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border: 1px solid var(--mist);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.card-icon {
  width: 40px;
  height: 40px;
}

.card strong {
  font-size: 18px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.story-block {
  background: var(--mist);
  padding: 24px;
  border-radius: 18px;
}

.image-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(16, 32, 39, 0.12);
}

.highlight {
  background: var(--accent);
  color: #fff;
  padding: 24px;
  border-radius: 24px;
}

.section-bg {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 32px;
  border-radius: 24px;
}

.section-bg .inline-cta {
  color: #fff;
}

.inline-cta {
  font-weight: 600;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.sticky-cta {
  position: sticky;
  bottom: 24px;
  align-self: flex-end;
  background: #fff;
  border: 1px solid var(--mist);
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(16, 32, 39, 0.15);
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.badge {
  background: var(--sun);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.form-wrap {
  background: #fff;
  border: 1px solid var(--mist);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--stone);
  font-family: inherit;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid var(--mist);
  padding-top: 18px;
  font-size: 14px;
}

.contact-block {
  background: var(--sand);
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: #ffffff;
  border: 1px solid var(--mist);
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 16px 40px rgba(16, 32, 39, 0.2);
  z-index: 20;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 820px;
}

.legal-content h2 {
  font-size: 22px;
}

.page-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--mist);
  background: #fff;
}

.service-row div {
  flex: 1 1 220px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  border: 1px solid var(--stone);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
}

.hero-image {
  border-radius: 20px;
  overflow: hidden;
  max-height: 360px;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .side-nav {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-right: none;
    border-bottom: 1px solid var(--mist);
    position: relative;
  }

  .nav-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
  }

  .offset-left,
  .offset-right {
    margin: 0;
    padding: 0;
    border: none;
  }
}

@media (max-width: 680px) {
  .hero {
    padding: 32px;
  }

  .main {
    padding: 28px 6vw 60px 6vw;
  }

  .sticky-cta {
    align-self: center;
  }
}
