
:root{
  --navy:#0f2f3a;
  --teal:#1c7c7a;
  --gold:#c9963e;
  --cream:#fffaf0;
  --paper:#ffffff;
  --ink:#193039;
  --muted:#5d6f76;
  --line:#dbe8ea;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:var(--ink);
  background:var(--cream);
  line-height:1.55;
}
a{color:var(--teal); text-decoration:none}
a:hover{text-decoration:underline}
header{
  position:sticky; top:0; z-index:20;
  background:rgba(255,250,240,.96);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(10px);
}
.nav{
  max-width:1120px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 20px;
  gap:20px;
}
.logo{
  font-weight:800;
  letter-spacing:.2px;
  color:var(--navy);
  font-size:1.05rem;
}
.logo span{color:var(--gold)}
.navlinks{
  display:flex; flex-wrap:wrap; gap:14px; align-items:center;
  font-size:.94rem;
}
.lang button{
  border:1px solid var(--line);
  background:#fff;
  border-radius:999px;
  padding:7px 10px;
  cursor:pointer;
  font-weight:700;
  color:var(--navy);
}
.lang button:hover{border-color:var(--teal)}
.hero{
  max-width:1120px;
  margin:0 auto;
  padding:64px 20px 42px;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:42px;
  align-items:center;
}
.badge{
  display:inline-block;
  background:#e9f7f6;
  color:var(--teal);
  border:1px solid #c8e9e6;
  border-radius:999px;
  padding:8px 12px;
  font-weight:800;
  font-size:.88rem;
}
h1{
  font-size:clamp(2.1rem,5vw,4.3rem);
  line-height:1.03;
  margin:18px 0 18px;
  color:var(--navy);
  letter-spacing:-.04em;
}
h2{
  color:var(--navy);
  font-size:clamp(1.55rem,3vw,2.45rem);
  line-height:1.12;
  letter-spacing:-.025em;
  margin:0 0 16px;
}
h3{color:var(--navy); margin:0 0 8px}
.lead{
  font-size:1.18rem;
  color:#35515a;
  max-width:720px;
}
.cta-row{display:flex; gap:12px; flex-wrap:wrap; margin-top:26px}
.btn{
  display:inline-block;
  background:var(--teal);
  color:white;
  padding:13px 18px;
  border-radius:12px;
  font-weight:800;
  box-shadow:0 10px 25px rgba(28,124,122,.18);
}
.btn:hover{text-decoration:none; background:#166866}
.btn.secondary{
  background:white; color:var(--navy); border:1px solid var(--line);
  box-shadow:none;
}
.hero-card{
  background:white;
  border:1px solid var(--line);
  border-radius:28px;
  padding:18px;
  box-shadow:0 22px 60px rgba(15,47,58,.13);
}
.hero-card img{
  width:100%;
  border-radius:22px;
  display:block;
  object-fit:cover;
  max-height:560px;
}
.photo-caption{
  padding:14px 8px 4px;
  color:var(--muted);
  font-weight:700;
}
section{
  max-width:1120px;
  margin:0 auto;
  padding:54px 20px;
}
.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.grid-2{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}
.card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:22px;
  padding:24px;
  box-shadow:0 10px 30px rgba(15,47,58,.05);
}
.card ul{padding-left:20px; margin:10px 0 0}
.steps{
  counter-reset:step;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.step:before{
  counter-increment:step;
  content:counter(step);
  display:grid;
  place-items:center;
  width:34px; height:34px;
  border-radius:50%;
  background:var(--gold);
  color:#fff;
  font-weight:900;
  margin-bottom:12px;
}
.notice{
  background:#fff7e4;
  border:1px solid #efd59f;
  border-radius:18px;
  padding:18px;
  color:#584018;
}
.contact{
  background:linear-gradient(135deg,var(--navy),#174653);
  color:#fff;
  border-radius:30px;
  padding:34px;
}
.contact h2,.contact h3{color:#fff}
.contact p{color:#e3f1f2}
.form-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin-top:18px;
}
label{font-weight:800; font-size:.92rem}
input,select,textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:12px;
  padding:13px;
  font:inherit;
  margin-top:6px;
}
textarea{min-height:120px}
.full{grid-column:1/-1}
.fake-submit{
  border:0; background:var(--gold); color:white; padding:14px 18px;
  border-radius:12px; font-weight:900; font-size:1rem; cursor:pointer;
}
.testimonial{
  font-size:1.02rem;
  color:#314b54;
}
footer{
  margin-top:50px;
  background:var(--navy);
  color:#dcebed;
  padding:34px 20px;
}
footer .inner{max-width:1120px; margin:0 auto}
.small{font-size:.9rem; color:#6d7e84}
footer .small{color:#b7c8cd}
[data-lang]{display:none}
[data-lang].active{display:block}
.inline-lang[data-lang].active{display:inline}
@media(max-width:820px){
  .hero,.grid-2,.grid-3,.steps{grid-template-columns:1fr}
  .nav{align-items:flex-start; flex-direction:column}
  .form-grid{grid-template-columns:1fr}
  h1{font-size:2.55rem}
  section{padding:38px 18px}
}
