@import url("https://fonts.googleapis.com/css2?family=Fraunces:wght@400;600&family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --ink: #1c1b19;
  --muted: #5c5a55;
  --sand: #f6f1ea;
  --stone: #efe7dc;
  --leaf: #2f6b4f;
  --sun: #f4c95d;
  --wave: #e6eef1;
  --white: #ffffff;
  --accent: #1f6f8b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 6vw 1rem;
}

.brand {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  font-size: 0.95rem;
}

.nav-cta {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.9rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem 6vw 3rem;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 1rem 10% 20% 0;
  background: var(--wave);
  z-index: -1;
  border-radius: 32px;
}

.hero-text h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  margin: 0 0 1rem;
}

.hero-text p {
  max-width: 34rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: var(--leaf);
  color: var(--white);
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
}

.inline-cta {
  text-decoration: underline;
  font-weight: 600;
}

.hero-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
}

.section {
  padding: 3rem 6vw;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section.alt {
  background: var(--stone);
}

.section.tight {
  padding-top: 2rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.split.reverse {
  flex-direction: column-reverse;
}

.offset-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 22px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  position: relative;
}

.offset-card.shift {
  transform: translateY(-1.5rem);
}

.stat-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stat {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.stat strong {
  font-size: 1.8rem;
  font-family: "Fraunces", serif;
}

.program-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.program-item {
  padding: 1.5rem;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid #e0d8cc;
}

.price-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.price-card {
  background: var(--white);
  padding: 1.8rem;
  border-radius: 22px;
  border: 1px solid #e6dfd3;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
}

.price-tag {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
}

.testimonial {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 18px;
  border-left: 5px solid var(--sun);
}

.team {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.team-member {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--white);
  padding: 1.5rem;
  border-radius: 20px;
}

.form-wrap {
  background: var(--white);
  padding: 2rem;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-wrap label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 0.75rem;
  border-radius: 12px;
  border: 1px solid #d9d0c2;
  font-family: inherit;
}

.sticky-cta {
  background: var(--ink);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 20px;
  position: sticky;
  top: 1.5rem;
  align-self: flex-start;
}

.footer {
  margin-top: auto;
  padding: 2.5rem 6vw;
  background: #151515;
  color: #dcd9d4;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  max-width: 320px;
  background: var(--white);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
}

.cookie-actions button {
  flex: 1;
  padding: 0.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

.cookie-accept {
  background: var(--leaf);
  color: var(--white);
}

.cookie-reject {
  background: #e8e2d8;
}

.image-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.note {
  font-size: 0.95rem;
  color: var(--muted);
}

.highlight {
  font-weight: 600;
  color: var(--accent);
}

.wide-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.wide-card::after {
  content: "";
  position: absolute;
  inset: auto 1.5rem -1.2rem auto;
  height: 8px;
  width: 60%;
  background: var(--sun);
  border-radius: 999px;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-text {
    flex: 1.1;
  }

  .hero-image {
    flex: 0.9;
    transform: translateY(1rem);
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .stat-row {
    flex-direction: row;
  }

  .price-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-card {
    flex: 1 1 220px;
  }

  .team {
    flex-direction: row;
  }

  .team-member {
    flex: 1;
  }
}
