:root{
  --bg0:#f6f3ea;
  --bg1:#e9f4f0;
  --ink:#071c18;
  --muted:#36514a;
  --card:#ffffffcc;
  --line:#0b2f2a24;
  --shadow:0 18px 50px rgba(7, 28, 24, .12);

  --accent:#0a8a74;
  --accent2:#e6b34b;
  --accentInk:#06211d;

  --radius:18px;
  --radius2:28px;
  --max:1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  background:
    radial-gradient(1200px 700px at 12% 10%, #e8fff5 0%, transparent 62%),
    radial-gradient(1100px 650px at 88% 0%, #fff4de 0%, transparent 58%),
    linear-gradient(160deg, var(--bg0), var(--bg1));
  font-family:"Commissioner", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight:450;
  letter-spacing:.1px;
}

img{max-width:100%; height:auto}
iframe{border:0}
a{color:inherit}

.skip{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;height:1px;
  overflow:hidden;
}
.skip:focus{
  left:16px; top:16px;
  width:auto; height:auto;
  padding:10px 12px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:12px;
  box-shadow:var(--shadow);
  z-index:9999;
}

.container{
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto;
}

.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:saturate(140%) blur(10px);
  background:linear-gradient(180deg, rgba(246,243,234,.78), rgba(246,243,234,.36));
  border-bottom:1px solid var(--line);
}
.topbar[data-scrolled="1"]{
  box-shadow:0 16px 44px rgba(7, 28, 24, .08);
  background:linear-gradient(180deg, rgba(246,243,234,.92), rgba(246,243,234,.62));
}
.topbar__in{
  display:flex;
  align-items:center;
  gap:18px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  min-width:240px;
}
.brand__mark{
  width:34px;height:34px;
  border-radius:12px;
  background:
    radial-gradient(10px 10px at 30% 30%, #fff, transparent 55%),
    linear-gradient(140deg, #0b2f2a, #0a8a74);
  box-shadow:0 12px 30px rgba(10,138,116,.28);
  position:relative;
}
.brand__mark::after{
  content:"";
  position:absolute;
  inset:-8px;
  border-radius:18px;
  background:radial-gradient(closest-side, rgba(230,179,75,.24), transparent 60%);
  filter:blur(1px);
  z-index:-1;
}
.brand__text{display:flex; flex-direction:column; gap:2px}
.brand__name{
  font-family:"Alegreya", serif;
  font-weight:700;
  letter-spacing:.2px;
  font-size:18px;
  line-height:1;
}
.brand__tag{
  font-size:12px;
  color:var(--muted);
  line-height:1.1;
}

.nav{
  display:flex;
  align-items:center;
  gap:14px;
  margin-left:auto;
}
.nav__link{
  text-decoration:none;
  font-size:13px;
  color:var(--muted);
  padding:10px 10px;
  border-radius:12px;
}
.nav__link:hover{
  color:var(--ink);
  background:rgba(255,255,255,.55);
  border:1px solid rgba(7,28,24,.06);
  padding:9px 9px;
}
.topbar__cta{display:flex; gap:10px}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:14px;
  padding:10px 12px;
  border:1px solid rgba(7,28,24,.10);
  background:rgba(255,255,255,.65);
  text-decoration:none;
  font-weight:650;
  font-size:13px;
  color:var(--accentInk);
  box-shadow:0 12px 30px rgba(7,28,24,.05);
  transition:transform .14s ease, box-shadow .14s ease, background .14s ease;
}
.btn:hover{transform:translateY(-1px); box-shadow:0 18px 46px rgba(7,28,24,.10)}
.btn:active{transform:translateY(0px)}
.btn--solid{
  border:1px solid rgba(10,138,116,.35);
  background:linear-gradient(140deg, #0b2f2a, #0a8a74);
  color:#f2fffb;
}
.btn--ghost{
  background:transparent;
  border:1px solid rgba(7,28,24,.16);
  box-shadow:none;
}
.btn--quiet{
  background:rgba(255,255,255,.50);
  box-shadow:none;
}
.btn--lg{
  padding:12px 14px;
  font-size:14px;
  border-radius:16px;
}

.hero{
  position:relative;
  padding:42px 0 24px;
  overflow:hidden;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.18fr .82fr;
  gap:26px;
  align-items:start;
  position:relative;
  z-index:2;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  color:var(--muted);
  margin:0 0 10px;
  padding:8px 10px;
  background:rgba(255,255,255,.60);
  border:1px solid rgba(7,28,24,.06);
  border-radius:999px;
}
.kicker::before{
  content:"";
  width:10px;height:10px;
  border-radius:99px;
  background:conic-gradient(from 210deg, var(--accent), var(--accent2), var(--accent));
  box-shadow:0 10px 20px rgba(10,138,116,.18);
}
.hero__title{
  font-family:"Alegreya", serif;
  margin:0;
  font-size:56px;
  line-height:1.02;
  letter-spacing:-.4px;
}
.hero__titleAccent{
  background:linear-gradient(120deg, #0a8a74 0%, #0b2f2a 40%, #e6b34b 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero__lead{
  margin:14px 0 0;
  color:var(--muted);
  font-size:16px;
  line-height:1.55;
  max-width:60ch;
}
.hero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}
.facts{
  margin:22px 0 0;
  padding:0;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:10px;
}
.facts__item{
  background:rgba(255,255,255,.60);
  border:1px solid rgba(7,28,24,.08);
  border-radius:var(--radius);
  padding:12px 12px 10px;
}
.facts__item dt{
  font-weight:650;
  letter-spacing:.2px;
}
.facts__item dd{
  margin:4px 0 0;
  color:var(--muted);
  font-size:12.5px;
  line-height:1.35;
}

.panel{
  background:linear-gradient(180deg, rgba(255,255,255,.78), rgba(255,255,255,.54));
  border:1px solid rgba(7,28,24,.10);
  border-radius:var(--radius2);
  box-shadow:var(--shadow);
  padding:18px;
}
.panel__badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:12px;
  color:var(--muted);
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(7,28,24,.08);
  background:rgba(255,255,255,.55);
}
.dot{
  width:9px;height:9px;
  border-radius:99px;
  background:radial-gradient(circle at 30% 30%, #baf9e7 0%, var(--accent) 48%, #0b2f2a 100%);
  box-shadow:0 10px 18px rgba(10,138,116,.26);
}
.panel__title{
  margin:12px 0 0;
  font-family:"Alegreya", serif;
  font-size:20px;
  letter-spacing:-.1px;
}
.panel__hint{
  margin:12px 0 0;
  font-size:12.5px;
  color:var(--muted);
  line-height:1.45;
}

.contactCards{
  margin-top:12px;
  display:grid;
  gap:10px;
}
.contactCard{
  display:flex;
  gap:12px;
  align-items:center;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid rgba(7,28,24,.10);
  background:rgba(255,255,255,.55);
  text-decoration:none;
  transition:transform .14s ease, background .14s ease, border-color .14s ease;
}
.contactCard:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.70);
  border-color:rgba(10,138,116,.30);
}
.contactCard__icon{
  width:38px;height:38px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:linear-gradient(140deg, rgba(10,138,116,.16), rgba(230,179,75,.12));
  border:1px solid rgba(7,28,24,.08);
  color:#0b2f2a;
}
.contactCard__icon svg{width:20px;height:20px}
.contactCard__text{display:flex; flex-direction:column; gap:2px}
.contactCard__label{font-size:11.5px; color:var(--muted)}
.contactCard__value{font-weight:650; letter-spacing:.1px}

.hero__bg{
  position:absolute;
  inset:-80px -40px auto -40px;
  height:420px;
  pointer-events:none;
  z-index:1;
}
.orb{
  position:absolute;
  border-radius:999px;
  filter:blur(1px);
  opacity:.95;
}
.orb--a{
  width:420px;height:420px;
  left:-120px; top:20px;
  background:radial-gradient(circle at 30% 30%, rgba(230,179,75,.60), rgba(10,138,116,.22) 55%, transparent 70%);
}
.orb--b{
  width:520px;height:520px;
  right:-190px; top:-120px;
  background:radial-gradient(circle at 40% 40%, rgba(10,138,116,.60), rgba(11,47,42,.18) 55%, transparent 70%);
}
.gridlines{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(to right, rgba(7,28,24,.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(7,28,24,.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(closest-side, rgba(0,0,0,.75), transparent 70%);
  opacity:.38;
}

.section{padding:48px 0}
.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  margin-bottom:18px;
}
.section__title{
  margin:0;
  font-family:"Alegreya", serif;
  font-size:34px;
  letter-spacing:-.3px;
}
.section__lead{
  margin:0;
  color:var(--muted);
  max-width:64ch;
  font-size:14px;
  line-height:1.5;
}

.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
}
.card{
  background:var(--card);
  border:1px solid rgba(7,28,24,.10);
  border-radius:var(--radius);
  padding:14px 14px 12px;
  box-shadow:0 16px 40px rgba(7,28,24,.06);
  min-height:110px;
  transition:transform .16s ease, border-color .16s ease, background .16s ease;
}
.card--link{
  display:block;
  text-decoration:none;
  color:inherit;
}
.card:hover{
  transform:translateY(-2px);
  border-color:rgba(10,138,116,.30);
  background:rgba(255,255,255,.78);
}
.card h3{
  margin:0;
  font-size:15px;
  letter-spacing:.1px;
}
.card p{
  margin:8px 0 0;
  color:var(--muted);
  font-size:13px;
  line-height:1.4;
}

.callout{
  margin-top:18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  padding:18px;
  border-radius:var(--radius2);
  border:1px solid rgba(7,28,24,.10);
  background:
    radial-gradient(650px 300px at 10% 30%, rgba(230,179,75,.20), transparent 55%),
    radial-gradient(650px 300px at 88% 20%, rgba(10,138,116,.22), transparent 55%),
    rgba(255,255,255,.62);
  box-shadow:var(--shadow);
}
.callout h3{
  margin:0;
  font-size:18px;
  font-family:"Alegreya", serif;
}
.callout p{
  margin:8px 0 0;
  color:var(--muted);
  font-size:13.5px;
  line-height:1.45;
}
.callout__actions{display:flex; gap:10px; flex-wrap:wrap}

.section--quote{
  padding:34px 0;
  background:
    linear-gradient(90deg, rgba(11,47,42,.92), rgba(10,138,116,.88));
  color:#f2fffb;
}
.section--pro{
  padding-top:26px;
}
.pro{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:10px;
}
.pro__item{
  border-radius:var(--radius);
  border:1px solid rgba(7,28,24,.10);
  background:rgba(255,255,255,.62);
  box-shadow:0 16px 40px rgba(7,28,24,.05);
  overflow:hidden;
}
.pro__item summary{
  cursor:pointer;
  list-style:none;
  padding:14px 14px;
  font-weight:650;
  letter-spacing:.1px;
  position:relative;
}
.pro__item summary::-webkit-details-marker{display:none}
.pro__item summary::after{
  content:"+";
  position:absolute;
  right:14px;
  top:11px;
  width:28px;height:28px;
  display:grid;
  place-items:center;
  border-radius:12px;
  border:1px solid rgba(7,28,24,.10);
  background:rgba(255,255,255,.55);
  color:var(--muted);
  font-weight:700;
}
.pro__item[open] summary::after{content:"–"}
.pro__item ul{
  margin:0;
  padding:0 14px 14px 28px;
  color:var(--muted);
  font-size:13px;
  line-height:1.45;
}
.pro__item li{margin:8px 0}
.quote{
  margin:0;
  border-radius:var(--radius2);
  padding:24px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  box-shadow:0 26px 70px rgba(0,0,0,.18);
}
.quote blockquote{
  margin:0;
  font-family:"Alegreya", serif;
  font-size:22px;
  line-height:1.25;
  letter-spacing:-.2px;
}
.quote figcaption{
  margin-top:14px;
  color:rgba(242,255,251,.82);
  font-size:13px;
}

.twoCol{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap:14px;
  align-items:stretch;
}
.stack{display:grid; gap:10px}
.tile{
  border:1px solid rgba(7,28,24,.10);
  background:rgba(255,255,255,.62);
  border-radius:var(--radius);
  padding:14px;
  box-shadow:0 16px 40px rgba(7,28,24,.05);
}
.tile h3{
  margin:0;
  font-size:14px;
  letter-spacing:.1px;
}
.tile p{margin:8px 0 0; color:var(--muted); line-height:1.5}
.mono{font-variant-numeric:tabular-nums}
.link{
  color:#0b2f2a;
  text-decoration:none;
  font-weight:650;
  border-bottom:1px dashed rgba(11,47,42,.25);
}
.link:hover{border-bottom-color:rgba(11,47,42,.55)}
.map{
  border-radius:var(--radius2);
  overflow:hidden;
  border:1px solid rgba(7,28,24,.10);
  box-shadow:var(--shadow);
  background:rgba(255,255,255,.4);
}

.requisites{
  margin-top:18px;
  border-radius:var(--radius2);
  border:1px solid rgba(7,28,24,.10);
  background:rgba(255,255,255,.62);
  box-shadow:0 16px 44px rgba(7,28,24,.06);
  padding:18px;
}
.requisites h3{
  margin:0;
  font-family:"Alegreya", serif;
  font-size:20px;
}
.requisites__grid{
  margin-top:12px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:10px;
}
.requisites__item{
  border-radius:16px;
  border:1px solid rgba(7,28,24,.10);
  background:rgba(255,255,255,.55);
  padding:12px;
}
.requisites__k{font-size:11.5px; color:var(--muted)}
.requisites__v{margin-top:6px; font-size:13px; line-height:1.45}

.footer{
  padding:22px 0;
  border-top:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,.36), rgba(255,255,255,.22));
}
.footer__in{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:14px;
}
.footer__brand{
  font-family:"Alegreya", serif;
  font-weight:700;
  font-size:16px;
}
.footer__small{margin-top:4px; color:var(--muted); font-size:12.5px; line-height:1.35}
.footer__right{display:flex; gap:12px; flex-wrap:wrap; justify-content:flex-end}
.footer__link{
  color:var(--muted);
  text-decoration:none;
  border-bottom:1px dashed rgba(7,28,24,.22);
  padding-bottom:2px;
}
.footer__link:hover{color:var(--ink); border-bottom-color:rgba(7,28,24,.45)}

