/* ==========================================================================
   Drawing the Line — shared stylesheet
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500;1,9..144,600&family=Source+Serif+4:opsz,wght@8..60,400;8..60,500;8..60,600&family=Inter:wght@400;500;600;700&display=swap');

:root{
  /* --- color tokens (drawn from the logo: light blue / red / black) --- */
  --ink:        #14151A;   /* near-black, primary text/dark bg */
  --ink-soft:   #3D3F46;   /* secondary text — dark slate, not gray */
  --paper:      #EFF7FA;   /* faint icy-blue page background */
  --paper-alt:  #FFFFFF;   /* card surface — clean white */
  --line-red:   #DC2626;   /* true red — buttons, links, outlines */
  --line-red-bright:#EF4444; /* lighter true red, for accents/icons/glow */
  --line-red-dark:#B91C1C;
  --blue:       #004CBC;   /* brand blue from the logo's diagonal line */
  --blue-pale:  #CEECF4;   /* brand light blue from the logo lettering */
  --hairline:   #D9E6EC;   /* cool border color on paper */
  --hairline-dark: rgba(255,255,255,.14);

  --radius-sm: 6px;
  --radius-md: 10px;
  --shadow-card: 0 1px 2px rgba(27,28,34,.04), 0 8px 24px -12px rgba(27,28,34,.12);

  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif-body: 'Source Serif 4', Georgia, 'Times New Roman', serif;
}

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

html{ scroll-behavior: smooth; }

body{
  margin:0;
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img{ max-width:100%; display:block; }

a{ color: inherit; text-decoration:none; }

h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}

p{ margin: 0 0 1em; }

/* Information text — mission copy, bios, descriptions — reads in a more
   formal serif, distinct from the display face and from UI chrome (nav,
   buttons, labels, hotline data), which stay in the sans body font. */
.lede,
.card p,
.team-card p,
.story-card p,
.footer-tagline,
.involve-block > p,
.volunteer-form-cta p{
  font-family: var(--font-serif-body);
  font-size: 1.02em;
}

.container{
  width: min(1120px, 100% - 3rem);
  margin-inline: auto;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.5em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--line-red);
}
.eyebrow::before{
  content:"";
  width: 22px;
  height: 2px;
  background: var(--line-red);
  display:inline-block;
  border-radius: 2px;
}

.section{ padding: 6rem 0; }
.section--tight{ padding: 4rem 0; }

@media (max-width: 720px){
  .section{ padding: 4rem 0; }
}

/* --- buttons --- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:.55em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .95em 1.6em;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
  white-space: nowrap;
}
.btn svg{ width: 16px; height:16px; transition: transform .22s ease; flex-shrink:0; }
.btn:hover svg{ transform: translateX(3px); }
.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: var(--line-red);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(220,38,38,.55);
}
.btn-primary:hover{ background: var(--line-red-dark); box-shadow: 0 14px 28px -10px rgba(220,38,38,.65); }

.btn-outline{
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover{ background: var(--ink); color: var(--paper); }

.btn-outline-light{
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-outline-light:hover{ background: #fff; color: var(--ink); border-color:#fff; }

.btn-ghost{
  background: transparent;
  color: var(--line-red);
  padding: .6em 0;
}
.btn-ghost:hover{ color: var(--line-red-dark); }

/* ==========================================================================
   Nav
   ========================================================================== */
.site-header{
  position: sticky;
  top:0;
  z-index: 60;
  background: rgba(239,247,250,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline);
}
.nav{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 1.1rem 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:.6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink);
}
.brand-mark{ width: 34px; height:auto; flex-shrink:0; }

