@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;600;700;800&family=Playfair+Display:wght@500;600;700&display=swap");

:root {
  --ink: #1d1b1a;
  --muted: #5c5a57;
  --accent: #b4364a;
  --accent-dark: #8d2636;
  --sand: #f6f0ea;
  --night: #0f0d0c;
  --pearl: #fdfaf7;
  --leaf: #2d6b5a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--pearl);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

.page-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 6vw;
}

.nav-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--muted);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 6vw 60px;
  background: linear-gradient(120deg, rgba(246, 240, 234, 0.95), rgba(246, 240, 234, 0.6)),
    url("https://images.unsplash.com/photo-1524504388940-b1c1722653e1?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-bottom-left-radius: 48px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 680px;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  margin: 0;
}

h1 {
  font-size: clamp(2.3rem, 3vw, 3.6rem);
}

h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.8rem);
}

h3 {
  font-size: 1.3rem;
}

p {
  margin: 0;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.button-outline {
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
}

.section {
  padding: 56px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section-dark {
  background: var(--night);
  color: #fff;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.7);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.card-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.offset-panel {
  background: var(--sand);
  padding: 28px;
  border-radius: 28px;
  align-self: flex-start;
}

.callout {
  background: rgba(180, 54, 74, 0.12);
  border-left: 4px solid var(--accent);
  padding: 18px 20px;
  border-radius: 12px;
  color: var(--ink);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-left: 18px;
  border-left: 2px dashed var(--accent);
}

.trust-strip {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(45, 107, 90, 0.1);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #fff;
  padding: 18px;
  border-radius: 18px;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(29, 27, 26, 0.08);
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(29, 27, 26, 0.2);
  font-family: inherit;
  font-size: 1rem;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 6vw 40px;
  background: var(--night);
  color: #fff;
}

.footer a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.sticky-cta a {
  display: inline-flex;
  padding: 12px 18px;
  background: var(--leaf);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 320px;
  padding: 18px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 9;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: rgba(29, 27, 26, 0.1);
  color: var(--ink);
}

.hero-mosaic {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-mosaic img {
  border-radius: 22px;
}

.note {
  font-size: 0.85rem;
  color: var(--muted);
}

@media (min-width: 768px) {
  .nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .nav-top {
    flex-direction: row;
    align-items: center;
    gap: 28px;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .hero-mosaic {
    flex-direction: row;
    align-items: center;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards,
  .service-grid,
  .form-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .service {
    flex: 1 1 240px;
  }

  .form-grid > div {
    flex: 1 1 240px;
  }

  .cookie-banner {
    max-width: 360px;
  }
}
