/* Base */
:root {
  --bg: #f7f4ef;
  --ink: #1f2a2e;
  --accent: #2f6f6d;
  --accent-2: #d27d2d;
  --muted: #6a6f73;
  --card: #ffffff;
  --sand: #efe7dc;
  --forest: #1f3c2f;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.top-bar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 0 10px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-disclosure {
  background: var(--sand);
  padding: 10px 14px;
  font-size: 13px;
  color: var(--muted);
  border-radius: 8px;
  max-width: 720px;
}

.split {
  display: flex;
  gap: 30px;
  align-items: stretch;
  padding: 52px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.panel-card {
  background: var(--card);
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.section-title {
  font-size: 28px;
  margin: 0 0 6px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: var(--accent-2);
}

.btn.outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.inline-cta {
  color: var(--accent-2);
  font-weight: 600;
}

.image-frame {
  background: #d9e2dc;
  border-radius: 20px;
  overflow: hidden;
  min-height: 260px;
  display: flex;
}

.bg-sage {
  background: #d5e0d6;
}

.bg-sand {
  background: #e5dfd4;
}

.bg-sky {
  background: #dbe2ea;
}

.bg-warm {
  background: #e9e2d7;
}

.bg-moss {
  background: #dfe6dd;
}

.bg-slate {
  background: #dae2e8;
}

.bg-latte {
  background: #efe4d6;
}

.image-frame.tall {
  min-height: 360px;
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #e3ded4;
  font-weight: 600;
}

.service-item span {
  color: var(--muted);
  font-weight: 500;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sand);
  font-size: 13px;
}

.form-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-card label {
  font-size: 14px;
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d4d1c9;
  font-family: inherit;
}

.note {
  font-size: 13px;
  color: var(--muted);
}

.testimonial {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 240px;
  background: var(--card);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card img {
  width: 100%;
  height: 160px;
  border-radius: 12px;
}

.footer {
  margin-top: auto;
  padding: 40px 0 50px;
  background: #0f1f1d;
  color: #d7ddd8;
}

.footer a {
  color: #d7ddd8;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 40px;
  justify-content: space-between;
}

.footer small {
  color: #9aa5a0;
}

.disclaimer {
  margin-top: 18px;
  font-size: 13px;
  color: #b9c2bd;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 320px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.legal-hero {
  padding: 40px 0 10px;
}

.legal-hero h1 {
  margin-bottom: 6px;
}

.legal-block {
  padding: 22px 0;
  border-bottom: 1px solid #e3ded4;
}

.legal-block:last-child {
  border-bottom: none;
}

.contact-block {
  background: var(--card);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.address {
  white-space: pre-line;
}

@media (max-width: 920px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
