@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;600;700&family=Playfair+Display:wght@500;600&display=swap");

:root {
  color-scheme: light;
  --ink: #1f2532;
  --muted: #5a6478;
  --accent: #2e6bff;
  --accent-soft: #e8efff;
  --warm: #f6efe8;
  --cool: #edf4f2;
  --outline: #d6dae3;
  --shadow: 0 20px 45px rgba(31, 37, 50, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  padding: 24px 0 8px;
}

.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  letter-spacing: 0.06em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--outline);
}

.hero {
  padding: 48px 0 64px;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-card {
  background: var(--warm);
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero-card h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 3.2vw, 3.2rem);
  margin: 0 0 12px;
}

.hero-card p {
  color: var(--muted);
  margin: 0 0 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.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: #fff;
  font-weight: 600;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
}

.hero-image {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 280px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--cool);
}

.section h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  margin: 0 0 16px;
}

.section p {
  margin: 0 0 14px;
  color: var(--muted);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-card {
  background: #fff;
  padding: 26px;
  border-radius: 20px;
  border: 1px solid var(--outline);
  box-shadow: var(--shadow);
}

.image-stack {
  display: flex;
  gap: 18px;
  flex-direction: column;
}

.image-stack img {
  border-radius: 18px;
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pillar {
  padding: 20px;
  border-left: 4px solid var(--accent);
  background: #fff;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-number {
  flex: 0 0 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  padding: 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--outline);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
  height: 160px;
  object-fit: cover;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service {
  border-radius: 20px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--outline);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service .price {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
}

.testimonial {
  background: #fff;
  padding: 22px;
  border-radius: 20px;
  border: 1px solid var(--outline);
}

.cta-panel {
  background: var(--accent);
  color: #fff;
  border-radius: 28px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cta-panel a {
  color: #fff;
  text-decoration: underline;
}

.form-wrapper {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--outline);
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--outline);
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.site-footer {
  padding: 36px 0 48px;
  background: #111521;
  color: #f3f4f7;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-grid a {
  color: #f3f4f7;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 20px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 600;
  z-index: 40;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(920px, 92vw);
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--outline);
  padding: 18px;
  box-shadow: var(--shadow);
  z-index: 50;
  display: none;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.page-hero {
  padding: 54px 0 34px;
}

.page-hero .lead {
  max-width: 720px;
  color: var(--muted);
}

.contact-card {
  background: var(--warm);
  padding: 24px;
  border-radius: 18px;
}

.policy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.policy h3 {
  margin-bottom: 6px;
}

@media (min-width: 780px) {
  .hero-grid {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-card {
    flex: 1.1;
  }

  .hero-image {
    flex: 0.9;
    transform: translateY(24px);
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .services-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service {
    flex: 1 1 calc(50% - 16px);
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
