:root{
  --primary:#C62828;
  --dark-red:#8E1B1B;
  --accent:#E53935;
  --light-red:#FDECEC;
  --navy:#172033;
  --teal:#0F766E;
  --success:#059669;
  --bg:#F7F9FC;
  --text:#1E293B;
  --muted:#64748B;
  --white:#FFFFFF;
  --shadow:0 14px 40px rgba(15, 23, 42, .10);
  --shadow-soft:0 10px 26px rgba(15, 23, 42, .08);
  --radius:18px;
  --radius-lg:26px;
  --ring:0 0 0 4px rgba(198, 40, 40, .12);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
}
img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}

.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:16px;
  top:16px;
  width:auto;
  height:auto;
  background:var(--white);
  padding:10px 12px;
  border-radius:12px;
  box-shadow:var(--shadow);
  z-index:9999;
}

.container{
  width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255, 255, 255, .16);
  border:1px solid rgba(255, 255, 255, .22);
  color:var(--white);
  font-weight:600;
  letter-spacing:.2px;
}
.pill .dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--success);
  box-shadow:0 0 0 4px rgba(5, 150, 105, .20);
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 18px;
  border-radius:14px;
  font-weight:700;
  letter-spacing:.2px;
  border:1px solid transparent;
  transition:transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
  user-select:none;
}
.btn:focus{outline:none; box-shadow:var(--ring)}
.btn:hover{transform:translateY(-1px); box-shadow:var(--shadow-soft)}
.btn:active{transform:translateY(0)}
.btn-primary{background:linear-gradient(135deg, var(--primary), var(--accent)); color:var(--white)}
.btn-primary:hover{background:linear-gradient(135deg, var(--accent), var(--primary))}
.btn-outline{
  background:transparent;
  color:var(--navy);
  border-color:rgba(23, 32, 51, .18);
}
.btn-outline:hover{
  border-color:rgba(23, 32, 51, .30);
  background:rgba(255, 255, 255, .65);
}
.btn-emergency{
  background:linear-gradient(135deg, var(--dark-red), var(--primary));
  color:var(--white);
  position:relative;
  overflow:hidden;
}
.btn-emergency::after{
  content:"";
  position:absolute;
  inset:-18px;
  background:radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .28), transparent 55%);
  transform:translateX(-20%);
  opacity:.7;
  transition:transform .25s ease;
}
.btn-emergency:hover::after{transform:translateX(0)}

.card{
  background:var(--white);
  border-radius:var(--radius);
  box-shadow:var(--shadow-soft);
  border:1px solid rgba(15, 23, 42, .06);
}
.card-hover{
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card-hover:hover{
  transform:translateY(-3px);
  box-shadow:var(--shadow);
  border-color:rgba(198, 40, 40, .22);
}

.muted{color:var(--muted)}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(198, 40, 40, .08);
  border:1px solid rgba(198, 40, 40, .14);
  color:var(--dark-red);
  font-weight:800;
  letter-spacing:.25px;
  text-transform:uppercase;
  font-size:12px;
}

.grid{display:grid; gap:18px}
.grid-2{grid-template-columns:repeat(2, minmax(0, 1fr))}
.grid-3{grid-template-columns:repeat(3, minmax(0, 1fr))}
.grid-4{grid-template-columns:repeat(4, minmax(0, 1fr))}

.section{padding:64px 0}
.section-title{font-size:34px; line-height:1.15; margin:0 0 12px}
.section-subtitle{margin:0; color:var(--muted)}

.site-header{position:sticky; top:0; z-index:50}
.top-strip{
  background:linear-gradient(135deg, var(--navy), #0E1627);
  color:rgba(255, 255, 255, .92);
  font-weight:700;
  font-size:13px;
  letter-spacing:.2px;
}
.top-strip .strip-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:10px 0;
}
.top-strip a{color:rgba(255, 255, 255, .92)}
.top-strip .sep{
  width:1px;
  height:14px;
  background:rgba(255, 255, 255, .22);
  display:inline-block;
  margin:0 10px;
}
.top-strip .emergency{
  display:flex;
  align-items:center;
  gap:10px;
}
.top-strip .emergency .pulse{
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 0 0 rgba(229, 57, 53, .55);
  animation:pulse 1.6s infinite;
}

