@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600&display=swap");

:root {
  --ink: #141414;
  --muted: #5f6165;
  --sand: #f4f0ea;
  --mist: #eef3f6;
  --slate: #1f2a35;
  --accent: #2b6f8a;
  --accent-soft: #d7e8ef;
  --sun: #e7b45a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  border-bottom: 1px solid #e5e5e5;
  background: #fff;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.brand {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--slate);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 56px 6vw;
  background: var(--mist);
}

.hero-split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-copy h1 {
  font-size: 36px;
  line-height: 1.1;
  margin: 0 0 16px;
}

.hero-copy p {
  margin: 0 0 20px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
}

.button-primary {
  background: var(--slate);
  color: #fff;
}

.button-outline {
  border-color: var(--slate);
  color: var(--slate);
  background: transparent;
}

.button-accent {
  background: var(--accent);
  color: #fff;
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 6vw;
}

.split-section.reverse {
  flex-direction: column-reverse;
}

.split-section .text-block h2 {
  margin-top: 0;
  font-size: 28px;
}

.split-section .text-block p {
  color: var(--muted);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.badge {
  padding: 6px 12px;
  background: var(--accent-soft);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.panel {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: 16px;
  background: var(--sand);
}

.card h3 {
  margin: 0;
}

.price {
  font-weight: 700;
  font-size: 18px;
  color: var(--slate);
}

.flow-callout {
  background: var(--slate);
  color: #fff;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.flow-callout a {
  color: #fff;
  text-decoration: underline;
}

.form-section {
  background: var(--mist);
  padding: 48px 6vw;
}

.service-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-form label {
  font-weight: 600;
  font-size: 14px;
}

.service-form input,
.service-form select,
.service-form textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cfd7dd;
  font-family: inherit;
  font-size: 14px;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.inline-cta {
  font-weight: 600;
}

.section-contrast {
  background: var(--accent-soft);
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-left: 3px solid var(--sun);
  background: #fff;
}

.testimonial span {
  font-size: 13px;
  color: var(--muted);
}

.footer {
  padding: 32px 6vw;
  border-top: 1px solid #e5e5e5;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--sun);
  color: #1d1d1d;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
  z-index: 50;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-header {
  padding: 40px 6vw 20px;
  background: var(--mist);
}

.page-header h1 {
  margin: 0 0 10px;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 6vw;
}

.legal {
  padding: 24px 6vw 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 900px) {
  .hero-split,
  .split-section,
  .split-section.reverse,
  .two-col {
    flex-direction: row;
    align-items: center;
  }

  .split-section.reverse {
    flex-direction: row-reverse;
  }

  .hero-copy {
    flex: 1.1;
  }

  .hero-visual,
  .split-section .visual,
  .split-section .text-block,
  .two-col > div {
    flex: 1;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }
}
