:root{
  --bg:#2f3a3f;
  --nav:#3b464b;
  --white:#ffffff;
  --muted:#6f7a80;
  --accent:#3aa7c9;
  --shadow: 0 10px 30px rgba(0,0,0,.25);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color:#111;
}

.wrap{
  width:min(1120px, calc(100% - 40px));
  margin:0 auto;
}

/* HEADER */
.site-header{
  background: var(--bg);
  padding:18px 0 0;
}
.header-inner{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
}
.logo img{
  height:56px;
  display:block;
}

.lang{
  list-style:none;
  display:flex;
  gap:8px;
  padding:0;
  margin:0;
}
.lang img{width:22px;height:22px;display:block}

/* NAV */
.nav-bar{
  margin-top:14px;
  background: var(--nav);
  border-top:1px solid rgba(255,255,255,.06);
  border-bottom:1px solid rgba(0,0,0,.25);
}
.nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:0;
}
.nav a{
  color:#fff;
  text-decoration:none;
  font-size:12px;
  letter-spacing:.5px;
  padding:14px 16px;
  text-transform:uppercase;
  border-right:1px solid rgba(255,255,255,.06);
}
.nav a:first-child{border-left:1px solid rgba(255,255,255,.06)}
.nav a:hover{background: rgba(255,255,255,.06)}
.nav-select{
  display:none;
  width:100%;
  margin:10px 0;
  padding:10px 12px;
  border-radius:6px;
  border:1px solid rgba(0,0,0,.25);
}

/* HERO / SLIDER */
.hero{
  position:relative;
  height:420px;
  overflow:hidden;
  background:#111;
}
.hero-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity .5s ease;
}
.hero-slide.is-active{opacity:1}
.hero-content{
  height:100%;
  display:flex;
  align-items:center;
}

.hero-bubble{
  width:280px;
  height:280px;
  border-radius:50%;
  background: rgba(23,31,35,.78);
  color:#fff;
  padding:34px 28px;
  box-shadow: var(--shadow);
}
.hero-bubble h2{
  margin:0 0 8px;
  font-size:28px;
  letter-spacing:.5px;
  color:#f3b43b;
}
.hero-bubble h5{
  margin:0 0 18px;
  font-size:12px;
  letter-spacing:1px;
  text-transform:uppercase;
  color:#ffffff;
}
.hero-bubble p{
  margin:0;
  font-size:12px;
  line-height:1.55;
  color:#e9eef2;
}

.hero-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.35);
  background: rgba(0,0,0,.25);
  color:#fff;
  font-size:26px;
  cursor:pointer;
}
.hero-prev{left:16px}
.hero-next{right:16px}
.hero-arrow:hover{background: rgba(0,0,0,.45)}

.hero-dots{
  position:absolute;
  bottom:14px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
}
.dot{
  width:10px;height:10px;border-radius:999px;
  border:1px solid rgba(255,255,255,.7);
  background:transparent;
  cursor:pointer;
}
.dot.is-active{background:#fff}

/* SECTIONS */
.section.white{
  background: var(--white);
}
.section{
  padding:46px 0;
}
.top-grid{
  display:grid;
  grid-template-columns: 320px 1fr;
  gap:34px;
  align-items:center;
}
.circle-img{
  width:260px;height:260px;border-radius:50%;
  background-size:cover;
  background-position:center;
  margin:0 auto;
  box-shadow: var(--shadow);
  border:10px solid #f1f1f1;
}
.title{
  text-transform:uppercase;
  text-align:center;
  margin:0;
  font-size:26px;
  letter-spacing:.7px;
}
.title span{
  display:block;
  margin-top:10px;
  color: var(--accent);
  font-weight:700;
}
.subtitle{
  text-align:center;
  color:#4b4b4b;
  margin-top:10px;
  font-style:italic;
  font-size:12px;
}
.ornament{
  width:120px;
  height:3px;
  background: #dcdcdc;
  margin:18px auto 18px;
  border-radius:3px;
}
.lead{
  text-align:center;
  color:#4b4b4b;
  margin:0;
  font-size:12px;
  line-height:1.55;
}

/* CARDS */
.inner-bottom{padding-top:10px}
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:26px;
}
.card{
  text-align:center;
}
.card-img{
  height:150px;
  background-size:cover;
  background-position:center;
  border:8px solid #efefef;
  box-shadow: 0 6px 18px rgba(0,0,0,.12);
}
.card h3{
  margin:16px 0 8px;
  text-transform:uppercase;
  letter-spacing:.8px;
  font-size:16px;
}
.card p{
  margin:0 0 14px;
  color:#4b4b4b;
  font-size:12px;
  line-height:1.55;
}
.btn{
  display:inline-block;
  padding:10px 14px;
  text-decoration:none;
  color:#fff;
  background:#2d3a40;
  border-radius:3px;
  font-size:12px;
  letter-spacing:.4px;
}
.btn:hover{background:#1f2a2f}

/* FOOTER */
.site-footer{
  background: var(--bg);
  color:#fff;
  padding:34px 0;
}
.footer-inner{
  text-align:center;
}
.footer-text{
  margin:0;
  font-size:12px;
  line-height:1.55;
  color:#dfe7ea;
}
.footer-social{
  margin:16px 0 14px;
  display:flex;
  justify-content:center;
  gap:10px;
}
.footer-links{
  color:#c9d3d7;
  font-size:12px;
}
.footer-links a{color:#c9d3d7;text-decoration:none}
.footer-links a:hover{text-decoration:underline}

/* COOKIES */
.cookies{
  position:fixed;
  left:0;right:0;bottom:0;
  background: rgba(0,0,0,.88);
  color:#fff;
  padding:14px 0;
  display:none;
  z-index:999;
}
.cookies-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
}
.cookies-text{font-size:12px;line-height:1.45;color:#e9eef2}
.cookies-actions{display:flex;gap:12px;align-items:center}
.cookies-actions a{color:#fff;text-decoration:underline;font-size:12px}
.cookies-actions button{
  padding:10px 14px;
  border:0;
  background:#fff;
  color:#111;
  cursor:pointer;
  border-radius:4px;
  font-weight:700;
}

/* RESPONSIVE */
@media (max-width: 980px){
  .top-grid{grid-template-columns: 1fr; text-align:center}
  .circle-img{margin-bottom:12px}
  .cards{grid-template-columns: 1fr}
  .nav{display:none}
  .nav-select{display:block}
  .cookies-inner{flex-direction:column; align-items:flex-start}
}
