* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f6f1ea;
  --ink: #1d1b1a;
  --muted: #5f5b58;
  --accent: #2f6f5e;
  --accent-dark: #1f4d41;
  --paper: #ffffff;
  --sand: #e7dfd6;
  --blush: #f1e6dd;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  border-bottom: 1px solid var(--sand);
  background: var(--paper);
}

.nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.ad-label {
  background: var(--sand);
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 24px 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.hero-copy {
  flex: 1 1 320px;
  background: var(--paper);
  padding: 32px;
  border-radius: 24px;
}

.hero-copy h1 {
  margin-top: 0;
  font-size: 36px;
  line-height: 1.2;
}

.hero-image {
  flex: 1 1 320px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--sand);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.column {
  flex: 1 1 300px;
  background: var(--paper);
  padding: 24px;
  border-radius: 18px;
}

.note {
  background: var(--blush);
  padding: 18px;
  border-radius: 14px;
  font-size: 14px;
  color: var(--muted);
}

.img-wrap {
  border-radius: 18px;
  overflow: hidden;
  background: #dcd1c6;
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bg-panel {
  border-radius: 24px;
  padding: 36px;
  background-image: url("https://images.unsplash.com/photo-1505691723518-36a5ac3be353?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.bg-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.55);
}

.bg-panel > * {
  position: relative;
  z-index: 1;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  background: var(--paper);
  padding: 18px;
  border-radius: 18px;
}

.service-card .img-wrap {
  flex: 0 0 160px;
  height: 120px;
}

.service-info {
  flex: 1 1 260px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.btn {
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.inline-link {
  color: var(--accent-dark);
  text-decoration: underline;
}

.form-card {
  background: var(--paper);
  padding: 28px;
  border-radius: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc6bc;
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 22px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer {
  background: var(--paper);
  padding: 32px 24px 40px;
  border-top: 1px solid var(--sand);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

#cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: var(--paper);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.16);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

#cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

@media (max-width: 820px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
