* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #0c1f1a;
  --muted: #51635f;
  --accent: #0c7c66;
  --accent-soft: #e3f4ee;
  --sunset: #f4efe7;
  --storm: #112821;
  --surface: #ffffff;
  --shadow: 0 20px 45px rgba(12, 31, 26, 0.12);
  --radius: 24px;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #f8faf9;
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
  border-radius: 18px;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 24px 0;
}

.split-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 24px;
}

.brand {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--accent);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -40px;
  width: 240px;
  height: 240px;
  background: var(--accent-soft);
  border-radius: 50%;
  opacity: 0.8;
}

.hero-text {
  flex: 1 1 320px;
  z-index: 1;
}

.hero-text h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
}

.hero-text p {
  color: var(--muted);
  margin-bottom: 18px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  background: var(--accent);
  color: white;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.hero-media {
  flex: 1 1 320px;
  transform: translateY(10px);
}

.section {
  margin: 64px 0;
}

.section h2 {
  font-size: clamp(26px, 3vw, 36px);
  margin-bottom: 16px;
}

.section p {
  color: var(--muted);
}

.offset-blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.offset-card {
  background: var(--surface);
  padding: 24px;
  border-radius: 18px;
  flex: 1 1 260px;
  box-shadow: var(--shadow);
}

.offset-card:nth-child(2) {
  transform: translateY(24px);
}

.offset-card h3 {
  margin-bottom: 10px;
}

.media-slab {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.media-slab .slab-text {
  flex: 1 1 320px;
}

.media-slab .slab-media {
  flex: 1 1 320px;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  background: var(--accent-soft);
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 12px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: var(--surface);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  height: 160px;
}

.quote-strip {
  background: var(--storm);
  color: white;
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote-strip span {
  font-size: 14px;
  color: #c9d7d3;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  background: var(--surface);
  padding: 18px 22px;
  border-radius: 18px;
  align-items: center;
  box-shadow: var(--shadow);
}

.service-item h3 {
  flex: 1 1 220px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.process-line {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.process-step {
  flex: 1 1 220px;
  background: var(--sunset);
  padding: 18px;
  border-radius: 16px;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  background: var(--surface);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-wrap form {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-wrap label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border: 1px solid #d9e2df;
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.footer {
  padding: 36px 0 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.footer a {
  color: inherit;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  background: var(--storm);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--surface);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 16px;
  display: none;
  flex-wrap: wrap;
  gap: 12px;
  z-index: 12;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-banner p {
  flex: 1 1 240px;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.pill {
  background: var(--accent-soft);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
}

.page-title {
  margin-top: 24px;
  font-size: clamp(28px, 3.5vw, 40px);
}

.simple-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.simple-layout .column {
  flex: 1 1 300px;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--muted);
}

.contact-card {
  background: var(--surface);
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (max-width: 720px) {
  .split-nav {
    flex-direction: column;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: center;
  }
}
