/* ============================================================
   Lilburn Christian Church — ATS site stylesheet
   Brand: green leaf mark, charcoal serif wordmark.
   Direction: "sanctuary garden" — warm paper, deep forest
   anchors, leaf-green accents. Zero JavaScript; CSS only.
   ============================================================ */

/* ---- Self-hosted fonts (CSP: fontSrc 'self') ---- */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/fraunces-v38-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/fraunces-v38-latin-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/fraunces-v38-latin-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/fraunces-v38-latin-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Karla';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/karla-v33-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Karla';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/karla-v33-latin-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Karla';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/fonts/karla-v33-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Karla';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/karla-v33-latin-700.woff2') format('woff2');
}

/* ---- Reset & tokens ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand — sampled from the LCC logo */
  --leaf:      #5ab361;   /* deep leaf green  */
  --leaf-lt:   #92ca74;   /* light leaf green */
  --ink:       #394241;   /* wordmark charcoal */

  /* Derived garden palette */
  --forest:    #24452f;   /* deep forest — hero, footer, table heads */
  --forest-dk: #17301f;
  --leaf-dk:   #2f6b3a;   /* accessible link/hover green */
  --paper:     #faf9f3;   /* warm page background */
  --sage:      #eef3e6;   /* tinted panel background */
  --sage-line: #dce6d0;   /* hairline borders */
  --white:     #ffffff;
  --gray-600:  #626a66;
  --red:       #b3402f;

  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:    'Karla', system-ui, -apple-system, sans-serif;

  --radius:    8px;
  --radius-lg: 14px;
  --shadow:    0 1px 2px rgba(23,48,31,.06), 0 6px 24px rgba(23,48,31,.08);
  --container: 1100px;
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); }

a { color: var(--leaf-dk); }
a:hover { color: var(--forest); }
img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---- Header: warm paper bar with the full-color leaf ---- */
.site-header {
  background: rgba(250,249,243,.96);
  border-top: 4px solid var(--leaf);
  border-bottom: 1px solid var(--sage-line);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(6px);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: .7rem;
  padding-bottom: .7rem;
  flex-wrap: wrap;
}

.brand-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .7rem;
}
.brand-leaf { width: 26px; height: auto; flex-shrink: 0; }
.brand-name {
  display: block;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  font-family: var(--font-display);
  line-height: 1.2;
}
.brand-sub {
  display: block;
  font-size: .66rem;
  color: var(--leaf-dk);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
}

/* CSS-only hamburger */
.nav-toggle-input { display: none; }
.nav-toggle-label {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: .5rem;
  margin-left: auto;
}
.nav-toggle-label span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.main-nav { margin-left: auto; }
.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .15rem;
}
.nav-list a {
  color: var(--ink);
  text-decoration: none;
  padding: .35rem .6rem;
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 500;
  transition: background .15s, color .15s;
}
.nav-list a:hover { background: var(--sage); color: var(--forest); }
.nav-divider { width: 1px; height: 18px; background: var(--sage-line); margin: 0 .25rem; }
.nav-user { color: var(--leaf-dk); font-size: .8rem; font-weight: 700; padding: .35rem .4rem; }

.btn-nav {
  border: 1px solid var(--sage-line);
  background: var(--white);
}
.btn-nav-primary {
  background: var(--forest) !important;
  border-color: var(--forest) !important;
  color: var(--white) !important;
  font-weight: 700;
}
.btn-nav-primary:hover { background: var(--leaf-dk) !important; border-color: var(--leaf-dk) !important; }

/* Inline logout form */
.inline-form { display: inline; }
.btn-link {
  background: none;
  border: none;
  color: var(--ink);
  cursor: pointer;
  font-size: .875rem;
  font-weight: 500;
  padding: .35rem .6rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
}
.btn-link:hover { background: var(--sage); color: var(--forest); }

