:root{
  --bg:#ffffff;
  --ink:#0f172a;
  --muted:#475569;
  --muted2:#64748b;
  --line:#e2e8f0;
  --soft:#f8fafc;
  --accent:#0ea5e9;
  --accent2:#22c55e;
  --accent3:#f59e0b;

  --max:1120px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--ink);
  background:var(--bg);
  line-height:1.65;
}

a{color:inherit}
img{max-width:100%; display:block}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}

.small{font-size:.95rem}
.muted{color:var(--muted)}
.muted2{color:var(--muted2)}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}

.skip-link{position:absolute;left:-999px;top:10px;background:#111827;color:#fff;padding:10px 12px;border-radius:10px}
.skip-link:focus{left:10px;z-index:9999}

.header{
  position:sticky; top:0; z-index:50;
  background: rgba(255,255,255,.90);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{display:flex; align-items:center; gap:10px; text-decoration:none}
.brand__mark{
  width:14px;height:14px;border-radius:999px;
  background: linear-gradient(135deg, var(--accent), var(--accent3));
}
.brand__text{font-weight:800; letter-spacing:.2px}

.nav{display:flex; align-items:center; gap:14px}
.nav__link{
  text-decoration:none;
  color:var(--muted);
  padding:8px 6px;
  border-bottom:2px solid transparent;
}
.nav__link:hover{color:var(--ink); border-bottom-color: var(--line)}
.nav__cta{margin-left:4px}

.nav__toggle{
  display:none;
  background:transparent;
  border:1px solid var(--line);
  border-radius:10px;
  padding:10px 12px;
}
.nav__burger{width:18px;height:2px;background:var(--ink);display:block;position:relative}
.nav__burger:before,.nav__burger:after{content:"";position:absolute;left:0;width:18px;height:2px;background:var(--ink)}
.nav__burger:before{top:-6px}
.nav__burger:after{top:6px}

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.5rem;
  padding:12px 16px;
  border-radius:10px;
  border:1px solid var(--line);
  text-decoration:none;
  font-weight:750;
  color:var(--ink);
  background:#fff;
}
.btn:hover{border-color:#cbd5e1}
.btn--small{padding:10px 12px; border-radius:10px; font-size:.95rem}
.btn--primary{
  background: var(--ink);
  color:#fff;
  border-color: var(--ink);
}
.btn--primary:hover{opacity:.92}
.btn--ghost{background:transparent}
.btn--accent{
  background: var(--accent);
  color:#fff;
  border-color: var(--accent);
}
.btn--accent:hover{opacity:.92}

.section{padding: 56px 0}
.section--soft{background: var(--soft)}
.section__head{display:flex;align-items:flex-end;justify-content:space-between;gap:18px;margin-bottom:18px}
.h1{
  font-size: clamp(2.1rem, 3.6vw, 3.2rem);
  line-height:1.1;
  margin:0 0 12px;
  letter-spacing:-.02em;
}
.h2{
  font-size: clamp(1.5rem, 2.1vw, 2.1rem);
  line-height:1.2;
  margin:0;
  letter-spacing:-.01em;
}
.lead{font-size:1.1rem;color:var(--muted);margin:0;max-width:70ch}
.p{margin:0;color:var(--muted);max-width:78ch}

.rule{height:1px;background:var(--line);margin-top:22px}

.hero{
  padding: 34px 0 10px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items:center;
}
.hero__kicker{
  display:inline-flex;gap:10px;align-items:center;
  font-weight:700;color:var(--muted);
}
.hero__dot{width:10px;height:10px;border-radius:999px;background:var(--accent3)}
.hero__actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px}
.hero__img{
  border:1px solid var(--line);
}
.hero__img img{
  width:100%;
  height:auto;
  max-height: 560px;
  object-fit: cover;
}
.caption{margin-top:10px;color:var(--muted2);font-size:.95rem}

.pillars{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pillar{
  padding:0;
}
.pillar h3{margin:0 0 8px}
.pillar p{margin:0;color:var(--muted)}
.pillar .tag{display:inline-block;font-weight:800;font-size:.85rem;color:var(--accent);margin-bottom:8px}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items:center;
}
.split__img{
  border:1px solid var(--line);
}
.split__img img{
  width:100%;
  height:auto;
  object-fit:cover;
}
.bullets{margin:12px 0 0;padding-left:18px;color:var(--muted)}
.bullets li{margin:6px 0}

.fullbleed{
  width:100%;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:#fff;
}
.fullbleed img{
  width:100%;
  height:auto;
  max-height: 520px;
  object-fit: cover;
}

.banner{
  border-top:1px solid var(--line);
  padding-top: 22px;
  display:flex; align-items:center; justify-content:space-between; gap:14px;
}
.banner__copy h3{margin:0 0 8px}
.banner__copy p{margin:0;color:var(--muted)}
.banner__actions{display:flex;gap:10px;flex-wrap:wrap}

.page-hero{
  padding: 36px 0 8px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.breadcrumb{color:var(--muted2);font-size:.95rem}
.page-title{margin:10px 0 8px;font-size: clamp(2rem, 3vw, 2.7rem);line-height:1.15;letter-spacing:-.02em}
.page-sub{margin:0;color:var(--muted);max-width:72ch}

.prose{padding: 28px 0}
.prose h3{margin-top: 20px}
.prose p{color:var(--muted);max-width: 80ch}
.prose ul{color:var(--muted);padding-left:18px}
.prose li{margin:6px 0}

.gallery-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.thumb{
  border:1px solid var(--line);
  background:#fff;
  cursor:pointer;
}
.thumb img{width:100%;height:100%;object-fit:cover;aspect-ratio:1/1}
.thumb:focus-visible{outline:3px solid rgba(14,165,233,.45);outline-offset:2px}

.team{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.profile{
  display:grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 0;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.profile:first-child{border-top:none;padding-top:0}
.avatar{
  width:130px;height:130px;
  border:1px solid var(--line);
  background:#fff;
}
.avatar img{width:100%;height:100%;object-fit:cover}
.profile h3{margin:0 0 6px}
.profile p{margin:0;color:var(--muted)}
.profile .meta{margin-top:10px;color:var(--muted2);font-size:.95rem}

.form{display:grid;gap:10px;max-width:720px}
.input{display:grid;gap:6px}
input,textarea{
  width:100%;
  padding:12px 12px;
  border:1px solid var(--line);
  border-radius:10px;
  background:#fff;
  color:var(--ink);
}
textarea{min-height: 150px; resize: vertical}

.footer{
  margin-top: 56px;
  border-top:1px solid var(--line);
  background:#fff;
}
.footer__inner{
  padding: 24px 0;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 20px;
}
.footer__cols{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.footer__title{margin:0 0 10px;font-size:1rem}
.footer__links{margin:0;color:var(--muted);font-size:.95rem}
.footer__links a{color:var(--muted);text-decoration:none}
.footer__links a:hover{color:var(--ink);text-decoration:underline}
.footer__bottom{border-top:1px solid var(--line)}
.footer__bottom-inner{
  padding: 14px 0;
  display:flex;justify-content:space-between;gap:10px;
  color:var(--muted2);
  font-size:.95rem;
}

.modal{
  position:fixed; inset:0; z-index:100;
  display:none;
  background: rgba(15,23,42,.72);
  align-items:center; justify-content:center;
  padding: 18px;
}
.modal[aria-hidden="false"]{display:flex}
.modal__inner{
  max-width:min(980px, 100%);
  width: 100%;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.24);
  background:#0b1220;
}
.modal__bar{
  display:flex;justify-content:space-between;align-items:center;
  padding:10px 12px;border-bottom:1px solid rgba(255,255,255,.14);
}
.modal__bar .title{color:rgba(255,255,255,.78);font-size:.95rem}
.modal__close{
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.18);
  color:#fff;
  border-radius:10px;
  padding:8px 10px;
  cursor:pointer;
}
.modal__img{
  width:100%;
  max-height: 76vh;
  object-fit: contain;
  background:#000;
}

@media (max-width: 980px){
  .hero__grid{grid-template-columns: 1fr}
  .split{grid-template-columns: 1fr}
  .pillars{grid-template-columns: 1fr}
  .footer__inner{grid-template-columns: 1fr}
  .footer__cols{grid-template-columns: 1fr}
}
@media (max-width: 820px){
  .gallery-grid{grid-template-columns: repeat(2, 1fr)}
  .team{grid-template-columns: 1fr}
  .nav__toggle{display:inline-flex}
  .nav{
    position:absolute;
    top:64px; right:20px; left:20px;
    flex-direction:column;
    align-items:stretch;
    padding: 14px;
    border:1px solid var(--line);
    background:#fff;
    display:none;
  }
  .nav.is-open{display:flex}
  .nav__link{padding:12px 8px}
  .nav__cta{width:100%; text-align:center}
}
