*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #e08455;
  --primary-dark: #c86f3f;
  --secondary: #70876c;
  --accent: #6ba3ab;
  --neutral-light: #e6e4e0;
  --neutral-dark: #3e3a37;
  --white: #ffffff;
  --bg-cream: #faf8f5;
  --primary-soft: #e0845518;
  --secondary-soft: #70876c12;
  --accent-soft: #6ba3ab10;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-cream);
  color: var(--neutral-dark);
  font-family: "Inter", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: "Merriweather", Georgia, serif;
  line-height: 1.3;
}

body::before {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: 9999;
}

.nav {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(250, 248, 245, 0.92);
  border-bottom: 1px solid rgba(62, 58, 55, 0.05);
  left: 0;
  padding: 0.9rem 2rem;
  position: fixed;
  right: 0;
  top: 0;
  transition: box-shadow 0.3s ease;
  z-index: 100;
}

.nav.scrolled {
  box-shadow: 0 2px 24px rgba(62, 58, 55, 0.07);
}

.nav-inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1140px;
}

.nav-logo {
  align-items: center;
  color: var(--neutral-dark);
  display: flex;
  gap: 0.55rem;
  text-decoration: none;
}

.nav-logo img {
  height: 38px;
  object-fit: contain;
  width: 38px;
}

.nav-logo span {
  font-family: "Merriweather", serif;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.nav-tagline {
  color: var(--secondary);
  display: none;
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  margin-left: 0.75rem;
  opacity: 0.8;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 1.5rem;
}

.nav-link {
  color: var(--neutral-dark);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link-active {
  color: var(--primary);
}

.nav-link-disabled {
  cursor: not-allowed;
  opacity: 0.4;
  pointer-events: none;
}

.nav-cta,
.btn {
  border-radius: 50px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.nav-cta {
  background: var(--primary);
  border: 2px solid var(--primary);
  color: var(--white);
  font-size: 0.85rem;
  padding: 0.55rem 1.3rem;
}

.nav-cta:hover {
  background: transparent;
  color: var(--primary);
}

.btn {
  border: 2px solid transparent;
  cursor: pointer;
  display: inline-block;
  font-size: 0.95rem;
  padding: 0.85rem 1.7rem;
}

.btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 6px 18px rgba(224, 132, 85, 0.3);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  border-color: transparent;
  color: var(--neutral-dark);
  text-decoration: underline;
  text-decoration-color: var(--neutral-light);
  text-underline-offset: 4px;
}

.btn-ghost:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}

.section {
  padding: 5rem 2rem;
  position: relative;
}

.section-white {
  background: var(--white);
}

.section::before,
.section-white::before {
  background: linear-gradient(90deg, transparent, var(--neutral-light), transparent);
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.section-inner {
  margin: 0 auto;
  max-width: 1100px;
  position: relative;
  z-index: 1;
}

.section-label {
  color: var(--accent);
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.section-title-center,
.section-header-center {
  text-align: center;
}

.section-sub {
  color: #6b6560;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 680px;
}

.section-header-center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.page-note {
  color: #6b6560;
  font-size: 0.96rem;
  line-height: 1.72;
  margin-top: 1.15rem;
  max-width: 680px;
}

.inline-note-card,
.plan-note {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(62, 58, 55, 0.08);
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(62, 58, 55, 0.05);
  padding: 1rem 1.1rem;
}

.inline-note-eyebrow {
  color: var(--secondary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.inline-note-title {
  color: var(--neutral-dark);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.inline-note-list {
  color: #6b6560;
  display: grid;
  gap: 0.55rem;
  padding-left: 1.1rem;
}

.inline-note-list li {
  margin-left: 0.15rem;
}

.inline-note-card a,
.plan-note a,
.page-note a,
.faq-answer a {
  color: var(--primary-dark);
  font-weight: 600;
}

.plan-note {
  color: #6b6560;
  font-size: 0.91rem;
  line-height: 1.65;
}

.plan-note strong {
  color: var(--neutral-dark);
  display: block;
  margin-bottom: 0.32rem;
}

.hero-ctas {
  animation: fadeUp 0.6s ease-out 0.2s both;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.footer {
  background: var(--bg-cream);
  border-top: 1px solid var(--neutral-light);
  color: #9b9590;
  font-size: 0.82rem;
  padding: 2rem;
  text-align: center;
}

.footer a {
  color: inherit;
  margin: 0 0.5rem;
  text-decoration: none;
}

.footer a:hover {
  color: var(--primary);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gentle-bob {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (min-width: 960px) {
  .nav-tagline {
    display: inline;
  }
}

@media (max-width: 640px) {
  .nav {
    padding: 0.7rem 1rem;
  }

  .nav-links {
    gap: 0.85rem;
  }

  .nav-link {
    font-size: 0.82rem;
  }

  .nav-link-disabled {
    display: none;
  }

  .nav-logo span {
    font-size: 1.05rem;
  }

  .inline-note-card,
  .plan-note {
    border-radius: 16px;
    padding: 0.95rem 1rem;
  }
}