.nav-shell{
  background:rgba(247, 249, 252, .80);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(15, 23, 42, .08);
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:900;
  letter-spacing:.2px;
  color:var(--navy);
}
.brand-mark{
  width:42px;
  height:42px;
  border-radius:14px;
  background:radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .34), transparent 60%),
    linear-gradient(135deg, var(--dark-red), var(--accent));
  box-shadow:0 12px 26px rgba(198, 40, 40, .22);
  position:relative;
  overflow:hidden;
}
.brand-mark::after{
  content:"";
  position:absolute;
  width:14px;
  height:14px;
  border-radius:50%;
  background:rgba(255, 255, 255, .42);
  left:10px;
  top:8px;
  filter:blur(.2px);
  opacity:.75;
}
.brand-text{display:flex; flex-direction:column; line-height:1.1}
.brand-text span:first-child{font-size:14px; letter-spacing:.24px}
.brand-text span:last-child{font-size:11px; color:var(--muted); font-weight:800}

.nav-toggle{
  position:absolute;
  opacity:0;
  width:1px;
  height:1px;
  overflow:hidden;
  clip:rect(0 0 0 0);
  clip-path:inset(50%);
  white-space:nowrap;
}
.nav-burger{
  display:none;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(15, 23, 42, .12);
  background:rgba(255, 255, 255, .72);
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.nav-burger:hover{transform:translateY(-1px); box-shadow:var(--shadow-soft)}
.nav-burger span{
  width:18px;
  height:2px;
  background:var(--navy);
  position:relative;
  border-radius:999px;
}
.nav-burger span::before,
.nav-burger span::after{
  content:"";
  position:absolute;
  left:0;
  width:18px;
  height:2px;
  background:var(--navy);
  border-radius:999px;
  transition:transform .2s ease, top .2s ease, opacity .2s ease;
}
.nav-burger span::before{top:-6px}
.nav-burger span::after{top:6px}

.nav{
  display:flex;
  align-items:center;
  gap:6px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.nav a{
  font-weight:800;
  color:rgba(23, 32, 51, .90);
  padding:10px 12px;
  border-radius:12px;
  transition:background-color .18s ease, transform .18s ease, color .18s ease;
}
.nav a:hover{background:rgba(198, 40, 40, .08); color:var(--dark-red); transform:translateY(-1px)}
.nav .nav-cta{margin-left:6px;color:#fff}

.hero{
  padding:40px 0 12px;
  position:relative;
  overflow:hidden;
}
.hero::before{
  content:"";
  position:absolute;
  inset:-220px -120px auto -120px;
  height:520px;
  background:
    radial-gradient(circle at 25% 25%, rgba(15, 118, 110, .16), transparent 55%),
    radial-gradient(circle at 75% 35%, rgba(198, 40, 40, .16), transparent 60%),
    radial-gradient(circle at 55% 75%, rgba(23, 32, 51, .10), transparent 60%);
  transform:rotate(8deg);
  pointer-events:none;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:24px;
  align-items:center;
  position:relative;
  z-index:1;
}
.hero h1{
  font-size:52px;
  line-height:1.08;
  margin:14px 0 10px;
  color:var(--navy);
  letter-spacing:-.4px;
  animation:rise .9s ease both;
}
.hero p{
  margin:0 0 18px;
  color:var(--muted);
  font-size:17px;
  max-width:56ch;
  animation:rise 1.05s ease both;
  animation-delay:.08s;
}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; animation:rise 1.15s ease both; animation-delay:.12s}
.hero-media{
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid rgba(15, 23, 42, .08);
  background:#E7ECF6;
}
.hero-media img{
  width:100%;
  height:520px;
  object-fit:fill;
  transform:scale(1.02);
  filter:saturate(1.02);
}
.hero-floating{
  margin-top: 20px;
  display:grid;
  gap:12px;
  width:min(320px, 92%);
  padding:14px;
  background:rgba(255, 255, 255, .52);
  border:1px solid rgba(255, 255, 255, .6);
  backdrop-filter:blur(10px);
  border-radius:var(--radius-lg);
  box-shadow:0 18px 46px rgba(15, 23, 42, .18);
}
.float-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:12px 14px;
  border-radius:16px;
  background:rgba(255, 255, 255, .86);
  border:1px solid rgba(15, 23, 42, .06);
  animation:float 3.6s ease-in-out infinite;
}
.float-card:nth-child(2){animation-delay:.35s}
.float-card:nth-child(3){animation-delay:.7s}
.float-card strong{color:var(--navy)}
.float-card span{color:var(--muted); font-weight:800}

.emergency-banner{
  border-radius:var(--radius-lg);
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, .18), transparent 45%),
    linear-gradient(135deg, var(--dark-red), var(--primary));
  color:var(--white);
  overflow:hidden;
  position:relative;
}
.emergency-banner::before{
  content:"";
  position:absolute;
  inset:-40px;
  background:
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, .16), transparent 54%),
    radial-gradient(circle at 75% 20%, rgba(255, 255, 255, .18), transparent 55%);
  filter:blur(0px);
  opacity:.9;
  pointer-events:none;
}
.emergency-inner{
  position:relative;
  padding:26px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}
