

:root{
  --ng-base: #F4F1EA;
  --ng-text: #101010;
  --ng-surface: #EAE0D2;
  --ng-accent: #ADCCE9;

  --ng-success: #7CC382;
  --ng-warning: #F9B34A;
  --ng-danger: #F44336;

  --ng-radius-lg: 22px;
  --ng-radius-md: 16px;

  --ng-border: rgba(16,16,16,.10);
  --ng-shadow: 0 10px 30px rgba(16,16,16,.08);

  --ng-font-head: "Raleway", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --ng-font-body: "Raleway", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  --ng-maxw: 1200px;
}

*, *::before, *::after{ box-sizing: border-box; }

html, body{ height:100%; }
body{
  margin:0;
  background: var(--ng-base);
  color: var(--ng-text);
  font-family: var(--ng-font-body);
  line-height:1.6;
}

img{ max-width:100%; height:auto; }

.ng-container{ max-width: var(--ng-maxw); margin: 0 auto; padding: 0 16px; }
.ng-section{ padding: 44px 0; }
.ng-section--alt{ background: rgba(234,224,210,.35); border-top:1px solid rgba(16,16,16,.06); border-bottom:1px solid rgba(16,16,16,.06); }

.ng-muted{ color: rgba(16,16,16,.65); font-size: 14px; }
.ng-link{ text-decoration:none; border-bottom:1px solid rgba(16,16,16,.25); }
.ng-link:hover{ border-bottom-color: rgba(16,16,16,.55); }

.ng-h1,.ng-h2,.ng-h3{
  font-family: var(--ng-font-head);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.ng-h1{ font-size: 46px; line-height: 1.08; }
.ng-h2{ font-size: 34px; line-height: 1.15; }
.ng-h3{ font-size: 22px; line-height: 1.2; }
@media (max-width: 768px){ .ng-h1{ font-size: 36px; } .ng-h2{ font-size: 28px; } }

.ng-subtitle{ font-size:16px; color: rgba(16,16,16,.75); margin:0; }


.ng-header, .ng-footer{
  background: rgba(16,16,16,1);
  color: var(--ng-base);
}
.ng-header{
  position: relative;
  z-index: 50;
  border-bottom: 1px solid rgba(173,204,233,.22);
}
.ng-footer{
  border-top: 1px solid rgba(173,204,233,.18);
  padding: 26px 0;
}

.ng-header a, .ng-footer a{ color: var(--ng-base); }
.ng-header .ng-link, .ng-footer .ng-link{ border-bottom-color: rgba(244,241,234,.25); }
.ng-header .ng-link:hover, .ng-footer .ng-link:hover{ border-bottom-color: rgba(244,241,234,.55); }

.ng-header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 14px 0;
}
.ng-brand{
  font-family: var(--ng-font-head);
  text-decoration:none;
  text-transform: lowercase;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.ng-brand__mark{ font-weight: 700; letter-spacing: -0.01em; }

.ng-menu{
  list-style:none;
  display:flex;
  gap: 18px;
  padding:0;
  margin:0;
  flex-wrap: wrap;
  align-items:center;
}
.ng-menu li{ margin:0; padding:0; }
.ng-menu a{
  display:inline-flex;
  align-items:center;
  padding: 10px 0 !important;
  border-radius: 0 !important;
  text-decoration:none;
  font-weight: 600;
  font-size: 13px;
  color: rgba(244,241,234,.88);
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  letter-spacing: 0.02em;
  position: relative;
  transition: color .16s ease, opacity .16s ease, transform .16s ease;
}
.ng-menu a::after{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: transparent;
  transition: background .16s ease, transform .16s ease;
  transform: scaleX(.25);
  transform-origin: center;
}
.ng-menu a:hover{
  color: var(--ng-base);
  transform: translateY(-1px);
}
.ng-menu a:hover::after{
  background: rgba(173,204,233,.85);
  transform: scaleX(1);
}

.ng-header__cta{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap: wrap;
  justify-content:flex-end;
}
.ng-header .ng-btn--primary{
  background: var(--ng-base);
  color: var(--ng-text);
  border-color: rgba(244,241,234,.45);
}
.ng-header .ng-btn--primary:hover{ box-shadow: 0 10px 22px rgba(0,0,0,.25); }


.ng-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration:none;
  font-family: var(--ng-font-body);
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  border: 1px solid transparent;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, border-color .16s ease;
  white-space: nowrap;
}
.ng-btn--primary{
  background: var(--ng-text);
  color: var(--ng-base);
  border-color: rgba(16,16,16,.35);
}
.ng-btn--primary:hover{ transform: translateY(-1px); box-shadow: 0 10px 22px rgba(16,16,16,.18); }
.ng-btn--secondary{
  background: transparent;
  color: var(--ng-text);
  border-color: rgba(16,16,16,.22);
}
.ng-btn--secondary:hover{ transform: translateY(-1px); border-color: rgba(16,16,16,.35); box-shadow: 0 10px 22px rgba(16,16,16,.10); }


