/* ============================================================
   CNA Pathways — Global Stylesheet
   ============================================================ */

:root {
  --blue: #2B6CB0; --blue-dark: #1E4D7B; --blue-mid: #4A8BC2; --blue-light: #E8F0F8;
  --gold: #D4A84B; --gold-light: #FBF3E0; --gold-soft: #F5E6C4;
  --emerald: #2D8B6F; --emerald-light: #E6F5EF;
  --bg: #FBF8F4; --bg-card: #FFFFFF; --bg-soft: #F5F0EA;
  --text: #1C2B3A; --text-mid: #4A5568; --text-light: #7A8599;
  --border: #EDE8E0;
  --radius-card: 20px; --radius-inner: 16px; --radius-pill: 999px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Source Sans 3', 'Source Sans Pro', -apple-system, sans-serif; font-size: 16px; line-height: 1.6; color: var(--text-mid); background: var(--bg); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--blue-dark); }
.skip-link { position: absolute; top: -100%; left: 16px; background: var(--blue); color: #fff; padding: 8px 16px; border-radius: var(--radius-pill); font-size: 14px; font-weight: 600; z-index: 9999; transition: top .2s; }
.skip-link:focus { top: 8px; color: #fff; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }
.container { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 20px; }
section { padding: 56px 0; }
section + section { padding-top: 0; }

/* Typography */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; color: var(--text); line-height: 1.15; font-weight: 700; }
h1 { font-size: 32px; line-height: 1.12; }
h2 { font-size: 26px; line-height: 1.2; }
h3 { font-size: 20px; }
h4 { font-size: 18px; line-height: 1.3; }
p { margin-bottom: 16px; max-width: 600px; }
p:last-child { margin-bottom: 0; }
.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: 'Source Sans 3', sans-serif; font-weight: 700; border: none; border-radius: var(--radius-pill); cursor: pointer; transition: all .25s var(--ease); text-decoration: none; line-height: 1; white-space: nowrap; }
.btn:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; }
.btn--primary { background: var(--blue); color: #fff; padding: 16px 32px; font-size: 16px; box-shadow: 0 4px 16px rgba(43,108,176,.19); }
.btn--primary:hover { background: var(--blue-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(43,108,176,.25); }
.btn--blue { background: var(--blue); color: #fff; padding: 14px 28px; font-size: 15px; box-shadow: 0 4px 16px rgba(43,108,176,.19); }
.btn--blue:hover { background: var(--blue-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 24px rgba(43,108,176,.25); }
.btn--gold { background: var(--gold); color: #1a1a1a; padding: 14px 28px; font-size: 15px; }
.btn--gold:hover { background: #c49a3e; color: #1a1a1a; transform: translateY(-1px); }
.btn--emerald { background: var(--emerald); color: #fff; padding: 14px 28px; font-size: 15px; }
.btn--emerald:hover { background: #247a60; color: #fff; transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--blue); border: 2px solid rgba(43,108,176,.2); padding: 14px 24px; font-size: 14px; font-weight: 600; }
.btn--ghost:hover { border-color: var(--blue); background: var(--blue-light); color: var(--blue); }
.btn--ghost-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.3); padding: 14px 24px; font-size: 14px; font-weight: 600; }
.btn--ghost-white:hover { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.1); color: #fff; }
.btn--soft { background: var(--blue-light); color: var(--blue); padding: 12px 24px; font-size: 14px; font-weight: 600; }
.btn--soft:hover { background: #d8e8f4; }
.btn--sm { padding: 10px 20px; font-size: 13px; }
.btn-group { display: flex; gap: 12px; flex-wrap: wrap; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.97); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); transition: box-shadow .3s var(--ease); }
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; min-height: 60px; }
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 44px; width: auto; }
.nav-desktop { display: none; align-items: center; gap: 28px; }
.nav-desktop a { font-size: 14px; font-weight: 600; color: var(--text-mid); transition: color .2s; position: relative; }
.nav-desktop a:hover { color: var(--blue); }
.nav-desktop a.active { color: var(--blue); }
.nav-desktop a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--blue); transition: width .25s var(--ease); border-radius: 1px; }
.nav-desktop a:hover::after, .nav-desktop a.active::after { width: 100%; }
.nav-cta { display: none; }
.hamburger { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 36px; height: 36px; background: none; border: none; cursor: pointer; padding: 6px; border-radius: 8px; transition: background .2s; }
.hamburger:hover { background: var(--bg); }
.hamburger span { display: block; width: 100%; height: 2px; background: var(--text); border-radius: 1px; transition: all .3s var(--ease); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav-mobile { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); box-shadow: 0 8px 30px rgba(0,0,0,.08); padding: 8px 20px 20px; }
.nav-mobile.open { display: block; animation: slideDown .25s var(--ease); }
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.nav-mobile a { display: block; padding: 14px 0; font-size: 16px; font-weight: 600; color: var(--text); border-bottom: 1px solid #f0ede7; }
.nav-mobile a:last-of-type { border-bottom: none; }
.nav-mobile .btn { width: 100%; margin-top: 12px; text-align: center; }

/* Hero */
.hero { padding: 0; position: relative; overflow: hidden; background: var(--bg); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; opacity: 0.5; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(251,248,244,.92) 0%, rgba(251,248,244,.78) 40%, rgba(251,248,244,.65) 100%); }
.hero-inner { position: relative; z-index: 1; padding: 48px 0 56px; }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,255,255,.9); border: 1px solid rgba(43,108,176,.12); border-radius: var(--radius-pill); padding: 8px 18px; margin-bottom: 20px; font-size: 13px; font-weight: 600; color: var(--blue); backdrop-filter: blur(4px); }
.hero-badge .dot { width: 6px; height: 6px; background: var(--emerald); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
.hero h1 { margin-bottom: 18px; max-width: 520px; }
.hero p.hero-sub { font-size: 17px; line-height: 1.65; margin-bottom: 28px; max-width: 460px; color: var(--text-mid); }
.hero .btn-group { margin-bottom: 36px; }
.urgency-chip { display: none; background: rgba(255,255,255,.92); border: 1px solid var(--gold-soft); border-radius: var(--radius-inner); padding: 10px 18px; font-size: 13px; font-weight: 700; color: #b8922e; font-family: 'Source Sans 3', sans-serif; backdrop-filter: blur(4px); }
.trust-strip { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: baseline; gap: 8px; background: rgba(255,255,255,.7); padding: 6px 14px; border-radius: 12px; backdrop-filter: blur(4px); }
.trust-item .num { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 800; color: var(--blue); }
.trust-item .label { font-size: 13px; color: var(--text-mid); font-weight: 500; }

/* Promise */
.promise { padding: 56px 0; }
.promise-content { background: var(--bg-card); border-radius: var(--radius-card); border: 1px solid var(--border); padding: 36px 28px; box-shadow: 0 2px 12px rgba(0,0,0,.03); }
.promise-quote { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: var(--text); line-height: 1.3; margin-bottom: 16px; max-width: 500px; }
.promise-answer { font-size: 16px; line-height: 1.65; margin-bottom: 28px; max-width: 500px; }
.timeline { display: flex; flex-direction: column; gap: 0; position: relative; padding-left: 32px; }
.timeline::before { content: ''; position: absolute; left: 11px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--blue-light), var(--blue), var(--emerald)); border-radius: 1px; }
.timeline-step { position: relative; padding: 12px 0 12px 16px; }
.timeline-step::before { content: ''; position: absolute; left: -26px; top: 18px; width: 12px; height: 12px; border-radius: 50%; background: var(--blue); border: 3px solid var(--blue-light); }
.timeline-step:last-child::before { background: var(--emerald); border-color: var(--emerald-light); }
.timeline-step .step-week { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--blue); margin-bottom: 2px; }
.timeline-step:last-child .step-week { color: var(--emerald); }
.timeline-step .step-text { font-size: 15px; font-weight: 600; color: var(--text); }