.nav-links{
  display:flex;
  align-items:center;
  gap: 2.1rem;
  list-style:none;
  margin:0; padding:0;
}
.nav-links a{
  font-weight: 600;
  font-size: .92rem;
  color: var(--ink-soft);
  position: relative;
  padding: .2rem 0;
  transition: color .2s ease;
}
.nav-links a:hover{ color: var(--ink); }
.nav-links a::after{
  content:"";
  position:absolute;
  left:0; right:100%;
  bottom:-3px;
  height:2px;
  background: var(--line-red);
  transition: right .25s ease;
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after{ right:0; }
.nav-links a[aria-current="page"]{ color: var(--ink); }

.nav-cta{ display:flex; align-items:center; gap:1.4rem; }

.nav-toggle{
  display:none;
  background:none; border:none; cursor:pointer;
  width: 40px; height:40px;
  padding: 8px;
}
.nav-toggle span{
  display:block; width:100%; height:2px; background:var(--ink);
  margin: 5px 0; transition: transform .25s ease, opacity .25s ease;
}

@media (max-width: 860px){
  .nav-links{
    position:absolute;
    top: 100%; left:0; right:0;
    background: var(--paper-alt);
    border-bottom: 1px solid var(--hairline);
    flex-direction:column;
    align-items:flex-start;
    gap: 0;
    padding: .5rem 0;
    max-height:0;
    overflow:hidden;
    transition: max-height .3s ease;
  }
  .nav-links.open{ max-height: 320px; }
  .nav-links li{ width:100%; }
  .nav-links a{ display:block; padding: .9rem 1.5rem; }
  .nav-links a::after{ display:none; }
  .nav-cta .btn span.btn-label-full{ display:none; }
  .nav-toggle{ display:block; }
}

/* ==========================================================================
   Hero (home)
   ========================================================================== */
.hero{
  position: relative;
  padding: 5.5rem 0 6.5rem;
  overflow: hidden;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  align-items:center;
}
@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
}
.hero h1{
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
  max-width: 16ch;
}
.hero .lede{
  font-size: 1.15rem;
  color: var(--ink);
  max-width: 46ch;
  margin-top: 1.2rem;
}
.hero-actions{
  display:flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.2rem;
}

.underline-draw{
  position:relative;
  white-space: nowrap;
}
.underline-draw svg{
  position:absolute;
  left:-2%; bottom:-.08em;
  width:104%;
  height: .32em;
  overflow: visible;
}
.underline-draw path{
  fill:none;
  stroke: var(--line-red);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-dasharray: 340;
  stroke-dashoffset: 340;
}
.underline-draw.in-view path{
  animation: draw 1s cubic-bezier(.65,0,.35,1) .55s forwards;
}
@keyframes draw{ to{ stroke-dashoffset:0; } }

.hero-photo-frame{
  position:relative;
  border-radius: var(--radius-md);
  overflow:hidden;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 5;
  max-width: 440px;
  margin-inline: auto;
}
.hero-photo-frame::after{
  content:"";
  position:absolute;
  inset:0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.4);
  pointer-events:none;
}
.hero-photo{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
@media (max-width: 900px){
  .hero-photo-frame{ max-width: 340px; }
}

/* generic draw-line divider used across pages */
.draw-divider{ width: 74px; height: 14px; margin: 0 0 1.4rem; }
.draw-divider path{
  fill:none; stroke: var(--line-red); stroke-width:5; stroke-linecap:round;
  stroke-dasharray: 140; stroke-dashoffset: 140;
}
.draw-divider.in-view path{ animation: draw .8s ease .1s forwards; }

/* ==========================================================================
   Page hero (sub pages)
   ========================================================================== */
.page-hero{
  padding: 4.2rem 0 3.6rem;
  border-bottom: 1px solid var(--hairline);
}
.page-hero h1{ font-size: clamp(2.2rem, 4.4vw, 3.2rem); }
.page-hero .lede{ color: var(--ink-soft); font-size: 1.08rem; max-width: 60ch; margin-top: .9rem; }

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */
.reveal{
  opacity:0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in-view{ opacity:1; transform: translateY(0); }
.reveal-stagger.in-view > *{ transition-delay: calc(var(--i, 0) * 90ms); }

@media (prefers-reduced-motion: reduce){
  .reveal, .reveal.in-view, .underline-draw path, .draw-divider path{
    transition: none !important;
    animation: none !important;
    opacity:1 !important;
    transform:none !important;
    stroke-dashoffset:0 !important;
  }
  html{ scroll-behavior:auto; }
}

/* ==========================================================================
   Pillar / feature cards
   ========================================================================== */
.pillar-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
}
@media (max-width: 720px){ .pillar-grid{ grid-template-columns: 1fr; } }

.card{
  background: var(--paper-alt);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(220,38,38,.35);
}

.icon-circle{
  width: 52px; height:52px;
  border-radius:50%;
  background: rgba(220,38,38,.1);
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 1.1rem;
  transition: transform .3s ease, background .3s ease;
}
.icon-circle svg{ width:24px; height:24px; stroke: var(--line-red); }
.card:hover .icon-circle{ transform: scale(1.08) rotate(-4deg); background: rgba(220,38,38,.16); }

.card h3{ font-size: 1.28rem; margin-bottom:.5rem; }
.card p{ color: var(--ink-soft); margin:0; font-size: .98rem; }

.stat-number{
  display:block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--line-red);
  line-height:1;
  margin-bottom: .4rem;
}

