@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600&display=swap");

:root {
  --ink: #1b1b1e;
  --muted: #575c63;
  --accent: #7a3ae8;
  --accent-dark: #4b1fb6;
  --surface: #f4f1ec;
  --surface-strong: #ebe3d8;
  --mist: #f9f7f3;
  --shadow: 0 20px 50px rgba(27, 27, 30, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--mist);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
}

.page {
  overflow: hidden;
}

.site-header {
  padding: 28px 8vw 18px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  letter-spacing: 0.5px;
}

.nav-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 15px;
}

.nav-links a {
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
}

.hero {
  position: relative;
  padding: 60px 8vw 90px;
  background: linear-gradient(120deg, rgba(244, 241, 236, 0.9), rgba(244, 241, 236, 0.2)),
    url("https://images.unsplash.com/photo-1522075469751-3a6694fb2f61?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 640px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--accent-dark);
}

.hero h1 {
  font-size: 38px;
  line-height: 1.15;
  margin: 0;
}

.hero p {
  margin: 0;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  border: 1px solid transparent;
  transition: 0.2s ease;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
}

.btn.secondary {
  border-color: var(--accent);
  color: var(--accent);
}

.btn.ghost {
  border-color: #c8c2b6;
  color: var(--ink);
}

.section {
  padding: 70px 8vw;
  position: relative;
}

.section.light {
  background: var(--surface);
}

.section.accent {
  background: var(--surface-strong);
}

.section .section-inner {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split .copy {
  flex: 1;
}

.split .media {
  flex: 1;
}

.offset-left {
  margin-left: -6vw;
  padding-left: 6vw;
}

.offset-right {
  margin-right: -6vw;
  padding-right: 6vw;
}

.tagline {
  font-size: 22px;
  font-family: "Playfair Display", serif;
  margin: 0;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: #fff;
  padding: 22px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 16px;
}

.inline-cta {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 20px;
  font-weight: 600;
  color: var(--accent-dark);
}

.form-card {
  background: #fff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d5cfc5;
  font-family: inherit;
  font-size: 15px;
}

button {
  font-family: inherit;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-left: 3px solid var(--accent);
  background: #fff;
}

.meta {
  color: var(--muted);
  font-size: 14px;
}

.footer {
  padding: 50px 8vw 60px;
  background: #141418;
  color: #f8f6f3;
}

.footer a {
  color: #f8f6f3;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  box-shadow: var(--shadow);
  z-index: 9;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #e1d9cd;
  color: var(--ink);
}

.page-title {
  font-size: 32px;
  margin: 0 0 12px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (min-width: 900px) {
  .site-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero {
    padding: 90px 10vw 120px;
  }

  .hero-inner {
    max-width: 720px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .price-list {
    flex-direction: row;
  }

  .price-item {
    flex: 1;
  }
}