@media (max-width: 768px) {
  .nav-toggle-label { display: flex; }
  .main-nav {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .nav-toggle-input:checked ~ .main-nav { max-height: 600px; }
  .nav-list { flex-direction: column; align-items: flex-start; padding-bottom: .75rem; }
  .nav-divider { display: none; }
}

/* ---- Main ---- */
.site-main { flex: 1; padding: 2rem 0 3.5rem; }

/* ---- Footer: deep forest with the white lockup ---- */
.site-footer {
  background: linear-gradient(160deg, var(--forest) 0%, var(--forest-dk) 100%);
  color: rgba(250,249,243,.82);
  padding: 2.5rem 0 2rem;
  font-size: .875rem;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  align-items: flex-start;
}
.footer-logo { width: 130px; height: auto; opacity: .95; }
.footer-col { min-width: 160px; }
.footer-col strong { color: var(--white); font-family: var(--font-display); font-weight: 600; font-size: 1rem; }
.footer-col a { color: var(--leaf-lt); text-decoration: none; }
.footer-col a:hover { text-decoration: underline; color: var(--white); }
.footer-copy {
  width: 100%;
  color: rgba(250,249,243,.45);
  font-size: .8rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(250,249,243,.12);
}

/* ---- Alert / Flash ---- */
.alert {
  padding: .85rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  font-size: .95rem;
  font-weight: 500;
}
.alert-success { background: #e2efdb; color: #1f4a2a; border: 1px solid #c4dfb6; }
.alert-error   { background: #f6ddd8; color: #6e2317; border: 1px solid #ecc3ba; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: .6rem 1.35rem;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .01em;
  text-decoration: none;
  border: 2px solid var(--forest);
  background: var(--forest);
  color: var(--white);
  cursor: pointer;
  font-family: var(--font-body);
  transition: background .15s, border-color .15s, color .15s, transform .15s;
}
.btn:hover { background: var(--leaf-dk); border-color: var(--leaf-dk); color: var(--white); transform: translateY(-1px); }
.btn-primary { background: var(--leaf); border-color: var(--leaf); color: var(--forest-dk); }
.btn-primary:hover { background: var(--leaf-lt); border-color: var(--leaf-lt); color: var(--forest-dk); }
.btn-outline  { background: transparent; border-color: var(--forest); color: var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--white); }
.btn-danger   { background: var(--red); border-color: var(--red); color: var(--white); }
.btn-danger:hover { background: #93321f; border-color: #93321f; }
.btn-sm       { font-size: .8rem; padding: .3rem .85rem; }
.btn-large    { font-size: 1.05rem; padding: .8rem 1.9rem; }
.btn-full     { width: 100%; text-align: center; }

/* ---- Page header ---- */
.page-header {
  position: relative;
  border-bottom: 1px solid var(--sage-line);
  padding-bottom: 1.25rem;
  margin-bottom: 2rem;
}
.page-header::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 88px;
  height: 3px;
  background: linear-gradient(90deg, var(--leaf) 0 50%, var(--leaf-lt) 50% 100%);
  border-radius: 2px;
}
.page-header h1 {
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--forest);
  line-height: 1.2;
}
.page-subtitle { color: var(--gray-600); margin-top: .35rem; font-size: 1.05rem; }
.page-note { color: var(--leaf-dk); margin-top: .5rem; font-size: .9rem; font-style: italic; }

/* ---- Hero: deep forest panel with leaf watermark ---- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(146,202,116,.28), transparent 60%),
    linear-gradient(150deg, var(--forest) 0%, var(--forest-dk) 100%);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: 4rem 2.5rem 3.5rem;
  margin-bottom: 3rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.hero::before {
  content: '';
  position: absolute;
  right: -60px;
  bottom: -110px;
  width: 340px;
  height: 560px;
  background: url('/img/lcc-leaf.png') no-repeat center / contain;
  opacity: .09;
  transform: rotate(12deg);
  pointer-events: none;
}
.hero > * { position: relative; }
.hero-leaf { width: 54px; height: auto; margin: 0 auto 1.25rem; filter: drop-shadow(0 4px 14px rgba(0,0,0,.25)); }
.hero-eyebrow {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-weight: 700;
  color: var(--leaf-lt);
  margin-bottom: .9rem;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--white);
  margin-bottom: .5rem;
  line-height: 1.12;
}
.hero-location { color: var(--leaf-lt); margin-bottom: 1.1rem; font-size: .95rem; letter-spacing: .04em; }
.hero-tagline {
  max-width: 640px;
  margin: 0 auto 2rem;
  font-size: 1.12rem;
  opacity: .92;
  font-family: var(--font-display);
  font-style: italic;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.hero .btn-outline { border-color: rgba(250,249,243,.55); color: var(--paper); }
.hero .btn-outline:hover { background: var(--paper); border-color: var(--paper); color: var(--forest); }
.hero-video { max-width: 640px; margin: 0 auto 2rem; }
.hero-video .video-container { box-shadow: 0 10px 40px rgba(0,0,0,.35); }

/* ---- Sections ---- */
.content-body { display: flex; flex-direction: column; gap: 0; }
.content-section { margin-bottom: 2.5rem; }
.content-section h2 {
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 1rem;
  padding-bottom: .45rem;
  border-bottom: 1px solid var(--sage-line);
}
.section-title {
  text-align: center;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 1.75rem;
}
.section-title::after {
  content: '';
  display: block;
  width: 56px;
  height: 3px;
  margin: .65rem auto 0;
  background: linear-gradient(90deg, var(--leaf) 0 50%, var(--leaf-lt) 50% 100%);
  border-radius: 2px;
}

