:root {
  --ink: #1b1f1d;
  --muted: #5b645f;
  --accent: #2f6f5a;
  --accent-soft: #e8f1ed;
  --surface: #f7f5f2;
  --stone: #d9d2c8;
  --night: #111714;
  --sun: #f4efe7;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  padding: 24px 8%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a,
.nav span {
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 10px;
  border: 1px solid #c2c2c2;
  border-radius: 999px;
  font-size: 0.8rem;
  background: #f8f8f8;
}

.main {
  flex: 1;
}

.section {
  padding: 72px 8%;
}

.split {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

h1, h2, h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  margin: 0 0 16px;
  line-height: 1.2;
}

p {
  margin: 0 0 16px;
}

.primary-btn,
.ghost-btn,
.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  font-size: 0.95rem;
  cursor: pointer;
}

.primary-btn {
  background: var(--accent);
  color: #ffffff;
}

.ghost-btn {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.inline-link {
  padding: 0;
  background: none;
  border: none;
  color: var(--accent);
  font-weight: 600;
}

.hero {
  background: var(--sun);
}

.hero-visual {
  border-radius: 24px;
  overflow: hidden;
  background: #e0e5df;
}

.bg-panel {
  background: var(--accent-soft);
  border-radius: 28px;
  padding: 36px;
}

.statement {
  background: url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?w=1400&q=80") center/cover no-repeat;
  color: #ffffff;
  position: relative;
}

.statement::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 23, 20, 0.62);
}

.statement .content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e3e3e3;
  align-items: center;
}

.service-card img {
  width: 110px;
  height: 110px;
  border-radius: 16px;
  background: #e6e0d8;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #eef4f1;
  color: var(--accent);
  font-size: 0.8rem;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  padding: 24px;
  background: #f3f0ea;
  border-radius: 20px;
}

.form-card {
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid #e4e4e4;
  padding: 28px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfd4d1;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.image-frame {
  border-radius: 26px;
  overflow: hidden;
  background: #dfe5e0;
}

.image-frame img {
  height: 100%;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote {
  padding: 18px;
  background: #f7f2ec;
  border-radius: 16px;
}

.footer {
  padding: 40px 8%;
  background: #121714;
  color: #f4efe7;
}

.footer a {
  color: #f4efe7;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.legal {
  font-size: 0.9rem;
  color: #cfd6d0;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  max-width: 320px;
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.page-hero {
  background: var(--surface);
}

.page-hero img {
  border-radius: 24px;
  background: #e1e1e1;
}

.contact-block {
  background: #f3f0ea;
  padding: 24px;
  border-radius: 18px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-page {
  max-width: 760px;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

@media (max-width: 860px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sticky-cta {
    position: static;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
  }
}
