:root {
  --ink: #13261e;
  --forest: #1f4b3a;
  --moss: #6a8f6e;
  --sage: #dfe9e2;
  --stone: #f6f4f0;
  --sun: #e5c78f;
  --accent: #2f6c57;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--stone);
  line-height: 1.6;
}

a {
  color: var(--forest);
  text-decoration: none;
}

img {
  display: block;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  padding: 22px 0 10px;
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  font-size: 12px;
  color: var(--forest);
  background: var(--sage);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
  padding: 40px 0 60px;
}

.hero-text {
  flex: 1 1 360px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-text h1 {
  font-size: 40px;
  line-height: 1.1;
  margin: 0 0 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--forest);
  background: var(--forest);
  color: #fff;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: var(--forest);
}

.btn:hover,
.btn:focus {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.hero-media {
  flex: 1 1 420px;
  min-width: 300px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.image-frame {
  background: var(--sage);
  border-radius: 24px;
  padding: 10px;
}

.image-frame img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: cover;
}

.asym-block {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  padding: 50px 0;
}

.asym-block.reverse {
  flex-direction: row-reverse;
}

.asym-copy {
  flex: 1 1 320px;
}

.asym-media {
  flex: 1 1 360px;
}

.offset-card {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(19, 38, 30, 0.12);
  margin-top: -20px;
}

.cards-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 250px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 32px rgba(19, 38, 30, 0.08);
}

.service-card img {
  width: 100%;
  height: 160px;
  border-radius: 14px;
  object-fit: cover;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.canopy-band {
  background-image: url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 30px;
  padding: 60px 24px;
  color: #fff;
  margin: 20px 0 60px;
}

.canopy-content {
  background: rgba(19, 38, 30, 0.7);
  padding: 24px;
  border-radius: 18px;
  max-width: 520px;
}

.inline-testimonial {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
}

.inline-testimonial img {
  width: 140px;
  height: 140px;
  border-radius: 16px;
  object-fit: cover;
}

.form-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  padding: 40px 0 70px;
}

.form-panel {
  flex: 1 1 340px;
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(19, 38, 30, 0.1);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cbd5cc;
  font-size: 15px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.footer {
  padding: 40px 0 60px;
  border-top: 1px solid #d9dfda;
  margin-top: 40px;
}

.footer-note {
  font-size: 14px;
  color: #3b4a41;
  max-width: 720px;
}

.policy-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  padding: 30px 0 40px;
}

.policy-hero img {
  width: 100%;
  height: 240px;
  border-radius: 18px;
  object-fit: cover;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 30px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.split-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.split-list div {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: stretch;
}

.contact-card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
}

.hidden {
  display: none;
}

@media (max-width: 760px) {
  .hero-text h1 {
    font-size: 32px;
  }

  .sticky-cta {
    position: static;
    margin: 10px 0 0;
  }
}