.impact-gallery{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
}
@media (max-width: 720px){ .impact-gallery{ grid-template-columns: 1fr; } }

.impact-photo{ margin: 0; }
.impact-photo img{
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-card);
  display:block;
}
.impact-photo figcaption{
  margin-top: 1rem;
  text-align: center;
  font-family: var(--font-serif-body);
  font-style: italic;
  color: var(--ink-soft);
  font-size: .96rem;
}

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band{
  background: var(--ink);
  color: #fff;
  text-align:center;
  padding: 5rem 0;
  position: relative;
  overflow:hidden;
}
.cta-band h2{ font-size: clamp(2rem, 4vw, 2.8rem); color:#fff; }
.cta-band .underline-draw path{ stroke: var(--blue); }
.cta-band-actions{ margin-top: 2rem; display:flex; justify-content:center; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{
  background: var(--ink);
  color: rgba(255,255,255,.72);
  padding: 4rem 0 2rem;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.4rem;
}
@media (max-width: 720px){ .footer-grid{ grid-template-columns: 1fr; gap: 2.2rem; } }

.footer-brand{ color:#fff; font-family: var(--font-display); font-size:1.35rem; font-weight:700; }
.footer-logo{ width: 52px; height:auto; margin-bottom: 1rem; }
.footer-tagline{ margin-top:.6rem; max-width: 32ch; color: rgba(255,255,255,.55); font-size:.95rem; }

.footer-heading{
  font-size:.74rem; letter-spacing:.14em; text-transform:uppercase;
  color: rgba(255,255,255,.45); margin-bottom: 1rem; font-weight:700;
}
.footer-links{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:.65rem; }
.footer-links a{ font-size:.95rem; transition: color .2s ease; }
.footer-links a:hover{ color:#fff; }

.footer-hotline-number{ color:#fff; font-weight:700; font-size:1.3rem; font-family: var(--font-display); }
.footer-note{ font-size:.85rem; color: rgba(255,255,255,.45); margin-top:.2rem; }

.footer-help-btn{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  margin-top: 1.1rem;
  padding: .65em 1.1em;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.04);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .82rem;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.footer-help-btn svg{ width: 15px; height:15px; stroke: var(--line-red); flex-shrink:0; }
.footer-help-btn:hover{
  background: var(--line-red);
  border-color: var(--line-red);
  transform: translateY(-1px);
}
.footer-help-btn:hover svg{ stroke:#fff; }

.footer-bottom{
  border-top: 1px solid var(--hairline-dark);
  margin-top: 3rem;
  padding-top: 1.6rem;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:.6rem;
}

/* ==========================================================================
   Team page
   ========================================================================== */
.team-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  margin-top: 2.6rem;
}
/* If the count leaves exactly one card alone in the final row, center it
   instead of letting it sit stranded on the left. */
.team-grid > :last-child:nth-child(3n+1){ grid-column: 2; }

@media (max-width: 980px){
  .team-grid{ grid-template-columns: repeat(2, 1fr); }
  .team-grid > :last-child:nth-child(3n+1){ grid-column: auto; }
  .team-grid > :last-child:nth-child(2n+1){
    grid-column: 1 / -1;
    max-width: calc(50% - .8rem);
    margin-inline: auto;
  }
}
@media (max-width: 640px){
  .team-grid{ grid-template-columns: 1fr; }
  .team-grid > :last-child{ grid-column: auto; max-width: none; margin-inline: 0; }
}

.team-card{
  background: var(--paper-alt);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.team-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-card); }

.team-photo-frame{
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--paper);
  border-bottom: 3px solid var(--line-red);
}
.team-photo{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.25,.8,.35,1);
}
.team-card:hover .team-photo{ transform: scale(1.06); }

.team-card-body{ padding: 1.7rem 1.8rem 2rem; }

/* Initials avatar — still used for the founder byline on the About page */
.avatar{
  width: 64px; height:64px;
  border-radius:50%;
  background: linear-gradient(135deg, var(--line-red), var(--blue));
  color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-family: var(--font-display);
  font-weight:700;
  font-size: 1.3rem;
  margin-bottom: 1.2rem;
  position:relative;
}
.avatar::after{
  content:"";
  position:absolute;
  inset:-4px;
  border-radius:50%;
  border: 1.5px dashed rgba(220,38,38,.35);
}

.team-role{
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  color: var(--line-red);
  margin-bottom:.3rem;
}
.team-card h3{ font-size:1.2rem; margin-bottom:.7rem; }
.team-card-body p{ color: var(--ink-soft); font-size: .93rem; margin:0; }

/* ==========================================================================
   About / Story
   ========================================================================== */
.story-wrap{
  display:grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 3.5rem;
  align-items:start;
}
@media (max-width: 860px){ .story-wrap{ grid-template-columns:1fr; gap: 2rem; } }

.story-card{
  background: var(--paper-alt);
  border: 1px solid var(--hairline);
  border-left: 4px solid var(--line-red);
  border-radius: var(--radius-md);
  padding: 2.6rem 2.6rem 2.6rem 2.2rem;
}
.story-card p{ font-size: 1.08rem; color: var(--ink-soft); }
.story-byline{
  display:flex; align-items:center; gap:.8rem; margin-top:1.6rem;
}
.story-byline .avatar{ width:42px; height:42px; font-size:.9rem; margin:0; }
.story-byline-name{ font-weight:700; font-size:.95rem; }
.story-byline-role{ font-size:.82rem; color: var(--ink-soft); }

.story-aside{ position: sticky; top: 6.5rem; }
.story-aside .eyebrow{ margin-bottom:1rem; }

/* ==========================================================================
   Testimonials ("Why We Do This")
   ========================================================================== */
.quote-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  margin-top: 3rem;
}
@media (max-width: 720px){ .quote-grid{ grid-template-columns: 1fr; } }

.quote-card{
  background: var(--paper-alt);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  margin: 0;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.quote-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(220,38,38,.35);
}
.quote-mark{
  width: 34px;
  height: 26px;
  fill: var(--line-red);
  opacity: .28;
  margin-bottom: .8rem;
}
.quote-card p{
  font-family: var(--font-serif-body);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink);
  margin: 0 0 1.2rem;
}
.quote-card footer{
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .88rem;
  color: var(--line-red);
}

