@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap");

:root {
  --ink: #1d2a22;
  --muted: #516358;
  --accent: #2f6f4f;
  --accent-light: #e3efe7;
  --sand: #f6f2ed;
  --stone: #e8ece7;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.78rem;
  color: var(--muted);
  max-width: 220px;
  text-align: right;
}

.section {
  padding: 72px 6vw;
}

.section.alt {
  background: var(--sand);
}

.section.tight {
  padding: 48px 6vw;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.hero {
  color: var(--white);
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
}

.hero-landing {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 24, 18, 0.25), rgba(15, 24, 18, 0.72));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.6rem);
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--white);
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.light {
  background: var(--white);
  color: var(--ink);
  border: 1px solid rgba(29, 42, 34, 0.12);
}

.btn:hover,
.btn:focus {
  filter: brightness(0.95);
}

.btn-link {
  font-weight: 600;
  color: var(--accent);
  border-bottom: 2px solid transparent;
}

.btn-link:hover,
.btn-link:focus {
  border-color: var(--accent);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
  display: flex;
  justify-content: center;
}

.media-frame {
  background: var(--stone);
  padding: 18px;
  border-radius: 24px;
  max-width: 420px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.bg-sage {
  background: #dfe7dc;
}

.bg-mist {
  background: #e4ece7;
}

.bg-fern {
  background: #d9e3de;
}

.bg-cloud {
  background: #dfe6e2;
}

.bg-drift {
  background: #e1e8e4;
}

.media-img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
  display: block;
}

.offset-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  padding: 24px;
  border-radius: 22px;
  box-shadow: 0 25px 45px rgba(29, 42, 34, 0.08);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.card {
  flex: 1 1 240px;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .media-frame {
  border-radius: 0;
  padding: 0;
  background: var(--stone);
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: baseline;
  border-bottom: 1px solid rgba(29, 42, 34, 0.12);
  padding-bottom: 12px;
}

.price-row span {
  font-weight: 600;
}

.quote-band {
  background-size: cover;
  background-position: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.quote-green {
  background-image: url("https://images.unsplash.com/photo-1470770841072-f978cf4d019e?w=1400&q=80");
}

.quote-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 30, 22, 0.66);
}

.quote-band .container {
  position: relative;
  z-index: 2;
}

.form-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.form-shell form {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-shell label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(29, 42, 34, 0.15);
  font-family: inherit;
}

.form-shell .hint {
  font-size: 0.85rem;
  color: var(--muted);
}

.form-shell .error {
  display: none;
  color: #9b2c2c;
  font-size: 0.9rem;
}

.form-shell form.is-invalid .error {
  display: block;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 10;
}

.footer {
  margin-top: auto;
  padding: 48px 6vw;
  background: var(--ink);
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.footer small {
  color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--white);
  border-radius: 18px;
  padding: 16px 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 20;
}

.cookie-banner.is-visible {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.inline-tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
}

.services-hero {
  background-image: url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?w=1400&q=80");
}

.about-hero {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
}

@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .ad-label {
    text-align: left;
    max-width: none;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
  }
}
