*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family: "Inter", "Helvetica Neue", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(201,174,108,0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(120,120,120,0.08), transparent 25%),
    linear-gradient(135deg,#f7f5ef 0%, #f3f1ea 100%);
  color:#1d1d1d;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:40px;
  overflow:hidden;
  position:relative;
}

body::before{
  content:"";
  position:absolute;
  width:700px;
  height:700px;
  border-radius:50%;
  border:1px solid rgba(0,0,0,0.04);
  top:-300px;
  right:-250px;
}

body::after{
  content:"";
  position:absolute;
  width:500px;
  height:500px;
  border-radius:50%;
  border:1px solid rgba(0,0,0,0.03);
  bottom:-220px;
  left:-180px;
}

.card{
  position:relative;
  width:100%;
  max-width:980px;
  background:rgba(255,255,255,0.72);
  backdrop-filter: blur(12px);
  border:1px solid rgba(255,255,255,0.6);
  border-radius:28px;
  padding:70px;
  box-shadow:
    0 10px 40px rgba(0,0,0,0.06),
    0 2px 8px rgba(0,0,0,0.03);
  overflow:hidden;
}

.card::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:5px;
  background:linear-gradient(
    90deg,
    #b59b63,
    #d8c08f,
    #b59b63
  );
}

.lang-switch{
  position:absolute;
  top:35px;
  right:40px;
  display:flex;
  gap:16px;
}

.lang-switch a{
  text-decoration:none;
  color:#888;
  font-size:0.82rem;
  letter-spacing:0.12em;
  transition:0.25s ease;
}

.lang-switch a:hover{
  color:#111;
}

.lang-switch .active{
  color:#111;
  font-weight:600;
}

.top{
  margin-bottom:70px;
}

.brand-area{
  max-width:760px;
}

.eyebrow{
  font-size:0.75rem;
  text-transform:uppercase;
  letter-spacing:0.22em;
  color:#7c766d;
  margin-bottom:22px;
}

h1{
  font-size:3.1rem;
  line-height:1.1;
  font-weight:500;
  letter-spacing:-0.03em;
  margin-bottom:28px;
  color:#111;
}

.claim{
  font-size:1.15rem;
  line-height:1.9;
  color:#4b4b4b;
  max-width:720px;
}

.grid{
  display:grid;
  grid-template-columns:1fr 320px;
  gap:60px;
  align-items:start;
}

.values{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:18px;
}

.value-card{
  background:rgba(255,255,255,0.7);
  border:1px solid rgba(0,0,0,0.05);
  border-radius:18px;
  padding:22px;
  transition:0.25s ease;
}

.value-card:hover{
  transform:translateY(-3px);
  box-shadow:0 8px 24px rgba(0,0,0,0.05);
}

.value-title{
  font-size:0.95rem;
  letter-spacing:0.04em;
  text-transform:uppercase;
  margin-bottom:10px;
  color:#9b8354;
  font-weight:600;
}

.value-text{
  color:#555;
  line-height:1.7;
  font-size:0.95rem;
}

.contact-box{
  background:#1d1d1d;
  color:white;
  border-radius:22px;
  padding:34px;
  position:relative;
  overflow:hidden;
}

.contact-box::before{
  content:"";
  position:absolute;
  width:220px;
  height:220px;
  border-radius:50%;
  background:rgba(181,155,99,0.08);
  top:-90px;
  right:-70px;
}

.contact-title{
  font-size:0.85rem;
  text-transform:uppercase;
  letter-spacing:0.18em;
  color:#c7b38b;
  margin-bottom:24px;
}

.company{
  font-size:1.15rem;
  line-height:1.6;
  margin-bottom:20px;
  position:relative;
  z-index:2;
}

.contact-text{
  color:rgba(255,255,255,0.75);
  line-height:1.8;
  font-size:0.95rem;
  position:relative;
  z-index:2;
}

footer{
  margin-top:65px;
  padding-top:28px;
  border-top:1px solid rgba(0,0,0,0.08);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}

.footer-left{
  color:#666;
  font-size:0.92rem;
  line-height:1.8;
}

.footer-right{
  color:#9b8354;
  font-size:0.85rem;
  letter-spacing:0.15em;
  text-transform:uppercase;
}

@media(max-width:900px){

  .card{
    padding:45px 30px;
  }

  .grid{
    grid-template-columns:1fr;
  }

  h1{
    font-size:2.2rem;
  }

  footer{
    flex-direction:column;
    align-items:flex-start;
  }

  .lang-switch{
    top:25px;
    right:30px;
  }

}
.mail-link{
  color:white;
  text-decoration:underline;
}

.mail-link:hover{
  opacity:0.8;
}