.emergency-inner h2{margin:0; font-size:26px; letter-spacing:-.2px}
.emergency-inner p{margin:6px 0 0; color:rgba(255, 255, 255, .9)}
.emergency-actions{display:flex; gap:10px; flex-wrap:wrap}
.pulse-wrap{position:relative}
.pulse-wrap::after{
  content:"";
  position:absolute;
  inset:-8px;
  border-radius:18px;
  border:2px solid rgba(255, 255, 255, .36);
  opacity:.55;
  animation:pulse-outline 1.9s infinite;
  pointer-events:none;
}

.stat-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:14px;
  font-weight:900;
  font-size:12px;
  letter-spacing:.35px;
  text-transform:uppercase;
}
.status-available{color:var(--success); background:rgba(5, 150, 105, .10); border:1px solid rgba(5, 150, 105, .18)}
.status-limited{color:#B45309; background:rgba(245, 158, 11, .12); border:1px solid rgba(245, 158, 11, .22)}
.status-critical{color:var(--dark-red); background:rgba(198, 40, 40, .10); border:1px solid rgba(198, 40, 40, .20)}
.status-critical.pulsing{animation:pulse-soft 1.6s infinite}
.status-limited.pulsing{animation:pulse-soft 2.1s infinite}

.blood-card{
  padding:18px;
  border-radius:var(--radius);
  display:flex;
  flex-direction:column;
  gap:10px;
}
.blood-card .group{
  font-size:28px;
  font-weight:1000;
  color:var(--navy);
  letter-spacing:-.3px;
}
.blood-card .units{
  display:flex;
  align-items:baseline;
  gap:8px;
}
.blood-card .units strong{font-size:22px; color:var(--navy)}
.blood-card .units span{color:var(--muted); font-weight:800}

.component-card{padding:18px}
.component-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}
.component-name{margin:0; font-size:18px; color:var(--navy)}
.component-meta{display:flex; flex-direction:column; gap:4px; color:var(--muted); font-weight:700; font-size:13px}
.component-meta strong{color:var(--navy)}