/* ==========================================================================
   Get Involved
   ========================================================================== */
.involve-block{ margin-bottom: 5rem; }
.involve-block:last-child{ margin-bottom:0; }
.involve-head{ display:flex; align-items:center; gap:1rem; margin-bottom:1.6rem; }
.involve-head .icon-circle{ margin:0; }
.involve-head h2{ margin:0; font-size: 1.9rem; }

.amount-row{ display:flex; gap:.8rem; flex-wrap:wrap; margin: 1.6rem 0 1.8rem; }
.amount-pill{
  border: 1.5px solid var(--hairline);
  background: var(--paper-alt);
  padding: .75em 1.3em;
  border-radius: 999px;
  font-weight:700;
  font-size: .95rem;
  cursor:pointer;
  transition: all .2s ease;
}
.amount-pill:hover{ border-color: var(--line-red); }
.amount-pill.active{ background: var(--ink); color:#fff; border-color: var(--ink); }

.volunteer-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
  margin-top: 2.2rem;
}
@media (max-width: 720px){ .volunteer-grid{ grid-template-columns:1fr; } }

.volunteer-form-cta{
  margin-top: 1.8rem;
  display:flex;
  align-items:center;
  gap: 1.4rem;
  flex-wrap:wrap;
  background: var(--paper-alt);
  border:1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 1.8rem 2rem;
}
.volunteer-form-cta p{ margin:0; color: var(--ink-soft); flex:1; min-width:220px; }

/* ==========================================================================
   Floating help button + modal
   ========================================================================== */
