
:root{
  --yellow:#FFD54F;
  --yellow-dark:#FFC425;
  --black:#111111;
  --text:#1b1b1b;
  --muted:#666;
  --soft:#fff8df;
  --line:#ececec;
  --card:#ffffff;
  --shadow:0 18px 45px rgba(17,17,17,.08);
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif;
  background:#fff;
  color:var(--text);
}
a{text-decoration:none;color:inherit}
.container{width:min(1160px,92%);margin:auto}
.header{
  position:sticky;top:0;z-index:20;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--line);
}
.nav{
  height:82px;display:flex;align-items:center;justify-content:space-between;gap:24px;
}
.logo{display:flex;align-items:center;gap:12px;font-weight:900}
.logo img{width:58px;height:58px;border-radius:50%;object-fit:cover}
.menu{display:flex;align-items:center;gap:26px;font-weight:700;font-size:14px}
.menu a{color:#222}
.menu a:hover{color:#d9a800}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,var(--yellow),var(--yellow-dark));
  color:#111;border:0;border-radius:999px;padding:14px 24px;
  font-weight:900;box-shadow:0 12px 25px rgba(255,196,37,.25);
}
.btn.secondary{background:#fff;border:1px solid #111;box-shadow:none}
.hero{
  padding:76px 0 50px;
  background:
    radial-gradient(circle at top right, rgba(255,213,79,.28), transparent 34%),
    linear-gradient(#fff,#fff);
}
.hero-grid{display:grid;grid-template-columns:1.03fr .97fr;gap:46px;align-items:center}
.badge{
  display:inline-flex;gap:8px;align-items:center;
  background:var(--soft);border:1px solid #ffeaa6;border-radius:999px;
  padding:9px 14px;font-weight:800;color:#7a5b00;margin-bottom:18px
}
h1{font-size:clamp(42px,6vw,76px);line-height:.96;margin:0 0 20px;letter-spacing:-3px;color:#0d0d0d}
h1 span,.yellow{color:#f5bb00}
.lead{font-size:20px;line-height:1.65;color:#4c4c4c;margin:0 0 28px;max-width:650px}
.actions{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:32px}
.stats{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
.stat{background:#fff;border:1px solid var(--line);border-radius:24px;padding:20px;box-shadow:var(--shadow)}
.stat strong{font-size:28px;color:#111}.stat p{margin:6px 0 0;color:var(--muted);font-weight:700}
.photo-collage{position:relative;min-height:520px}
.photo{
  position:absolute;overflow:hidden;border-radius:34px;box-shadow:var(--shadow);border:8px solid #fff;background:#eee
}
.photo img{width:100%;height:100%;object-fit:cover;display:block}
.photo.one{width:68%;height:330px;left:0;top:30px}
.photo.two{width:47%;height:215px;right:0;top:0}
.photo.three{width:45%;height:240px;right:28px;bottom:10px}
.float-logo{
  position:absolute;left:44%;top:44%;width:116px;height:116px;border-radius:50%;
  background:var(--yellow);display:flex;align-items:center;justify-content:center;
  box-shadow:0 20px 45px rgba(0,0,0,.12);border:7px solid #fff
}
.float-logo img{width:100%;height:100%;object-fit:cover;border-radius:50%}
.section{padding:74px 0}
.section.soft{background:#fffaf0}
.center{text-align:center}.eyebrow{color:#d9a800;font-weight:900;margin-bottom:10px}
h2{font-size:clamp(32px,4vw,52px);letter-spacing:-1.8px;line-height:1.08;margin:0 0 16px}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:36px}
.card{background:#fff;border:1px solid var(--line);border-radius:28px;padding:28px;box-shadow:var(--shadow)}
.icon{width:50px;height:50px;border-radius:18px;background:var(--yellow);display:grid;place-items:center;font-size:24px;margin-bottom:18px}
.card h3{margin:0 0 10px;font-size:20px}.card p{color:var(--muted);line-height:1.6;margin:0}
.page-hero{padding:76px 0 42px;text-align:center;background:linear-gradient(#fff,#fffaf0)}
.page-hero h1{font-size:clamp(40px,5vw,64px)}
.content{max-width:900px;margin:0 auto}
.policy-list{display:grid;gap:16px;margin-top:34px}
.policy-item{background:#fff;border:1px solid var(--line);border-radius:22px;padding:22px;box-shadow:var(--shadow)}
.policy-item h3{margin:0 0 8px}
.legal{background:#fff;border:1px solid var(--line);border-radius:30px;padding:36px;box-shadow:var(--shadow);line-height:1.75;color:#454545}
.legal h2{font-size:28px;margin-top:28px;color:#111}
.contact-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:28px;align-items:start}
.contact-card{background:#fff;border:1px solid var(--line);border-radius:28px;padding:28px;box-shadow:var(--shadow)}
.info-row{display:flex;gap:14px;margin:20px 0}.info-row b{display:block}
form{display:grid;gap:14px}
input,textarea{width:100%;border:1px solid #ddd;border-radius:14px;padding:15px;font:inherit}
textarea{min-height:140px;resize:vertical}
.footer{padding:40px 0;background:#111;color:#fff;margin-top:70px}
.footer-inner{display:flex;justify-content:space-between;gap:20px;align-items:center;flex-wrap:wrap}
.footer img{width:48px;height:48px;border-radius:50%;vertical-align:middle;margin-right:10px}
@media(max-width:900px){
  .menu{display:none}
  .hero-grid,.contact-grid{grid-template-columns:1fr}
  .photo-collage{min-height:430px}
  .grid-4{grid-template-columns:1fr 1fr}
  .stats{grid-template-columns:1fr}
}
@media(max-width:560px){
  .grid-4{grid-template-columns:1fr}
  .photo.one{width:82%}.photo.two{width:56%}.photo.three{width:58%}
}
