/* ============================================================
   All Care Family Medicine — site styles
   Brand: navy #1F4E79, accent orange #E08A2E
   ============================================================ */

:root {
  --navy:        #1F4E79;
  --navy-dark:   #163A5C;
  --navy-deeper: #0F2A47;
  --orange:      #E08A2E;
  --orange-soft: #F4D9B5;
  --orange-tint: #FBEFD9;
  --cream:       #FAF4E8;
  --cream-soft:  #FDF9F0;
  --info-bg:     #E8F0F9;
  --info-border: #B7CFE6;
  --ink:         #1F2A37;
  --ink-soft:    #4B5563;
  --muted:       #6B7280;
  --line:        #E5E7EB;
  --line-soft:   #EFF1F4;
  --white:       #FFFFFF;

  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --maxw: 1180px;
  --radius: 6px;
  --radius-lg: 10px;
  --shadow-sm: 0 1px 2px rgba(15, 42, 71, 0.04), 0 1px 3px rgba(15, 42, 71, 0.06);
  --shadow-md: 0 4px 12px rgba(15, 42, 71, 0.08), 0 2px 4px rgba(15, 42, 71, 0.04);
}

/* -------- reset / base -------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.18;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4vw + .5rem, 3rem); }
h2 { font-size: clamp(1.6rem, 2.4vw + .5rem, 2.25rem); }
h3 { font-size: 1.25rem; font-family: var(--sans); font-weight: 600; color: var(--navy); letter-spacing: 0; }
h4 { font-size: 1rem; font-family: var(--sans); font-weight: 600; }

p { margin: 0 0 1em; color: var(--ink-soft); }

.accent-italic {
  font-style: italic;
  color: var(--orange);
  font-weight: 700;
}

/* -------- layout -------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 72px 0; }
@media (max-width: 720px) { section { padding: 48px 0; } }

.section-cream  { background: var(--cream); }
.section-cream-soft { background: var(--cream-soft); }
.section-white  { background: var(--white); }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}

.lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 640px;
}

/* -------- top utility bar -------- */
.utility {
  background: var(--navy);
  color: #DCE6F2;
  font-size: 13px;
  padding: 8px 0;
}
.utility .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.utility a { color: #DCE6F2; }
.utility a:hover { color: var(--white); text-decoration: underline; }
.utility-left, .utility-right {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.utility-left .phone { color: var(--white); font-weight: 600; }
.utility-left .phone::before { content: "☎ "; opacity: .9; margin-right: 4px; }
@media (max-width: 640px) {
  .utility { display: none; }
}

/* -------- header / nav -------- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line-soft);
  position: sticky; top: 0; z-index: 50;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 46px; height: 46px;
  border-radius: 4px;
  display: block;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--line-soft);
}
.brand-text { line-height: 1.1; }
.brand-text .name {
  display: block;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
}
.brand-text .loc {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-nav a {
  display: inline-block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 2px solid transparent;
}
.main-nav a:hover {
  color: var(--navy);
  text-decoration: none;
}
.main-nav a.active {
  color: var(--navy);
  border-bottom-color: var(--orange);
}
.main-nav .btn-portal { margin-left: 8px; }

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 8px 10px;
  border-radius: 4px;
  color: var(--navy);
}
@media (max-width: 880px) {
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 8px 16px 16px;
    gap: 0;
    display: none;
    box-shadow: var(--shadow-md);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 8px; border-bottom: 1px solid var(--line-soft); }
  .main-nav a.active { border-bottom-color: var(--line-soft); color: var(--orange); }
  .main-nav .btn-portal { margin: 12px 0 0; align-self: flex-start; }
  .nav-toggle { display: inline-flex; }
  .site-header .container { position: relative; }
}

/* -------- buttons -------- */
.btn {
  display: inline-block;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 3px;
  border: 1.5px solid transparent;
  background: transparent;
  color: var(--navy);
  text-decoration: none;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
  cursor: pointer;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover { background: #C7771F; border-color: #C7771F; color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-portal {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  padding: 9px 16px;
}
.btn-portal:hover { background: #C7771F; border-color: #C7771F; color: var(--white); }
.btn-light {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-light:hover { background: var(--cream); color: var(--navy); border-color: var(--cream); }

/* -------- breadcrumbs -------- */
.crumbs {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--navy); }
.crumbs .sep { margin: 0 6px; opacity: .6; }

/* -------- hero (interior pages) -------- */
.page-hero {
  background: var(--cream-soft);
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
}
.page-hero::after {
  content: "";
  display: block;
  width: 80px; height: 3px;
  background: var(--orange);
  margin-top: 24px;
}
.page-hero h1 { margin-bottom: 12px; }
.page-hero p { max-width: 680px; }

/* -------- home hero (with hours card) -------- */
.home-hero {
  background: var(--cream-soft);
  padding: 64px 0 64px;
}
.home-hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
}
.home-hero h1 { font-size: clamp(2.2rem, 3.4vw + .8rem, 3.2rem); margin-bottom: 18px; }
.home-hero .lead { font-size: 1.05rem; margin-bottom: 26px; }
.home-hero .cta-row {
  display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px;
}
.home-hero .oncall {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.home-hero .phone-big {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--navy);
  font-weight: 700;
}
.home-hero .phone-big a { color: var(--navy); }
.home-hero .phone-big a:hover { text-decoration: none; color: var(--orange); }
@media (max-width: 880px) {
  .home-hero .container { grid-template-columns: 1fr; gap: 32px; }
}

/* -------- hours card -------- */
.hours-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 24px 26px;
}
.hours-card h3 {
  color: var(--navy);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-soft);
}
.hours-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.hours-table td { padding: 9px 0; border-bottom: 1px solid var(--line-soft); }
.hours-table tr:last-child td { border-bottom: none; }
.hours-table .day { font-weight: 600; color: var(--navy); width: 50%; }
.hours-table .time { text-align: right; color: var(--ink-soft); }
.hours-table .closed { color: var(--orange); font-weight: 600; }
.hours-card .footnote {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  font-size: 12px;
  color: var(--muted);
}

/* -------- pillar feature cards -------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 36px;
}
@media (max-width: 880px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
}
.pillar-icon {
  width: 38px; height: 38px;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: var(--orange-tint);
  color: var(--orange);
  border-radius: 50%;
  margin-bottom: 14px;
  font-size: 18px;
}
.pillar h3 {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.pillar p { font-size: .94rem; margin: 0; }

/* -------- two-col headline + body -------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 28px; } }

/* -------- service preview list (home) -------- */
.svc-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 36px;
}
.svc-cols li {
  list-style: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: .95rem;
  color: var(--ink);
}
.svc-cols li::before { content: "✓"; color: var(--orange); margin-right: 10px; font-weight: 700; }
.svc-cols ul { padding: 0; margin: 0; }
@media (max-width: 600px) { .svc-cols { grid-template-columns: 1fr; } }

