@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b2b24;
  --muted: #52625a;
  --cream: #f6f3ea;
  --stone: #dde3d7;
  --sage: #7aa28a;
  --sun: #f2c763;
  --deep: #0f1512;
  --accent: #2c7a5f;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: #fdfcf9;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-wrap {
  display: flex;
  min-height: 100vh;
}

.side-nav {
  width: 230px;
  padding: 28px 20px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.brand {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero {
  position: relative;
  padding: 72px 8vw 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: var(--stone);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -80px;
  top: 40px;
  width: 260px;
  height: 260px;
  border-radius: 48% 52% 45% 55%;
  background: rgba(122, 162, 138, 0.25);
}

.hero h1 {
  font-size: 2.8rem;
  max-width: 560px;
}

.hero p {
  max-width: 520px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-weight: 600;
  background: transparent;
  cursor: pointer;
}

.btn.primary {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.btn.sun {
  background: var(--sun);
  border-color: var(--sun);
  color: var(--deep);
}

.section {
  padding: 64px 8vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.offset {
  margin-left: 5vw;
  margin-right: 12vw;
  background: white;
  border-radius: 32px;
  box-shadow: 0 20px 50px rgba(21, 35, 28, 0.08);
}

.section.tone {
  background: var(--cream);
}

.section.wave {
  background: var(--stone) url("../images/wave.svg") no-repeat center bottom;
  background-size: cover;
}

.section.deep {
  background: var(--deep);
  color: #f5f5f0;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: white;
  padding: 22px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid rgba(27, 43, 36, 0.1);
}

.card img {
  border-radius: 16px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(44, 122, 95, 0.12);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  background: white;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(27, 43, 36, 0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-card h3 {
  font-size: 1.2rem;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
}

.list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
}

.form-wrap {
  background: white;
  border-radius: 28px;
  padding: 30px;
  border: 1px solid rgba(27, 43, 36, 0.12);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  font-family: inherit;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(27, 43, 36, 0.2);
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-cta {
  text-decoration: underline;
  font-weight: 600;
  color: var(--accent);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
}

.footer {
  padding: 48px 8vw;
  background: var(--deep);
  color: #f5f5f0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f5f5f0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 320px;
  background: white;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(21, 35, 28, 0.15);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .pricing-grid {
    flex-direction: row;
  }

  .price-card {
    flex: 1;
  }
}

@media (max-width: 900px) {
  .page-wrap {
    flex-direction: column;
  }

  .side-nav {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }

  .nav-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.9rem;
  }
}
