
:root{
  --bg:#fbfaf5;
  --paper:#f2eee6;
  --card:#fffdf8;
  --ink:#172018;
  --muted:#617064;
  --green:#20382f;
  --green-2:#285a46;
  --teal:#0f6b5a;
  --navy:#111827;
  --gold:#b5945b;
  --line:#ded8cb;
  --danger:#a83a3a;
  --danger-bg:#fff5f5;
  --blue:#315ebb;
  --shadow:0 18px 46px rgba(20,38,31,.09);
  --radius:26px;
  --radius-sm:18px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Tahoma,Arial,sans-serif;
  background:var(--bg);
  color:var(--ink);
  line-height:1.95;
  padding-bottom:82px;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.container{width:min(1120px,91vw);margin:auto}
.skip-link{position:absolute;top:-80px;right:14px;background:var(--navy);color:#fff;padding:10px 14px;border-radius:999px;z-index:100}
.skip-link:focus{top:14px}
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(251,250,245,.96);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.nav{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}
.brand{
  display:flex;
  align-items:center;
  gap:13px;
  min-width:0;
}
.brand-logo{
  width:58px;height:58px;border-radius:50%;
  border:3px solid var(--gold);
  object-fit:cover;
  background:var(--navy);
  box-shadow:0 8px 22px rgba(17,24,39,.15);
  flex:0 0 auto;
}
.brand-title{min-width:0}
.brand-title strong{
  display:block;
  color:var(--green);
  font-size:18px;
  line-height:1.35;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.brand-title span{display:block;color:var(--muted);font-size:12px;margin-top:1px}
.nav-links{
  display:flex;
  gap:14px;
  align-items:center;
  color:var(--muted);
  font-size:14px;
  white-space:nowrap;
}
.nav-links a[aria-current="page"]{color:var(--green);font-weight:900}
.nav-cta{
  display:flex;
  gap:10px;
  align-items:center;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius:999px;
  padding:13px 22px;
  font-weight:850;
  border:1px solid transparent;
  cursor:pointer;
  text-align:center;
  transition:.18s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-primary{background:var(--teal);color:#fff;box-shadow:0 16px 32px rgba(15,107,90,.18)}
.btn-secondary{background:var(--navy);color:#fff}
.btn-outline{background:#fff;color:var(--green);border-color:var(--line)}
.hero{
  padding:62px 0 46px;
  background:
    radial-gradient(circle at 18% 10%,rgba(181,148,91,.14),transparent 32%),
    linear-gradient(180deg,#fbfaf5 0%,#f2eddf 100%);
  border-bottom:1px solid var(--line);
}
.hero-grid{display:grid;grid-template-columns:1.12fr .88fr;gap:28px;align-items:center}
.kicker{
  color:var(--gold);
  font-weight:900;
  font-size:16px;
  margin-bottom:16px;
  display:flex;
  align-items:center;
  gap:10px;
}
.kicker:before{content:"";width:48px;height:3px;background:var(--gold);display:inline-block;border-radius:99px}
h1{
  font-size:clamp(34px,5.6vw,60px);
  line-height:1.38;
  margin:0 0 18px;
  color:var(--navy);
  letter-spacing:-.4px;
}
.hero p,.lead{
  font-size:20px;
  color:#384139;
  margin:0;
  max-width:850px;
}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:28px}
.hero-card,.panel,.card,.notice-card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.hero-card{padding:26px}
.hero-card h2{margin:0 0 10px;color:var(--green);font-size:26px}
.hero-card p{color:var(--muted);margin:0}
.quick-list{list-style:none;margin:18px 0 0;padding:0;display:grid;gap:12px}
.quick-list li{
  background:var(--paper);
  border:1px solid rgba(222,216,203,.8);
  border-radius:18px;
  padding:12px 14px;
  color:#2b382f;
  font-weight:750;
}
section{padding:58px 0;border-bottom:1px solid var(--line)}
.section-head{text-align:center;margin-bottom:28px}
.section-head .section-kicker{
  color:var(--gold);
  font-weight:900;
  margin-bottom:8px;
}
.section-head h2{
  margin:0;
  color:var(--green);
  font-size:clamp(28px,4vw,43px);
  line-height:1.35;
}
.section-head p{
  margin:12px auto 0;
  color:var(--muted);
  font-size:18px;
  max-width:850px;
}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.card{padding:24px}
.card h3{margin:0 0 10px;color:var(--green);font-size:22px;line-height:1.45}
.card p,.card li{color:#516056}
.card p{margin:0}
.card ul{margin:0;padding-right:18px}
.panel{padding:26px}
.panel p{color:#4d5a50;font-size:18px;margin:0 0 12px}
.panel p:last-child{margin-bottom:0}
.path-card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:24px;
  min-height:250px;
  box-shadow:0 12px 32px rgba(20,38,31,.06);
  display:flex;
  flex-direction:column;
}
.path-card .num{color:var(--gold);font-weight:950;font-size:24px;margin-bottom:8px}
.path-card h3{margin:0 0 10px;color:var(--green);font-size:22px}
.path-card p{color:#516056;margin:0;flex:1}
.emergency-box{
  background:var(--danger-bg);
  border:1px solid rgba(168,58,58,.22);
  border-radius:var(--radius);
  padding:30px;
  text-align:center;
  max-width:940px;
  margin:auto;
}
.emergency-box h2{color:var(--danger);font-size:36px;margin:0 0 14px;line-height:1.35}
.emergency-box p{font-size:20px;color:#26372e;margin:0}
.note{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius-sm);
  padding:16px 18px;
  color:#4f5f55;
  margin:0 0 18px;
}
.links-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
.link-btn{
  display:flex;align-items:center;justify-content:space-between;
  background:var(--card);border:1px solid var(--line);
  border-radius:18px;padding:14px 16px;font-weight:850;color:var(--green);
}
.article-card{
  background:var(--card);
  border:1px solid var(--line);
  border-top:5px solid var(--gold);
  border-radius:var(--radius);
  padding:24px;
  min-height:295px;
  display:flex;
  flex-direction:column;
  box-shadow:0 12px 32px rgba(20,38,31,.06);
}
.category{
  align-self:flex-start;
  color:var(--green);
  background:var(--paper);
  border:1px solid var(--line);
  padding:6px 12px;
  border-radius:999px;
  font-size:13px;
  font-weight:900;
  margin-bottom:14px;
}
.article-card h3{margin:0 0 12px;color:var(--navy);line-height:1.45;font-size:23px}
.article-card p{color:#516056;margin:0 0 18px;flex:1}
.status{color:var(--teal);font-weight:900;margin-top:auto}
.breadcrumb{font-size:14px;color:var(--muted);margin:18px 0 0}
.breadcrumb a{color:var(--green);font-weight:850}
.page-hero{text-align:center}
.page-hero h1{max-width:930px;margin-right:auto;margin-left:auto}
.page-hero p{margin:auto}
.floating{
  position:fixed;left:18px;right:18px;bottom:16px;z-index:60;
  background:var(--teal);color:#fff;border-radius:999px;
  min-height:62px;display:flex;align-items:center;justify-content:center;
  font-weight:950;font-size:21px;box-shadow:0 18px 42px rgba(15,107,90,.27);
}
.site-footer{
  padding:48px 0;
  background:#f0ece2;
  text-align:center;
}
.footer-logo{width:88px;height:88px;border-radius:50%;object-fit:cover;margin:0 auto 18px;border:2px solid #d2c9b6;background:var(--navy)}
.site-footer p{margin:6px 0;color:var(--muted)}
.site-footer a{color:var(--teal);font-weight:900}
.footer-links{display:flex;gap:12px;flex-wrap:wrap;justify-content:center;margin:16px 0;color:var(--green);font-weight:850}
@media(max-width:980px){
  .nav-links{display:none}
  .hero-grid,.grid-2,.grid-3,.grid-4{grid-template-columns:1fr}
  .hero-card{display:none}
}
@media(max-width:700px){
  body{padding-bottom:76px}
  .nav{min-height:70px}
  .brand-logo{width:52px;height:52px}
  .brand-title strong{font-size:17px;max-width:calc(91vw - 72px)}
  .brand-title span{display:none}
  .nav-cta{display:none}
  .hero{padding:42px 0 34px}
  h1{font-size:30px;line-height:1.55}
  .hero p,.lead{font-size:18px;line-height:2.05}
  .hero-actions{display:none}
  section{padding:46px 0}
  .section-head h2{font-size:30px}
  .section-head p{font-size:17px;line-height:2}
  .links-grid{grid-template-columns:1fr}
  .emergency-box h2{font-size:30px}
  .emergency-box p{font-size:18px;line-height:2.1}
  .floating{font-size:19px}
}
@media(max-width:390px){
  h1{font-size:28px}
  .section-head h2{font-size:28px}
}


.safety-strip{
  background:#fff5f5;
  border-bottom:1px solid rgba(168,58,58,.22);
  color:#5b2727;
  font-size:15px;
}
.safety-strip .container{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:48px;
  text-align:center;
  flex-wrap:wrap;
}
.safety-strip strong{color:var(--danger)}
.safety-strip a{
  background:var(--danger);
  color:#fff;
  border-radius:999px;
  padding:6px 12px;
  font-weight:900;
}
.hero .top-note{
  margin-top:18px;
  display:inline-flex;
  background:#fff;
  border:1px solid var(--line);
  border-radius:999px;
  padding:9px 15px;
  color:var(--green);
  font-weight:850;
}
.privacy-list{
  display:grid;
  gap:12px;
  margin:0;
  padding:0;
  list-style:none;
}
.privacy-list li{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:18px;
  padding:13px 16px;
  color:#3a493f;
}
.page-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:center;
  margin-top:24px;
}
.small-muted{font-size:14px;color:var(--muted);margin-top:12px}
@media(max-width:700px){
  .safety-strip{font-size:13px;line-height:1.7}
  .safety-strip .container{padding:8px 0;min-height:auto}
  .safety-strip a{padding:5px 10px}
  .hero .top-note{display:flex;border-radius:18px;line-height:1.7;text-align:center}
  .floating{left:28px;right:28px;min-height:56px;font-size:18px}
}

.governance-badge{display:inline-flex;background:#fff;border:1px solid var(--line);border-radius:999px;padding:9px 15px;color:var(--green);font-weight:850;margin-top:16px}
@media(max-width:700px){.governance-badge{border-radius:18px;line-height:1.7;text-align:center}}


/* v16 mobile footer/contact polish */
.site-footer{
  padding:36px 0 92px;
}
.footer-logo{
  width:66px;
  height:66px;
  margin-bottom:12px;
}
.site-footer p{
  font-size:16px;
  line-height:1.8;
}
.footer-links{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
  max-width:760px;
  margin:18px auto;
}
.footer-links a{
  background:#fffdf8;
  border:1px solid var(--line);
  border-radius:999px;
  padding:8px 10px;
  font-size:14px;
  line-height:1.4;
}
.contact-ltr{
  direction:ltr;
  unicode-bidi:isolate;
  display:inline-block;
  letter-spacing:.3px;
}
.footer-warning{
  max-width:620px;
  margin:12px auto 0 !important;
  color:#6d756e !important;
  font-size:15px !important;
}
@media(max-width:700px){
  .site-footer{
    padding:30px 0 92px;
  }
  .footer-logo{
    width:58px;
    height:58px;
  }
  .site-footer p{
    font-size:15px;
    line-height:1.75;
  }
  .footer-links{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:8px;
    margin:16px auto;
  }
  .footer-links a{
    font-size:13px;
    padding:8px 8px;
  }
}
@media(max-width:390px){
  .footer-links a{
    font-size:12.5px;
  }
}
