:root {
  --bg: #f6f3ee;
  --ink: #1b1b1b;
  --muted: #5b5b5b;
  --accent: #2a6f6a;
  --accent-soft: #e3efec;
  --gold: #c6923c;
  --line: #e4ded6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

img.cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

header {
  padding: 24px 6vw;
  border-bottom: 1px solid var(--line);
  background: #fffaf3;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.ad-disclosure {
  font-size: 0.82rem;
  background: #efe2d1;
  color: #4a3b1b;
  padding: 6px 12px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

.section {
  padding: 72px 6vw;
}

.section.alt {
  background: var(--bg);
}

.split {
  display: flex;
  gap: 36px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split > div {
  flex: 1 1 320px;
  min-width: 280px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.kicker {
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
}

h1, h2, h3 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-weight: 600;
  margin: 10px 0 16px;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
}

h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
}

h3 {
  font-size: 1.2rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
}

.inline-link {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.image-frame {
  background: #ede7df;
  border-radius: 24px;
  overflow: hidden;
  min-height: 280px;
}

.image-frame.compact {
  min-height: 120px;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  display: flex;
  gap: 18px;
  padding: 18px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  align-items: center;
  flex-wrap: wrap;
}

.service-card .price {
  font-weight: 700;
  color: var(--accent);
}

.badge {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.form-card {
  background: #fff;
  border-radius: 28px;
  padding: 26px;
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input, select, textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--accent-soft);
  border-color: var(--accent);
}

.highlight-panel {
  background: #1f2d2c;
  color: #fdf7ee;
  border-radius: 24px;
  padding: 24px;
}

.highlight-panel ul {
  padding-left: 18px;
}

.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 10;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.testimonial {
  background: #fff;
  border-radius: 20px;
  padding: 18px;
  border: 1px solid var(--line);
}

.footer {
  background: #111;
  color: #f3eee6;
  padding: 50px 6vw;
}

.footer a {
  color: inherit;
}

.footer-columns {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.footer-columns div {
  flex: 1 1 200px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #cfc7bd;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 18px 20px;
  background: #fffaf3;
  border: 1px solid var(--line);
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.notice {
  background: #f4efe8;
  border-left: 4px solid var(--gold);
  padding: 16px;
  border-radius: 12px;
  color: var(--muted);
}

@media (max-width: 720px) {
  header {
    padding: 20px 6vw;
  }

  .section {
    padding: 54px 6vw;
  }

  .sticky-cta {
    right: 14px;
    left: 14px;
    bottom: 14px;
  }
}