.cta-split{
  border-radius:var(--radius-lg);
  background:linear-gradient(135deg, rgba(23, 32, 51, .92), rgba(23, 32, 51, .82));
  color:var(--white);
  overflow:hidden;
  position:relative;
  box-shadow:var(--shadow);
  border:1px solid rgba(255, 255, 255, .08);
}
.cta-split::before{
  content:"";
  position:absolute;
  inset:-1px;
  background:
    radial-gradient(circle at 12% 22%, rgba(15, 118, 110, .26), transparent 55%),
    radial-gradient(circle at 78% 58%, rgba(198, 40, 40, .26), transparent 55%);
  pointer-events:none;
}
.cta-inner{
  position:relative;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:18px;
  align-items:center;
  padding:28px;
}
.cta-inner h2{margin:0 0 10px; font-size:30px; letter-spacing:-.2px}
.cta-inner p{margin:0 0 16px; color:rgba(255, 255, 255, .86)}
.cta-media{
  border-radius:var(--radius-lg);
  overflow:hidden;
  border:1px solid rgba(255, 255, 255, .12);
  background:rgba(255, 255, 255, .06);
}
.cta-media img{width:100%; height:280px; object-fit:cover}
.cta-drops{
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.9;
}
.cta-drops::before,
.cta-drops::after{
  content:"";
  position:absolute;
  width:220px;
  height:220px;
  border-radius:50%;
  background:radial-gradient(circle at 30% 30%, rgba(255, 255, 255, .20), transparent 60%),
    linear-gradient(135deg, rgba(229, 57, 53, .44), rgba(198, 40, 40, .10));
  filter:blur(0px);
}
.cta-drops::before{
  left:-80px;
  top:-80px;
  transform:rotate(22deg);
  animation:float 4.6s ease-in-out infinite;
}
.cta-drops::after{
  right:-90px;
  bottom:-90px;
  transform:rotate(-16deg);
  animation:float 5.2s ease-in-out infinite;
  animation-delay:.45s;
}

.news-card{overflow:hidden}
.news-card .thumb{height:170px; background:#E7ECF6}
.news-card .thumb img{width:100%; height:100%; object-fit:cover}
.news-body{padding:16px}
.news-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  color:var(--muted);
  font-weight:800;
  font-size:12px;
  letter-spacing:.2px;
  text-transform:uppercase;
}
.news-body h3{margin:10px 0 8px; font-size:18px; color:var(--navy); letter-spacing:-.15px}
.news-body p{margin:0 0 12px; color:var(--muted)}
.link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:900;
  color:var(--dark-red);
  transition:transform .18s ease, color .18s ease;
}
.link:hover{transform:translateX(2px); color:var(--accent)}

.page-hero{
  padding:64px 0 34px;
  position:relative;
  overflow:hidden;
}
.page-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(135deg, rgba(23, 32, 51, .78), rgba(198, 40, 40, .42)),
    var(--page-hero-bg, radial-gradient(circle at 30% 30%, rgba(15, 118, 110, .24), transparent 55%));
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
  filter:saturate(1.05);
  pointer-events:none;
}
.page-hero::after{
  content:"";
  position:absolute;
  inset:-120px -120px auto -120px;
  height:420px;
  background:
    radial-gradient(circle at 22% 24%, rgba(255, 255, 255, .14), transparent 55%),
    radial-gradient(circle at 78% 48%, rgba(15, 118, 110, .22), transparent 60%),
    radial-gradient(circle at 58% 78%, rgba(229, 57, 53, .18), transparent 58%);
  transform:rotate(8deg);
  pointer-events:none;
}
.page-hero .wrap{
  position:relative;
  padding:26px;
  border-radius:var(--radius-lg);
  background:linear-gradient(135deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .10));
  backdrop-filter:blur(12px);
  border:1px solid rgba(255, 255, 255, .18);
  box-shadow:0 22px 70px rgba(15, 23, 42, .22);
}
.page-hero h1{
  margin:0 0 8px;
  font-size:34px;
  color:rgba(255, 255, 255, .96);
  letter-spacing:-.2px;
}
.page-hero p{margin:0; color:rgba(255, 255, 255, .86)}