/* -------- service catalogue cards (services page) -------- */
.svc-group { margin-top: 32px; }
.svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
@media (max-width: 720px) { .svc-grid { grid-template-columns: 1fr; } }
.svc-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.svc-letter {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--orange-tint);
  color: var(--navy);
  display: inline-flex;
  align-items: center; justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  font-family: var(--sans);
}
.svc-item h4 {
  font-family: var(--sans);
  font-size: .98rem;
  font-weight: 700;
  color: var(--navy);
  margin: 2px 0 4px;
}
.svc-item p { font-size: .88rem; margin: 0; line-height: 1.5; }

/* -------- quote callout -------- */
.quote {
  background: var(--cream);
  padding: 56px 0;
  text-align: center;
}
.quote .container {
  max-width: 720px;
  position: relative;
}
.quote blockquote {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--navy);
  line-height: 1.5;
  position: relative;
  padding: 0 40px;
}
.quote blockquote::before,
.quote blockquote::after {
  font-family: var(--serif);
  color: var(--orange);
  font-size: 3rem;
  font-style: normal;
  line-height: 0;
  position: absolute;
  top: 18px;
}
.quote blockquote::before { content: "“"; left: 0; }
.quote blockquote::after  { content: "”"; right: 0; }
.quote .attrib {
  display: block;
  margin-top: 22px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-style: normal;
}

