:root {
  color-scheme: light;
  --bg: #f7f6f2;
  --ink: #1f2a26;
  --muted: #4f5b55;
  --accent: #2f7a5f;
  --accent-2: #d4b067;
  --soft: #e6e2da;
  --deep: #0f2f26;
  --shadow: 0 18px 45px rgba(15, 47, 38, 0.12);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 7vw 10px;
  position: relative;
  z-index: 3;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 7vw 80px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0 0 20% 35%;
  background: linear-gradient(145deg, rgba(47, 122, 95, 0.14), rgba(212, 176, 103, 0.12));
  border-radius: 42px;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin: 0 0 14px;
}

.hero p {
  color: var(--muted);
  margin: 0 0 20px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  border: none;
  background: var(--accent);
  color: white;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
  box-shadow: none;
}

.hero-media {
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}

.hero-media img {
  max-width: 520px;
  box-shadow: var(--shadow);
}

.section {
  padding: 70px 7vw;
  position: relative;
}

.section.bg-surface {
  background-image: url("https://images.unsplash.com/photo-1501045661006-fcebe0257c3f?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fdfcf9;
}

.section.bg-surface .asym-card,
.section.bg-surface .asym-card.dark {
  background: rgba(15, 47, 38, 0.85);
  color: #fdfcf9;
}

.section.alt {
  background: white;
  border-radius: 36px;
  margin: 0 5vw;
  box-shadow: var(--shadow);
}

.asym-row {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.asym-card {
  background: white;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.asym-card.dark {
  background: var(--deep);
  color: #f8f6f1;
}

.asym-card.dark p {
  color: rgba(248, 246, 241, 0.8);
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.metric {
  flex: 1 1 160px;
  background: var(--soft);
  padding: 16px;
  border-radius: 18px;
  font-weight: 600;
}

.storyline {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.storyline p {
  margin: 0;
}

.gallery-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial {
  background: rgba(255, 255, 255, 0.92);
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: white;
  padding: 20px;
  border-radius: 18px;
}

.step span {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price-card {
  background: white;
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
}

.form-wrap {
  background: white;
  padding: 34px;
  border-radius: 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-wrap label {
  font-weight: 600;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7d3cb;
  font-family: inherit;
}

.form-wrap button {
  align-self: flex-start;
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 5;
  background: white;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 12px;
  align-items: center;
}

.sticky-cta a {
  background: var(--accent);
  color: white;
  padding: 10px 16px;
  border-radius: 999px;
}

.footer {
  padding: 50px 7vw 80px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border-radius: 999px;
  padding: 10px 18px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: white;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: transparent;
  color: var(--accent);
}

.page-hero {
  padding: 40px 7vw 20px;
}

.page-hero h1 {
  margin-bottom: 12px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: white;
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
    gap: 50px;
  }

  .hero-media {
    justify-content: center;
  }

  .asym-row {
    flex-direction: row;
    align-items: flex-start;
  }

  .asym-row.reverse {
    flex-direction: row-reverse;
  }

  .gallery-row {
    flex-direction: row;
  }

  .storyline {
    flex-direction: row;
  }

  .testimonials {
    flex-direction: row;
  }

  .steps {
    flex-direction: row;
  }

  .pricing {
    flex-direction: row;
  }

  .contact-grid {
    flex-direction: row;
  }
}
