* {
  box-sizing: border-box;
}

:root {
  --ink: #1b1f24;
  --muted: #5a6470;
  --accent: #2f7a6a;
  --accent-dark: #255f54;
  --sand: #f3f1ec;
  --mist: #eef3f2;
  --sun: #f1e4c7;
  --shadow: rgba(27, 31, 36, 0.08);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

button {
  border: none;
  cursor: pointer;
  font: inherit;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  padding: 24px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  font-size: 0.95rem;
  color: var(--ink);
}

.ad-label {
  font-size: 0.85rem;
  background: var(--sand);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 24px;
  padding: 40px 6vw 60px;
}

.hero-copy {
  flex: 1 1 320px;
  background: var(--mist);
  padding: 36px;
  border-radius: 24px;
  box-shadow: 0 20px 60px var(--shadow);
}

.hero-copy h1 {
  font-size: 2.4rem;
  margin-top: 0;
}

.hero-visual {
  flex: 1 1 320px;
  border-radius: 30px;
  background-color: #d9e3df;
  background-image: url("https://images.pexels.com/photos/18873626/pexels-photo-18873626.jpeg");
  background-size: cover;
  background-position: center;
  min-height: 340px;
  position: relative;
}

.floating-note {
  position: absolute;
  bottom: 24px;
  left: -16px;
  background: #fff;
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: 0 16px 40px var(--shadow);
  max-width: 220px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.btn-primary,
.btn-soft {
  padding: 12px 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-soft {
  background: #fff;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.section {
  padding: 60px 6vw;
}

.section.mist {
  background: var(--mist);
}

.section.sand {
  background: var(--sand);
}

.section.sun {
  background: var(--sun);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.image-card {
  flex: 1 1 280px;
  background: #dde5e2;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 28px var(--shadow);
}

.content-card {
  flex: 1 1 300px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 24px var(--shadow);
  display: flex;
  flex-direction: column;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.micro-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.micro-card {
  flex: 1 1 200px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 8px 18px var(--shadow);
}

.testimonial {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 24px var(--shadow);
}

.form-shell {
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 12px 30px var(--shadow);
  max-width: 700px;
}

.service-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-form label {
  font-weight: 600;
}

.service-form input,
.service-form select,
.service-form textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ccd4d0;
  font: inherit;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw 50px;
  background: #121614;
  color: #f3f6f5;
}

.footer a {
  color: #d7efe7;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: rgba(18, 22, 20, 0.95);
  color: #fff;
  padding: 12px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 14px 28px var(--shadow);
  max-width: 320px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.hidden {
  display: none;
}

.section-title {
  font-size: 1.6rem;
  margin-top: 0;
}

.inline-cta {
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
}

.small {
  font-size: 0.9rem;
  color: var(--muted);
}

.legal-block {
  max-width: 900px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-card {
  flex: 1 1 260px;
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 10px 24px var(--shadow);
}

.img-bg-1 {
  background-color: #dfe6e3;
}

.img-bg-2 {
  background-color: #e2e7e6;
}

.img-bg-3 {
  background-color: #e6ebe8;
}

.img-bg-4 {
  background-color: #e1e7e4;
}

.img-bg-5 {
  background-color: #e0e6e3;
}

.img-bg-6 {
  background-color: #dfe5e1;
}

.img-bg-7 {
  background-color: #e3e8e6;
}

.img-bg-8 {
  background-color: #dde4e2;
}