.ng-grid{ display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
@media (max-width: 1024px){ .ng-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px){ .ng-grid{ grid-template-columns: 1fr; } }

.ng-card{
  background: rgba(234,224,210,.58);
  border: 1px solid rgba(16,16,16,.10);
  border-radius: var(--ng-radius-lg);
  padding: 16px;
  position: relative;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.ng-card::before{
  content:"";
  position:absolute;
  top:0; left:0; right:0;
  height: 2px;
  background: transparent;
  transition: background .18s ease;
}
.ng-card:hover{
  transform: translateY(-2px);
  box-shadow: var(--ng-shadow);
  border-color: rgba(16,16,16,.16);
}
.ng-card:hover::before{ background: var(--ng-accent); }

.ng-card__top{ display:flex; justify-content:space-between; gap:10px; align-items:flex-start; margin-bottom:10px; }
.ng-address{ font-size:16px; line-height: 1.55; }
.ng-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 10px;
  border-radius: 999px;
  border:1px solid rgba(16,16,16,.12);
  background: rgba(244,241,234,.55);
  font-size: 13px;
  line-height: 1;
}


.ng-grid--news{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
@media (max-width: 1024px){ .ng-grid--news{ grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px){ .ng-grid--news{ grid-template-columns: 1fr; } }
.ng-card--news{ padding: 18px; }
.ng-news__meta{ font-size: 12px; opacity: .75; margin-bottom: 8px; }
.ng-h3--news{ margin-bottom: 8px; font-size: 20px; }


.ng-footer__inner{
  display:flex;
  gap: 14px;
  justify-content:space-between;
  flex-wrap: wrap;
  align-items:flex-start;
}
.ng-footer small{ color: rgba(244,241,234,.75); }


@media (max-width: 900px){
  .ng-header__inner{ flex-wrap: wrap; }
  .ng-nav{ width: 100%; order: 3; }
  .ng-header__cta{ order: 2; }
}



body{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
#content{ flex: 1 0 auto; }
.ng-footer{ margin-top: auto; }


.ng-footer .ng-btn--primary{
  background: var(--ng-base);
  color: var(--ng-text);
  border-color: rgba(244,241,234,.45);
}
.ng-footer .ng-btn--primary:hover{
  box-shadow: 0 10px 22px rgba(0,0,0,.25);
}
.ng-footer .ng-btn--secondary{
  color: rgba(244,241,234,.92);
  border-color: rgba(244,241,234,.28);
}

.ng-footer .ng-link{ border-bottom-color: rgba(244,241,234,.25); }


.ng-header .elementor-nav-menu--main .elementor-item,
.ng-header .elementor-nav-menu--dropdown .elementor-item,
.ng-header .elementor-nav-menu a{
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 10px 0 !important;
  color: rgba(244,241,234,.88) !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  position: relative;
}
.ng-header .elementor-nav-menu--main .elementor-item::after,
.ng-header .elementor-nav-menu a::after{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  background: transparent;
  transform: scaleX(.25);
  transform-origin: center;
  transition: background .16s ease, transform .16s ease;
}
.ng-header .elementor-nav-menu--main .elementor-item:hover::after,
.ng-header .elementor-nav-menu a:hover::after{
  background: rgba(173,204,233,.85) !important;
  transform: scaleX(1);
}


.ng-footer-cta{
  background: var(--ng-base) !important;
  color: var(--ng-text) !important;
  border: 1px solid rgba(244,241,234,.55) !important;
  box-shadow: 0 12px 26px rgba(0,0,0,.28) !important;
}
.ng-footer-cta:hover{ transform: translateY(-1px); }


.ng-nav ul, .ng-nav li{ list-style:none !important; }

@media (max-width: 1024px){
  .ng-container{ padding: 0 14px; }
  .ng-header__inner{ gap: 12px; }
  .ng-menu{ gap: 14px; }
}


@media (max-width: 768px){
  .ng-header__inner{ flex-wrap: wrap; }
  .ng-brand{ font-size: 20px; }
  .ng-nav{ width: 100%; order: 3; }
  .ng-menu{ gap: 12px; justify-content: flex-start; }
  .ng-header__cta{ width: 100%; order: 2; justify-content: space-between; }
  .ng-btn{ padding: 11px 14px; font-size: 13px; }
  .ng-section{ padding: 34px 0; }
  .ng-h1{ font-size: 34px; }
  .ng-h2{ font-size: 26px; }
}


@media (max-width: 420px){
  .ng-header__cta{ gap: 8px; }
  .ng-menu{ gap: 10px; flex-wrap: wrap; }
  .ng-btn{ padding: 10px 12px; }
}


.ng-news-cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 1024px){
  .ng-news-cards{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px){
  .ng-news-cards{ grid-template-columns: 1fr; }
}

.ng-news-card{
  background: rgba(234,224,210,.46);
  border: 1px solid rgba(16,16,16,.10);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  display:flex;
  flex-direction: column;
  min-height: 340px;
}
.ng-news-card::before{
  content:"";
  position:absolute;
  top:0; left:0; right:0;
  height: 2px;
  background: transparent;
  transition: background .18s ease;
  z-index: 2;
}
.ng-news-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(16,16,16,.10);
  border-color: rgba(16,16,16,.16);
}
.ng-news-card:hover::before{ background: rgba(173,204,233,.85); }

.ng-news-thumb{
  display:block;
  width:100%;
  height: 180px;
  background: rgba(16,16,16,.08);
  overflow:hidden;
}
.ng-news-thumb img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}
.ng-news-thumb__empty{ width:100%; height:100%; background: rgba(16,16,16,.06); }

.ng-news-body{
  padding: 16px 18px 18px;
  display:flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.ng-news-meta{
  color: rgba(16,16,16,.62);
  font-size: 12px;
  margin-bottom: 10px;
}
.ng-news-title{
  margin: 0 0 10px;
  font-family: var(--ng-font-head);
  font-weight: 400;
  letter-spacing: -0.02em;
  font-size: 22px;
  line-height: 1.15;
}
.ng-news-title a{
  color: rgba(16,16,16,.92);
  text-decoration:none;
  border-bottom: 1px solid rgba(173,204,233,.75);
}
.ng-news-title a:visited{ color: rgba(16,16,16,.92); }
.ng-news-title a:hover{ border-bottom-color: rgba(173,204,233,1); }

.ng-news-excerpt{
  margin: 0;
  color: rgba(16,16,16,.72);
  font-size: 14px;
  line-height: 1.55;
}
.ng-news-cta{ margin-top: auto; padding-top: 14px; }
.ng-news-cta .ng-btn{ padding: 11px 14px; font-size: 13px; }


.ng-news-section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.ng-news-section__title{
  margin: 0;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-size: 42px;
}
.ng-news-section__title span{
  display:inline-block;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(173,204,233,.85);
}
@media (max-width: 1024px){
  .ng-news-section__title{ font-size: 36px; }
}
@media (max-width: 640px){
  .ng-news-section__title{ font-size: 30px; }
}


@media (max-width: 1024px){
  .ng-header__inner{ padding: 12px 0; }
  .ng-menu{ gap: 14px; }
  .ng-menu a{ font-size: 12.5px; }
}
@media (max-width: 820px){
  .ng-header__inner{ flex-wrap: wrap; gap: 10px; }
  .ng-brand{ font-size: 20px; }
  .ng-nav{ width: 100%; order: 3; }
  .ng-menu{
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px;
  }
  .ng-menu::-webkit-scrollbar{ height: 0; }
  .ng-menu a{ white-space: nowrap; padding: 10px 0 !important; }
  .ng-header__cta{
    width: 100%;
    order: 2;
    justify-content: space-between;
  }
  .ng-header__cta .ng-link{ border-bottom-color: rgba(244,241,234,.35); }
}
@media (max-width: 420px){
  .ng-header__cta{ gap: 8px; }
  .ng-header__cta .ng-btn{ padding: 10px 12px; font-size: 12.5px; }
}


@media (max-width: 900px){
  .ng-footer__inner{ gap: 18px; }
  .ng-footer__inner > div{ flex: 1 1 220px; }
}
@media (max-width: 640px){
  .ng-footer__inner{ flex-direction: column; }
  .ng-footer__inner > div{ width: 100%; }
  .ng-footer .ng-footer-cta{ width: fit-content; }
}


.ng-footer-col{ min-width: 220px; }
.ng-footer-title{
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: rgba(244,241,234,.92);
}
.ng-footer-links{
  display:flex;
  flex-direction: column;
  gap: 8px;
}
.ng-footer-link{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  color: rgba(244,241,234,.78);
  text-decoration:none;
  border-bottom: 1px solid rgba(244,241,234,.18);
  width: fit-content;
  padding-bottom: 2px;
  transition: color .16s ease, border-color .16s ease, transform .16s ease;
}
.ng-footer-link::before{
  content:"";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(173,204,233,.75);
  box-shadow: 0 0 0 4px rgba(173,204,233,.12);
}
.ng-footer-link:hover{
  color: rgba(244,241,234,.96);
  border-bottom-color: rgba(173,204,233,.55);
  transform: translateX(1px);
}
.ng-footer-link--phone{
  font-weight: 700;
  color: rgba(244,241,234,.90);
  border-bottom-color: rgba(173,204,233,.35);
}
.ng-footer-link--phone::before{
  background: rgba(249,179,74,.9);
  box-shadow: 0 0 0 4px rgba(249,179,74,.18);
}


.ng-footer-brand__name{
  font-family: var(--ng-font-head);
  letter-spacing:-0.02em;
  font-size:18px;
  margin-bottom:6px;
  color: rgba(244,241,234,.92);
}
.ng-footer-brand__tagline{ color: rgba(244,241,234,.70); }

.ng-footer__bottom{
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(244,241,234,.12);
  display:flex;
  justify-content: space-between;
  align-items:center;
  flex-wrap: wrap;
  gap: 10px;
}


.ng-footer__disclaimer{
  flex: 0 0 100%;
  width: 100%;
  margin-top: 2px;
  font-size: 11px;
  line-height: 1.45;
  color: rgba(244,241,234,.62);
}
@media (max-width: 640px){
  .ng-footer__disclaimer{ font-size: 10.5px; }
}