.form{
  padding:22px;
}
.form-grid{display:grid; grid-template-columns:repeat(2, minmax(0, 1fr)); gap:14px}
.field{display:flex; flex-direction:column; gap:8px}
.field label{font-weight:900; color:var(--navy); font-size:13px}
.field input,
.field select,
.field textarea{
  border-radius:14px;
  border:1px solid rgba(15, 23, 42, .12);
  padding:12px 12px;
  font:inherit;
  background:rgba(255, 255, 255, .92);
  transition:border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.field textarea{min-height:120px; resize:vertical}
.field input:focus,
.field select:focus,
.field textarea:focus{
  outline:none;
  border-color:rgba(198, 40, 40, .38);
  box-shadow:var(--ring);
  background:var(--white);
}
.helper{color:var(--muted); font-weight:700; font-size:12px}
.form-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:16px}
.notice{
  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(5, 150, 105, .22);
  background:rgba(5, 150, 105, .08);
  color:#065F46;
  font-weight:800;
}
.tracking{
  padding:16px;
  display:flex;
  gap:14px;
  align-items:flex-start;
  justify-content:space-between;
  flex-wrap:wrap;
}
.tracking strong{color:var(--navy)}
.tracking .tag{
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(23, 32, 51, .12);
  background:rgba(255, 255, 255, .72);
  font-weight:900;
  color:var(--navy);
}

.table-wrap{
  overflow:auto;
  border-radius:var(--radius-lg);
  border:1px solid rgba(15, 23, 42, .08);
  background:var(--white);
  box-shadow:var(--shadow-soft);
}
table{width:100%; border-collapse:separate; border-spacing:0}
th, td{padding:14px 14px; text-align:left; border-bottom:1px solid rgba(15, 23, 42, .06); vertical-align:middle}
th{
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.2px;
  color:var(--muted);
  font-weight:1000;
  background:rgba(247, 249, 252, .85);
  position:sticky;
  top:0;
  z-index:1;
}
tr:hover td{background:rgba(198, 40, 40, .05)}

.filter-bar{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
  padding:18px;
}
.filter-bar .field{gap:6px}
.filter-bar select{padding:12px}

.timeline{
  display:grid;
  gap:14px;
}
.timeline-step{
  display:grid;
  grid-template-columns:56px 1fr;
  gap:14px;
  padding:16px;
  border-radius:var(--radius);
  background:var(--white);
  border:1px solid rgba(15, 23, 42, .06);
  box-shadow:var(--shadow-soft);
  position:relative;
  overflow:hidden;
}
.timeline-step::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(135deg, rgba(198, 40, 40, .10), transparent 56%);
  opacity:0;
  transition:opacity .18s ease;
}
.timeline-step:hover::before{opacity:1}
.timeline-icon{
  width:56px;
  height:56px;
  border-radius:18px;
  background:rgba(198, 40, 40, .10);
  border:1px solid rgba(198, 40, 40, .18);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--dark-red);
  font-weight:1000;
  font-size:18px;
}
.timeline-body{position:relative}
.timeline-body h3{margin:0 0 6px; color:var(--navy); letter-spacing:-.15px}
.timeline-body p{margin:0; color:var(--muted)}

