@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:wght@500;600;700&display=swap");

:root {
  --ink: #1c1a1f;
  --plum: #3c1f33;
  --sand: #f5efe9;
  --mist: #f1f3f6;
  --rose: #c9879d;
  --gold: #b68a55;
  --shadow: 0 20px 60px rgba(24, 20, 26, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 6vw;
  border-bottom: 1px solid rgba(28, 26, 31, 0.08);
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-color: var(--rose);
}

.hero {
  display: flex;
  flex-direction: column;
  padding: 40px 6vw 20px;
  gap: 28px;
}

.hero .hero-text {
  max-width: 520px;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  margin: 0 0 16px;
}

.hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
  background: var(--plum);
  color: #fff;
  box-shadow: var(--shadow);
}

.button.secondary {
  border-color: var(--plum);
  color: var(--plum);
  background: #fff;
}

.button:hover {
  transform: translateY(-2px);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 56px 6vw;
}

.split.bg-mist {
  background: var(--mist);
}

.split.bg-sand {
  background: var(--sand);
}

.split.reverse {
  flex-direction: column;
}

.split .panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .panel h2,
.split .panel h3 {
  font-family: "Playfair Display", serif;
  margin: 0;
}

.split .panel p {
  margin: 0;
}

.split .panel .tag {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--gold);
}

.panel-card {
  background: var(--mist);
  padding: 26px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.panel-card.sand {
  background: var(--sand);
}

.panel-card.plum {
  background: var(--plum);
  color: #fff;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--plum);
}

.divider {
  height: 1px;
  background: rgba(28, 26, 31, 0.08);
  margin: 0 6vw;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cards .card {
  padding: 20px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(28, 26, 31, 0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cards .card img {
  border-radius: 14px;
  height: 160px;
  object-fit: cover;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-card {
  border-radius: 18px;
  padding: 20px;
  background: var(--sand);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-card .price {
  font-weight: 600;
  font-size: 1.1rem;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(28, 26, 31, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  font-weight: 500;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(28, 26, 31, 0.2);
  font-family: inherit;
}

textarea {
  min-height: 120px;
}

.footer {
  padding: 40px 6vw 60px;
  background: var(--ink);
  color: #fff;
}

.footer .footer-columns {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer a {
  color: #fff;
  opacity: 0.8;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--rose);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  font-weight: 600;
  z-index: 30;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 320px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 40;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions .accept {
  background: var(--plum);
  color: #fff;
}

.cookie-actions .reject {
  background: var(--mist);
  color: var(--ink);
}

@media (min-width: 880px) {
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero .hero-text {
    flex: 1;
  }

  .hero .hero-media {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .split .panel {
    flex: 1;
  }

  .cards,
  .pricing-grid,
  .footer .footer-columns {
    flex-direction: row;
  }

  .cards .card,
  .pricing-card,
  .footer .footer-columns > div {
    flex: 1;
  }
}
