:root {
  --bg: #FBF7F2;
  --bg-alt: #F5EFE8;
  --fg: #2A4A3E;
  --fg-light: #4A7262;
  --accent: #C8883A;
  --accent-light: #E8B86D;
  --muted: #7A8E87;
  --surface: #FFFFFF;
  --border: rgba(42, 74, 62, 0.12);
  --hero-orb: rgba(200, 136, 58, 0.12);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: rgba(251, 247, 242, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 8rem 4rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.hero-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--hero-orb) 0%, transparent 70%);
  top: -100px;
  left: -200px;
  pointer-events: none;
}
.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.75rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-light);
  line-height: 1.7;
  max-width: 500px;
}

/* Hero Card */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  width: 320px;
  box-shadow: 0 8px 40px rgba(42, 74, 62, 0.08);
}
.hero-card-badge {
  display: inline-block;
  background: var(--fg);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero-card-rates {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.hero-card-rate {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.rate-label {
  font-size: 0.85rem;
  color: var(--muted);
}
.rate-val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--fg);
}
.rate-val.highlight { color: var(--accent); }
.rate-unit {
  font-size: 0.8rem;
  font-weight: 400;
}
.hero-card-divider {
  height: 1px;
  background: var(--border);
  margin: 0.25rem 0;
}
.hero-card-note {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 1rem;
  text-align: center;
}

/* --- The Gap --- */
.thegap {
  background: var(--fg);
  color: #fff;
  padding: 6rem 4rem;
}
.thegap-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.thegap-label, .thecare-label, .na-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
}
.thegap-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 3rem;
  max-width: 600px;
}
.thegap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.thegap-quote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
  max-width: 600px;
}

/* --- The Care --- */
.thecare {
  padding: 6rem 4rem;
  background: var(--bg);
}
.thecare-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.thecare-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--fg);
  margin-bottom: 3rem;
  max-width: 500px;
}
.thecare-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.care-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}
.care-card-icon {
  color: var(--accent);
  margin-bottom: 1rem;
}
.care-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.75rem;
}
.care-card-desc {
  font-size: 0.9rem;
  color: var(--fg-light);
  line-height: 1.65;
}

/* --- Nurse Advantage --- */
.nurseadvantage {
  background: var(--bg-alt);
  padding: 6rem 4rem;
}
.na-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: start;
}
.na-headline {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 400;
  color: var(--fg);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}
.na-body {
  font-size: 0.95rem;
  color: var(--fg-light);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.na-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.na-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--fg);
  font-weight: 500;
}
.na-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  flex-shrink: 0;
}
.na-card {
  background: var(--fg);
  border-radius: 20px;
  padding: 2.5rem;
  color: #fff;
}
.na-card-label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.na-card-body p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1rem;
}
.na-card-body p:last-child { margin-bottom: 0; }

/* --- Manifesto --- */
.manifesto {
  padding: 6rem 4rem;
  background: var(--bg);
}
.manifesto-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 300;
  font-style: italic;
  color: var(--fg);
  line-height: 1.35;
  margin-bottom: 1rem;
}
.manifesto-attr {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 3rem;
}
.manifesto-rule {
  width: 60px;
  height: 1px;
  background: var(--accent);
  margin: 0 auto 3rem;
}
.manifesto-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  text-align: left;
}
.manifesto-value h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.manifesto-value p {
  font-size: 0.875rem;
  color: var(--fg-light);
  line-height: 1.6;
}

/* --- Closing --- */
.closing {
  padding: 8rem 4rem 6rem;
  background: var(--fg);
  color: #fff;
  text-align: center;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: #fff;
}
.closing-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}
.closing-detail {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 440px;
  margin: 0 auto;
  text-align: left;
}
.closing-detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
}
.cdi-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* --- Footer --- */
.footer {
  background: var(--bg-alt);
  padding: 3rem 4rem 2rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.footer-desc {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.footer-sep { color: var(--border); }
.footer-copy {
  font-size: 0.75rem;
  color: var(--muted);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 7rem 2rem 4rem;
    gap: 3rem;
  }
  .hero-visual { order: -1; }
  .thegap-grid,
  .thecare-cards,
  .manifesto-values { grid-template-columns: 1fr; }
  .na-inner { grid-template-columns: 1fr; }
  .thegap, .thecare, .nurseadvantage, .manifesto, .closing { padding: 4rem 2rem; }
}
@media (max-width: 600px) {
  .hero-card { width: 100%; }
  .na-grid { grid-template-columns: 1fr; }
}