/* Section Headers */
.section-header { margin-bottom: 36px; }
.section-header .eyebrow, .eyebrow { font-family: 'Source Sans 3', sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; margin-bottom: 10px; display: block; }
.section-header--blue .eyebrow { color: var(--blue); }
.section-header--emerald .eyebrow { color: var(--emerald); }
.section-header--gold .eyebrow { color: var(--gold); }
.section-header h2 { margin-bottom: 16px; padding-bottom: 16px; position: relative; display: inline-block; }
.section-header h2::after { content: ''; position: absolute; bottom: 0; left: 0; width: 48px; height: 3px; border-radius: 2px; }
.section-header--blue h2::after { background: var(--blue); }
.section-header--emerald h2::after { background: var(--emerald); }
.section-header--gold h2::after { background: var(--gold); }
.section-header p { color: var(--text-mid); font-size: 16px; line-height: 1.65; max-width: 560px; }

/* Cards */
.cards-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.card { background: var(--bg-card); border-radius: var(--radius-card); border: 1px solid var(--border); padding: 28px 24px; box-shadow: 0 2px 12px rgba(0,0,0,.03); transition: box-shadow .25s var(--ease), transform .25s var(--ease); }
.card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.06); transform: translateY(-2px); }
.card--blue-top { border-top: 3px solid var(--blue); }
.card--emerald-top { border-top: 3px solid var(--emerald); }
.card--gold-top { border-top: 3px solid var(--gold); }
.card-icon { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 20px; }
.card-icon--blue { background: var(--blue-light); color: var(--blue); }
.card-icon--emerald { background: var(--emerald-light); color: var(--emerald); }
.card-icon--gold { background: var(--gold-light); color: var(--gold); }
.card h3 { margin-bottom: 10px; font-size: 18px; }
.card p { font-size: 15px; line-height: 1.6; }

