@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Playfair+Display:wght@500;600&display=swap");

:root {
  --ink: #1b1b1b;
  --muted: #5a646f;
  --sand: #f5f0e8;
  --mist: #eef1f4;
  --tea: #f1e6d7;
  --accent: #0c5b5f;
  --accent-soft: #cfe6e6;
  --sun: #f2c45d;
  --card: #ffffff;
  --shadow: 0 20px 50px rgba(17, 25, 40, 0.12);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 14px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  background: var(--mist);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav a {
  padding: 6px 0;
  color: var(--muted);
}

.nav a.active {
  color: var(--ink);
  font-weight: 600;
}

.sidebar .cta-sticky {
  margin-top: auto;
  background: var(--accent);
  color: #fff;
  padding: 14px 18px;
  text-align: center;
  border-radius: 999px;
  font-weight: 600;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  align-self: flex-start;
  background: var(--sun);
  color: var(--ink);
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.main {
  flex: 1;
  padding: 40px 5vw 60px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--card);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero .hero-media {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero h1 {
  font-size: 38px;
  line-height: 1.15;
  margin: 0;
}

.hero p {
  color: var(--muted);
  margin: 0;
}

.hero .hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: var(--accent-soft);
  color: var(--accent);
}

.section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  margin: 0;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split .panel {
  background: var(--card);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.highlight {
  background: var(--tea);
  padding: 20px;
  border-radius: var(--radius);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--card);
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-weight: 700;
  color: var(--accent);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid var(--accent);
  width: fit-content;
}

.storyline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 3px solid var(--accent);
  padding-left: 18px;
}

.testimonial {
  background: var(--mist);
  padding: 18px;
  border-radius: 16px;
  font-style: italic;
}

.form-block {
  background: var(--card);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d5dbe2;
  font-family: inherit;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 20;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero .hero-content {
    flex: 1;
  }

  .hero .hero-media {
    flex: 1;
  }

  .split {
    flex-direction: row;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(50% - 18px);
  }
}
