@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap");

:root {
  color-scheme: light;
  --bg: #f6f4f1;
  --ink: #1f1c18;
  --muted: #6a5f54;
  --accent: #e34f2a;
  --accent-dark: #ba3b1f;
  --sand: #efe8dd;
  --sage: #d6e1d3;
  --lavender: #e8e1f3;
  --shadow: 0 24px 60px rgba(31, 28, 24, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 7vw 0;
  position: relative;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-name {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  letter-spacing: 0.5px;
}

.brand-tag {
  font-size: 13px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.6px;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  padding: 18px 26px;
  background: var(--sand);
  border-radius: 999px;
  box-shadow: var(--shadow);
  position: relative;
  top: 16px;
}

.nav-links a {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.nav-links .cta-mini {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 7vw;
  position: relative;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}

.hero-card {
  background: #fff;
  padding: 34px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  margin-left: 6vw;
  position: relative;
  z-index: 2;
}

.hero-card h1 {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  margin: 0 0 16px;
}

.hero-card p {
  margin: 0 0 20px;
  color: var(--muted);
}

.hero-visual {
  display: flex;
  justify-content: flex-start;
  margin-top: -30px;
}

.hero-visual img {
  width: min(520px, 90vw);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.ghost-btn {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
}

.section {
  padding: 0 7vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.section h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  margin: 0;
}

.muted {
  color: var(--muted);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .panel {
  background: #fff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.offset-panel {
  background: var(--lavender);
  padding: 26px;
  border-radius: 22px;
  margin-left: 8vw;
}

.overlap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: -10px;
}

.overlap img {
  border-radius: 20px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  width: 100%;
  border-radius: 16px;
}

.badge {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--muted);
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.price {
  font-weight: 700;
  color: var(--accent);
  font-size: 18px;
}

.service-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.is-active {
  background: var(--accent-dark);
  color: #fff;
}

.testimonial {
  background: var(--sage);
  padding: 20px;
  border-radius: 20px;
  font-style: italic;
}

.form-wrap {
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #d2c7bb;
  font-family: inherit;
}

.form-note {
  font-size: 13px;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 18px;
  background: var(--accent);
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 5;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #fff;
  padding: 18px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 6;
  gap: 16px;
  flex-direction: column;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer {
  background: var(--sand);
  padding: 40px 7vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-header {
  padding: 40px 7vw 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.policy {
  background: #fff;
  padding: 24px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

@media (min-width: 900px) {
  .hero-grid {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .hero-card {
    max-width: 520px;
  }

  .hero-visual {
    justify-content: flex-end;
    margin-top: 0;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-item {
    flex: 1 1 280px;
  }

  .two-column {
    flex-direction: row;
  }

  .two-column > * {
    flex: 1;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
