:root{
  --bg:#ffffff;
  --ink:#0b1b2b;
  --navy:#0f2b46;
  --muted:rgba(11,27,43,.68);
  --line:rgba(11,27,43,.12);
  --gold:#c9a24a;
  --max:1120px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background:var(--bg);
  color:var(--ink);
  line-height:1.55;
}

a{color:inherit;text-decoration:none}
.wrap{max-width:var(--max); margin:0 auto; padding:0 18px}

.nav{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.nav-inner{display:flex; align-items:center; justify-content:space-between; gap:16px; padding:14px 0}
.brand{display:flex; align-items:center; gap:12px; min-width:0}
.brand img{height:42px; width:auto}
.brand .name{min-width:0}
.brand .name .title{font-weight:800; letter-spacing:.18em; font-size:13px}
.brand .name .sub{font-size:12px; color:var(--muted); white-space:nowrap; overflow:hidden; text-overflow:ellipsis}

.menu{display:flex; align-items:center; gap:14px; flex-wrap:wrap; justify-content:flex-end}
.menu a{font-size:13px; color:rgba(11,27,43,.82)}
.menu a:hover{color:var(--navy)}
.cta{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px;
  border-radius:10px;
  border:1px solid rgba(15,43,70,.18);
  background:rgba(15,43,70,.04);
  font-weight:700;
}
.cta.primary{
  background:var(--navy);
  color:#fff;
  border-color:var(--navy);
}
.cta.primary:hover{filter:brightness(1.05)}
.cta:hover{background:rgba(15,43,70,.07)}
.phone{
  display:flex; flex-direction:column; line-height:1.1;
  font-weight:800; color:var(--navy);
}
.phone small{font-weight:600; color:var(--muted)}

@media (max-width: 940px){
  .phone{display:none}
}

.hero{
  position:relative;
  border-bottom:1px solid var(--line);
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.80) 40%, rgba(255,255,255,.55) 70%, rgba(255,255,255,.20) 100%),
    url("img/hero.jpg") center/cover no-repeat;
}
.hero .wrap{position:relative; padding:64px 18px 34px}
.kicker{
  font-size:12px; letter-spacing:.18em; text-transform:uppercase;
  color:rgba(15,43,70,.75); font-weight:800;
}
h1{
  margin:12px 0 10px;
  font-size:46px; line-height:1.08; letter-spacing:-.6px;
  color:var(--navy);
  max-width:18ch;
}
.lead{
  margin:0 0 16px;
  max-width:62ch;
  color:var(--muted);
  font-size:16px;
}
.hero-actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.meta-line{
  margin-top:18px;
  display:flex; gap:14px; flex-wrap:wrap;
  font-size:13px; color:var(--muted);
}
.meta-line span{display:inline-flex; align-items:center; gap:8px}
.dot{width:4px;height:4px;border-radius:999px;background:rgba(11,27,43,.30)}

section{padding:34px 0}
.section-head{display:flex; align-items:flex-end; justify-content:space-between; gap:12px; margin-bottom:14px}
.section-head h2{margin:0; font-size:22px; letter-spacing:-.2px; color:var(--navy)}
.rule{height:1px;background:var(--line); width:100%}

.why{
  display:grid; grid-template-columns: 1.2fr .8fr; gap:26px; align-items:start;
}
@media(max-width:920px){ .why{grid-template-columns:1fr} }
.why p{margin:0; color:var(--muted)}
.why ul{margin:12px 0 0; padding-left:18px; color:rgba(11,27,43,.78)}
.why li{margin:8px 0}
.callout{
  border-left:3px solid var(--gold);
  padding-left:14px;
}
.callout .label{font-weight:800; letter-spacing:.12em; text-transform:uppercase; font-size:11px; color:rgba(15,43,70,.72)}
.callout .big{margin:6px 0 2px; font-size:18px; font-weight:800; color:var(--navy)}
.callout .small{color:var(--muted); font-size:13px}

.services{
  display:grid; grid-template-columns: 1fr 1fr; gap:0 26px;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
@media(max-width:920px){ .services{grid-template-columns:1fr} }
.service{
  padding:16px 0;
  border-top:1px solid var(--line);
}
.service:first-child{border-top:none}
.service h3{margin:0 0 6px; font-size:16px; color:var(--navy)}
.service p{margin:0; color:var(--muted); font-size:14px}

.gallery{
  display:grid; grid-template-columns: 1.2fr .8fr; gap:12px;
}
@media(max-width:920px){ .gallery{grid-template-columns:1fr} }
.shot{
  border:1px solid var(--line);
  background:#f6f8fb;
  overflow:hidden;
  border-radius:14px;
  min-height:260px;
}
.shot.big{min-height:360px}
.shot img{width:100%; height:100%; object-fit:cover; display:block}

.fees{
  display:grid; grid-template-columns: 1fr 1fr; gap:22px;
}
@media(max-width:920px){ .fees{grid-template-columns:1fr} }
.fees p{margin:0; color:var(--muted)}
.fees .item{padding-top:12px}
.fees .item h3{margin:0 0 8px; font-size:16px; color:var(--navy)}
.note{margin-top:12px; font-size:13px; color:var(--muted)}

.faq details{
  border-top:1px solid var(--line);
  padding:14px 0;
}
.faq details:last-child{border-bottom:1px solid var(--line)}
.faq summary{cursor:pointer; font-weight:800; color:var(--navy)}
.faq p{margin:10px 0 0; color:var(--muted); font-size:14px}

.footer{
  border-top:1px solid var(--line);
  padding:20px 0 30px;
  color:var(--muted);
  font-size:12px;
}
.footer a{text-decoration:underline}

.page-hero{
  padding:38px 0 18px;
}
.page-hero h1{max-width:none; font-size:40px}