/* ---- Card / highlight grids ---- */
.highlight-grid, .ministry-grid, .park-grid, .school-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}
.highlight-card, .ministry-card, .park-card, .school-card {
  background: var(--white);
  border: 1px solid var(--sage-line);
  border-top: 3px solid var(--leaf-lt);
  border-radius: var(--radius);
  padding: 1.4rem 1.25rem;
  box-shadow: 0 1px 3px rgba(23,48,31,.05);
  transition: transform .18s, box-shadow .18s;
}
.highlight-card:hover, .ministry-card:hover, .park-card:hover, .school-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.highlight-card h3, .ministry-card h3, .park-card h3, .school-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: .5rem;
}
.highlight-icon {
  font-size: 1.5rem;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sage);
  border-radius: 50%;
  margin-bottom: .85rem;
}

.directions-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.25rem; margin-top: 1rem; }
.direction-card {
  background: var(--white);
  border: 1px solid var(--sage-line);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.direction-card h3 { font-size: 1rem; font-weight: 600; color: var(--forest); margin-bottom: .75rem; }
.direction-card ol { padding-left: 1.25rem; }
.direction-card li { margin-bottom: .4rem; font-size: .9rem; }

/* ---- Card ---- */
.card {
  background: var(--white);
  border: 1px solid var(--sage-line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(23,48,31,.05);
}

/* ---- Tables ---- */
.data-table { width: 100%; border-collapse: collapse; margin-top: .5rem; font-size: .9rem; background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--sage-line); }
.data-table th, .data-table td { padding: .65rem .85rem; border-bottom: 1px solid var(--sage); text-align: left; vertical-align: top; }
.data-table th { background: var(--sage); font-weight: 700; color: var(--forest); white-space: nowrap; width: 35%; }
.data-table thead tr th { background: var(--forest); color: var(--paper); width: auto; font-family: var(--font-body); letter-spacing: .03em; }
.data-table tbody tr:last-child td, .data-table tbody tr:last-child th { border-bottom: none; }
.data-table tbody tr:hover { background: var(--paper); }

/* ---- Stats ---- */
.stat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1rem; margin: 1.25rem 0; }
.stat-card {
  background: linear-gradient(160deg, var(--forest) 0%, var(--forest-dk) 100%);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  text-align: center;
}
.stat-num {
  display: block;
  font-size: 1.9rem;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--leaf-lt);
}
.stat-label { display: block; font-size: .78rem; margin-top: .35rem; opacity: .85; line-height: 1.4; }

/* ---- CSS-only bar chart ---- */
.bar-chart { display: flex; flex-direction: column; gap: .65rem; margin: 1.25rem 0; }
.bar-row { display: flex; align-items: center; gap: .75rem; }
.bar-label { min-width: 170px; font-size: .85rem; font-weight: 500; }
.bar-track { flex: 1; height: 22px; background: var(--sage); border-radius: 999px; overflow: hidden; }
.bar-fill { display: block; height: 100%; background: linear-gradient(90deg, var(--leaf-dk), var(--leaf)); border-radius: 999px; }
.bar-pct { min-width: 3.5rem; text-align: right; font-size: .85rem; font-weight: 700; color: var(--forest); }

