* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1f2a34;
  --muted: #5d6b78;
  --accent: #2f6f6a;
  --soft: #eef3f2;
  --sand: #f7f3ed;
  --coal: #0f1c24;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-bar {
  padding: 22px 6%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid #e3e7ea;
}

.brand {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 6px 10px;
  border: 1px solid #d8dedf;
  border-radius: 999px;
  background: #fafcfc;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 70px 6%;
  align-items: center;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 320px;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-visual {
  flex: 1 1 320px;
  display: flex;
  justify-content: center;
}

.image-frame {
  width: 100%;
  max-width: 520px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #dde3e4;
  box-shadow: 0 18px 40px rgba(15, 28, 36, 0.12);
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.section-title {
  font-size: 2.1rem;
  line-height: 1.2;
}

.section-subtitle {
  color: var(--muted);
  font-size: 1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
}

.inline-link {
  font-weight: 600;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-item {
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid #d9e1e3;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.service-price {
  font-weight: 600;
  color: var(--accent);
}

.tone-panel {
  background: var(--soft);
}

.sand-panel {
  background: var(--sand);
}

.dark-panel {
  background: var(--coal);
  color: #f3f6f7;
}

.dark-panel a {
  color: #c7f0eb;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

.form-card {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #d4dde0;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-card label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-card input,
.form-card select,
.form-card textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cfd8dc;
  font-size: 1rem;
  width: 100%;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
}

.footer {
  padding: 40px 6%;
  border-top: 1px solid #e4eaed;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #f8fafb;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #ffffff;
  border: 1px solid #d9e1e3;
  border-radius: 999px;
  padding: 10px 16px;
  box-shadow: 0 18px 30px rgba(15, 28, 36, 0.18);
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 5;
}

.sticky-cta a {
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border: 1px solid #d8dee0;
  border-radius: 18px;
  padding: 18px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 6;
  box-shadow: 0 20px 36px rgba(15, 28, 36, 0.2);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
}

.cookie-actions button.secondary {
  background: transparent;
  color: var(--accent);
}

.page-hero {
  min-height: 240px;
}

.background-one {
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.background-two {
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.background-three {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.background-four {
  background-image: url("https://images.unsplash.com/photo-1523958203904-cdcb402031fd?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.background-five {
  background-image: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.background-six {
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.background-seven {
  background-image: url("https://images.unsplash.com/photo-1444653614773-995cb1ef9efa?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.background-eight {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.background-nine {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.background-ten {
  background-image: url("https://images.unsplash.com/photo-1474631245212-32dc3c8310c6?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.background-overlay {
  background-color: rgba(15, 28, 36, 0.55);
  padding: 70px 6%;
  min-height: 240px;
  display: flex;
  align-items: center;
}

.overlay-text {
  color: #f5f7f9;
  font-size: 2.2rem;
  max-width: 640px;
}

@media (max-width: 900px) {
  .split-section {
    padding: 50px 6%;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
