:root{
  --bg:#E8E8DF;
  --text:#0A2F41;
  --muted:#4A5A63;
  --line:#d6d6cd;
  --card:#ffffff;
  --soft:#F3F3EB;
  --accent:#0A2F41;
  --shadow:0 8px 22px rgba(10,47,65,.08);
  --r:12px;
  --max:1120px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; background:var(--bg); color:var(--text); font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif; }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{ max-width:var(--max); margin:0 auto; padding:0 20px; }

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  background:rgba(232,232,223,.95);
  border-bottom:1px solid var(--line);
}
.header__inner{ display:flex; align-items:center; gap:20px; min-height:72px; }
.brand{ display:flex; flex-direction:column; gap:2px; }
.brand__mark{ font-weight:700; letter-spacing:.5px; }
.brand__sub{ font-size:12px; color:var(--muted); }

.nav{ display:flex; gap:18px; margin-left:20px; }
.nav a{ font-size:14px; color:var(--muted); padding:8px 6px; border-radius:10px; }
.nav a:hover{ color:var(--text); background:rgba(255,255,255,.6); }

.header__cta{ margin-left:auto; display:flex; gap:10px; }

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:10px 16px; border-radius:8px;
  font-size:14px; font-weight:600;
  border:1px solid var(--accent);
  transition:.2s ease;
}
.btn--primary{ background:var(--accent); color:#fff; }
.btn--primary:hover{ background:#082632; }
.btn--secondary{ background:transparent; color:var(--accent); }
.btn--secondary:hover{ background:rgba(10,47,65,.08); }
.btn--block{ width:100%; }

.burger{ display:none; margin-left:auto; background:transparent; border:0; padding:10px; border-radius:12px; }
.burger span{ display:block; width:22px; height:2px; background:var(--text); margin:5px 0; border-radius:2px; }

.mobile{
  display:none; flex-direction:column; gap:10px;
  padding:14px 20px 18px; border-top:1px solid var(--line);
  background:rgba(232,232,223,.98);
}
.mobile a{ color:var(--muted); padding:10px 10px; border-radius:12px; }
.mobile a:hover{ background:rgba(255,255,255,.7); color:var(--text); }

/* Hero */
.hero{ padding:56px 0 26px; }
.hero__grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:24px; align-items:start; }
.eyebrow{ margin:0 0 10px; color:var(--muted); font-size:13px; }
h1{ margin:0 0 14px; font-size:38px; line-height:1.15; }
.lead{ margin:0 0 18px; color:var(--muted); font-size:16px; line-height:1.6; }
.hero__actions{ display:flex; gap:12px; flex-wrap:wrap; margin:8px 0 16px; }
.pills{ display:flex; flex-wrap:wrap; gap:10px; list-style:none; padding:0; margin:0; }
.pills li{ font-size:12px; border:1px solid var(--line); padding:6px 12px; border-radius:999px; background:#fff; color:var(--muted); }

.hero__media{ display:grid; gap:12px; }
.hero__image{
  border-radius:var(--r);
  overflow:hidden;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:var(--shadow);
}
.hero__image img{ width:100%; height:360px; object-fit:cover; }

.hero__mini{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
}
.hero__mini img{
  height:110px;
  object-fit:cover;
  border-radius:var(--r);
  border:1px solid var(--line);
  background:#fff;
}

/* Sections */
.section{ padding:52px 0; }
.section--soft{ background:var(--soft); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.section__head{ margin-bottom:22px; }
.section__head h2{ font-size:26px; margin:0 0 6px; }
.section__head p{ margin:0; color:var(--muted); }

/* Visual services */
.services-visual{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
}
.vcard{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r);
  overflow:hidden;
  box-shadow:0 1px 0 rgba(10,47,65,.03);
}
.vcard__img{ width:100%; height:150px; object-fit:cover; }
.vcard__body{ padding:14px; }
.vcard__body h3{ margin:0 0 8px; font-size:16px; }
.vcard__body p{ margin:0; color:var(--muted); font-size:13px; line-height:1.55; }

/* Sectors */
.sector-grid{
  display:grid;
  grid-template-columns:repeat(6, 1fr);
  gap:12px;
}
.sector{
  border:1px solid var(--line);
  background:#fff;
  border-radius:var(--r);
  overflow:hidden;
}
.sector img{ width:100%; height:86px; object-fit:cover; }
.sector span{
  display:block;
  padding:10px 10px;
  font-size:13px;
  color:var(--muted);
}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}
.shot{
  margin:0;
  border:1px solid var(--line);
  border-radius:var(--r);
  overflow:hidden;
  background:#fff;
  box-shadow:0 1px 0 rgba(10,47,65,.03);
}
.shot img{ width:100%; height:210px; object-fit:cover; }
.shot figcaption{ padding:12px 12px; }
.shot strong{ display:block; font-size:14px; }
.shot span{ display:block; color:var(--muted); font-size:12px; margin-top:4px; }

/* Team */
.team{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.person{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--r);
  overflow:hidden;
}
.person__img{ width:100%; height:210px; object-fit:cover; background:#fff; }
.person__body{ paddin
