* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1a1a1a;
  --muted: #5f6470;
  --brand: #2f6f5a;
  --brand-dark: #255847;
  --cream: #f5f1ea;
  --slate: #1f2a33;
  --sand: #efe7dd;
  --line: #e3dbd0;
  --accent: #c47d3a;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #faf8f5;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 24px 6vw 12px;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
}

.hero {
  display: flex;
  gap: 32px;
  padding: 40px 6vw 20px;
  align-items: stretch;
}

.hero-copy {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-copy h1 {
  font-size: clamp(2rem, 2.6vw, 3rem);
  line-height: 1.15;
}

.hero-copy p {
  color: var(--muted);
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--brand);
}

.hero-media {
  flex: 1;
  position: relative;
  background: var(--sand);
  padding: 14px;
  border-radius: 22px;
}

.hero-media img {
  width: 100%;
  height: 100%;
  border-radius: 16px;
}

.floating-note {
  position: absolute;
  bottom: -24px;
  left: -20px;
  background: #fff;
  padding: 14px 16px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
  max-width: 220px;
  font-size: 0.9rem;
}

.section {
  padding: 50px 6vw;
}

.section.asym {
  display: flex;
  gap: 30px;
  align-items: center;
}

.section.asym.reverse {
  flex-direction: row-reverse;
}

.section .eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: var(--accent);
}

.section h2 {
  font-size: clamp(1.6rem, 2.2vw, 2.3rem);
  margin: 10px 0 14px;
}

.section h1 {
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  margin: 10px 0 14px;
}

.section p {
  color: var(--muted);
}

.media-card {
  background: var(--cream);
  padding: 18px;
  border-radius: 18px;
}

.media-card img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metric-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.metric {
  flex: 1;
  min-width: 160px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 16px;
  border-radius: 14px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 260px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card .image-wrap {
  background: #e8e1d7;
  padding: 10px;
}

.service-card img {
  width: 100%;
  height: 180px;
  border-radius: 12px;
}

.service-card .body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--brand-dark);
}

.callout {
  background: var(--slate);
  color: #fff;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote {
  background: #fff;
  border-left: 4px solid var(--accent);
  padding: 18px 20px;
  border-radius: 12px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  padding: 26px;
  border-radius: 20px;
  border: 1px solid var(--line);
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

footer {
  margin-top: auto;
  padding: 30px 6vw 40px;
  background: #f0ebe3;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.disclaimer {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  padding: 12px 16px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 18px;
  border-radius: 16px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  flex: 1;
  border-radius: 999px;
  border: 1px solid var(--brand);
  padding: 8px 12px;
  background: var(--brand);
  color: #fff;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: transparent;
  color: var(--brand);
}

.legal-page {
  padding: 40px 6vw 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.legal-page h1 {
  font-size: 2rem;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 22px;
  max-width: 520px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}

.service-row span {
  font-weight: 700;
  color: var(--brand-dark);
}

.thanks-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 26px;
  max-width: 620px;
}

@media (max-width: 960px) {
  .hero,
  .section.asym {
    flex-direction: column;
  }

  .floating-note {
    position: static;
    margin-top: 12px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
