/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245,240,232,0.93);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 40px;
  height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo {
  font-family: var(--sans); font-size: 19px; font-weight: 400;
  color: var(--green-primary); text-decoration: none; letter-spacing: 0.01em;
  flex-shrink: 0; display: flex; align-items: center; gap: 8px;
}
.logo-mark { flex-shrink: 0; }
.nav-links { display: flex; gap: 26px; list-style: none; }
.nav-links a { font-size: 13.5px; color: var(--text-mid); text-decoration: none; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--green-deep); font-weight: 500; }
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-login {
  font-size: 13.5px; color: var(--text-mid); text-decoration: none;
  padding: 8px 14px; border-radius: 4px; font-family: var(--sans); transition: color .2s;
}
.nav-login:hover { color: var(--green-deep); }
.nav-apply {
  font-size: 13.5px; font-weight: 500; color: var(--cream);
  background: var(--green-primary); padding: 10px 20px; border-radius: 4px;
  font-family: var(--sans); text-decoration: none; transition: background .2s;
}
.nav-apply:hover { background: var(--green-deep); }

/* ── FOOTER ── */
footer { padding: 44px 0; background: var(--green-deep); }
.foot-inner {
  max-width: 1140px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.foot-logo {
  font-family: var(--sans); font-size: 18px; font-weight: 400;
  color: rgba(245,240,232,.8); text-decoration: none;
  display: flex; align-items: center; gap: 8px;
}
.foot-links { display: flex; gap: 22px; list-style: none; flex-wrap: wrap; }
.foot-links a { font-size: 13px; color: rgba(245,240,232,.45); text-decoration: none; transition: color .2s; }
.foot-links a:hover { color: rgba(245,240,232,.8); }
.foot-legal { font-size: 12px; color: rgba(245,240,232,.3); }

/* ── FINAL CTA (shared) ── */
.final-cta {
  padding: 96px 0; background: var(--green-primary);
  text-align: center; position: relative; overflow: hidden;
}
.cta-botanical {
  position: absolute; bottom: -40px; right: -40px;
  width: 280px; height: 280px; opacity: .06; pointer-events: none;
}
.final-cta h2 {
  font-family: var(--serif); font-size: clamp(30px, 4vw, 50px);
  font-weight: 300; color: var(--cream); margin-bottom: 32px;
}
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-cream {
  font-size: 15px; font-weight: 500; color: var(--green-deep);
  background: var(--cream); border: none; cursor: pointer;
  padding: 16px 38px; border-radius: 4px; font-family: var(--sans);
  text-decoration: none; display: inline-block; transition: background .2s, transform .15s;
}
.btn-cream:hover { background: #fff; transform: translateY(-1px); }
.btn-cream-ghost {
  font-size: 15px; font-weight: 500; color: var(--cream);
  background: transparent; border: 1px solid rgba(245,240,232,0.45); cursor: pointer;
  padding: 16px 38px; border-radius: 4px; font-family: var(--sans);
  text-decoration: none; display: inline-block; transition: border-color .2s, background .2s;
}
.btn-cream-ghost:hover { border-color: var(--cream); background: rgba(245,240,232,0.08); }

.nav-short { display: none; }

@media (max-width: 700px) {
  .nav-inner { padding: 0 20px; height: 56px; }
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 12px; }
  .nav-login { display: none; }
  .nav-full { display: none; }
  .nav-short { display: inline; }
  .foot-inner { flex-direction: column; align-items: center; text-align: center; gap: 16px; }
  .foot-links { justify-content: center; }
}
