:root{
  --bg:#111315;
  --card:#1b1f25;
  --card-hover:#21262d;
  --line:#2f353d;
  --text:#f3f4f6;
  --muted:#b7bec8;
  --accent:#8f7a5a;
  --accent-soft:#b59a72;
  --shadow:0 16px 38px rgba(0,0,0,.25);
  --radius:20px;
  --max:1160px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(143,122,90,.12), transparent 28%),
    linear-gradient(180deg,#111315 0%,#15191d 100%);
  color:var(--text);
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  display:block;
  max-width:100%;
}

.container{
  width:min(calc(100% - 32px), var(--max));
  margin:0 auto;
}

.topbar{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(17,19,21,.88);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,.06);
}

.topbar-inner{
  min-height:84px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}

.logo{
  width:58px;
  height:58px;
  border-radius:50%;
  object-fit:cover;
  box-shadow:var(--shadow);
  background:#fff;
}

.brand-text{
  display:flex;
  flex-direction:column;
}

.brand-title{
  font-size:1.45rem;
  font-weight:700;
  letter-spacing:.02em;
}

.brand-sub,
.hero-subtitle{
  font-size:.82rem;
  color:var(--muted);
  text-align:right;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.menu-toggle{
  display:none;
  border:1px solid var(--line);
  background:transparent;
  color:var(--text);
  border-radius:12px;
  padding:10px 12px;
  cursor:pointer;
}

.nav{
  display:flex;
  align-items:center;
  gap:12px;
}

.nav a,
.lang-btn{
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
  color:var(--text);
  padding:10px 14px;
  border-radius:999px;
  font-size:.95rem;
  transition:.25s ease;
}

.nav a:hover,
.lang-btn:hover,
.lang-btn.active{
  background:rgba(181,154,114,.12);
  border-color:var(--accent-soft);
}

.lang-switch{
  display:flex;
  gap:8px;
}

.hero{
  padding:56px 0 24px;
}

.hero-card{
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border:1px solid rgba(255,255,255,.06);
  border-radius:26px;
  box-shadow:var(--shadow);
  padding:clamp(24px,4vw,52px);
}

.hero-content{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:28px;
  align-items:end;
}

.eyebrow,
.section-tag{
  display:inline-block;
  margin:0 0 14px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(181,154,114,.22);
  background:rgba(181,154,114,.1);
  color:var(--accent-soft);
  font-size:.82rem;
  letter-spacing:.05em;
}

h1{
  margin:0;
  font-size:clamp(2.5rem,6vw,4.7rem);
  line-height:.95;
}

.lead{
  margin:0;
  color:var(--muted);
  max-width:470px;
  justify-self:end;
  text-align:right;
  font-size:1.05rem;
  line-height:1.8;
}

.hero-actions{
  margin-top:28px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:13px 18px;
  border-radius:999px;
  border:1px solid var(--line);
  transition:.25s ease;
  font-weight:600;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn-primary{
  background:var(--accent);
  border-color:var(--accent);
  color:#fff;
}

.btn-primary:hover{
  background:var(--accent-soft);
  border-color:var(--accent-soft);
}

.btn-secondary{
  background:transparent;
}

.btn-secondary:hover{
  border-color:var(--accent-soft);
  background:rgba(181,154,114,.08);
}

.section{
  padding:28px 0;
}

.section-head{
  margin-bottom:22px;
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:18px;
}

.section-head h2{
  margin:0;
  font-size:clamp(1.7rem,3vw,2.2rem);
}

.section-text{
  max-width:520px;
  text-align:right;
  color:var(--muted);
  line-height:1.7;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:16px;
}

.service-card{
  background:linear-gradient(180deg, var(--card), #181c21);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:22px;
  min-height:130px;
  transition:transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
  box-shadow:0 8px 22px rgba(0,0,0,.12);
}

.service-card:hover{
  transform:translateY(-6px);
  border-color:rgba(181,154,114,.5);
  background:linear-gradient(180deg, var(--card-hover), #1b2026);
  box-shadow:0 18px 34px rgba(0,0,0,.24);
}

.service-number{
  width:42px;
  height:42px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:14px;
  background:rgba(181,154,114,.12);
  border:1px solid rgba(181,154,114,.22);
  color:var(--accent-soft);
  font-size:.9rem;
  font-weight:700;
}

.service-card h3{
  margin:0;
  font-size:1rem;
  line-height:1.55;
  font-weight:600;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.contact-card,
.info-card{
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border:1px solid rgba(255,255,255,.06);
  border-radius:var(--radius);
  padding:24px;
  box-shadow:var(--shadow);
}

.contact-item{
  padding:16px 0;
  border-bottom:1px solid rgba(255,255,255,.06);
}

.contact-item.last{
  border-bottom:none;
}

.label{
  margin-bottom:7px;
  font-size:.8rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--accent-soft);
}

.contact-link,
.info-card p{
  color:var(--muted);
  line-height:1.75;
}

.contact-link:hover{
  color:var(--text);
}

.info-card h3{
  margin-top:0;
  margin-bottom:12px;
  font-size:1.2rem;
}

.inline-btn{
  margin-top:10px;
}

.footer{
  padding:28px 0 42px;
  color:var(--muted);
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:16px;
  border-top:1px solid rgba(255,255,255,.06);
  padding-top:18px;
}

@media (max-width: 980px){
  .hero-content,
  .contact-grid,
  .services-grid{
    grid-template-columns:1fr 1fr;
  }

  .hero-content{
    align-items:start;
  }

  .lead,
  .section-text{
    justify-self:start;
    text-align:left;
  }
}

@media (max-width: 760px){
  .topbar-inner{
    min-height:76px;
    flex-wrap:wrap;
    padding:10px 0;
  }

  .menu-toggle{
    display:block;
    margin-left:auto;
  }

  .nav{
    display:none;
    width:100%;
    flex-direction:column;
    align-items:stretch;
    gap:10px;
    padding-top:10px;
  }

  .nav.open{
    display:flex;
  }

  .nav a{
    text-align:center;
  }

  .lang-switch{
    justify-content:center;
  }

  .hero{
    padding-top:28px;
  }

  .hero-content,
  .services-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .section-head,
  .footer-inner{
    flex-direction:column;
    align-items:stretch;
  }

  .brand-title{
    font-size:1.2rem;
  }

  .brand-sub,
  .hero-subtitle,
  .lead,
  .section-text{
    text-align:left;
  }

  .services-grid{
    gap:14px;
  }

  .service-card{
    min-height:auto;
    padding:18px;
  }

  .hero-actions{
    flex-direction:column;
  }

  .btn{
    width:100%;
  }

  .logo{
    width:50px;
    height:50px;
  }
}