
:root{
  --bg:#031f24;
  --text:#d9b089;
  --text-soft:#d0a37d;
  --line:rgba(217,176,137,.78);
}
*{box-sizing:border-box}
html,body{min-height:100%;}
body{
  margin:0;
  font-family:"Aptos","Segoe UI",Arial,sans-serif;
  color:var(--text);
  background:
    linear-gradient(90deg, rgba(3,31,36,.99) 0%, rgba(3,31,36,.96) 28%, rgba(3,31,36,.78) 42%, rgba(3,31,36,.28) 56%, rgba(3,31,36,.05) 74%, rgba(3,31,36,0) 100%),
    var(--bg);
  min-height:100svh;
  overflow:hidden;
}
body::after{
  content:"";
  position:fixed;
  inset:0;
  background:url('../img/bg-heron-sunrise.png') no-repeat right center;
  background-size:auto 128%;
  opacity:1;
  pointer-events:none;
  z-index:-1;
}
.page{
  height:100svh;
  padding:28px clamp(26px,4.8vw,70px) 24px;
  display:flex;
  flex-direction:column;
}
.topbar{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:22px;
  flex:0 0 auto;
}
.logo{
  width:min(395px,34vw);
  min-width:250px;
  height:auto;
  display:block;
  image-rendering:auto;
}
.lang{
  display:flex;
  gap:18px;
  padding-top:7px;
  align-items:center;
  font-size:clamp(15px,1.05vw,20px);
  letter-spacing:.12em;
  font-weight:500;
}
.lang a{
  color:var(--text);
  text-decoration:none;
  opacity:.82;
  position:relative;
  padding:0 0 7px;
  line-height:1;
}
.lang a.active,.lang a:hover{opacity:1}
.lang a.active::after{content:"";position:absolute;left:0;right:0;bottom:0;height:1px;background:var(--text)}
.content{
  width:min(390px,34vw);
  max-width:390px;
  margin-top:clamp(34px,7vh,72px);
  margin-left:0;
  flex:0 1 auto;
}
.rule{display:flex;align-items:center;gap:14px;margin:0 0 24px;max-width:330px}
.rule::before,.rule::after{content:"";height:1px;background:var(--line);flex:1}
.rule span{font-size:16px;line-height:1}
h1{
  font-family:"Aptos Display","Segoe UI",Arial,sans-serif;
  font-weight:400;
  line-height:1.03;
  margin:0 0 15px;
  font-size:clamp(32px,3.45vw,55px);
  letter-spacing:-.025em;
  max-width:390px;
}
p.lead{
  font-size:clamp(14px,1.05vw,18px);
  line-height:1.38;
  margin:0 0 24px;
  max-width:340px;
  color:var(--text-soft);
}
.contact-block{margin-top:24px}
.mail{display:inline-block;color:var(--text);text-decoration:none;font-size:clamp(16px,1.15vw,21px)}
.mail:hover,.socials a:hover{opacity:.86}
.socials{margin-top:14px;display:flex;gap:10px;flex-wrap:wrap;align-items:center}
.socials a{color:var(--text-soft);text-decoration:none;font-size:12px;letter-spacing:.03em;display:inline-flex;align-items:center;gap:7px;border:1px solid rgba(217,176,137,.28);border-radius:999px;padding:7px 10px;background:rgba(3,31,36,.18);backdrop-filter:blur(2px)}
.linkedin-icon{width:16px;height:16px;display:block;fill:currentColor;flex:0 0 auto}
@media (max-width: 1000px){
  body{overflow:auto;background:linear-gradient(90deg, rgba(3,31,36,.99) 0%, rgba(3,31,36,.92) 52%, rgba(3,31,36,.44) 100%), var(--bg)}
  body::after{background-size:cover;background-position:69% center;opacity:.72}
  .page{min-height:100svh;height:auto;padding:24px 22px 28px}
  .logo{width:min(320px,64vw);min-width:210px}
  .lang{font-size:18px;gap:14px}
  .content{margin-top:44px;width:100%;max-width:440px}
  h1{max-width:100%;font-size:clamp(38px,9vw,48px)}
  p.lead{max-width:100%}
}
@media (max-width: 560px){
  .topbar{align-items:flex-start;gap:12px}
  .logo{width:230px;min-width:0}
  .content{margin-top:42px}
  .rule{margin-bottom:22px;max-width:100%}
  .socials{flex-direction:column;align-items:flex-start;gap:8px}
}
