
:root{
  --bg:#ffffff;
  --ink:#111111;
  --muted:#666666;
  --card:#F2F2F2;
  --line:rgba(0,0,0,.08);
  --brand:#1A5CFF;
  --brandHover:#164FE0;
  --radius:16px;
  --shadow:0 12px 34px rgba(0,0,0,.06);
  --max:1100px;
  --pad:20px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--ink);
  line-height:1.5;
}

a{color:inherit}
.container{
  width:min(var(--max), calc(100% - (var(--pad)*2)));
  margin:0 auto;
}

.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:12px;
}
.brand{
  font-weight:900;
  letter-spacing:-.3px;
  text-decoration:none;
  white-space:nowrap;
}
.nav{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.nav__link{
  text-decoration:none;
  color:var(--muted);
  font-weight:700;
  font-size:14px;
}
.nav__link:hover{color:var(--ink)}
.nav__link--active{color:var(--ink)}

.header__cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:12px;
  background:var(--brand);
  color:#fff;
  font-weight:900;
  font-size:13px;
  text-decoration:none;
  white-space:nowrap;
}
.header__cta:hover{background:var(--brandHover)}

@media (max-width: 900px){
  .nav{display:none}
}

.main{padding:0}
.section{
  padding:72px 0;
}
.section--tight{padding:54px 0}
.hero{
  padding:84px 0 64px;
  text-align:center;
}
.h1{
  margin:0;
  font-size:clamp(34px, 4vw, 56px);
  letter-spacing:-.9px;
  line-height:1.06;
  font-weight:950;
}
.lead{
  margin:14px auto 0;
  max-width:820px;
  color:var(--muted);
  font-size:16px;
}
.badges{
  margin:14px auto 0;
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
}
.badge{
  border:1px solid var(--line);
  border-radius:999px;
  padding:7px 12px;
  font-weight:800;
  font-size:12px;
  color:var(--muted);
  background:#fff;
}

.card{
  margin:38px auto 0;
  max-width:820px;
  background:var(--card);
  border-radius:var(--radius);
  padding:44px 22px;
  box-shadow:var(--shadow);
}
.card__title{
  font-weight:950;
  margin:0;
}
.card__text{
  margin:10px 0 0;
  color:rgba(17,17,17,.9);
}
.ctaRow{
  margin-top:22px;
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 22px;
  min-height:44px;
  border-radius:12px;
  text-decoration:none;
  font-weight:900;
  font-size:14px;
  white-space:nowrap;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn--primary{background:var(--brand); color:#fff}
.btn--primary:hover{background:var(--brandHover); transform: translateY(-1px)}
.btn--ghost{border:1px solid var(--line); background:#fff}
.btn--ghost:hover{border-color:rgba(0,0,0,.18); transform: translateY(-1px)}

.grid3{
  margin-top:26px;
  display:grid;
  gap:14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 900px){
  .grid3{grid-template-columns: 1fr}
}
.panel{
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
}
.panel__h{
  margin:0;
  font-weight:950;
}
.panel__p{
  margin:8px 0 0;
  color:var(--muted);
  font-size:14px;
}

.pageTitle{
  margin:0;
  font-size:34px;
  letter-spacing:-.5px;
  font-weight:950;
}
.pageLead{
  margin:10px 0 0;
  max-width:820px;
  color:var(--muted);
}
.kv{
  margin-top:22px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
}
@media (max-width: 900px){
  .kv{grid-template-columns:1fr}
}
.kv__box{
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:18px;
  background:#fff;
}
.ul{
  margin:10px 0 0;
  padding-left:18px;
  color:var(--muted);
}
.quoteGrid{
  display:grid;
  gap:14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 900px){
  .quoteGrid{grid-template-columns:1fr}
}
.quote{
  background:var(--card);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}
.quote__name{font-weight:950}
.quote__text{margin:8px 0 0; color:rgba(17,17,17,.9); font-size:14px; line-height:1.6}

.gallery{
  display:grid;
  gap:14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 900px){
  .gallery{grid-template-columns:1fr}
}
.thumb{
  border-radius:var(--radius);
  overflow:hidden;
  background:var(--card);
  box-shadow:var(--shadow);
  border:1px solid rgba(0,0,0,.05);
}
.thumb img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}
.thumb__cap{
  padding:12px 14px;
  font-size:13px;
  color:var(--muted);
}

.footer{
  border-top:1px solid var(--line);
  padding:26px 0;
  color:var(--muted);
  font-size:12px;
}
.footer__inner{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}
.footer a{color:var(--muted); text-decoration:none; font-weight:800}
.footer a:hover{color:var(--ink)}


.brand{display:flex;flex-direction:column;gap:2px;text-decoration:none;font-weight:800;letter-spacing:.2px}
.brand__title{font-size:14px;line-height:1}
.brand__sub{font-size:12px;line-height:1;color:var(--muted);font-weight:700}
@media (min-width:760px){.brand__title{font-size:15px}.brand__sub{font-size:12px}}

/* --- Additions (audit v2) --- */
.hero__sub{margin-top:-10px;margin-bottom:18px;color:var(--muted);font-weight:700}
.card__meta{margin-top:14px;color:var(--muted);font-weight:800}
