* {
  box-sizing: border-box;
}

:root {
  --ink: #1f2421;
  --muted: #5a5f5c;
  --accent: #2f6f6d;
  --accent-soft: #e3f1ee;
  --sand: #f6f2ea;
  --leaf: #e7efe3;
  --sky: #e8f1f8;
  --rose: #f6e7e5;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.55;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

header {
  padding: 28px 6vw 10px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--rose);
  color: #7a3a37;
  white-space: nowrap;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.section {
  padding: 22px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-tight {
  padding-top: 0;
}

.hero {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
  min-width: 280px;
}

.hero-media {
  flex: 1 1 360px;
  min-height: 320px;
  border-radius: 26px;
  overflow: hidden;
  background: var(--sand);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.08);
}

.offset-row {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: stretch;
}

.offset-card {
  flex: 1 1 280px;
  padding: 24px;
  border-radius: 22px;
  background: var(--accent-soft);
  box-shadow: 0 18px 30px rgba(47, 111, 109, 0.12);
}

.offset-card.shift {
  margin-top: 36px;
  background: var(--sky);
}

.image-frame {
  flex: 1 1 240px;
  min-height: 220px;
  border-radius: 22px;
  overflow: hidden;
  background: var(--leaf);
}

.story-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.story-text {
  flex: 1 1 320px;
}

.story-image {
  flex: 1 1 260px;
  border-radius: 18px;
  overflow: hidden;
  min-height: 240px;
  background: var(--rose);
}

.service-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 260px;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #eef0ee;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.service-media {
  min-height: 180px;
  background: var(--sand);
}

.service-body {
  padding: 18px 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
  background: #ffffff;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
}

.layered {
  background: var(--sand);
  border-radius: 26px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.bg-meadow {
  background-image: linear-gradient(rgba(246, 242, 234, 0.92), rgba(246, 242, 234, 0.92)),
    url("https://images.unsplash.com/photo-1518717758536-85ae29035b6d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.layered::after {
  content: "";
  position: absolute;
  inset: 16px -40px auto auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(47, 111, 109, 0.12);
}

.form-wrap {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  align-items: stretch;
}

.form-card {
  flex: 1 1 320px;
  padding: 24px;
  border-radius: 24px;
  background: var(--leaf);
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cdd6cf;
  font-size: 1rem;
  font-family: inherit;
  background: #ffffff;
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  margin: 0 6vw 24px;
  padding: 12px 18px;
  background: #1f2421;
  color: #ffffff;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.sticky-cta a {
  color: #ffffff;
  border: 1px solid #ffffff;
  padding: 8px 14px;
  border-radius: 999px;
}

.testimonial {
  padding: 18px 22px;
  border-radius: 18px;
  background: var(--sky);
}

footer {
  padding: 36px 6vw 48px;
  background: #f8f7f5;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-columns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-card {
  flex: 1 1 240px;
}

.cookie-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  max-width: 320px;
  background: #ffffff;
  border: 1px solid #d7d7d7;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  padding: 16px;
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.hero-banner {
  border-radius: 20px;
  overflow: hidden;
  background: var(--sky);
  min-height: 220px;
}

.legal-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 820px;
}

.muted {
  color: var(--muted);
}

.note {
  font-size: 0.95rem;
  padding: 12px 16px;
  border-left: 4px solid var(--accent);
  background: #f5faf9;
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