/* ---- Forms ---- */
.form-container { max-width: 480px; margin: 0 auto; }
.auth-form, .upload-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-weight: 700; font-size: .9rem; color: var(--ink); }
.form-group input, .form-group select, .form-group textarea {
  padding: .65rem .9rem;
  border: 1px solid var(--sage-line);
  background: var(--white);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: var(--font-body);
  color: var(--ink);
  width: 100%;
  transition: border-color .15s, box-shadow .15s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(90,179,97,.18);
}
.field-hint { font-size: .8rem; color: var(--gray-600); }
.form-footer { text-align: center; margin-top: 1.25rem; font-size: .9rem; }
.filter-form { display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.filter-form select { padding: .4rem .65rem; border: 1px solid var(--sage-line); background: var(--white); border-radius: var(--radius); font-size: .9rem; font-family: var(--font-body); }

/* ---- Upload form ---- */
.upload-form { max-width: 540px; }

/* ---- Stage badges ---- */
.stage-badge {
  display: inline-block;
  padding: .3rem .85rem;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.stage-registered              { background: var(--sage); color: var(--forest); }
.stage-phone_contact           { background: #f4ecd2; color: #7a5c14; }
.stage-resume_uploaded         { background: #d9ecdc; color: #1f5c31; }
.stage-interview_scheduled     { background: #d8e7ef; color: #1e4d66; }
.stage-referred_for_candidacy  { background: var(--leaf); color: var(--forest-dk); }
.stage-withdrawn               { background: #f6ddd8; color: #6e2317; }
.stage-not_selected            { background: #e6e6e2; color: #4b4f4c; }

/* ---- Role badges (admin area) ---- */
.role-badge {
  display: inline-block;
  padding: .25rem .75rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.role-applicant { background: var(--sage); color: var(--forest); }
.role-committee { background: #d8e7ef; color: #1e4d66; }
.role-admin     { background: var(--forest); color: var(--paper); }
.role-locked    { background: #f6ddd8; color: #6e2317; }

/* ---- Stage progress list ---- */
.stage-progress {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  counter-reset: stage;
  margin: 1rem 0 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
}
.stage-progress li {
  flex: 1;
  min-width: 120px;
  background: var(--sage);
  padding: .65rem .85rem;
  font-size: .8rem;
  font-weight: 700;
  color: var(--gray-600);
  border-right: 2px solid var(--paper);
  text-align: center;
}
.stage-progress li.active { background: var(--leaf); color: var(--forest-dk); }
.stage-progress li.done   { background: var(--forest); color: var(--paper); }

/* ---- Process steps ---- */
.process-steps { margin: 2rem 0; }
.steps-list { padding-left: 1.5rem; display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.5rem; }
.process-ol  { padding-left: 1.5rem; display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.process-ol li, .steps-list li { font-size: .95rem; }
.steps-list li::marker, .process-ol li::marker { color: var(--leaf-dk); font-weight: 700; }
.step-cta, .cta-section { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* ---- Service times ---- */
.times-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.25rem; margin: 1rem 0 1.25rem; }
.time-block {
  background: var(--white);
  border: 1px solid var(--sage-line);
  border-left: 3px solid var(--leaf);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.time-block h3 { font-weight: 600; color: var(--forest); margin-bottom: .75rem; }
.address-line { margin-top: 1rem; font-size: .9rem; color: var(--gray-600); }

/* ---- Lists ---- */
.belief-list, .resource-list { padding-left: 1.5rem; display: flex; flex-direction: column; gap: .5rem; margin-top: .5rem; }
.belief-list li, .resource-list li { font-size: .95rem; }
.belief-list li::marker, .resource-list li::marker { color: var(--leaf); }

/* ---- Location ---- */
.location-top { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.location-map-wrapper { text-align: center; }
.location-map { width: 100%; border-radius: var(--radius); border: 1px solid var(--sage-line); }
.map-caption { font-size: .75rem; color: var(--gray-600); margin-top: .4rem; }
.location-details { display: flex; flex-direction: column; gap: 1.25rem; }
address { font-style: normal; line-height: 1.8; }
@media (max-width: 640px) { .location-top { grid-template-columns: 1fr; } }

/* ---- Video ---- */
.video-section { text-align: center; }
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  max-width: 800px;
  margin: 0 auto;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.video-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ---- Notes/callouts ---- */
.note-callout {
  background: var(--sage);
  border-left: 4px solid var(--leaf);
  padding: .85rem 1.1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1rem 0;
  font-size: .9rem;
}
.callout-box {
  background: var(--sage);
  border: 1px solid var(--leaf-lt);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  font-size: .9rem;
}
.source-note { font-size: .78rem; color: var(--gray-600); margin-top: 1rem; font-style: italic; }

/* ---- Committee detail layout ---- */
.detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 768px) { .detail-grid { grid-template-columns: 1fr; } }
.detail-col { display: flex; flex-direction: column; gap: 0; }

/* ---- Applicant table ---- */
.applicant-table { width: 100%; }

/* ---- Interview note ---- */
.interview-time { margin-top: .75rem; padding: .6rem 1rem; background: var(--sage); border-left: 3px solid var(--leaf); border-radius: 0 var(--radius) var(--radius) 0; font-size: .9rem; }

/* ---- Empty state ---- */
.empty-state { color: var(--gray-600); font-style: italic; font-size: .9rem; }

/* ---- Highlights section ---- */
.highlights, .process-steps, .service-times { margin-bottom: 3rem; }
