* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1c1f1a;
  --muted: #5b6659;
  --sage: #dfe7db;
  --moss: #3d5a45;
  --sand: #f3efe7;
  --clay: #c8b9a3;
  --accent: #d98c5f;
  --deep: #223127;
  --white: #ffffff;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0 12px;
}

.nav .brand {
  font-weight: 700;
  letter-spacing: 0.8px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-cta {
  padding: 10px 18px;
  border: 1px solid var(--moss);
  border-radius: 999px;
  font-weight: 600;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 0 60px;
}

.hero-visual {
  position: relative;
  background: var(--deep);
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(18, 27, 20, 0.6), rgba(18, 27, 20, 0.2));
}

.hero-text {
  position: relative;
  padding: 28px;
  color: var(--white);
  z-index: 1;
  max-width: 520px;
}

.hero-text h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  background: var(--accent);
  color: var(--white);
}

.button.alt {
  background: transparent;
  border: 1px solid var(--white);
}

.section {
  padding: 56px 0;
  position: relative;
}

.section.light {
  background: var(--white);
  border-radius: 28px;
  padding: 56px 28px;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.section-sub {
  color: var(--muted);
  max-width: 640px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.offset-card {
  background: var(--sage);
  padding: 28px;
  border-radius: 18px;
  transform: translateY(-20px);
}

.floating-note {
  position: absolute;
  top: 12px;
  right: 20px;
  background: var(--clay);
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}

.service-card {
  background: var(--white);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(60, 90, 69, 0.2);
}

.service-card h3 {
  font-size: 1.2rem;
}

.price {
  font-weight: 700;
  color: var(--moss);
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gallery-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--deep);
  color: var(--white);
  padding: 28px;
  border-radius: 20px;
}

.form-wrap {
  background: var(--white);
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(60, 90, 69, 0.25);
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.cta-band {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px;
  background: var(--moss);
  color: var(--white);
  border-radius: 22px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  z-index: 20;
}

.footer {
  margin-top: 40px;
  padding: 40px 0;
  border-top: 1px solid rgba(60, 90, 69, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--deep);
  color: var(--white);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: var(--white);
}

.cookie-reject {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.mini-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mini-card {
  background: var(--sage);
  padding: 16px;
  border-radius: 14px;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--clay);
  font-size: 0.8rem;
  font-weight: 600;
}

.page-hero {
  padding: 36px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-hero img {
  border-radius: 18px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-block {
  background: var(--white);
  padding: 26px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 840px) {
  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-visual {
    flex: 1.1;
    min-height: 420px;
  }

  .hero-text {
    padding: 40px;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .service-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1;
    min-width: 220px;
  }

  .gallery {
    flex-direction: row;
  }

  .gallery-item {
    flex: 1;
  }

  .mini-grid {
    flex-direction: row;
  }

  .mini-card {
    flex: 1;
  }

  .footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
