
: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}}



.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;
  }
}



.hero-actions .btn{min-width:140px}
@media(max-width:700px){
  body{padding-bottom:72px}
  .hero{padding:26px 0 28px}
  .kicker{font-size:13px;line-height:1.7;margin-bottom:10px}
  .kicker:before{width:32px;height:2px}
  h1{font-size:25px;line-height:1.42;margin-bottom:12px;letter-spacing:0}
  .hero p,.lead{font-size:15.8px;line-height:1.82}
  .hero .top-note{margin-top:12px;padding:8px 12px;font-size:13.5px}
  .hero-actions{display:flex;margin-top:16px;gap:8px}
  .hero-actions .btn{flex:1 1 100%;padding:10px 14px;font-size:14px;min-height:44px}
  .floating{left:54px;right:54px;bottom:12px;min-height:46px;font-size:15.5px;box-shadow:0 12px 30px rgba(15,107,90,.22)}
}
@media(max-width:390px){
  h1{font-size:24px}
  .hero p,.lead{font-size:15px}
  .floating{left:62px;right:62px;font-size:14.5px}
}



:root{
  --bg:#0B0F12;
  --paper:#111827;
  --card:#111A20;
  --ink:#F4EDE1;
  --muted:#C9C2B8;
  --green:#D6BF7A;
  --green-2:#B9965A;
  --teal:#B9965A;
  --navy:#F4EDE1;
  --gold:#D6BF7A;
  --line:rgba(214,191,122,.24);
  --danger:#D55C51;
  --danger-bg:rgba(180,35,24,.12);
  --blue:#D6BF7A;
  --shadow:0 24px 70px rgba(0,0,0,.28);
}
html{background:#0B0F12;}
body{
  background:
    radial-gradient(circle at 10% 0%, rgba(214,191,122,.13), transparent 34%),
    radial-gradient(circle at 90% 8%, rgba(47,111,104,.10), transparent 30%),
    linear-gradient(180deg,#0B0F12 0%,#0E151A 45%,#0B0F12 100%);
  color:var(--ink);
}
.site-header{
  background:rgba(11,15,18,.88);
  border-bottom:1px solid var(--line);
  box-shadow:0 18px 40px rgba(0,0,0,.22);
}
.brand-logo{
  border:2px solid rgba(214,191,122,.72);
  background:#0B0F12;
  box-shadow:0 0 0 5px rgba(214,191,122,.06),0 12px 30px rgba(0,0,0,.28);
}
.brand-title strong{color:#F4EDE1;}
.brand-title span,.nav-links{color:#C9C2B8;}
.nav-links a[aria-current="page"],.nav-links a:hover{color:#D6BF7A;}
.btn-primary{
  background:linear-gradient(135deg,#D6BF7A 0%,#B9965A 100%);
  color:#111827;
  box-shadow:0 18px 38px rgba(214,191,122,.18);
}
.btn-secondary{
  background:rgba(244,237,225,.07);
  color:#F4EDE1;
  border-color:rgba(214,191,122,.30);
}
.btn-outline{
  background:rgba(244,237,225,.04);
  color:#F4EDE1;
  border-color:rgba(214,191,122,.38);
}
.safety-strip{
  background:rgba(180,35,24,.12);
  border-bottom:1px solid rgba(213,92,81,.28);
  color:#F4D5D1;
}
.safety-strip strong{color:#FFB4AC;}
.safety-strip a{background:#B42318;color:#fff;}
.hero{
  background:
    linear-gradient(115deg,rgba(11,15,18,.96),rgba(17,24,31,.94)),
    radial-gradient(circle at 18% 0%,rgba(214,191,122,.20),transparent 36%),
    radial-gradient(circle at 88% 18%,rgba(47,111,104,.16),transparent 34%);
  border-bottom:1px solid var(--line);
}
.kicker{color:#D6BF7A;}
.kicker:before{background:#D6BF7A;}
h1,.page-hero h1,.article-card h3{color:#F4EDE1;}
.hero p,.lead,.section-head p,.hero-card p,.card p,.card li,.panel p,.path-card p,.article-card p,.emergency-box p,.note,.site-footer p,.footer-warning,.small-muted{
  color:#C9C2B8 !important;
}
.hero p{
  max-width:780px;
  font-size:20px;
  line-height:2.05;
}
.hero .top-note,.governance-badge{
  background:rgba(244,237,225,.06);
  border:1px solid rgba(214,191,122,.28);
  color:#D6BF7A;
}
.hero-card,.panel,.card,.notice-card,.path-card,.article-card,.note,.link-btn{
  background:linear-gradient(180deg,rgba(17,26,32,.96),rgba(13,20,25,.96));
  border:1px solid rgba(214,191,122,.20);
  box-shadow:0 22px 65px rgba(0,0,0,.24);
}
.hero-card h2,.section-head h2,.card h3,.path-card h3,.link-btn,.breadcrumb a,.site-footer a{color:#D6BF7A;}
.quick-list li,.privacy-list li,.category{
  background:rgba(244,237,225,.055);
  border:1px solid rgba(214,191,122,.18);
  color:#E9DEC8;
}
.path-card .num,.section-head .section-kicker,.category,.status{color:#D6BF7A;}
section{border-bottom:1px solid rgba(214,191,122,.12);}
.emergency-box{
  background:linear-gradient(180deg,rgba(180,35,24,.14),rgba(17,24,31,.92));
  border:1px solid rgba(213,92,81,.32);
}
.emergency-box h2{color:#FFB4AC;}
.site-footer{
  background:#080B0E;
  border-top:1px solid rgba(214,191,122,.18);
}
.footer-links a{
  background:rgba(244,237,225,.045);
  border:1px solid rgba(214,191,122,.18);
  color:#D6BF7A;
}
.footer-logo{border:2px solid rgba(214,191,122,.55);background:#0B0F12;}
.floating{
  background:linear-gradient(135deg,#D6BF7A,#B9965A);
  color:#111827;
  box-shadow:0 18px 42px rgba(214,191,122,.20);
}
.article-card{border-top:4px solid #D6BF7A;}
.breadcrumb{color:#C9C2B8;}
@media(max-width:700px){
  .hero p{font-size:15.8px;line-height:1.95;}
  .hero{padding:30px 0 30px;}
  .hero-actions .btn{font-size:14.5px;}
}



@media(max-width:700px){
  body{
    padding-bottom:0 !important;
    background:
      radial-gradient(circle at 12% 0%, rgba(214,191,122,.10), transparent 30%),
      linear-gradient(180deg,#0B0F12 0%,#0E151A 52%,#0B0F12 100%);
  }
  .container{width:min(100% - 32px, 1120px);}
  .site-header{
    position:static !important;
    background:rgba(9,13,16,.98);
    box-shadow:none;
  }
  .nav{
    min-height:64px !important;
    padding:8px 0;
    justify-content:center;
  }
  .brand{
    width:100%;
    justify-content:space-between;
    gap:10px;
  }
  .brand-logo{
    width:48px !important;
    height:48px !important;
    border-width:1.5px;
    box-shadow:0 0 0 4px rgba(214,191,122,.05),0 10px 22px rgba(0,0,0,.24);
  }
  .brand-title{
    flex:1;
    text-align:center;
  }
  .brand-title strong{
    font-size:18px !important;
    max-width:none !important;
    white-space:normal;
    line-height:1.45;
  }
  .safety-strip{
    font-size:12.5px !important;
  }
  .safety-strip .container{
    display:grid;
    grid-template-columns:1fr auto;
    align-items:center;
    text-align:right;
    padding:7px 0 !important;
    gap:2px 10px;
  }
  .safety-strip strong{grid-column:1;line-height:1.55;}
  .safety-strip span{grid-column:1;color:#F0D1CE;line-height:1.55;}
  .safety-strip a{grid-column:2;grid-row:1 / span 2;padding:6px 10px;font-size:12px;white-space:nowrap;}
  .hero{
    padding:28px 0 30px !important;
    background:
      radial-gradient(circle at 16% 0%, rgba(214,191,122,.12), transparent 32%),
      linear-gradient(180deg,#0B0F12 0%,#101820 100%) !important;
  }
  .kicker{
    justify-content:center;
    text-align:center;
    font-size:13px !important;
    line-height:1.7;
    margin-bottom:12px !important;
  }
  .kicker:before{width:34px !important;}
  h1{
    font-size:30px !important;
    line-height:1.45 !important;
    text-align:center;
    margin-bottom:14px !important;
  }
  .hero p,.lead{
    font-size:16.2px !important;
    line-height:2.0 !important;
    text-align:center;
    max-width:100% !important;
  }
  .hero .top-note{
    width:100%;
    justify-content:center;
    padding:10px 12px !important;
    margin-top:16px !important;
    font-size:13.5px !important;
    border-radius:20px !important;
  }
  .hero-actions{
    display:grid !important;
    grid-template-columns:1fr;
    gap:10px !important;
    margin-top:18px !important;
  }
  .hero-actions .btn{
    min-height:48px;
    padding:11px 14px !important;
    border-radius:999px;
    font-size:15px !important;
  }
  section{padding:42px 0 !important;}
  .section-head{margin-bottom:22px !important;}
  .section-head .section-kicker{font-size:15px;}
  .section-head h2{
    font-size:31px !important;
    line-height:1.45 !important;
  }
  .section-head p{
    font-size:16px !important;
    line-height:1.95 !important;
  }
  .grid-2,.grid-3,.grid-4{gap:14px !important;}
  .path-card{
    min-height:auto !important;
    padding:24px 20px !important;
    border-radius:24px !important;
  }
  .path-card .num{
    font-size:22px !important;
    margin-bottom:12px !important;
  }
  .path-card h3{
    font-size:24px !important;
    line-height:1.45 !important;
  }
  .path-card p{
    font-size:16px !important;
    line-height:1.95 !important;
  }
  .card,.panel,.article-card,.emergency-box{
    padding:22px 18px !important;
    border-radius:24px !important;
  }
  .card h3{font-size:24px !important;line-height:1.45 !important;}
  .panel p,.card p,.card li{
    font-size:16px !important;
    line-height:1.95 !important;
  }
  .emergency-box h2{
    font-size:25px !important;
    line-height:1.55 !important;
  }
  .emergency-box p{
    font-size:16px !important;
    line-height:1.95 !important;
  }
  .floating{
    display:none !important;
  }
  .site-footer{
    padding:30px 0 34px !important;
  }
}

@media(min-width:701px){
  .floating{max-width:360px;right:auto;left:28px;}
}

@media(max-width:390px){
  .brand-title strong{font-size:16.5px !important;}
  h1{font-size:28px !important;}
  .section-head h2{font-size:28px !important;}
  .safety-strip a{font-size:11.5px;padding:5px 8px;}
}



.hero{padding:44px 0 42px;}
.hero-single{
  max-width:920px;
  margin:auto;
  text-align:center;
}
.hero-single .kicker{
  justify-content:center;
  margin-bottom:12px;
}
.hero-single .kicker:before{display:none;}
.hero-single h1{
  max-width:850px;
  margin:0 auto 14px;
}
.hero-single p{
  max-width:760px;
  margin:0 auto;
}
.hero-actions{
  justify-content:center;
  margin-top:24px;
}
.section-head{margin-bottom:20px}
.card p{font-size:17px}
.emergency-box{
  padding:28px 22px;
}
.emergency-box h2{
  font-size:clamp(24px,5vw,38px);
}
.emergency-box p{
  font-size:18px;
  max-width:720px;
  margin-left:auto;
  margin-right:auto;
}
@media(max-width:760px){
  .hero{padding:34px 0 34px;}
  .hero-single h1{font-size:34px;line-height:1.45;}
  .hero-single p{font-size:19px;line-height:2.05;}
  section{padding:38px 0;}
  .grid-3{gap:14px;}
  .card{padding:22px 18px;}
  .card h3{font-size:24px;}
  .card p{font-size:16px;}
  .safety-strip .container{
    grid-template-columns:1fr auto;
    gap:8px 10px;
  }
  .safety-strip strong{font-size:16px;}
  .safety-strip span{font-size:14px;}
  .safety-strip a{padding:8px 12px;font-size:14px;}
}



.service-card-link{
  display:block;
  position:relative;
  min-height:190px;
  transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease;
}
.service-card-link:hover,.service-card-link:focus{
  transform:translateY(-2px);
  border-color:rgba(214,191,122,.46);
  box-shadow:0 26px 76px rgba(0,0,0,.30);
}
.service-card-link:focus{
  outline:2px solid rgba(214,191,122,.75);
  outline-offset:4px;
}
.card-action{
  display:inline-flex;
  margin-top:18px;
  color:#D6BF7A;
  font-weight:900;
  border-bottom:1px solid rgba(214,191,122,.55);
  padding-bottom:2px;
}
@media(max-width:700px){
  .service-card-link{min-height:auto;}
  .card-action{font-size:14px;margin-top:14px;}
}



.identity-section{
  padding:0;
  border-bottom:1px solid rgba(214,191,122,.16);
  background:#0B0F12;
}
.identity-visual{
  position:relative;
  min-height:540px;
  overflow:hidden;
  isolation:isolate;
}
.identity-visual img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  z-index:0;
}
.identity-visual:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(to left,rgba(7,10,13,.94) 0%,rgba(7,10,13,.80) 34%,rgba(7,10,13,.34) 64%,rgba(7,10,13,.10) 100%);
  z-index:1;
}
.identity-copy{
  position:relative;
  z-index:2;
  min-height:540px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
  max-width:1120px;
}
.identity-copy > *{
  max-width:590px;
}
.identity-kicker{
  color:#D6BF7A;
  font-size:15px;
  font-weight:950;
  margin-bottom:12px;
}
.identity-copy h2{
  margin:0 0 16px;
  color:#F4EDE1;
  font-size:clamp(30px,4.6vw,52px);
  line-height:1.36;
  letter-spacing:-.2px;
}
.identity-copy p{
  margin:0 0 14px;
  color:#E8DDC9;
  font-size:19px;
  line-height:2.05;
}
.identity-boundary{
  color:#D6BF7A !important;
  font-weight:850;
}
.identity-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:16px;
}

.identity-mobile{
  display:none;
}
@media(max-width:700px){
  .identity-visual{
    min-height:500px;
  }
  .identity-visual img{
    object-position:22% center;
  }
  .identity-visual:before{
    background:
      linear-gradient(180deg,rgba(7,10,13,.34) 0%,rgba(7,10,13,.62) 48%,rgba(7,10,13,.88) 100%),
      linear-gradient(to left,rgba(7,10,13,.72) 0%,rgba(7,10,13,.50) 48%,rgba(7,10,13,.22) 100%);
  }
  .identity-copy{
    min-height:500px;
    justify-content:center;
    padding-top:58px;
    padding-bottom:30px;
    text-align:right;
  }
  .identity-copy > *{
    max-width:100%;
  }
  .identity-kicker{
    font-size:12.5px;
    line-height:1.7;
    margin-bottom:7px;
  }
  .identity-copy h2{
    font-size:24px !important;
    line-height:1.44 !important;
    text-align:right;
    margin-bottom:10px;
    letter-spacing:0;
  }
  .identity-copy p{
    font-size:14.6px !important;
    line-height:1.9 !important;
    margin-bottom:9px;
  }
  .identity-boundary{
    font-weight:800;
  }
  .identity-desktop{
    display:none;
  }
  .identity-mobile{
    display:inline;
  }
  .identity-actions{
    display:grid;
    grid-template-columns:1fr;
    width:100%;
    gap:9px;
    margin-top:12px;
  }
  .identity-actions .btn{
    width:100%;
    min-height:46px;
    font-size:14px;
  }
}
@media(max-width:420px){
  .identity-visual{
    min-height:470px;
  }
  .identity-copy{
    min-height:470px;
    padding-top:48px;
    padding-bottom:26px;
  }
  .identity-copy h2{
    font-size:22px !important;
  }
  .identity-copy p{
    font-size:13.8px !important;
    line-height:1.85 !important;
  }
}

@media(max-width:700px){
  .identity-visual{
    min-height:0 !important;
    display:flex;
    flex-direction:column;
    background:#0B0F12;
  }

  .identity-visual img{
    position:relative !important;
    inset:auto !important;
    display:block;
    width:100%;
    height:230px;
    object-fit:cover;
    object-position:18% center;
    z-index:0;
  }

  .identity-visual:before{
    display:none !important;
  }

  .identity-copy{
    min-height:0 !important;
    display:block;
    padding-top:22px !important;
    padding-bottom:28px !important;
    text-align:right;
    background:
      linear-gradient(180deg,rgba(14,21,23,.98) 0%,rgba(9,14,16,1) 100%);
  }

  .identity-copy > *{
    max-width:100%;
  }

  .identity-kicker{
    font-size:12px !important;
    line-height:1.6 !important;
    margin-bottom:6px !important;
  }

  .identity-copy h2{
    font-size:22px !important;
    line-height:1.45 !important;
    margin-bottom:10px !important;
  }

  .identity-copy p{
    font-size:14px !important;
    line-height:1.9 !important;
    margin-bottom:8px !important;
  }

  .identity-boundary{
    font-size:14.5px !important;
    line-height:1.85 !important;
    font-weight:850 !important;
  }

  .identity-actions{
    margin-top:14px !important;
    gap:8px !important;
  }

  .identity-actions .btn{
    min-height:44px !important;
    font-size:14px !important;
  }
}

@media(max-width:420px){
  .identity-visual img{
    height:210px;
    object-position:16% center;
  }

  .identity-copy{
    padding-top:20px !important;
    padding-bottom:26px !important;
  }

  .identity-copy h2{
    font-size:21px !important;
  }

  .identity-copy p{
    font-size:13.5px !important;
  }
}
