/* ═══════════════════════════════════════════════
   crtnGrow — main stylesheet
   ═══════════════════════════════════════════════ */

/* ─── Base / reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: #F7F4EF;
  color: #1C1C1C;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* ─── Shared section label (eyebrow) ─── */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.section-label--muted { color: #8A8A7A; }

/* ═══ NAV ═══ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
  padding: 0 clamp(20px, 5vw, 64px);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav.is-scrolled {
  background: rgba(247, 244, 239, 0.97);
  border-bottom-color: rgba(29, 61, 47, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav__logo {
  font-size: 20px;
  font-weight: 800;
  color: #F7F4EF;
  letter-spacing: -0.03em;
  transition: color 0.35s ease;
}
.nav.is-scrolled .nav__logo { color: #1D3D2F; }

.nav__cta {
  background: transparent;
  border: 1.5px solid rgba(247, 244, 239, 0.7);
  color: #F7F4EF;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  letter-spacing: 0.01em;
  transition: background 0.2s, color 0.2s, border-color 0.35s ease;
}
.nav.is-scrolled .nav__cta {
  color: #1D3D2F;
  border-color: #1D3D2F;
}
.nav__cta:hover {
  background: #F7F4EF;
  color: #1D3D2F;
}

/* ═══ HERO ═══ */
.hero {
  position: relative;
  padding: 156px clamp(20px, 5vw, 64px) 120px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.22);
  transform-origin: center center;
  display: block;
  z-index: 0;
}

/* Forest scrim: stronger on the left where the copy sits */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(18, 30, 24, 0.86) 0%, rgba(20, 38, 29, 0.7) 38%, rgba(20, 38, 29, 0.34) 70%, rgba(20, 38, 29, 0.22) 100%);
}

/* Bottom fade into the next section */
.hero__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 24%;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(29, 61, 47, 0) 0%, rgba(29, 61, 47, 0.5) 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.hero__content { max-width: 760px; }

.hero__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.66);
  margin-bottom: 28px;
}

.hero__title {
  font-size: clamp(2.6rem, 5.8vw, 5.2rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: #F7F4EF;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.18);
}
.hero__title-accent {
  color: #BFE3CF;
  font-size: 60px;
}

.hero__sub {
  font-size: 1.1rem;
  line-height: 1.72;
  color: rgba(247, 244, 239, 0.86);
  margin-top: 28px;
  max-width: 520px;
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 44px;
}

/* Hero primary button (light fill) */
.btn-light {
  background: #F7F4EF;
  color: #1D3D2F;
  border: none;
  padding: 16px 32px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.btn-light:hover {
  background: #FFFFFF;
  transform: translateY(-1px);
}

.hero__textlink {
  background: none;
  border: none;
  border-bottom: 1.5px solid rgba(247, 244, 239, 0.9);
  color: #F7F4EF;
  font-size: 15px;
  font-weight: 600;
  padding: 2px 0;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.hero__textlink:hover { opacity: 0.65; }

/* ═══ PROBLEM STATEMENT ═══ */
.problem {
  background: #1D3D2F;
  padding: 80px clamp(20px, 5vw, 64px);
}
.problem__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.problem__statement {
  font-size: clamp(1.35rem, 2.7vw, 2.05rem);
  font-weight: 700;
  color: #F7F4EF;
  line-height: 1.38;
  max-width: 860px;
  letter-spacing: -0.02em;
  font-style: italic;
}
.problem__list {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  margin-top: 44px;
  padding-top: 40px;
  border-top: 1px solid rgba(247, 244, 239, 0.13);
}
.problem__item { flex: 1 1 150px; }
.problem__num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.38);
  margin-bottom: 8px;
}
.problem__label {
  font-size: 16px;
  font-weight: 600;
  color: #F7F4EF;
  line-height: 1.3;
}

/* ═══ HOW IT WORKS ═══ */
.method {
  background: #F7F4EF;
  padding: 100px clamp(20px, 5vw, 64px);
}
.method__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.method__label { margin-bottom: 72px; }

.method__step {
  position: relative;
  padding: 54px 0;
  border-top: 1px solid rgba(29, 61, 47, 0.12);
  overflow: hidden;
}
.method__step--last { border-bottom: 1px solid rgba(29, 61, 47, 0.12); }

.method__bignum {
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  font-size: clamp(90px, 14vw, 172px);
  font-weight: 800;
  color: #1D3D2F;
  opacity: 0.045;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.04em;
}

.method__row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.method__head { flex: 0 0 200px; }
.method__step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #1D3D2F;
  margin-bottom: 14px;
}
.method__title {
  font-size: 1.7rem;
  font-weight: 800;
  color: #1C1C1C;
  letter-spacing: -0.025em;
  line-height: 1.1;
}
.method__body { flex: 1 1 300px; }
.method__body p {
  font-size: 1rem;
  line-height: 1.78;
  color: #5E5E52;
  max-width: 580px;
  text-wrap: pretty;
}

/* ═══ WHAT YOU GET ═══ */
.deliverables {
  background: #FFFFFF;
  padding: 100px clamp(20px, 5vw, 64px);
  position: relative;
}
.deliverables__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  align-items: flex-start;
}
.deliverables__intro {
  flex: 1 1 260px;
  max-width: 340px;
}
.deliverables__label { margin-bottom: 24px; }
.deliverables__heading {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 800;
  color: #1C1C1C;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 20px;
}
.deliverables__lead {
  font-size: 1rem;
  line-height: 1.72;
  color: #5E5E52;
  text-wrap: pretty;
}
.deliverables__list {
  flex: 1 1 360px;
  border-top: 1px solid rgba(28, 28, 28, 0.1);
}

