* {
  box-sizing: border-box;
}

:root {
  --ink: #0f1b14;
  --muted: #4b5a52;
  --accent: #2f7d4b;
  --accent-soft: #e4f3ea;
  --sand: #f4f1eb;
  --stone: #e1e6e0;
  --ink-soft: #24332b;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.nav {
  padding: 20px 0 10px;
}

.nav-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  font-size: 20px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
  font-size: 14px;
}

.nav-label {
  font-size: 12px;
  padding: 6px 10px;
  background: var(--accent-soft);
  border-radius: 999px;
}

.hero {
  padding: 36px 0 80px;
  position: relative;
}

.hero-wrap {
  display: flex;
  gap: 26px;
  align-items: stretch;
}

.hero-copy {
  flex: 1.1;
  padding: 30px 28px;
  background: var(--sand);
  border-radius: 28px;
  position: relative;
  z-index: 2;
  margin-top: 40px;
}

.hero-copy h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin: 0 0 16px;
}

.hero-copy p {
  margin: 0 0 20px;
  color: var(--muted);
}

.hero-media {
  flex: 1;
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  min-height: 420px;
  background: #cfd7cf;
  margin-top: -20px;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 26px;
  pointer-events: none;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.btn-soft {
  background: var(--ink-soft);
  color: #fff;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
}

.offset-section {
  padding: 70px 0;
  position: relative;
}

.offset-wrap {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.offset-wrap.reverse {
  flex-direction: row-reverse;
}

.offset-card {
  flex: 1;
  background: #fff;
  padding: 26px;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(16, 28, 20, 0.08);
  position: relative;
  z-index: 2;
}

.offset-media {
  flex: 1;
  min-height: 300px;
  border-radius: 28px;
  overflow: hidden;
  background: #d1ddd2;
  margin-top: 34px;
}

.offset-card h2,
.offset-card h3 {
  margin-top: 0;
}

.list {
  padding-left: 18px;
  margin: 16px 0;
  color: var(--muted);
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 calc(50% - 18px);
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(18, 32, 24, 0.08);
  display: flex;
  flex-direction: column;
}

.service-media {
  height: 190px;
  background: #d7e2da;
}

.service-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  font-size: 18px;
  color: var(--accent);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.story-strip {
  display: flex;
  gap: 18px;
  align-items: center;
  background: var(--accent-soft);
  padding: 20px 24px;
  border-radius: 20px;
}

.strip-note {
  font-size: 14px;
  color: var(--muted);
}

.layered {
  background: var(--sand);
  padding: 64px 0;
}

.layered-inner {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.layered-panel {
  flex: 1.2;
  background: #fff;
  border-radius: 26px;
  padding: 24px;
  position: relative;
  margin-top: -40px;
  box-shadow: 0 18px 40px rgba(17, 29, 21, 0.12);
}

.layered-panel p {
  color: var(--muted);
}

.layered-media {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  min-height: 280px;
  background: #d3ded6;
}

.form-section {
  padding: 70px 0 90px;
}

.form-wrap {
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.form-card {
  flex: 1.1;
  background: #fff;
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 16px 40px rgba(15, 27, 20, 0.08);
}

.form-side {
  flex: 0.9;
  background: var(--accent-soft);
  border-radius: 24px;
  padding: 24px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.field input,
.field select,
.field textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #ccd7cf;
  font-size: 15px;
}

.form-status {
  font-size: 14px;
  color: var(--muted);
  margin-top: 8px;
}

.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 22px;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: 0 10px 24px rgba(10, 18, 13, 0.25);
  z-index: 10;
}

.floating-cta:hover {
  transform: translateY(-2px);
}

.footer {
  padding: 40px 0 60px;
  background: var(--ink);
  color: #f4f6f2;
}

.footer a {
  color: #f4f6f2;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: space-between;
}

.footer-col {
  min-width: 220px;
}

.footer small {
  color: #b9c4bb;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 28px rgba(12, 20, 15, 0.18);
  z-index: 12;
}

.cookie-banner p {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 40px 0 30px;
}

.page-hero h1 {
  margin: 0 0 10px;
}

.page-block {
  padding: 24px 0 60px;
}

.plain-card {
  background: #fff;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 12px 30px rgba(15, 27, 20, 0.08);
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 15px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero-wrap,
  .offset-wrap,
  .layered-inner,
  .form-wrap {
    flex-direction: column;
  }

  .hero-copy {
    margin-top: 0;
  }

  .hero-media,
  .offset-media {
    margin-top: 0;
  }

  .service-card {
    flex: 1 1 100%;
  }

  .floating-cta {
    right: 14px;
    bottom: 14px;
  }
}