/* Info Cards */
.info-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
.info-card { background: var(--bg-card); border-radius: var(--radius-inner); border: 1px solid var(--border); padding: 24px; box-shadow: 0 2px 8px rgba(0,0,0,.03); }
.info-card h3 { font-size: 18px; margin-bottom: 10px; }
.info-card p { font-size: 15px; line-height: 1.6; }
.info-card--blue { border-left: 3px solid var(--blue); }
.info-card--emerald { border-left: 3px solid var(--emerald); }
.info-card--gold { border-left: 3px solid var(--gold); background: var(--gold-light); border-color: var(--gold); }

/* Highlight Stats */
.highlight-stat { background: var(--bg-card); border-radius: var(--radius-inner); border: 1px solid var(--border); padding: 24px 20px; text-align: center; box-shadow: 0 2px 8px rgba(0,0,0,.03); }
.highlight-stat .number { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--blue); display: block; margin-bottom: 4px; }
.highlight-stat .label { font-size: 13px; font-weight: 600; color: var(--text-mid); text-transform: uppercase; letter-spacing: .06em; }

/* Career Ladder */
.career-grid { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: start; }
.career-image { display: none; border-radius: var(--radius-card); overflow: hidden; }
.career-image img { width: 100%; height: 100%; object-fit: cover; }
.salary-ladder { display: flex; flex-direction: column; gap: 0; }
.salary-rung { display: flex; align-items: center; gap: 16px; background: var(--bg-card); border-radius: var(--radius-inner); border: 1px solid var(--border); padding: 20px; box-shadow: 0 2px 8px rgba(0,0,0,.03); }
.salary-rung--cna { border-left: 4px solid var(--blue); }
.salary-rung--lvn { border-left: 4px solid var(--emerald); margin-left: 16px; }
.salary-rung--rn { border-left: 4px solid var(--gold); margin-left: 32px; }
.rung-info { flex: 1; }
.rung-info h4 { margin-bottom: 2px; }
.rung-info p { font-size: 13px; color: var(--text-light); margin: 0; }
.rung-salary { text-align: right; }
.rung-salary .amount { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; line-height: 1; display: block; }
.rung-salary .per-yr { display: block; font-family: 'Source Sans 3', sans-serif; font-size: 11px; font-weight: 500; color: var(--text-light); margin-top: 3px; letter-spacing: .01em; text-align: right; }
.salary-rung--cna .rung-salary .amount { color: var(--blue); }
.salary-rung--lvn .rung-salary .amount { color: var(--emerald); }
.salary-rung--rn .rung-salary .amount { color: var(--gold); }
.salary-delta { display: flex; align-items: center; justify-content: flex-end; padding: 0 20px 0 28px; margin-left: 0; position: relative; border-left: 2px solid #E0DDD7; }
.salary-delta--blue { border-left-color: var(--blue); }
.salary-delta--emerald { border-left-color: var(--emerald); }
.salary-delta span { font-family: 'Source Sans 3', sans-serif; font-size: 11px; font-weight: 600; color: var(--emerald); background: var(--emerald-light); padding: 3px 10px; border-radius: 999px; letter-spacing: .01em; }
.salary-source { font-size: 11px; color: var(--text-light); margin-top: 12px; padding-left: 24px; font-style: italic; }

/* Stats Grid */
.stats-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.stat-card { background: var(--bg-card); border-radius: var(--radius-card); border: 1px solid var(--border); padding: 28px 24px; text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,.03); }
.stat-card .stat-number { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--blue); margin-bottom: 6px; }
.stat-card .stat-label { font-size: 14px; color: var(--text-mid); line-height: 1.5; }
.stat-card .stat-source { font-size: 11px; color: var(--text-light); margin-top: 8px; }