.team-card{overflow:hidden}
.team-card .photo{height:220px; background:#E7ECF6}
.team-card .photo img{width:100%; height:100%; object-fit:cover}
.team-body{padding:16px}
.team-body h3{margin:0 0 6px; color:var(--navy)}
.team-body .role{color:var(--teal); font-weight:900}
.team-body p{margin:10px 0 0; color:var(--muted)}

.camp-card{overflow:hidden}
.camp-card .thumb{height:170px; background:#E7ECF6}
.camp-card .thumb img{width:100%; height:100%; object-fit:cover}
.camp-body{padding:16px}
.camp-body h3{margin:0 0 8px; color:var(--navy)}
.camp-list{margin:0; padding:0; list-style:none; display:grid; gap:6px; color:var(--muted); font-weight:700}
.camp-list strong{color:var(--navy)}
.camp-actions{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}

.gallery-controls{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}
.chip{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  background:rgba(255, 255, 255, .72);
  border:1px solid rgba(15, 23, 42, .10);
  font-weight:900;
  color:var(--navy);
  transition:transform .18s ease, border-color .18s ease, background-color .18s ease;
}
.chip:hover{
  transform:translateY(-1px);
  background:rgba(198, 40, 40, .06);
  border-color:rgba(198, 40, 40, .18);
}
.gallery{
  columns:3 280px;
  column-gap:16px;
}
.gallery-item{
  break-inside:avoid;
  margin:0 0 16px;
  border-radius:var(--radius-lg);
  overflow:hidden;
  position:relative;
  box-shadow:var(--shadow-soft);
  border:1px solid rgba(15, 23, 42, .06);
  background:var(--white);
}
.gallery-item img{
  width:100%;
  height:auto;
  transition:transform .5s ease, filter .5s ease;
}
.gallery-item:hover img{
  transform:scale(1.04);
  filter:saturate(1.05);
}
.gallery-item .overlay{
  position:absolute;
  inset:auto 0 0 0;
  padding:14px;
  background:linear-gradient(180deg, transparent, rgba(15, 23, 42, .78));
  color:var(--white);
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:10px;
}
.gallery-item .overlay strong{letter-spacing:-.1px}
.gallery-item .overlay span{font-weight:800; opacity:.9}

.lightbox{
  position:fixed;
  inset:0;
  background:rgba(15, 23, 42, .78);
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
  z-index:80;
}
.lightbox:target{display:flex}
.lightbox .frame{
  width:min(1020px, 100%);
  border-radius:var(--radius-lg);
  overflow:hidden;
  border:1px solid rgba(255, 255, 255, .16);
  background:rgba(255, 255, 255, .06);
  backdrop-filter:blur(10px);
  box-shadow:0 24px 70px rgba(15, 23, 42, .30);
}
.lightbox img{width:100%; height:min(560px, 68vh); object-fit:cover}
.lightbox .bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:14px 16px;
  color:rgba(255, 255, 255, .92);
}
.lightbox .bar strong{letter-spacing:-.1px}
.lightbox .close{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  border-radius:14px;
  border:1px solid rgba(255, 255, 255, .18);
  background:rgba(255, 255, 255, .08);
  font-weight:1000;
  transition:transform .18s ease, background-color .18s ease;
}
.lightbox .close:hover{transform:translateY(-1px); background:rgba(255, 255, 255, .14)}

.video-grid .video-card{overflow:hidden}
.video-grid .thumb{height:190px; background:#E7ECF6; position:relative}
.video-grid .thumb img{width:100%; height:100%; object-fit:cover}
.video-grid .thumb::after{
  content:"▶";
  position:absolute;
  left:16px;
  bottom:16px;
  width:54px;
  height:54px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(198, 40, 40, .92);
  color:var(--white);
  font-weight:1000;
  box-shadow:0 18px 40px rgba(198, 40, 40, .28);
}
.video-grid .body{padding:16px}
.video-grid h3{margin:0 0 8px; color:var(--navy)}
.video-grid p{margin:0; color:var(--muted)}

.modal{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  padding:22px;
  background:rgba(15, 23, 42, .72);
  z-index:90;
}
.modal:target{display:flex}
.modal .dialog{
  width:min(980px, 100%);
  border-radius:var(--radius-lg);
  background:var(--white);
  border:1px solid rgba(15, 23, 42, .08);
  box-shadow:0 28px 80px rgba(15, 23, 42, .30);
  overflow:hidden;
}
.modal .dialog-head{
  padding:16px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  background:linear-gradient(135deg, rgba(23, 32, 51, .96), rgba(23, 32, 51, .86));
  color:var(--white);
}
.modal .dialog-head h2{margin:0; font-size:18px}
.modal .dialog-head a{
  width:44px;
  height:44px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255, 255, 255, .18);
  background:rgba(255, 255, 255, .08);
  font-weight:1000;
}
.modal .dialog-body{padding:18px}

.map{
  height:320px;
  border-radius:var(--radius-lg);
  background:
    radial-gradient(circle at 22% 25%, rgba(15, 118, 110, .18), transparent 55%),
    radial-gradient(circle at 78% 65%, rgba(198, 40, 40, .16), transparent 55%),
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(255, 255, 255, .75));
  border:1px solid rgba(15, 23, 42, .08);
  box-shadow:var(--shadow-soft);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px;
  text-align:center;
}
.map strong{color:var(--navy)}
.map p{margin:8px 0 0; color:var(--muted); font-weight:700}