.help-fab{
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  z-index: 80;
  display:flex;
  align-items:center;
  gap:.6rem;
  background: var(--line-red);
  color:#fff;
  border:none;
  padding: .9rem 1.3rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight:700;
  font-size:.88rem;
  letter-spacing:.02em;
  cursor:pointer;
  box-shadow: 0 12px 28px -10px rgba(220,38,38,.6);
  transition: transform .2s ease, box-shadow .2s ease;
}
.help-fab:hover{ transform: translateY(-2px); box-shadow: 0 16px 32px -10px rgba(220,38,38,.7); }
.help-fab svg{ width:18px; height:18px; }
.help-fab .pulse{
  position:absolute; inset:0; border-radius:999px;
  border: 2px solid var(--line-red);
  animation: pulse-ring 2.4s ease-out infinite;
}
@keyframes pulse-ring{
  0%{ transform:scale(1); opacity:.55; }
  100%{ transform:scale(1.35); opacity:0; }
}
@media (prefers-reduced-motion: reduce){
  .help-fab .pulse{ animation:none; display:none; }
}

.modal-backdrop{
  position: fixed; inset:0;
  background: rgba(20,18,15,.55);
  backdrop-filter: blur(2px);
  z-index: 90;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 1.2rem;
  opacity:0;
  pointer-events:none;
  transition: opacity .25s ease;
}
.modal-backdrop.open{ opacity:1; pointer-events:auto; }

.modal{
  background: var(--paper-alt);
  border-radius: var(--radius-md);
  max-width: 460px;
  width:100%;
  max-height: 88vh;
  overflow-y:auto;
  padding: 2.2rem;
  position:relative;
  transform: translateY(16px) scale(.98);
  opacity:0;
  transition: transform .3s ease, opacity .3s ease;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.4);
}
.modal-backdrop.open .modal{ transform: translateY(0) scale(1); opacity:1; }

.modal-close{
  position:absolute; top: 1.3rem; right: 1.3rem;
  background:none; border:none; cursor:pointer;
  width:32px; height:32px;
  display:flex; align-items:center; justify-content:center;
  color: var(--ink-soft);
  transition: color .2s ease, transform .2s ease;
}
.modal-close:hover{ color: var(--ink); transform: rotate(90deg); }
.modal-close svg{ width:20px; height:20px; }

.modal-head{ display:flex; gap:.9rem; align-items:flex-start; margin-bottom:1.6rem; padding-right: 2rem; }
.modal-head h2{ font-size:1.5rem; margin-bottom:.2rem; }
.modal-head p{ margin:0; color: var(--ink-soft); font-size:.95rem; }

.hotline-list{ display:flex; flex-direction:column; gap:.8rem; margin-bottom:1.6rem; }
.hotline-item{
  border:1px solid var(--hairline);
  border-radius: var(--radius-sm);
  padding: 1rem 1.1rem;
  display:flex;
  gap:.9rem;
  align-items:flex-start;
  transition: border-color .2s ease, background .2s ease;
}
.hotline-item:hover{ border-color: var(--line-red); background: rgba(220,38,38,.04); }
.hotline-item svg{ width:19px; height:19px; stroke: var(--line-red); margin-top:.2rem; flex-shrink:0; }
.hotline-name{ font-weight:600; font-size:.94rem; }
.hotline-number{ color: var(--line-red); font-weight:700; font-size: 1.05rem; margin-top:.15rem; }
.hotline-avail{ color: var(--ink-soft); font-size:.8rem; margin-top:.1rem; }

.exit-btn{
  width:100%;
  justify-content:center;
  background: var(--line-red);
  color:#fff;
  padding: 1em;
  font-size:.86rem;
}
.exit-btn:hover{ background: var(--line-red-dark); }
.exit-note{ text-align:center; font-size:.78rem; color: var(--ink-soft); margin: .8rem 0 0; }

/* misc */
.skip-link{
  position:absolute; left:-999px; top:0;
  background: var(--ink); color:#fff; padding:.8rem 1.2rem; z-index:100;
}
.skip-link:focus{ left: 1rem; top: 1rem; }

:focus-visible{ outline: 2.5px solid var(--line-red); outline-offset: 3px; }
