:root{
  --bg:#101713;
  --accent:#94d66f;
  --light:#eef9eb;
  --mid:#1b2a21;
  --muted:#aab4bd;
  --surface:rgba(255,255,255,.08);
  --line:rgba(255,255,255,.16);
}

*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  background:var(--bg);
  color:var(--light);
  line-height:1.6;
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  max-width:100%;
  display:block;
}

.header{
  position:sticky;
  top:0;
  z-index:10;
  background:rgba(8,10,16,.92);
  backdrop-filter:blur(12px);
  border-bottom:1px solid var(--line);
}

.nav{
  max-width:1180px;
  margin:auto;
  padding:22px 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:26px;
}

.brand{
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:20px;
}

.menu{
  display:flex;
  gap:28px;
  align-items:center;
}

.menu a{
  font-weight:700;
  color:#d8dde5;
}

.menu a:hover{
  color:var(--accent);
}

.container{
  max-width:1180px;
  margin:auto;
  padding:70px 28px;
}

.hero{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:42px;
  align-items:stretch;
}

.panel{
  border:1px solid var(--line);
  background:linear-gradient(145deg,rgba(255,255,255,.09),rgba(255,255,255,.035));
  border-radius:34px;
  padding:44px;
  box-shadow:0 28px 90px rgba(0,0,0,.22);
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.eyebrow{
  color:var(--accent);
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:14px;
}

h1{
  font-size:clamp(42px,7vw,82px);
  line-height:1.02;
  margin:18px 0;
}

h2{
  font-size:36px;
  line-height:1.15;
  margin:0 0 18px;
}

p{
  color:#c8d0d8;
  font-size:18px;
}

.btns{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-top:28px;
}

.btn{
  display:inline-flex;
  padding:16px 22px;
  border-radius:20px;
  background:var(--accent);
  color:#071017;
  font-weight:800;
}

.btn.secondary{
  background:transparent;
  color:var(--light);
  border:1px solid var(--line);
}

.photo-grid{
  display:grid;
  grid-template-columns:1fr !important;
  gap:22px;
  align-self:stretch;
}

.content-photo{
  margin:0;
  position:relative;
  overflow:hidden;
  border-radius:32px;
  border:1px solid var(--line);
  box-shadow:0 28px 80px rgba(0,0,0,.28);
  background:rgba(255,255,255,.04);
  height:100%;
}

.content-photo img{
  width:100%;
  height:100%;
  min-height:420px;
  object-fit:cover;
  display:block;
  filter:saturate(1.04) contrast(1.02);
}

.photo-grid img,
.wide-img{
  width:100%;
  object-fit:cover;
  border-radius:28px;
  border:1px solid var(--line);
}

.wide-img{
  height:420px;
  margin:30px 0;
}

.grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:32px;
}

.tile,
.fiche{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:26px;
  padding:26px;
  transition:transform .2s ease,border-color .2s ease,background .2s ease;
}

.tile h3,
.fiche h3{
  margin:0 0 8px;
  font-size:22px;
}

.tile:hover,
.fiche:hover{
  transform:translateY(-4px);
  border-color:color-mix(in srgb,var(--accent) 48%, var(--line));
  background:rgba(255,255,255,.1);
}

.split{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:34px;
  align-items:start;
}

.seo-note{
  margin-top:42px;
  padding:30px;
  border:1px solid var(--line);
  border-radius:28px;
  background:linear-gradient(135deg,rgba(255,255,255,.08),rgba(255,255,255,.03));
  box-shadow:0 18px 50px rgba(0,0,0,.16);
}

.seo-note h2{
  margin:0 0 12px;
  font-size:clamp(24px,3vw,36px);
}

.seo-note p{
  margin:0;
  max-width:920px;
}

.story{
  align-items:stretch;
}

.story>.panel{
  min-height:100%;
}

.footer{
  border-top:1px solid var(--line);
  padding:34px 28px;
  color:#aeb7bf;
}

.footer-inner{
  max-width:1180px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

.footer a{
  margin-right:18px;
  color:#cbd3db;
}

@media(max-width:850px){
  .hero,
  .split,
  .grid{
    grid-template-columns:1fr;
  }

  .menu{
    gap:14px;
    flex-wrap:wrap;
  }

  .nav{
    align-items:flex-start;
    flex-direction:column;
  }

  .panel{
    padding:30px;
  }

  .hero{
    gap:24px;
  }

  .content-photo img,
  .photo-grid .content-photo img{
    height:300px;
    min-height:300px;
  }

  .seo-note{
    padding:22px;
    margin-top:28px;
  }
}