/* Proof Section */
.proof-section { position: relative; overflow: hidden; border-radius: var(--radius-card); margin: 0; }
.proof-bg { position: absolute; inset: 0; z-index: 0; }
.proof-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; opacity: 0.75; }
.proof-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(251,248,244,.88) 0%, rgba(251,248,244,.75) 40%, rgba(251,248,244,.85) 100%); }
.proof-section .section-header, .proof-section .stats-grid { position: relative; z-index: 1; }
.proof-section .stat-card { background: rgba(255,255,255,.92); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }

/* FAQ Accordion */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--bg-card); border-radius: var(--radius-inner); border: 1px solid var(--border); overflow: hidden; transition: box-shadow .2s var(--ease); }
.faq-item:hover { box-shadow: 0 2px 12px rgba(0,0,0,.04); }
.faq-question { width: 100%; background: none; border: none; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; font-family: 'Source Sans 3', sans-serif; font-size: 16px; font-weight: 700; color: var(--text); text-align: left; transition: background .2s; }
.faq-question:hover { background: var(--bg); }
.faq-question:focus-visible { outline: 3px solid var(--blue); outline-offset: -3px; }
.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; transition: transform .3s var(--ease); color: var(--text-light); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 24px 20px; font-size: 15px; line-height: 1.65; color: var(--text-mid); }

