* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1c1a17;
  --muted: #5d5853;
  --sand: #f4efe8;
  --clay: #e9dfd3;
  --sage: #dde5de;
  --sky: #dde9f2;
  --terracotta: #d9b7a1;
  --accent: #2b6f6a;
  --accent-dark: #204f4b;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.header {
  padding: 22px 0;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.82rem;
  background: var(--terracotta);
  padding: 6px 12px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
  padding: 18px 0 60px;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-size: clamp(2.3rem, 3vw, 3.1rem);
  line-height: 1.2;
  margin: 0;
}

.hero-media {
  flex: 1 1 420px;
  min-height: 320px;
  border-radius: 26px;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: var(--sky);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.button-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
}

.inline-link {
  color: var(--accent-dark);
  font-weight: 600;
}

.section {
  padding: 50px 0;
}

.offset-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.offset-row.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  flex: 1 1 320px;
  background: #fff;
  padding: 26px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(24, 24, 24, 0.08);
}

.image-frame {
  flex: 1 1 320px;
  border-radius: 22px;
  overflow: hidden;
  min-height: 260px;
}

.bg-clay {
  background-color: var(--clay);
}

.bg-sage {
  background-color: var(--sage);
}

.bg-sky {
  background-color: var(--sky);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 240px;
}

.service-card-body {
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.story-band {
  background-image: url("https://images.unsplash.com/photo-1494526585095-c41746248156?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: var(--clay);
  border-radius: 28px;
  padding: 44px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.story-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.5);
}

.story-band-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 620px;
}

.form-panel {
  background: #fff;
  padding: 28px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lead-form label {
  font-weight: 600;
  font-size: 0.95rem;
}

.lead-form input,
.lead-form select {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d2ccc4;
  font-size: 1rem;
}

.footer {
  padding: 36px 0 60px;
  background: #efe7dc;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.95rem;
}

.disclaimer {
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-banner.hidden {
  display: none;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 100px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 9;
}

.page-hero {
  padding: 36px 0 30px;
}

.page-hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.page-hero-card {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  flex: 1 1 320px;
}

.page-hero-image {
  flex: 1 1 320px;
  border-radius: 20px;
  overflow: hidden;
  min-height: 220px;
}

.simple-section {
  padding: 26px 0 40px;
}

.policy-text {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
}

@media (max-width: 720px) {
  .sticky-cta {
    position: static;
    margin: 0 auto 16px;
    display: inline-flex;
  }
}