/* Generic content pages */
.pageHero{
  padding:28px 0 10px;
}
.pageHero__in{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:14px;
  align-items:start;
}
.crumbs{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  font-size:12.5px;
  color:var(--muted);
}
.crumbs a{
  text-decoration:none;
  border-bottom:1px dashed rgba(7,28,24,.22);
  padding-bottom:1px;
}
.crumbs a:hover{color:var(--ink); border-bottom-color:rgba(7,28,24,.45)}
.pageTitle{
  margin:10px 0 0;
  font-family:"Alegreya", serif;
  font-size:42px;
  line-height:1.05;
  letter-spacing:-.3px;
}
.pageLead{
  margin:12px 0 0;
  color:var(--muted);
  line-height:1.55;
  font-size:15px;
  max-width:72ch;
}
.pillList{
  margin:14px 0 0;
  padding:0;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  list-style:none;
}
.pillList li{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(7,28,24,.10);
  background:rgba(255,255,255,.62);
  color:var(--muted);
  font-size:12.5px;
}
.contentGrid{
  display:grid;
  grid-template-columns: 1fr .92fr;
  gap:14px;
  align-items:start;
  margin-top:14px;
}
.content{
  border-radius:var(--radius2);
  border:1px solid rgba(7,28,24,.10);
  background:rgba(255,255,255,.62);
  box-shadow:0 16px 44px rgba(7,28,24,.06);
  padding:18px;
}
.content h2{
  margin:0 0 10px;
  font-family:"Alegreya", serif;
  letter-spacing:-.2px;
}
.content h3{
  margin:18px 0 8px;
  font-size:14.5px;
  letter-spacing:.1px;
}
.content p{margin:10px 0; color:var(--muted); line-height:1.65}
.content ul{
  margin:8px 0 12px;
  padding-left:18px;
  color:var(--muted);
  line-height:1.55;
}
.content li{margin:8px 0}
.aside{
  display:grid;
  gap:10px;
}
.aside .tile h3{font-family:"Alegreya", serif; font-size:16px}
.smallNote{font-size:12.5px}
.refs a{color:inherit}

/* Motion */
@media (prefers-reduced-motion: no-preference){
  [data-reveal]{
    opacity:0;
    transform:translateY(10px);
    transition:opacity .55s ease, transform .55s ease;
  }
  [data-reveal].is-in{
    opacity:1;
    transform:none;
  }
}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{grid-template-columns:1fr; gap:14px}
  .brand{min-width:auto}
  .nav{display:none}
  .facts{grid-template-columns:1fr}
  .cards{grid-template-columns: repeat(2, minmax(0, 1fr))}
  .twoCol{grid-template-columns:1fr}
  .pro{grid-template-columns:1fr}
  .requisites__grid{grid-template-columns:1fr}
  .hero__title{font-size:46px}
  .pageHero__in{grid-template-columns:1fr}
  .contentGrid{grid-template-columns:1fr}
}

@media (max-width: 520px){
  .container{width:calc(100% - 28px)}
  .topbar__cta{display:none}
  .hero{padding-top:26px}
  .hero__title{font-size:38px}
  .section{padding:38px 0}
  .cards{grid-template-columns:1fr}
  .callout{flex-direction:column; align-items:flex-start}
  .quote{padding:18px}
  .quote blockquote{font-size:18px}
  .pageTitle{font-size:34px}
}
