@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Source+Sans+3:wght@300;400;500;600&display=swap");

:root {
  color-scheme: light;
  --bg: #f7f3ee;
  --ink: #2b2521;
  --muted: #6f665f;
  --accent: #b86a4b;
  --accent-dark: #8a4b33;
  --sand: #efe4d8;
  --cream: #fffaf4;
  --olive: #9e8c6c;
  --shadow: 0 20px 45px rgba(34, 28, 22, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 28px 0 12px;
}

.nav__brand {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  letter-spacing: 0.04em;
}

.nav__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 500;
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  margin: 0 0 12px;
}

.subtitle {
  font-size: 1.1rem;
  color: var(--muted);
}

.section {
  padding: 18px 0;
}

.section--sand .split {
  background: var(--sand);
}

.section--dark .split {
  background: #2b2521;
  color: #fff;
}

.section--dark a {
  color: #f3d8c6;
}

.section--cream .split {
  background: #fff6ec;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
  background: var(--cream);
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.split--reverse {
  flex-direction: column-reverse;
}

.split__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split__media {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.badge {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--olive);
  font-weight: 600;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cta-button {
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
}

.cta-link {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 16px;
}

.testimonial {
  background: var(--sand);
  padding: 16px 20px;
  border-radius: 18px;
  font-style: italic;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-card {
  background: #fff;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(34, 28, 22, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-card h4 {
  margin: 0;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-dark);
}

.form-panel {
  background: #fff;
  padding: 22px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(43, 37, 33, 0.18);
  font-family: inherit;
}

label {
  font-weight: 600;
}

.footer {
  padding: 40px 0 90px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  padding: 16px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  max-width: 320px;
  display: none;
  z-index: 30;
}

.cookie-banner.is-visible {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  flex: 1;
  min-width: 120px;
  border-radius: 999px;
  padding: 10px 14px;
  border: 1px solid var(--accent-dark);
  background: transparent;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: var(--accent-dark);
  color: #fff;
  border: none;
}

.highlight {
  background: linear-gradient(120deg, rgba(184, 106, 75, 0.2), rgba(184, 106, 75, 0));
  padding: 0 4px;
  border-radius: 6px;
}

@media (min-width: 900px) {
  .nav {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .split {
    flex-direction: row;
    gap: 40px;
  }

  .split--reverse {
    flex-direction: row-reverse;
  }

  .split__content,
  .split__media {
    flex: 1;
  }

  .card-grid {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .pricing-list {
    flex-direction: row;
  }

  .pricing-card {
    flex: 1;
  }
}