/* CTA Block */
.cta-block { border-radius: 24px; padding: 48px 28px; text-align: center; position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; z-index: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; opacity: 0.5; }
.cta-bg::after { content: ''; position: absolute; inset: 0; background: rgba(43,108,176,.82); }
.cta-block::before { content: ''; position: absolute; top: -40px; right: -40px; width: 150px; height: 150px; border-radius: 50%; background: #fff; opacity: .06; z-index: 1; }
.cta-block::after { content: ''; position: absolute; bottom: -30px; left: -30px; width: 120px; height: 120px; border-radius: 50%; background: var(--gold); opacity: .1; z-index: 1; }
.cta-block-content { position: relative; z-index: 1; }
.cta-block h2 { color: #fff; margin-bottom: 12px; }
.cta-block p { color: rgba(255,255,255,.75); font-size: 16px; margin: 0 auto 28px; max-width: 460px; }
.cta-block .btn-group { justify-content: center; }
.cta-block .btn--gold { box-shadow: 0 4px 20px rgba(0,0,0,.2); }

/* CTA Strip */
.cta-strip { background: var(--blue); border-radius: var(--radius-card); padding: 44px 28px; text-align: center; margin-top: 48px; }
.cta-strip h2 { color: #fff; margin-bottom: 12px; }
.cta-strip p { color: rgba(255,255,255,.75); font-size: 16px; margin: 0 auto 24px; max-width: 460px; }

/* Page Header */
.page-header { background: var(--bg-soft); padding: 40px 0 36px; border-bottom: 1px solid var(--border); }
.page-header .eyebrow { color: var(--blue); margin-bottom: 8px; }
.page-header h1 { margin-bottom: 12px; }
.page-header p { font-size: 17px; line-height: 1.6; color: var(--text-mid); max-width: 560px; }

/* Page Content */
.page-content { padding: 48px 0 56px; }
.content-block { margin-bottom: 40px; }
.content-block h2 { margin-bottom: 16px; }
.content-block p { font-size: 16px; line-height: 1.65; }

/* Breadcrumbs */
.breadcrumb { font-size: 13px; color: var(--text-light); margin-bottom: 16px; }
.breadcrumb a { color: var(--text-light); font-weight: 500; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb .sep { margin: 0 8px; opacity: .5; }

/* Tables */
.schedule-table { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
.schedule-table th { background: var(--blue-light); color: var(--blue); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 12px 16px; text-align: left; }
.schedule-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); font-size: 15px; vertical-align: top; }
.schedule-table .week-label { font-weight: 700; color: var(--text); white-space: nowrap; }

/* Forms */
.form-section { background: var(--bg-card); border-radius: var(--radius-card); border: 1px solid var(--border); padding: 32px 24px; box-shadow: 0 2px 12px rgba(0,0,0,.03); margin-bottom: 32px; }
.form-section h2 { margin-bottom: 8px; }
.form-desc { font-size: 15px; color: var(--text-mid); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; font-size: 16px; font-family: 'Source Sans 3', sans-serif; color: var(--text); border: 1px solid var(--border); border-radius: 12px; background: var(--bg); transition: border-color .2s, box-shadow .2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(43,108,176,.12); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-success { display: none; background: var(--emerald-light); color: var(--emerald); border-radius: var(--radius-inner); padding: 20px 24px; font-weight: 600; margin-top: 16px; text-align: center; }
.form-success.visible { display: block; }

/* City Pages */
.city-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 32px; }
.city-stat { background: var(--bg-card); border-radius: var(--radius-inner); border: 1px solid var(--border); padding: 20px 16px; text-align: center; }
.city-stat .number { font-family: 'Playfair Display', serif; font-weight: 700; display: block; margin-bottom: 4px; }
.city-stat .label { font-size: 12px; font-weight: 600; color: var(--text-mid); text-transform: uppercase; letter-spacing: .04em; }
.city-employers { background: var(--bg-card); border-radius: var(--radius-inner); border: 1px solid var(--border); padding: 24px; margin-bottom: 32px; }
.city-employers h3 { margin-bottom: 14px; font-size: 18px; }
.city-employers ul { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr; gap: 8px; }
.city-employers li { font-size: 15px; color: var(--text-mid); padding: 8px 0; border-bottom: 1px solid var(--border); padding-left: 16px; position: relative; }
.city-employers li::before { content: ''; position: absolute; left: 0; top: 14px; width: 6px; height: 6px; border-radius: 50%; background: var(--emerald); }
.city-employers li:last-child { border-bottom: none; }
.drive-time-card { background: var(--blue-light); border-radius: var(--radius-inner); padding: 24px; margin-bottom: 32px; text-align: center; }
.drive-time-card .time { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--blue); }
.drive-time-card .label { font-size: 15px; color: var(--text-mid); margin-top: 4px; }

/* Article Body */
.article-body { max-width: 680px; }
.article-body h2 { margin-top: 36px; margin-bottom: 14px; }
.article-body p { font-size: 16px; line-height: 1.7; }
.article-cta { background: var(--gold-light); border-radius: var(--radius-inner); padding: 28px; margin-top: 40px; margin-bottom: 8px; }
.article-cta h3 { margin-bottom: 8px; }
.article-cta p { font-size: 15px; margin-bottom: 16px; }

/* Tuition Page */
.price-hero { background: var(--bg-card); border-radius: var(--radius-card); border: 1px solid var(--border); padding: 36px 28px; text-align: center; margin-bottom: 32px; box-shadow: 0 2px 12px rgba(0,0,0,.03); }
.price-hero .price { font-family: 'Playfair Display', serif; font-size: 56px; font-weight: 700; color: var(--gold); margin-bottom: 4px; }
.price-hero .price-sub { font-size: 16px; color: var(--text-mid); }
.includes-list { list-style: none; padding: 0; margin-top: 20px; text-align: left; max-width: 400px; margin-left: auto; margin-right: auto; }
.includes-list li { font-size: 15px; color: var(--text-mid); padding: 8px 0 8px 28px; border-bottom: 1px solid var(--border); position: relative; }
.includes-list li::before { content: '\2713'; position: absolute; left: 0; color: var(--emerald); font-weight: 700; }
.includes-list li:last-child { border-bottom: none; }

/* About Page */
.team-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-bottom: 32px; }
.team-card { background: var(--bg-card); border-radius: var(--radius-inner); border: 1px solid var(--border); padding: 24px; text-align: center; }
.team-card .team-photo { width: 80px; height: 80px; border-radius: 50%; background: var(--bg-soft); margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--text-light); }
.team-card h3 { font-size: 18px; margin-bottom: 4px; }
.team-card .role { font-size: 13px; color: var(--blue); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.team-card p { font-size: 14px; margin-top: 10px; }

/* Footer */
.site-footer { background: var(--text); color: rgba(255,255,255,.65); padding: 48px 0 32px; margin-top: 56px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; }
.footer-brand .footer-logo { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.footer-brand p { font-size: 14px; line-height: 1.6; max-width: 300px; }
.footer-links h5 { font-family: 'Source Sans 3', sans-serif; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.4); margin-bottom: 14px; }
.footer-links a { display: block; color: rgba(255,255,255,.65); font-size: 14px; padding: 5px 0; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 13px; margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.5); font-size: 13px; }