/* -------- CTA banner -------- */
.cta {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 64px 0;
}
.cta h2 {
  color: var(--white);
  margin-bottom: 12px;
}
.cta p {
  color: #D4DEEC;
  max-width: 560px;
  margin: 0 auto 24px;
}

/* -------- footer -------- */
.site-footer {
  background: var(--navy-deeper);
  color: #C9D4E3;
  padding: 56px 0 0;
  font-size: 14px;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
}
@media (max-width: 880px) {
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .site-footer .footer-grid { grid-template-columns: 1fr; }
}
.site-footer h4 {
  color: var(--white);
  font-size: .85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 14px;
  font-weight: 700;
}
.site-footer a { color: #C9D4E3; }
.site-footer a:hover { color: var(--white); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 8px; }
.site-footer p { color: #C9D4E3; margin: 0 0 12px; line-height: 1.55; }
.footer-brand .brand-mark {
  background: var(--white);
  border-color: rgba(255, 255, 255, .15);
  margin-bottom: 14px;
}
.footer-brand strong { color: var(--white); display: block; margin-bottom: 8px; }
.legal {
  margin-top: 40px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  text-align: center;
  font-size: 12px;
  color: #8FA3BD;
}
.legal p { margin: 0; color: #8FA3BD; max-width: 540px; margin-left: auto; margin-right: auto; }

/* -------- placeholder callout -------- */
.placeholder-note {
  background: var(--info-bg);
  border: 1px solid var(--info-border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: .9rem;
  color: var(--navy-dark);
  margin: 16px 0;
}
.placeholder-note strong { color: var(--navy); font-style: italic; }

/* -------- about — bio + philosophy split -------- */
.bio-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 36px;
}
@media (max-width: 880px) { .bio-split { grid-template-columns: 1fr; } }
.bio-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.bio-card .eyebrow { margin-bottom: 8px; }
.bio-card h2 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}
.bio-card p { font-size: .96rem; }
.bio-card .accepting {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  color: var(--navy);
  font-weight: 600;
}
.philosophy {
  background: var(--cream-soft);
  border-left: 3px solid var(--orange);
}

/* -------- team grid -------- */
.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
@media (max-width: 880px) { .team { grid-template-columns: 1fr; } }
.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--navy);
  font-weight: 700;
  font-family: var(--sans);
  font-size: 1rem;
  margin-bottom: 16px;
}
.team-card h4 {
  font-size: 1.05rem;
  color: var(--navy);
  margin: 0 0 4px;
}
.team-card .role {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 10px;
}
.team-card .bio { font-size: .88rem; color: var(--muted); margin: 0; font-style: italic; }

/* -------- forms grid (resources page) -------- */
.forms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
@media (max-width: 720px) { .forms-grid { grid-template-columns: 1fr; } }
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius);
  padding: 22px 22px 20px;
}
.form-card .form-icon {
  width: 32px; height: 32px;
  background: var(--orange-tint);
  color: var(--orange);
  display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: 4px;
  margin-bottom: 12px;
  font-size: 16px;
}
.form-card h3 {
  font-family: var(--sans);
  font-size: 1.02rem;
  color: var(--navy);
  margin: 0 0 6px;
}
.form-card p { font-size: .9rem; margin: 0 0 14px; }
.form-card .download {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--navy);
}
.form-card .download::after { content: " ↓"; color: var(--orange); }

/* -------- insurance grid -------- */
.ins-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 24px;
}
@media (max-width: 720px) { .ins-grid { grid-template-columns: repeat(2, 1fr); } }
.ins-cell {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 12px;
  text-align: center;
  font-size: .92rem;
  color: var(--navy);
  font-weight: 500;
}

/* -------- FAQ accordion -------- */
.faq { margin-top: 24px; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--orange);
  font-weight: 400;
  transition: transform .2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .answer {
  padding: 0 0 18px;
  color: var(--ink-soft);
  font-size: .96rem;
  max-width: 760px;
}

