/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: #2A1810;
  background: #FDF6EE;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
}

/* ===== LAYOUT ===== */
.section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #1B4965;
  margin-bottom: 1rem;
}
.section__sub {
  font-size: 1.125rem;
  color: #6B4F3A;
  max-width: 640px;
  margin-bottom: 3rem;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 3rem;
  background: rgba(253, 246, 238, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(43, 24, 16, 0.08);
}
.nav__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  font-weight: 700;
  color: #1B4965;
  letter-spacing: -0.02em;
}
.nav__tagline {
  font-size: 0.8125rem;
  color: #8B6F5A;
  font-weight: 400;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 3rem 5rem;
  overflow: hidden;
  background: linear-gradient(170deg, #F4E4D4 0%, #FDF6EE 40%, #E8F4F8 100%);
}
.hero__ocean {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(160deg, #1B4965 0%, #2C6E8A 50%, #5EC4C4 100%);
  border-radius: 60% 0 0 60%;
  opacity: 0.85;
}
.hero__sand {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 40%;
  background: linear-gradient(to top, #E8C89A 0%, #F4D9A0 100%);
  border-radius: 0 80% 0 0;
}
.hero__wave {
  position: absolute;
  right: 10%;
  bottom: 30%;
  width: 500px;
  height: 500px;
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 50%;
}
.hero__wave::after {
  content: '';
  position: absolute;
  inset: 40px;
  border: 2px solid rgba(255,255,255,0.06);
  border-radius: 50%;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero__eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E07B54;
  margin-bottom: 1.25rem;
}
.hero__headline {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  color: #1B4965;
  margin-bottom: 1.75rem;
  line-height: 1.1;
}
.hero__sub {
  font-size: 1.125rem;
  color: #4A3728;
  max-width: 520px;
  margin-bottom: 2.5rem;
  font-weight: 400;
  line-height: 1.7;
}
.hero__types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.hero__types span {
  background: rgba(27, 73, 101, 0.08);
  color: #1B4965;
  padding: 0.375rem 0.875rem;
  border-radius: 2rem;
  font-size: 0.8125rem;
  font-weight: 500;
}

/* ===== HOW ===== */
.how {
  padding: 7rem 3rem;
  background: #fff;
}
.how__inner { max-width: 1100px; margin: 0 auto; }
.how__steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 1rem;
}
.step { padding: 1.5rem 0; }
.step__num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #E07B54;
  opacity: 0.4;
  margin-bottom: 0.5rem;
  line-height: 1;
}
.step h3 {
  font-size: 1.25rem;
  color: #1B4965;
  margin-bottom: 0.625rem;
  font-family: 'Playfair Display', serif;
}
.step p {
  font-size: 0.9375rem;
  color: #6B4F3A;
  line-height: 1.7;
}

/* ===== PRICING ===== */
.pricing {
  padding: 7rem 3rem;
  background: linear-gradient(180deg, #1B4965 0%, #0D3A52 100%);
}
.pricing__inner { max-width: 1100px; margin: 0 auto; }
.pricing .section__title { color: #FDF6EE; }
.pricing .section__sub { color: rgba(253,246,238,0.7); }
.pricing__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.card {
  background: rgba(253,246,238,0.06);
  border: 1px solid rgba(253,246,238,0.12);
  border-radius: 16px;
  padding: 2rem 1.75rem;
  position: relative;
}
.card--featured {
  background: rgba(224, 123, 84, 0.15);
  border-color: rgba(224, 123, 84, 0.4);
}
.card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #E07B54;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.875rem;
  border-radius: 2rem;
}
.card__label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(253,246,238,0.5);
  margin-bottom: 0.75rem;
}
.card__price {
  font-family: 'Playfair Display', serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: #FDF6EE;
  margin-bottom: 1.5rem;
  line-height: 1;
}
.card__price span {
  font-size: 1rem;
  font-weight: 400;
  font-family: 'DM Sans', sans-serif;
  opacity: 0.6;
}
.card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.card__features li {
  color: rgba(253,246,238,0.8);
  font-size: 0.9rem;
  padding-left: 1.25rem;
  position: relative;
}
.card__features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #E07B54;
  font-size: 0.75rem;
}
.pricing__note {
  color: rgba(253,246,238,0.45);
  font-size: 0.875rem;
  text-align: center;
  font-style: italic;
}

/* ===== PROOF ===== */
.proof {
  padding: 7rem 3rem;
  background: #FDF6EE;
}
.proof__inner { max-width: 1100px; margin: 0 auto; }
.proof__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  padding: 3rem 0;
  border-top: 1px solid rgba(43,24,16,0.1);
  border-bottom: 1px solid rgba(43,24,16,0.1);
}
.stat__number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: #E07B54;
  margin-bottom: 0.375rem;
  line-height: 1;
}
.stat__label {
  font-size: 0.9rem;
  color: #6B4F3A;
}
.proof__types {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.biz-type {
  background: #fff;
  border: 1px solid rgba(43,24,16,0.08);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
}
.biz-type__icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}
.biz-type__name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: #1B4965;
  margin-bottom: 0.375rem;
}
.biz-type__desc {
  font-size: 0.8125rem;
  color: #6B4F3A;
  line-height: 1.5;
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 7rem 3rem;
  background: linear-gradient(135deg, #2C6E8A 0%, #1B4965 100%);
}
.manifesto__inner { max-width: 900px; margin: 0 auto; }
.manifesto__quote {
  border-left: 4px solid #E07B54;
  padding-left: 2rem;
  margin-bottom: 4rem;
}
.manifesto__quote p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.375rem, 3vw, 2rem);
  color: #FDF6EE;
  font-style: italic;
  line-height: 1.5;
}
.manifesto__body h2 { color: #FDF6EE; margin-bottom: 1.5rem; }
.manifesto__body p {
  color: rgba(253,246,238,0.8);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* ===== CLOSING ===== */
.closing {
  padding: 7rem 3rem;
  background: #F4D9A0;
  text-align: center;
}
.closing__inner { max-width: 700px; margin: 0 auto; }
.closing h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: #1B4965;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}
.closing p {
  font-size: 1.125rem;
  color: #4A3728;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  padding: 3rem 3rem;
  background: #1B4965;
}
.footer__inner { max-width: 1100px; margin: 0 auto; }
.footer__brand { margin-bottom: 1.5rem; }
.footer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #FDF6EE;
  margin-bottom: 0.375rem;
}
.footer__tagline { color: rgba(253,246,238,0.5); font-size: 0.875rem; }
.footer__links {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.footer__links span { color: rgba(253,246,238,0.4); font-size: 0.875rem; }
.footer__copy { color: rgba(253,246,238,0.3); font-size: 0.75rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .how__steps { grid-template-columns: 1fr; }
  .pricing__cards { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto 2rem; }
  .proof__stats { grid-template-columns: 1fr; }
  .proof__types { grid-template-columns: repeat(2, 1fr); }
  .nav { padding: 1rem 1.5rem; }
  .hero { padding: 7rem 1.5rem 4rem; }
  .hero__ocean { width: 70%; opacity: 0.6; }
}
@media (max-width: 600px) {
  .hero__headline { font-size: 2.25rem; }
  .hero__sub { font-size: 1rem; }
  .proof__types { grid-template-columns: 1fr; }
  .section__title { font-size: 1.75rem; }
  .manifesto__quote { padding-left: 1rem; }
  .manifesto__quote p { font-size: 1.25rem; }
}