/* Utilities */
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.fade-in { opacity: 0; transform: translateY(16px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (min-width: 640px) {
  h1 { font-size: 38px; } h2 { font-size: 28px; }
  section { padding: 72px 0; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .hero h1 { font-size: 42px; }
  .hero-inner { padding: 64px 0 72px; }
  .urgency-chip { display: inline-block; position: absolute; top: 16px; right: 0; transform: rotate(2deg); }
  .hero-bg::after { background: linear-gradient(135deg, rgba(251,248,244,.88) 0%, rgba(251,248,244,.72) 40%, rgba(251,248,244,.55) 100%); }
  .promise-content { padding: 44px 36px; }
  .timeline { flex-direction: row; padding-left: 0; }
  .timeline::before { left: 0; right: 0; top: 17px; bottom: auto; width: auto; height: 2px; background: linear-gradient(to right, var(--blue-light), var(--blue), var(--emerald)); }
  .timeline-step { flex: 1; padding: 40px 12px 0 0; padding-left: 0; }
  .timeline-step::before { left: 0; top: 12px; }
  .career-image { display: block; }
  .career-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .city-stats { grid-template-columns: repeat(4, 1fr); }
  .city-employers ul { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .container { padding: 0 32px; }
  .hamburger { display: none; }
  .nav-desktop { display: flex; }
  .nav-cta { display: block; }
  .logo img { height: 50px; }
  h1 { font-size: 46px; }
  section { padding: 80px 0; }
  .hero-inner { padding: 80px 0 88px; }
  .hero-bg::after { background: linear-gradient(135deg, rgba(251,248,244,.85) 0%, rgba(251,248,244,.65) 45%, rgba(251,248,244,.45) 100%); }
  .cta-block { padding: 60px 48px; }
  .form-section { padding: 40px 36px; }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Page Feature Images */
.page-feature-img {
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 36px;
  max-height: 320px;
}
.page-feature-img img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
}
.article-feature-img {
  border-radius: var(--radius-inner);
  overflow: hidden;
  margin-bottom: 32px;
  max-height: 280px;
}
.article-feature-img img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
}
.about-location-img {
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 24px;
  max-height: 300px;
}
.about-location-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center 40%;
}

/* Page Header with Image */
.page-header--image { position: relative; overflow: hidden; padding: 48px 0 40px; }
.page-header--image .page-header-bg { position: absolute; inset: 0; z-index: 0; }
.page-header--image .page-header-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.page-header--image .page-header-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(245,240,234,.92) 0%, rgba(245,240,234,.82) 50%, rgba(245,240,234,.7) 100%); }
.page-header--image .container { position: relative; z-index: 1; }

