:root{
  --bg:#05080c;
  --bg-soft:#090d12;
  --panel:#0b1016;
  --panel-2:#0e141b;
  --text:#f5f7fa;
  --muted:#a8b1bc;
  --muted-2:#74808e;
  --line:#202832;
  --line-soft:rgba(255,255,255,.075);
  --blue:#1f6fe5;
  --blue-hover:#1a63cf;
  --blue-soft:#9ecaff;
  --container:1200px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth;background:var(--bg)}
body{
  margin:0;
  color:var(--text);
  background:var(--bg);
  font-family:"Noto Sans Georgian",system-ui,-apple-system,"Segoe UI",sans-serif;
  font-weight:400;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
.shell{width:min(var(--container),calc(100% - 44px));margin-inline:auto}
:focus-visible{outline:2px solid #a7ceff;outline-offset:4px}

/* Utility bar */
.announcement{
  position:relative;
  z-index:70;
  background:#030507;
  border-bottom:1px solid #151b22;
  color:#8995a3;
  font-size:11px;
}
.announcement__inner{
  min-height:34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.announcement__right{color:#9da9b6}
.announcement a{color:#f5f7fa;font-weight:700}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:60;
  background:rgba(5,8,12,.97);
  border-bottom:1px solid #171e26;
  transition:background .18s ease,box-shadow .18s ease;
}
.site-header.is-scrolled{
  background:rgba(5,8,12,.995);
  box-shadow:0 8px 24px rgba(0,0,0,.24);
}
.nav{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  transition:min-height .18s ease;
}
.site-header.is-scrolled .nav{min-height:66px}
.brand{flex:0 0 auto}
.brand img{
  width:166px;
  height:54px;
  object-fit:contain;
  object-position:left center;
  transition:width .18s ease,height .18s ease;
}
.site-header.is-scrolled .brand img{width:150px;height:46px}
.nav__links{
  display:flex;
  align-items:center;
  gap:36px;
  color:#c4cbd3;
  font-size:13px;
  font-weight:600;
}
.nav__links a{
  position:relative;
  padding:8px 0;
  transition:color .16s ease;
}
.nav__links a::after{
  content:"";
  position:absolute;
  left:0;
  right:100%;
  bottom:2px;
  height:1px;
  background:#6eaaff;
  transition:right .18s ease;
}
.nav__links a:hover{color:#fff}
.nav__links a:hover::after{right:0}
.nav__cta{
  min-height:44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 20px;
  border-radius:7px;
  background:var(--blue);
  color:#fff;
  font-size:13px;
  font-weight:700;
  transition:background .16s ease,transform .16s ease;
}
.nav__cta:hover{background:var(--blue-hover);transform:translateY(-1px)}

/* Hero */
.hero{
  position:relative;
  min-height:690px;
  overflow:hidden;
  display:grid;
  align-items:end;
  isolation:isolate;
  background:#07101a;
}
.hero__media{
  position:absolute;
  inset:0;
  z-index:-3;
  background:#07101a;
}
.hero__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:50% 50%;
  filter:saturate(.94) contrast(1.025) brightness(.91);
  transform:none!important;
}
.hero__overlay{
  position:absolute;
  inset:0;
  z-index:-2;
  background:
    linear-gradient(90deg,rgba(2,6,10,.94) 0%,rgba(2,6,10,.81) 34%,rgba(2,6,10,.45) 60%,rgba(2,6,10,.15) 84%,rgba(2,6,10,.08) 100%),
    linear-gradient(180deg,rgba(3,7,11,.02) 0%,rgba(3,7,11,.07) 56%,rgba(3,7,11,.78) 100%);
}
.hero__content{
  position:relative;
  padding:88px 0 56px;
}
.eyebrow,.kicker{
  margin:0;
  color:#8f9baa;
  font-size:11px;
  font-weight:600;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.eyebrow{
  display:flex;
  align-items:center;
  gap:11px;
}
.eyebrow::before{
  content:"";
  width:34px;
  height:1px;
  background:#9db3ca;
}
.hero h1{
  margin:18px 0 0;
  max-width:960px;
  font-size:clamp(52px,5.2vw,78px);
  line-height:1.06;
  letter-spacing:-.025em;
  font-weight:800;
  text-wrap:balance;
}
.hero h1 span{color:var(--blue-soft)}
.hero__lead{
  max-width:680px;
  margin:24px 0 0;
  color:#d0d6dc;
  font-size:17px;
  line-height:1.72;
}
.hero__actions{
  display:flex;
  flex-wrap:wrap;
  gap:11px;
  margin-top:30px;
}
.button{
  min-height:52px;
  padding:0 22px;
  border-radius:7px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
  font-weight:700;
  transition:background .16s ease,border-color .16s ease,transform .16s ease;
}
.button:hover{transform:translateY(-1px)}
.button--primary{background:var(--blue);color:#fff}
.button--primary:hover{background:var(--blue-hover)}
.button--ghost{
  color:#fff;
  border:1px solid rgba(255,255,255,.28);
  background:rgba(6,10,15,.50);
}
.button--ghost:hover{background:rgba(6,10,15,.72);border-color:rgba(255,255,255,.42)}
.button--full{width:100%}
.hero__facts{
  max-width:930px;
  margin-top:48px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-top:1px solid rgba(255,255,255,.17);
}
.hero__facts>div{
  position:relative;
  padding:18px 30px 0 0;
}
.hero__facts>div+div::before{
  content:"";
  position:absolute;
  left:-24px;
  top:18px;
  width:1px;
  height:42px;
  background:rgba(255,255,255,.11);
}
.hero__facts strong{
  display:block;
  font-size:21px;
  line-height:1.2;
  font-weight:700;
  letter-spacing:-.015em;
}
.hero__facts span{
  display:block;
  margin-top:5px;
  color:#91a0af;
  font-size:11px;
}

/* Sections */
.section{position:relative;padding:96px 0}
.section-heading{max-width:760px;margin-bottom:40px}
.kicker{display:flex;align-items:center;gap:10px;color:#7d8b9a}
.kicker::before{content:"";width:28px;height:1px;background:#596979}
.section-heading h2,.about__copy h2{
  margin:11px 0 0;
  font-size:clamp(35px,4vw,52px);
  line-height:1.1;
  letter-spacing:-.028em;
  font-weight:700;
}
.section-heading>p:last-child{
  max-width:680px;
  margin:15px 0 0;
  color:var(--muted);
  font-size:15px;
  line-height:1.76;
}

/* Services: workshop/editorial grid */
.section--services{
  background:#070b10;
  border-bottom:1px solid #171e26;
}
.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1px;
  background:#202832;
  border:1px solid #202832;
}
.service-card,
.service-card:nth-child(1),
.service-card:nth-child(6),
.service-card--wide{
  grid-column:auto;
  min-height:246px;
  padding:26px;
  border:0;
  border-radius:0;
  background:#0a0f15;
  transition:background .16s ease;
}
.service-card:hover{background:#0d131a}
.service-card::before,.service-card::after{display:none!important}
.service-card>span{
  position:static;
  display:block;
  margin:0 0 46px;
  color:#647486;
  font-size:10px;
  font-weight:700;
  letter-spacing:.13em;
}
.service-card h3,
.service-card:nth-child(1) h3,
.service-card:nth-child(6) h3,
.service-card--wide h3{
  margin:0;
  max-width:320px;
  font-size:20px;
  line-height:1.42;
  letter-spacing:-.012em;
  font-weight:700;
}
.service-card p{
  margin:12px 0 0;
  color:#96a3b1;
  font-size:13px;
  line-height:1.76;
}
.service-card--wide{
  grid-column:1/-1;
  min-height:196px;
  background:#0b1118;
}
.service-card--wide>span{margin-bottom:30px}
.service-card--wide h3{max-width:460px;font-size:25px}
.service-card--wide p{max-width:760px}

/* About */
.section--about{
  background:#080d13;
  border-bottom:1px solid #171e26;
}
.about{
  display:grid;
  grid-template-columns:1.04fr .96fr;
  gap:64px;
  align-items:center;
}
.about__image{
  overflow:hidden;
  border:1px solid #222b35;
  border-radius:8px;
  background:#0a1017;
}
.about__image img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  filter:saturate(.93) contrast(1.02);
  transition:transform .35s ease;
}
.about__image:hover img{transform:scale(1.012)}
.about__copy>p:not(.kicker){
  margin:20px 0 0;
  color:#a9b3bd;
  font-size:15px;
  line-height:1.82;
}
.about__points{
  display:grid;
  margin-top:30px;
  border-top:1px solid var(--line);
}
.about__points div{
  min-height:62px;
  display:grid;
  grid-template-columns:52px 1fr;
  align-items:center;
  border-bottom:1px solid var(--line);
}
.about__points b{
  color:#728497;
  font-size:10px;
  font-weight:700;
  letter-spacing:.12em;
}
.about__points span{
  color:#d7dde4;
  font-size:13px;
  font-weight:600;
}

/* Contact */
.section--contact{background:#06090d}
.section-heading--contact{margin-bottom:32px}
.contact-layout{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:16px;
  align-items:stretch;
}
.contact-card{
  padding:30px;
  border:1px solid #222b35;
  border-radius:8px;
  background:#0a0f15;
}
.contact-card__logo{
  width:230px;
  height:82px;
  object-fit:contain;
  object-position:left center;
  margin-bottom:20px;
}
.contact-row{padding:16px 0;border-top:1px solid #202832}
.contact-row small{display:block;margin-bottom:5px;color:#768596;font-size:10px}
.contact-row a,.contact-row strong{font-size:17px;line-height:1.45;font-weight:600}
.contact-card .button{margin-top:18px}
.map{
  overflow:hidden;
  min-height:500px;
  border:1px solid #222b35;
  border-radius:8px;
  background:#0a1017;
}
.map iframe{
  width:100%;
  height:100%;
  min-height:500px;
  border:0;
  display:block;
  filter:saturate(.90) contrast(1.015);
}

/* Footer */
.footer{background:#030507;border-top:1px solid #171e26}
.footer__inner{
  min-height:94px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  color:#748190;
  font-size:11px;
}
.footer img{width:150px;height:48px;object-fit:contain;object-position:left center}
.footer a{color:#bdc7d2;font-weight:600}

/* Motion: only reveal, no parallax, no pointer glow */
.js .section-heading,
.js .service-card,
.js .about__image,
.js .about__copy,
.js .contact-card,
.js .map{opacity:0;transform:translateY(10px)}
.js .is-visible{
  opacity:1!important;
  transform:none!important;
  transition:opacity .42s ease,transform .42s ease;
}

@media(max-width:1100px){
  .hero h1{max-width:840px;font-size:clamp(50px,6.1vw,72px)}
}

@media(max-width:980px){
  .nav__links{display:none}
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .service-card--wide{grid-column:1/-1}
  .about,.contact-layout{grid-template-columns:1fr}
}

@media(max-width:760px){
  .shell{width:min(calc(100% - 32px),var(--container))}
  .announcement__inner{min-height:40px;justify-content:flex-end}
  .announcement__inner>span:first-child{display:none}
  .nav{min-height:68px}
  .site-header.is-scrolled .nav{min-height:62px}
  .brand img{width:138px;height:46px}
  .site-header.is-scrolled .brand img{width:130px;height:42px}
  .nav__cta{min-height:42px;padding:0 15px}
  .hero{min-height:700px}
  .hero__media img{object-position:52% 50%}
  .hero__overlay{
    background:
      linear-gradient(180deg,rgba(2,5,8,.42) 0%,rgba(2,5,8,.60) 38%,rgba(2,5,8,.92) 76%,rgba(2,5,8,.99) 100%),
      linear-gradient(90deg,rgba(2,5,8,.46),rgba(2,5,8,.16));
  }
  .hero__content{padding:78px 0 42px}
  .eyebrow{font-size:9px;letter-spacing:.11em}
  .hero h1{
    max-width:none;
    font-size:clamp(42px,11.8vw,58px);
    line-height:1.08;
    letter-spacing:-.02em;
  }
  .hero__lead{font-size:15px;line-height:1.74}
  .hero__actions{display:grid;grid-template-columns:1fr}
  .hero__actions .button{width:100%}
  .hero__facts{grid-template-columns:1fr;margin-top:38px}
  .hero__facts>div{padding:13px 0;border-top:1px solid rgba(255,255,255,.09)}
  .hero__facts>div:first-child{border-top:0}
  .hero__facts>div+div::before{display:none}
  .section{padding:72px 0}
  .section-heading{margin-bottom:28px}
  .section-heading h2,.about__copy h2{font-size:clamp(32px,9vw,43px)}
  .services-grid{grid-template-columns:1fr}
  .service-card,.service-card:nth-child(1),.service-card:nth-child(6),.service-card--wide{
    grid-column:auto;min-height:0;padding:22px
  }
  .service-card>span{margin-bottom:32px}
  .service-card h3,.service-card:nth-child(1) h3,.service-card:nth-child(6) h3,.service-card--wide h3{font-size:20px}
  .about{gap:30px}
  .contact-card{padding:24px}
  .map,.map iframe{min-height:390px}
  .footer__inner{padding:24px 0;min-height:0;flex-direction:column;align-items:flex-start}
}

@media(max-width:420px){
  .shell{width:calc(100% - 24px)}
  .hero h1{font-size:clamp(39px,11.4vw,50px)}
  .nav__cta{padding:0 13px;font-size:12px}
}

@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important}
  .js .section-heading,.js .service-card,.js .about__image,.js .about__copy,.js .contact-card,.js .map{opacity:1;transform:none}
}


/* Added social contacts only; existing design rules above are untouched. */
.contact-socials{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:10px;
}
.contact-social{
  min-height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border:1px solid var(--line);
  border-radius:10px;
  background:rgba(255,255,255,.025);
  color:#dfe7f0;
  font-size:12px;
  font-weight:800;
  transition:border-color .18s ease,background .18s ease,transform .18s ease;
}
.contact-social svg{
  width:18px;
  height:18px;
  fill:currentColor;
}
.contact-social--facebook{color:#7fb0ff}
.contact-social--whatsapp{color:#62d88b}
.contact-social:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.045);
  border-color:rgba(255,255,255,.18);
}
@media(max-width:420px){
  .contact-socials{grid-template-columns:1fr}
}
