:root{
  --bg:#efefef;
  --paper:#ffffff;
  --dark:#232323;
  --dark-2:#1b1b1b;
  --text:#2e2e2e;
  --muted:#666666;
  --green:#5c8d4b;
  --green-dark:#356d2f;
  --line:#d8d8d8;
  --container:1120px;
  --shadow:0 8px 30px rgba(0,0,0,.08);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:"Source Sans 3", Arial, sans-serif;
  line-height:1.6;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:min(var(--container), calc(100% - 64px));margin:0 auto}
.site-header .container{width:calc(100% - 64px);max-width:none}
.narrow{width:min(980px, calc(100% - 64px));margin:0 auto}

.site-header{
  position:relative;
  z-index:20;
  background:#fff;
  border-bottom:1px solid #e6e6e6;
}
.site-header--dark{
  position:absolute;
  left:0; right:0; top:0;
  background:rgba(0,0,0,.35);
  border-bottom:1px solid rgba(255,255,255,.18);
  color:#fff;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:112px;
  gap:24px;
}
.brand{
  display:flex;
  align-items:flex-start;
  gap:14px;
  min-width:0;
}
.brand-logo{
  width:56px;height:56px;object-fit:contain;flex:0 0 auto;margin-top:2px;
}
.brand-name-wrap{
  display:flex;flex-direction:column;gap:8px;
}
.brand-name{
  font-family:"Playfair Display", Georgia, serif;
  font-size:clamp(1rem, 4vw, 1.7rem);
  color:var(--green);
  font-weight:700;
  letter-spacing:-.02em;
  line-height: 1.1;
}
.site-header--dark .brand-name{color:var(--green)}
.brand-tagline{
  font-family:"Playfair Display", Georgia, serif;
  font-style:italic;
  font-size:clamp(.86rem, 1vw, 1rem);
  color:#101010;
  font-weight:700;
}
.site-header--dark .brand-tagline{color:#fff}
.site-nav>ul{
  list-style:none;margin:0;padding:0;
  display:flex;align-items:center;gap:28px;
  font-family:"Playfair Display", Georgia, serif;
  font-size:1rem;
}
.site-nav li{position:relative}
.site-nav a{display:block;padding:10px 0}
.site-nav a.active,.site-nav a:hover{color:var(--green)}
.site-nav a.active{border-bottom:3px solid var(--green)}
.site-header--dark .site-nav a.active{color:var(--green);border-color:var(--green)}
.search-link{padding-left:18px;border-left:1px solid rgba(0,0,0,.15)}
.site-header--dark .search-link{border-left-color:rgba(255,255,255,.28)}
.has-submenu>a::after{content:" ▾";font-size:.85em}
.submenu{
  position:absolute;
  left:0;
  top:100%;
  min-width:300px;
  list-style:none;
  padding:10px 0;
  margin:0;
  background:#fff;
  color:var(--text);
  border:1px solid #e6e6e6;
  box-shadow:var(--shadow);
  opacity:0;
  visibility:hidden;
  transform:translateY(6px);
  transition:.16s ease;
}

.site-header--dark .submenu{
  background:rgba(0,0,0,.35);
  color:#fff;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:none;
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
}

.site-header--dark .submenu a{
  color:#fff;
}

.site-header--dark .submenu a.active,
.site-header--dark .submenu a:hover{
  background:rgba(255,255,255,.08);
  border-bottom:none;
}
.has-submenu:hover .submenu,.has-submenu:focus-within .submenu,.has-submenu.open .submenu{
  opacity:1;visibility:visible;transform:none;
}
.submenu a{padding:10px 18px;white-space:nowrap}
.submenu a.active,.submenu a:hover{background:#f7f7f7;border-bottom:none}
.nav-toggle{display:none;background:none;border:none;width:44px;height:44px;padding:0;cursor:pointer}
.nav-toggle span,.nav-toggle span::before,.nav-toggle span::after{
  display:block;width:24px;height:2px;background:currentColor;position:relative;margin:0 auto;
}
.nav-toggle span::before,.nav-toggle span::after{content:"";position:absolute;left:0}
.nav-toggle span::before{top:-7px}.nav-toggle span::after{top:7px}

.home-hero{
  position:relative;
  min-height:100vh;
  height:100vh;
  width:100%;
  display:flex;align-items:center;
  overflow:visible;
}
.home-hero .hero-image{
  position:fixed;
  top:0;
  left:0;
  right:0;
  width:100%;
  height:100vh;
  background:
    linear-gradient(rgba(0,0,0,.38),rgba(0,0,0,.42)),
    url("images/home-hero.jpg") center/cover no-repeat;
  background-attachment:fixed;
  z-index:-1;
}
.home-hero .hero-overlay{
  position:fixed;
  top:0;
  left:0;
  right:0;
  width:100%;
  height:100vh;
  background:linear-gradient(to bottom, rgba(0,0,0,.15), rgba(0,0,0,.42));
  z-index:-1;
}
.hero-center{
  position:relative;z-index:1;
  min-height:100vh;
  height:100vh;
  width:100%;
  display:flex;align-items:center;justify-content:center;
}
.stack-words{display:grid;gap:14px;text-align:center;color:#fff}
.stack-words span{
  display:block;
  font-family:"Playfair Display", Georgia, serif;
  font-size:clamp(3rem,5vw,5rem);
  line-height:1.05;
  text-shadow:0 2px 6px rgba(0,0,0,.3);
}
.stack-words i{
  display:block;width:62px;height:4px;border-radius:999px;background:var(--green);margin:10px auto 0;
}
.section-light{
  padding:44px 0 0;
  position:relative;
  z-index:2;
  background:var(--bg);
}
.home-intro{padding-top:54px}
.home-intro .intro-line{
  padding:28px 0;
  border-bottom:1px solid var(--line);
  margin-bottom:12px;
}
@media (min-width: 901px) {
  .home-intro .intro-line{
    margin-left:-164px;
    margin-right:-164px;
    padding-left:164px;
    padding-right:164px;
  }
}
.home-intro .narrow > .intro-line:nth-child(2){text-align:left}
.home-intro .narrow > .intro-line:nth-child(3){text-align:right}
.home-intro .narrow > .intro-line:nth-child(4){text-align:left}
.home-intro .intro-line:last-child{border-bottom:none;margin-bottom:0}
.home-intro .intro-line strong{
  font-family:"Playfair Display", Georgia, serif;
  font-size:clamp(1.5rem,2.6vw,2.1rem);
  line-height:1.25;
  display:block;
}
.eyebrow{
  text-align:center;font-size:.92rem;letter-spacing:.08em;color:#606060;margin-bottom:12px;
}
.gallery-band{
  padding:80px 0 90px;
  background:var(--bg);
  position:relative;
  z-index:2;
}
.gallery-mosaic{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-auto-rows: 200px;
  gap:18px;
  justify-content:center;
  align-items:start;
}
.gallery-mosaic img{
  width:100%;height:100%;object-fit:cover;
}
@media (min-width: 901px) {
  .gallery-mosaic{
    grid-template-columns:264px 268px 268px 264px 276px;
    grid-auto-rows:172px;
  }
  .gallery-mosaic img:nth-child(1){grid-row:1 / span 1}
  .gallery-mosaic img:nth-child(2){grid-row:1 / span 2}
  .gallery-mosaic img:nth-child(3){grid-row:1 / span 3}
  .gallery-mosaic img:nth-child(4){grid-row:1 / span 2}
  .gallery-mosaic img:nth-child(5){grid-row:2 / span 1}
  .gallery-mosaic img:nth-child(6){grid-row:1 / span 1}
}
.services-box-wrap{
  padding-bottom:34px;
  background:var(--bg);
  position:relative;
  z-index:2;
}
.services-box{
  background:var(--paper);
  box-shadow:var(--shadow);
  padding:50px 44px 34px;
}
.services-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px 48px;
}

.service-link-home {
  display: flex;
  align-items: center;
  gap: 18px;
  text-decoration: none;
  color: #111;
  font-family: "Playfair Display", serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.2;
}

.service-link-home:hover {
  color: #3f7f3f;
}

.service-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  object-fit: contain;
  opacity: 0.95;
}
.text-link{
  display:inline-flex;align-items:center;gap:12px;
  margin-top:40px;
  color:var(--green);
  font-size:1.35rem;
  font-weight:700;
  padding:16px 28px;
  border:2px solid rgba(92,141,75,.5);
  border-radius:8px;
  background:rgba(92,141,75,.08);
  transition:background .25s ease, color .25s ease, transform .2s ease;
}
.text-link:hover{background:rgba(92,141,75,.18);transform:translateY(-1px)}
.text-link span{font-size:1.2em}
.text-link--large{margin-top:22px;font-family:"Playfair Display", Georgia, serif}

.dark-title-hero{
  position: relative;
  min-height: 320px;
  background-image: url("images/services-ref.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
@media (min-width: 901px) {
  .dark-title-hero{ min-height: 430px; }
}
.dark-title-hero--contact{min-height:300px}
.pattern-lines{
  position:absolute;inset:0;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(255,255,255,.09) 8% 8.2%, transparent 8.2% 14%, rgba(255,255,255,.05) 14% 14.15%, transparent 14.15% 20%, rgba(255,255,255,.08) 20% 20.25%, transparent 20.25% 27%, rgba(255,255,255,.04) 27% 27.15%, transparent 27.15% 34%, rgba(255,255,255,.10) 34% 34.25%, transparent 34.25% 40%, rgba(255,255,255,.06) 40% 40.15%, transparent 40.15% 48%, rgba(255,255,255,.10) 48% 48.25%, transparent 48.25% 58%, rgba(255,255,255,.05) 58% 58.2%, transparent 58.2% 65%, rgba(255,255,255,.08) 65% 65.2%, transparent 65.2% 74%, rgba(255,255,255,.05) 74% 74.12%, transparent 74.12% 82%, rgba(255,255,255,.08) 82% 82.16%, transparent 82.16% 90%, rgba(255,255,255,.05) 90% 90.12%, transparent 90.12% 100%);
  opacity:.9;
}
.hero-title-wrap{
  position:relative;z-index:1;
  min-height:430px;display:flex;flex-direction:column;align-items:center;justify-content:center;
  color:#fff;text-align:center;
}
.dark-title-hero--contact .hero-title-wrap{min-height:300px}
.hero-title-wrap h1,
.panel-title,
.about-text h1,
.contact-form-block h2{
  font-family:"Playfair Display", Georgia, serif;
  font-weight:700;
  line-height:1.12;
  margin:0;
}
.hero-title-wrap h1{font-size:clamp(3rem,5vw,4.6rem)}
.green-divider{
  width:60px;height:4px;background:var(--green);border-radius:999px;margin:18px auto 0;
}
.green-divider--left{margin-left:0}
.white-panel{
  background:var(--paper);
  box-shadow:var(--shadow);
}
.white-panel--services{
  padding:58px 34px;
  margin-top:-34px;
}
.services-grid-plain{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:34px 44px;
}
.plain-service-item{
  display:flex;align-items:center;gap:18px;
  font-family:"Playfair Display", Georgia, serif;
  font-size:1rem;font-weight:700;
}
.plain-service-item img{width:30px;height:30px;opacity:.85}
.center-action{padding:40px 0 54px;text-align:center}
.btn-basic{
  display:inline-flex;align-items:center;justify-content:center;
  min-width:190px;height:68px;padding:0 30px;
  background:#000;color:#fff;border-radius:4px;
  font-size:1.05rem;
}
.btn-basic--small{min-width:88px;height:58px;padding:0 22px;border:none;cursor:pointer}

.page-banner{
  height:290px;
  background-position:center;background-size:cover;background-repeat:no-repeat;
}
.hero-construct{background-image:linear-gradient(rgba(0,0,0,.35),rgba(0,0,0,.35)), url("images/construct-hero-screen.png")}
.hero-functionare{background-image:linear-gradient(rgba(0,0,0,.30),rgba(0,0,0,.30)), url("images/functionare-hero.jpg")}
.hero-demolare{background-image:linear-gradient(rgba(0,0,0,.28),rgba(0,0,0,.28)), url("images/demolare-hero.jpg")}
.hero-avize{background-image:linear-gradient(rgba(0,0,0,.25),rgba(0,0,0,.25)), url("images/avize-hero.jpg")}
.hero-doc-tech{background-image:linear-gradient(rgba(0,0,0,.22),rgba(0,0,0,.22)), url("images/doc-tech-hero.jpg")}
.hero-consultanta{
  background-image: linear-gradient(rgba(0,0,0,.18),rgba(0,0,0,.18)), url("images/consultanta-hero.jpg");
  background-position: center bottom;
}
.hero-pud{background-image:linear-gradient(rgba(0,0,0,.35),rgba(0,0,0,.35)), url("images/pud-hero-screen.png")}
.hero-puz{background-image:linear-gradient(rgba(0,0,0,.35),rgba(0,0,0,.35)), url("images/puz-hero-screen.png")}
.hero-about{background-image:linear-gradient(rgba(0,0,0,.3),rgba(0,0,0,.3)), url("images/about-hero.jpg")}

.page-section{padding-bottom:56px}
.content-panel{
  max-width:1040px;margin:-14px auto 0;padding:62px 54px 46px;
}
.panel-title{
  text-align:center;
  font-size:clamp(3rem,4.7vw,4.2rem);
}
.lead-copy{
  text-align:center;
  max-width:800px;
  margin:26px auto 0;
  font-size:1rem;
  color:#4d4d4d;
}
.lead-copy p{margin:0 0 16px}
.soft-rule{border:none;border-top:1px solid var(--line);margin:34px 0}
.page-body{
  max-width:920px;margin:0 auto;
}
.page-body h2{
  font-family:"Playfair Display", Georgia, serif;
  font-size:2rem;
  text-align:left;
  margin:0 0 18px;
}
.page-body h3{
  font-family:"Playfair Display", Georgia, serif;
  color:var(--green);
  text-align:center;
  font-size:1.25rem;
  margin:28px 0 4px;
}
.page-body p{
  margin:0 0 18px;
  color:#4c4c4c;
  text-align:center;
}
.page-body h2 + h3{margin-top:26px}
.page-body ul{
  margin:0;
  padding-left:24px;
  color:#4c4c4c;
}
.page-body li{margin:10px 0}
.page-body em{font-style:italic}

.about-block{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:46px;
  align-items:start;
}
.about-text{
  padding:54px 0 34px;
}
.about-text h1{
  font-size:clamp(2.8rem,4.5vw,4rem);
  margin-bottom:12px;
}
.about-text p{font-size:1.03rem;color:#4b4b4b;margin:0 0 22px}
.about-media{padding:54px 0 34px}
.about-media img{
  width:100%;height:420px;object-fit:cover;box-shadow:var(--shadow)
}

.contact-layout{
  display:grid;
  grid-template-columns:1.2fr .45fr;
  gap:60px;
  align-items:start;
  padding-bottom:56px;
}
.contact-form-block h2{
  font-size:clamp(1.7rem,2.6vw,2.4rem);
  max-width:780px;
  margin-bottom:46px;
}
.contact-form{
  display:grid;gap:20px;
}
.contact-form input,.contact-form textarea{
  width:100%;
  border:none;
  border-bottom:1px solid #cfcfcf;
  background:transparent;
  padding:14px 0;
  font:inherit;font-size:1.05rem;
  outline:none;
}
.contact-form textarea{min-height:110px;resize:vertical}
.form-note{font-size:.95rem;color:#666}
.contact-side{
  padding-top:8px;
}
.contact-side h3{
  font-family:"Playfair Display", Georgia, serif;
  color:var(--green);
  font-size:1.65rem;
  margin:0 0 16px;
}
.contact-side ul{list-style:none;padding:0;margin:0 0 28px;display:grid;gap:16px}
.contact-side li{display:grid;gap:2px}
.contact-side strong{font-size:1rem;color:#2c2c2c}
.contact-side span,.contact-side a,.contact-side p{font-size:1rem;color:#4f4f4f}

.site-footer{
  background:url("images/footer-bg.jpg") top center/cover no-repeat;
  background-color:#0f0f0f;
  color:#fff;
  padding:42px 0 24px;
}
.site-footer .container {
  width:100%;
  max-width:100%;
  margin:0 auto;
  padding-left:32px;
  padding-right:32px;
}
@media (min-width:1200px) {
  .site-footer .container {
    padding-left:clamp(32px, 4%, 48px);
    padding-right:clamp(32px, 4%, 48px);
  }
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .55fr .65fr;
  gap:40px;
  align-items:start;
  justify-items:start;
}
.footer-brand{
  font-family:"Playfair Display", Georgia, serif;
  font-size:clamp(2rem,3vw,3rem);
  line-height:1;
  margin-top:2px;
  margin-left:0;
  padding-left:0;
  text-align:left;
  justify-self:start;
}
.site-footer .footer-brand {
  width:100%;
  max-width:100%;
}
.site-footer .container {
  padding-left: 32px;
  padding-right: 32px;
}
@media (min-width: 1200px) {
  .site-footer .container {
    padding-left: clamp(32px, 4%, 48px);
    padding-right: clamp(32px, 4%, 48px);
  }
}
.footer-brand-white{color:#fff}
.footer-brand-green{color:var(--green)}
.site-footer h3{
  font-family:"Playfair Display", Georgia, serif;
  font-size:1.7rem;
  margin:0 0 18px;
}
.footer-links{list-style:none;padding:0;margin:0;display:grid;gap:10px}
.footer-links a{
  color:var(--green);
  text-decoration:underline;
  text-underline-offset:3px;
}
.footer-links a:hover{text-decoration:none}
.footer-bottom .legal-links a{
  color:#d0d0d0;
  text-decoration:underline;
  text-underline-offset:3px;
}
.footer-bottom .legal-links a:hover{text-decoration:none}
.footer-contact strong{display:block;color:#fff}
.footer-contact span{color:#d0d0d0}
.footer-bottom{
  margin-top:30px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.16);
}
.legal-links{color:#d0d0d0;font-size:.95rem}
.legal-links a{color:#d0d0d0}

.legal-section{padding:80px 0 56px}
.legal-panel{max-width:900px;margin:0 auto;padding:56px 48px}
.legal-panel p{font-size:1.02rem;color:#4d4d4d}

@media (max-width:1100px){
  .services-links-grid,.services-grid-plain{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr; gap: 30px}
  .footer-grid > div:first-child{grid-column: span 2}
}
@media (max-width:900px){
  .header-inner{
    min-height:96px;
    flex-wrap:wrap;
    gap:14px;
  }

  .brand{
    max-width:calc(100% - 58px);
  }

  .brand-logo{
    width:48px;
    height:48px;
  }

  .brand-name{
    white-space:normal;
  }

  .nav-toggle{
    display:block;
    margin-left:auto;
  }

  .site-nav{
    display:none;
    width:100%;
    order:3;
    position:static;
    margin-top:8px;
    padding:12px 0 18px;
    background:#fff;
    color:var(--text);
    border-top:1px solid #e6e6e6;
    border-bottom:1px solid #e6e6e6;
    box-shadow:none;
    max-height:none;
    overflow:visible;
  }

  .site-header--dark .site-nav{
  background:rgba(0,0,0,.35);
  color:#fff;
  border-top:1px solid rgba(255,255,255,.18);
  border-bottom:1px solid rgba(255,255,255,.18);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
}
.site-header--dark .submenu{
  background:transparent;
  color:#fff;
}

.site-header--dark .submenu a{
  color:#fff;
}

.site-header--dark .submenu a.active,
.site-header--dark .submenu a:hover{
  background:rgba(255,255,255,.08);
}
  .site-nav.open{
    display:block;
  }

  .site-nav > ul{
    display:grid;
    grid-template-columns:1fr;
    gap:0;
  }

  .site-nav li{
    border-bottom:1px solid rgba(0,0,0,.06);
  }

  .site-header--dark .site-nav li{
    border-bottom:1px solid rgba(255,255,255,.10);
  }

  .site-nav li:last-child{
    border-bottom:none;
  }

  .site-nav a{
    display:block;
    width:100%;
    padding:14px 0;
  }

  .site-nav a.active{
    border-bottom:none;
    font-weight:700;
  }

  .has-submenu > a::after{
    float:right;
  }

  .submenu{
    position:static;
    min-width:100%;
    display:none;
    opacity:1;
    visibility:visible;
    transform:none;
    margin:0;
    padding:4px 0 8px 18px;
    background:transparent;
    border:none;
    box-shadow:none;
  }

  .has-submenu.open .submenu{
    display:block;
  }

  .submenu a{
    padding:10px 0;
    white-space:normal;
  }

  .submenu a.active,
  .submenu a:hover{
    background:transparent;
    border-bottom:none;
  }

  .page-banner{
    height:220px;
  }

  .about-block,
  .contact-layout,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .content-panel,
  .legal-panel{
    padding:40px 24px;
  }

  .white-panel--services{
    padding:34px 24px;
  }

  .gallery-mosaic{
    grid-template-columns:repeat(3,1fr);
    grid-auto-rows:110px;
  }

  .gallery-mosaic img:nth-child(n){
    grid-row:auto / span 1;
  }
}
@media (max-width:640px){
  .home-hero,
  .hero-center{
    min-height:100svh;
    height:100svh;
  }

  .home-hero .hero-image{
    background:
      linear-gradient(rgba(0,0,0,.30), rgba(0,0,0,.34)),
      url("images/home-hero.jpg") 65% center / cover no-repeat;
  }

  .stack-words span{
    font-size:clamp(2.2rem,10vw,3.2rem);
    line-height:1.08;
  }
}
@media (max-width:640px){
  .container,.narrow{width:calc(100% - 32px)}
  .header-inner{min-height:88px}
  .site-nav{padding:12px 16px 18px}
  .home-hero,.hero-center{min-height:520px}
  .services-links-grid,.services-grid-plain{grid-template-columns:1fr}
  .gallery-mosaic{grid-template-columns:repeat(2,1fr);gap:12px}
  .service-link-home,.plain-service-item{font-size:1rem}
  .contact-form-block h2,.panel-title,.about-text h1,.hero-title-wrap h1{font-size:2.2rem}
}
.hero-about{
  position:relative;
}
.hero-about::after{
  content:"";
  position:absolute;inset:0;
  background:rgba(0,0,0,.28);
}
.hero-about-title{
  position:relative;
  z-index:1;
  height:290px;
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  color:#fff;text-align:center;
}
.hero-about-title h1{
  font-family:"Playfair Display", Georgia, serif;
  font-size:clamp(2.6rem,4.8vw,4.4rem);
  margin:0;
  line-height:1.12;
}
.center-section-title{
  text-align:center !important;
  font-size:2.35rem !important;
  margin:0 0 22px !important;
}
.includes-title{
  text-align:left !important;
  font-size:2rem !important;
  margin:0 0 18px !important;
}
.pattern-lines{
  display: none;
}
.search-link{
  display:none !important;
}
@media (max-width:900px){
  .home-hero .hero-image{
    background-position:62% center;
    background-attachment:scroll;
  }
}

@media (max-width:640px){
  .home-hero .hero-image{
    background-position:66% center;
  }

  .stack-words span{
    font-size:clamp(2.2rem,10vw,3.2rem);
    line-height:1.08;
  }
}