/* Article Featured Image */
.article-featured-img { border-radius: var(--radius-card); overflow: hidden; margin-bottom: 32px; max-height: 360px; }
.article-featured-img img { width: 100%; height: 360px; object-fit: cover; object-position: center 30%; }

@media (min-width: 640px) {
  .page-header--image { padding: 56px 0 48px; }
  .page-header--image .page-header-bg::after { background: linear-gradient(135deg, rgba(245,240,234,.88) 0%, rgba(245,240,234,.75) 50%, rgba(245,240,234,.6) 100%); }
}

/* ============================================================
   DESIGN UPGRADE — Photo Sections, Color, Texture
   ============================================================ */

/* Photo Break — Full-width divider between sections */
.photo-break { position: relative; width: 100%; height: 200px; overflow: hidden; margin: 0; padding: 0; }
.photo-break img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.photo-break--60 img { opacity: 0.6; }
.photo-break--70 img { opacity: 0.7; }
.photo-break--80 img { opacity: 0.8; }
.photo-break::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(251,248,244,.3) 0%, transparent 20%, transparent 80%, rgba(251,248,244,.3) 100%); }
@media (min-width: 640px) { .photo-break { height: 260px; } }
@media (min-width: 1024px) { .photo-break { height: 300px; } }

/* Photo Break with overlay text */
.photo-break--quote { display: flex; align-items: center; justify-content: center; text-align: center; height: 280px; }
.photo-break--quote::after { background: linear-gradient(180deg, rgba(28,43,58,.55) 0%, rgba(28,43,58,.65) 100%); }
.photo-break--quote .photo-break-text { position: relative; z-index: 1; color: #fff; padding: 0 24px; max-width: 600px; }
.photo-break--quote .photo-break-text h3 { color: #fff; font-size: 24px; line-height: 1.3; margin-bottom: 8px; }
.photo-break--quote .photo-break-text p { color: rgba(255,255,255,.8); font-size: 15px; margin: 0 auto; }
@media (min-width: 640px) { .photo-break--quote { height: 320px; } .photo-break--quote .photo-break-text h3 { font-size: 28px; } }

/* Colored Section Backgrounds */
.section--warm { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section--blue-tint { background: var(--blue-light); }
.section--gold-tint { background: var(--gold-light); }
.section--emerald-tint { background: var(--emerald-light); }
.section--dark { background: var(--text); color: rgba(255,255,255,.85); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark p { color: rgba(255,255,255,.7); }
.section--dark .eyebrow { color: var(--gold); }

/* Photo + Text Split Layout */
.split-layout { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
.split-layout--reverse .split-photo { order: -1; }
.split-photo { border-radius: var(--radius-card); overflow: hidden; position: relative; }
.split-photo img { width: 100%; height: 280px; object-fit: cover; object-position: center 30%; }
.split-photo--overlay::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(43,108,176,.08) 0%, rgba(45,139,111,.08) 100%); border-radius: var(--radius-card); }
.split-text h2 { margin-bottom: 14px; }
.split-text p { font-size: 16px; line-height: 1.65; }
@media (min-width: 640px) {
  .split-layout { grid-template-columns: 1fr 1fr; gap: 40px; }
  .split-photo img { height: 340px; }
}

/* Section with Photo Background */
.section--photo-bg { position: relative; overflow: hidden; padding: 64px 0; }
.section--photo-bg .section-bg { position: absolute; inset: 0; z-index: 0; }
.section--photo-bg .section-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.section--photo-bg .section-bg::after { content: ''; position: absolute; inset: 0; }
.section--photo-bg .container { position: relative; z-index: 1; }
.section--photo-bg--warm .section-bg img { opacity: 0.5; }
.section--photo-bg--warm .section-bg::after { background: linear-gradient(135deg, rgba(251,248,244,.82) 0%, rgba(245,240,234,.75) 50%, rgba(251,248,244,.82) 100%); }
.section--photo-bg--blue .section-bg img { opacity: 0.4; }
.section--photo-bg--blue .section-bg::after { background: linear-gradient(135deg, rgba(232,240,248,.88) 0%, rgba(232,240,248,.8) 50%, rgba(232,240,248,.88) 100%); }
.section--photo-bg--dark .section-bg img { opacity: 0.35; }
.section--photo-bg--dark .section-bg::after { background: linear-gradient(135deg, rgba(28,43,58,.82) 0%, rgba(28,43,58,.78) 100%); }

/* Enhanced Page Header */
.page-header--image { padding: 56px 0 48px; }
.page-header--image .page-header-bg img { opacity: 0.6; }
.page-header--image .page-header-bg::after { background: linear-gradient(135deg, rgba(28,43,58,.7) 0%, rgba(28,43,58,.6) 50%, rgba(28,43,58,.5) 100%); }
.page-header--image .container { position: relative; z-index: 1; }
.page-header--image .eyebrow { color: var(--gold); }
.page-header--image h1 { color: #fff; }
.page-header--image p { color: rgba(255,255,255,.85); }
@media (min-width: 640px) { .page-header--image { padding: 72px 0 60px; } }
@media (min-width: 1024px) { .page-header--image { padding: 88px 0 72px; } }

/* Accent Stripe */
.accent-stripe { height: 4px; background: linear-gradient(90deg, var(--blue) 0%, var(--emerald) 50%, var(--gold) 100%); margin: 0; padding: 0; }

/* Enhanced Cards */
.info-card { transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.info-card:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.feature-callout { background: var(--bg-card); border-radius: var(--radius-card); border: 1px solid var(--border); padding: 32px 28px; box-shadow: 0 2px 12px rgba(0,0,0,.03); display: flex; gap: 20px; align-items: flex-start; margin-bottom: 20px; }
.feature-callout-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.feature-callout-icon--blue { background: var(--blue-light); color: var(--blue); }
.feature-callout-icon--emerald { background: var(--emerald-light); color: var(--emerald); }
.feature-callout-icon--gold { background: var(--gold-light); color: var(--gold); }
.feature-callout h3 { font-size: 18px; margin-bottom: 6px; }
.feature-callout p { font-size: 15px; line-height: 1.6; margin: 0; }

/* Inline Photo (rounded, within content) */
.inline-photo { border-radius: var(--radius-card); overflow: hidden; margin: 32px 0; box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.inline-photo img { width: 100%; height: 240px; object-fit: cover; object-position: center 30%; }
.inline-photo--tall img { height: 320px; }
@media (min-width: 640px) { .inline-photo img { height: 300px; } .inline-photo--tall img { height: 380px; } }

/* CTA Block enhanced */
.cta-block-enhanced { border-radius: 24px; padding: 56px 28px; text-align: center; position: relative; overflow: hidden; }
.cta-block-enhanced .cta-bg img { opacity: 0.4; }
.cta-block-enhanced .cta-bg::after { background: linear-gradient(135deg, rgba(43,108,176,.85) 0%, rgba(30,77,123,.88) 100%); }

/* Stat highlight with color */
.highlight-stat--blue { border-top: 3px solid var(--blue); }
.highlight-stat--emerald { border-top: 3px solid var(--emerald); }
.highlight-stat--gold { border-top: 3px solid var(--gold); }

/* Section centered with max-width */
.section-header--center { text-align: center; }
.section-header--center h2::after { left: 50%; transform: translateX(-50%); }
.section-header--center p { margin-left: auto; margin-right: auto; }

/* Resource page feature image enhanced */
.article-featured-img { box-shadow: 0 4px 20px rgba(0,0,0,.08); }

/* Enhanced form section */
.form-section--elevated { box-shadow: 0 8px 40px rgba(0,0,0,.06); border: none; }

/* Enroll page hero */
.enroll-hero { position: relative; overflow: hidden; padding: 56px 0 48px; }
.enroll-hero .section-bg { position: absolute; inset: 0; z-index: 0; }
.enroll-hero .section-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.enroll-hero .section-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(28,43,58,.75) 0%, rgba(43,108,176,.65) 100%); }
.enroll-hero .container { position: relative; z-index: 1; }
.enroll-hero h1 { color: #fff; margin-bottom: 12px; }
.enroll-hero p { color: rgba(255,255,255,.85); }
.enroll-hero .eyebrow { color: var(--gold); }