/* -------- contact page -------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }
.contact-block { margin-bottom: 28px; }
.contact-block .label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 6px;
}
.contact-block .big {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--navy);
  margin: 0 0 4px;
}
.contact-block p { font-size: .92rem; margin: 0; color: var(--muted); }
.contact-block .hours-rows {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 4px 16px;
  font-size: .94rem;
}
.contact-block .hours-rows .day { font-weight: 600; color: var(--navy); }

.map-placeholder {
  background: #DDE7F2;
  border: 1px solid #C5D5E8;
  border-radius: var(--radius);
  height: 220px;
  display: flex;
  align-items: center; justify-content: center;
  background-image: linear-gradient(to right, rgba(255,255,255,.5) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(255,255,255,.5) 1px, transparent 1px);
  background-size: 24px 24px;
}
.map-pin {
  background: var(--orange);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0,0,0,.18);
}

/* -------- reach card (contact page) -------- */
.reach-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--orange);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.reach-card h2 {
  font-family: var(--sans);
  font-size: 1.25rem;
  color: var(--navy);
  margin: 0 0 12px;
}
.reach-card .reach-sub {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin: 14px 0 6px;
}
.reach-card p {
  font-size: .94rem;
  margin: 0 0 14px;
}
.reach-card .reach-phone {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--navy);
  font-weight: 700;
  margin: 8px 0 4px;
  text-decoration: none;
}
.reach-card .reach-phone:hover { color: var(--orange); text-decoration: none; }
.reach-card .reach-divider {
  height: 1px;
  background: var(--line-soft);
  margin: 22px 0 4px;
}
.reach-card .reach-emergency {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  font-size: 12px;
  color: var(--muted);
}
.reach-card .reach-emergency strong { color: var(--navy); }

/* -------- portal page -------- */
.portal-hero {
  background: var(--navy);
  color: var(--white);
  padding: 64px 0 80px;
  position: relative;
  overflow: hidden;
}
.portal-hero::after {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(224, 138, 46, .12);
  top: -80px; right: -80px;
}
.portal-hero .container { position: relative; z-index: 1; }
.portal-hero .eyebrow { color: var(--orange); }
.portal-hero h1 { color: var(--white); max-width: 560px; }
.portal-hero p { color: #D4DEEC; max-width: 560px; }

.portal-cards {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 22px;
  margin-top: -56px;
  position: relative;
  z-index: 2;
}
@media (max-width: 880px) { .portal-cards { grid-template-columns: 1fr; margin-top: -40px; } }
.portal-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 28px 26px;
  box-shadow: var(--shadow-md);
}
.portal-card h2 {
  font-family: var(--sans);
  font-size: 1.2rem;
  color: var(--navy);
  margin: 0 0 12px;
}
.portal-features {
  list-style: none; padding: 0; margin: 16px 0 22px;
}
.portal-features li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: .95rem;
  color: var(--ink);
}
.portal-features li::before {
  content: "•";
  color: var(--orange);
  position: absolute; left: 8px; top: 6px;
  font-size: 1.4rem; line-height: 1;
}
.portal-help { background: var(--white); }
.portal-help li {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  align-items: start;
}
.portal-help li:last-child { border-bottom: none; }
.portal-help .help-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700;
}
.portal-help h4 {
  font-family: var(--sans);
  font-size: .98rem;
  color: var(--navy);
  margin: 2px 0 2px;
}
.portal-help p { font-size: .9rem; margin: 0; color: var(--ink-soft); }
.portal-help ul { list-style: none; padding: 0; margin: 0; }
.portal-help .footnote {
  background: var(--cream-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: .85rem;
  color: var(--ink-soft);
  margin-top: 14px;
}
.portal-help .footnote strong { color: var(--navy); }

/* -------- accessibility -------- */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; }

/* -------- print niceties -------- */
@media print {
  .utility, .site-header, .cta, .site-footer, .nav-toggle { display: none !important; }
  body { color: #000; }
}
