* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f2933;
  --muted: #5f6c7b;
  --accent: #2f6d67;
  --accent-soft: #e4f1ef;
  --sand: #f6f1ea;
  --slate: #e6edf2;
  --warm: #f2e7d8;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  display: block;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.site-header {
  padding: 24px 0 10px;
  border-bottom: 1px solid #e7e7e7;
}

.nav-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.logo {
  font-size: 20px;
  font-weight: 600;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  font-size: 15px;
}

.ad-label {
  font-size: 13px;
  color: var(--muted);
}

.hero {
  padding: 48px 0;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.split--reverse {
  flex-direction: row-reverse;
}

.split__content {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split__media {
  flex: 1 1 320px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.img-frame {
  width: 100%;
  background-color: var(--slate);
  border-radius: 18px;
  overflow: hidden;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 54px 0;
}

.section--sand {
  background: var(--sand);
}

.section--slate {
  background: var(--slate);
}

.section--warm {
  background: var(--warm);
}

.section--backdrop {
  background-color: #d7e2e4;
  background-image: url("https://images.unsplash.com/photo-1501594907352-04cda38ebc29?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.section--backdrop .lead,
.section--backdrop .eyebrow {
  color: #eef4f5;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--muted);
}

.headline {
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.2;
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.btn--ghost {
  background: transparent;
  color: var(--accent);
}

.btn--dark {
  background: #1f2933;
  border-color: #1f2933;
}

.inline-link {
  font-weight: 600;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 230px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #e5e5e5;
}

.service-card .img-frame {
  height: 150px;
}

.price-tag {
  font-weight: 700;
  color: var(--accent);
}

.note-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-wrap {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid #e6e6e6;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d2d2d2;
  font-size: 15px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  border: 1px solid #e2e2e2;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  z-index: 20;
}

.footer {
  padding: 40px 0 60px;
  background: #f2f2f2;
  margin-top: 40px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 14px;
  color: var(--muted);
}

.footer-col {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  background: #ffffff;
  border: 1px solid #e3e3e3;
  border-radius: 16px;
  padding: 16px 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.simple-hero {
  padding: 36px 0 20px;
}

.simple-hero .img-frame {
  height: 240px;
}

.content-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--muted);
  font-size: 16px;
}

.tagline {
  font-size: 14px;
  color: var(--muted);
}

.table-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table-row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid #e1e1e1;
  gap: 16px;
}

@media (max-width: 860px) {
  .sticky-cta {
    position: static;
    margin: 18px 24px 0;
    justify-content: center;
  }
  .site-nav {
    gap: 10px;
  }
}