.deliverable {
  padding: 18px 0;
  border-bottom: 1px solid rgba(28, 28, 28, 0.08);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.deliverable--last { border-bottom: none; }
.deliverable__dot {
  flex: 0 0 auto;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #1D3D2F;
  margin-top: 8px;
  display: block;
}
.deliverable__title {
  font-size: 15px;
  font-weight: 700;
  color: #1C1C1C;
  margin-bottom: 3px;
}
.deliverable__desc {
  font-size: 14px;
  color: #7A7A6E;
  line-height: 1.55;
}

/* ═══ FOR NEW OWNERS ═══ */
.acquirers {
  background: #1D3D2F;
  padding: 100px clamp(20px, 5vw, 64px);
}
.acquirers__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
  align-items: flex-start;
}
.acquirers__intro {
  flex: 1 1 320px;
  max-width: 440px;
}
.acquirers__label {
  color: rgba(247, 244, 239, 0.5);
  margin-bottom: 24px;
}
.acquirers__heading {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  font-weight: 800;
  color: #F7F4EF;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}
.acquirers__heading-accent { color: #BFE3CF; }
.acquirers__sub {
  font-size: 1rem;
  line-height: 1.72;
  color: rgba(247, 244, 239, 0.72);
  text-wrap: pretty;
}
.acquirers__list {
  flex: 1 1 360px;
  border-top: 1px solid rgba(247, 244, 239, 0.13);
}
.acquirer {
  padding: 20px 0;
  border-bottom: 1px solid rgba(247, 244, 239, 0.1);
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.acquirer:last-child { border-bottom: none; }
.acquirer__dot {
  flex: 0 0 auto;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #BFE3CF;
  margin-top: 8px;
}
.acquirer__title {
  font-size: 15px;
  font-weight: 700;
  color: #F7F4EF;
  margin-bottom: 3px;
}
.acquirer__desc {
  font-size: 14px;
  color: rgba(247, 244, 239, 0.6);
  line-height: 1.55;
}

/* ═══ NUMBERS THAT MATTER ═══ */
.numbers {
  background: #F7F4EF;
  padding: 100px clamp(20px, 5vw, 64px);
}
.numbers__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: block;
}
.numbers__label { margin-bottom: 72px; }
.numbers__row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0;
}

.stat {
  flex: 1 1 180px;
  padding: 0 60px 0 0;
  border-right: 1px solid rgba(29, 61, 47, 0.14);
}
.stat--mid { padding: 0 60px; }
.stat--last {
  padding: 0 0 0 60px;
  border-right: none;
}
.stat__value {
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  font-weight: 800;
  color: #1D3D2F;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
}
.stat__unit {
  font-size: 0.26em;
  font-weight: 600;
  letter-spacing: 0;
}
.stat__caption {
  font-size: 13px;
  line-height: 1.6;
  color: #8A8A7A;
}
.stat__compare {
  font-size: 13px;
  font-weight: 700;
  color: #5E5E52;
}

/* ═══ BOOKING CTA ═══ */
.booking {
  background: #1D3D2F;
  padding: 100px clamp(20px, 5vw, 64px);
}
.booking__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
  align-items: flex-start;
}
.booking__left { flex: 1 1 340px; }
.booking__label {
  color: rgba(247, 244, 239, 0.42);
  margin-bottom: 24px;
}
.booking__heading {
  font-size: clamp(1.9rem, 3.8vw, 2.7rem);
  font-weight: 800;
  color: #F7F4EF;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 20px;
}
.booking__lead {
  font-size: 1rem;
  line-height: 1.72;
  color: rgba(247, 244, 239, 0.68);
  max-width: 400px;
  margin-bottom: 36px;
  text-wrap: pretty;
}

.btn-book {
  background: #F7F4EF;
  color: #1D3D2F;
  border: none;
  padding: 18px 44px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s;
}
.btn-book:hover {
  background: #FFFFFF;
  transform: translateY(-2px);
}

.booking__embed {
  flex: 1 1 360px;
  min-height: 300px;
  background: rgba(247, 244, 239, 0.04);
  border: 1px solid rgba(247, 244, 239, 0.1);
  border-radius: 10px;
  padding: 8px;
}
.booking__cal {
  width: 100%;
  min-height: 520px;
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
}

/* ═══ FOOTER ═══ */
.footer {
  background: #111111;
  padding: 0 clamp(20px, 5vw, 64px) 52px;
}
.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
}
.footer__logo {
  font-size: 18px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.03em;
}
.footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.footer__link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.42);
  transition: color 0.2s;
}
.footer__link:hover { color: rgba(255, 255, 255, 0.9); }
.footer__sep {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.18);
}
.footer__social {
  color: rgba(255, 255, 255, 0.38);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.footer__social:hover { color: rgba(255, 255, 255, 0.85); }

/* ═══ RESPONSIVE (≤ 680px) ═══ */
@media (max-width: 680px) {
  .problem__list,
  .method__row,
  .deliverables__inner,
  .acquirers__inner,
  .booking__inner {
    flex-direction: column;
    gap: 32px;
  }
  .hero__title { font-size: 2.5rem; }
  .stat {
    padding: 28px 0;
    border-right: none;
    border-top: 1px solid rgba(29, 61, 47, 0.12);
  }
  .stat:first-child { border-top: none; }
  .method__bignum { display: none; }
}