.site-footer{
  padding:56px 0 22px;
  background:linear-gradient(135deg, rgba(23, 32, 51, .96), rgba(23, 32, 51, .88));
  color:rgba(255, 255, 255, .90);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .9fr 1.1fr;
  gap:18px;
}
.footer-title{margin:0 0 10px; color:var(--white); font-size:15px; letter-spacing:.2px}
.footer-text{margin:0; color:rgba(255, 255, 255, .82)}
.footer-links{margin:0; padding:0; list-style:none; display:grid; gap:8px}
.footer-links a{
  color:rgba(255, 255, 255, .82);
  font-weight:800;
  transition:color .18s ease, transform .18s ease;
}
.footer-links a:hover{color:var(--white); transform:translateX(2px)}
.footer-contact{margin:0; padding:0; list-style:none; display:grid; gap:10px; color:rgba(255, 255, 255, .82); font-weight:800}
.footer-contact strong{color:var(--white)}
.social{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
}
.social a{
  width:44px;
  height:44px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255, 255, 255, .16);
  background:rgba(255, 255, 255, .06);
  color:rgba(255, 255, 255, .92);
  font-weight:1000;
  transition:transform .18s ease, background-color .18s ease, border-color .18s ease;
}
.social a:hover{transform:translateY(-2px); background:rgba(255, 255, 255, .10); border-color:rgba(255, 255, 255, .24)}
.footer-bottom{
  margin-top:22px;
  padding-top:18px;
  border-top:1px solid rgba(255, 255, 255, .12);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  color:rgba(255, 255, 255, .78);
  font-weight:800;
}
.footer-bottom strong{color:rgba(255, 255, 255, .92)}

.reveal{animation:fade-up .9s ease both}
.delay-1{animation-delay:.08s}
.delay-2{animation-delay:.16s}
.delay-3{animation-delay:.24s}

@keyframes rise{
  from{opacity:0; transform:translateY(18px)}
  to{opacity:1; transform:translateY(0)}
}
@keyframes fade-up{
  from{opacity:0; transform:translateY(22px)}
  to{opacity:1; transform:translateY(0)}
}
@keyframes float{
  0%, 100%{transform:translateY(0)}
  50%{transform:translateY(-6px)}
}
@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(229, 57, 53, .55)}
  70%{box-shadow:0 0 0 12px rgba(229, 57, 53, 0)}
  100%{box-shadow:0 0 0 0 rgba(229, 57, 53, 0)}
}
@keyframes pulse-soft{
  0%, 100%{transform:translateY(0); filter:saturate(1)}
  50%{transform:translateY(-1px); filter:saturate(1.05)}
}
@keyframes pulse-outline{
  0%{transform:scale(.98); opacity:.65}
  70%{transform:scale(1.04); opacity:0}
  100%{transform:scale(1.04); opacity:0}
}
