* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1d2621;
  --muted: #5a6b60;
  --accent: #2f7f5a;
  --accent-dark: #1f5a3f;
  --sand: #f4f1ea;
  --mist: #eef4f0;
  --river: #d6e9e0;
  --sun: #f7e9b0;
  --shadow: rgba(24, 36, 29, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  background-color: #dfe7e3;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  padding: 24px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #fff;
  border-bottom: 1px solid #e6eee9;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: lowercase;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 240px;
}

.cta-link {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-link:hover {
  background: var(--accent-dark);
  text-decoration: none;
}

.main {
  flex: 1;
}

.section {
  padding: 72px 6%;
  position: relative;
}

.section.sand {
  background: var(--sand);
}

.section.mist {
  background: var(--mist);
}

.section.river {
  background: var(--river);
}

.section.sun {
  background: var(--sun);
}

.section-header {
  max-width: 720px;
  margin-bottom: 32px;
}

.section-header h2 {
  margin: 0 0 12px 0;
  font-size: 2rem;
}

.section-header p {
  margin: 0;
  color: var(--muted);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 64px 6% 72px;
}

.hero-top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.hero-copy {
  flex: 1 1 320px;
}

.hero-copy h1 {
  font-size: 2.8rem;
  margin: 0 0 16px 0;
}

.hero-copy p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-media {
  flex: 1 1 320px;
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  background: #fff;
  box-shadow: 0 24px 60px var(--shadow);
  padding: 24px;
  border-radius: 24px;
  max-width: 420px;
  transform: translateY(10px);
}

.hero-image {
  border-radius: 20px;
  overflow: hidden;
  background-color: #dfe9e2;
}

.hero-meta {
  margin-top: 16px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
}

.offset-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.offset-row.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  flex: 1 1 280px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 50px var(--shadow);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.offset-card h3 {
  margin: 0;
  font-size: 1.3rem;
}

.media-frame {
  border-radius: 18px;
  overflow: hidden;
  background-color: #dfe7e3;
}

.media-frame img {
  width: 100%;
  height: 220px;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e0efe7;
  color: var(--accent-dark);
  font-weight: 600;
  font-size: 0.8rem;
  width: fit-content;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 18px 45px var(--shadow);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 240px;
}

.service-card img {
  width: 100%;
  height: 160px;
  border-radius: 16px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.split-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}

.split-notes .text {
  flex: 1 1 320px;
}

.split-notes .visual {
  flex: 1 1 320px;
  background-color: #e1e8e2;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 44px var(--shadow);
}

.split-notes img {
  width: 100%;
  height: 320px;
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.process-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 14px 30px var(--shadow);
}

.process-step span {
  font-weight: 700;
  color: var(--accent-dark);
}

.callout {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 16px 36px var(--shadow);
}

.callout button {
  align-self: flex-start;
}

.form-wrap {
  background: #fff;
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 20px 48px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 720px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border: 1px solid #d5ddd8;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
}

.button {
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: #fff;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.button:hover {
  background: var(--accent-dark);
}

.button.secondary:hover {
  background: #f1f6f3;
}

.footer {
  padding: 32px 6%;
  background: #122018;
  color: #e9efe9;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer a {
  color: #e9efe9;
}

.footer-col {
  flex: 1 1 220px;
}

.footer small {
  color: #c6d2cb;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 14px 40px var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 40;
}

.sticky-cta a {
  font-weight: 600;
  color: var(--accent-dark);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 360px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 40px var(--shadow);
  padding: 18px;
  z-index: 50;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.note {
  font-size: 0.95rem;
  color: var(--muted);
}

.wide-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.side-by-side {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.side-by-side .card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 16px 36px var(--shadow);
}

.badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.plain-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.page-hero {
  padding: 68px 6% 54px;
  background: var(--mist);
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.page-hero .copy {
  flex: 1 1 320px;
}

.page-hero .visual {
  flex: 1 1 320px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #dfe8e2;
}

.page-hero img {
  width: 100%;
  height: 260px;
}

.legal-content {
  max-width: 820px;
}

.contact-card {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 16px 34px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.map-frame {
  border-radius: 20px;
  overflow: hidden;
  background-color: #dfe7e3;
}

.map-frame img {
  width: 100%;
  height: 280px;
}

@media (max-width: 900px) {
  .hero-copy h1 {
    font-size: 2.2rem;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}

@media (max-width: 720px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .ad-label {
    max-width: none;
  }
}
