:root{
  --bg:#140f0c;
  --bg-2:#1d1511;
  --card:#241b16;
  --card-2:#2d221b;
  --text:#f4eadf;
  --muted:#d3bda8;
  --accent:#b98a62;
  --accent-2:#e2c4a5;
  --line:rgba(255,255,255,0.08);
  --shadow:0 18px 50px rgba(0,0,0,0.28);
  --radius:24px;
  --max:1180px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(185,138,98,0.10), transparent 25%),
    linear-gradient(180deg,#120d0a 0%, #18120f 50%, #1c1511 100%);
  color:var(--text);
  line-height:1.6;
}

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

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

.container{
  width:min(var(--max), calc(100% - 40px));
  margin:0 auto;
}

.section{
  padding:90px 0;
}

.page-hero{
  padding:110px 0 70px;
}

.eyebrow{
  display:inline-block;
  color:var(--muted);
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:.88rem;
  margin-bottom:14px;
  position:relative;
  padding-left:24px;
}

.eyebrow::before{
  content:"";
  position:absolute;
  left:0;
  top:50%;
  width:14px;
  height:1px;
  background:var(--accent);
  transform:translateY(-50%);
}

.title{
  font-size:clamp(2.2rem, 5vw, 4.4rem);
  line-height:1.02;
  font-weight:800;
  margin-bottom:18px;
}

.title .accent{
  color:var(--accent);
}

.lead{
  max-width:720px;
  color:rgba(244,234,223,0.82);
  font-size:1.08rem;
}

.nav-wrap{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(15,11,8,0.80);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}

.navbar{
  min-height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.brand img{
  width:64px;
  height:64px;
  object-fit:contain;
  border-radius:0;
  background:transparent;
  padding:0;
  box-shadow:none;
}

.brand-text strong{
  display:block;
  font-size:1.15rem;
}

.brand-text span{
  display:block;
  font-size:.84rem;
  color:rgba(244,234,223,.7);
}

.nav-links{
  display:flex;
  align-items:center;
  gap:26px;
  list-style:none;
  flex-wrap:wrap;
  justify-content:center;
}

.nav-links a{
  font-weight:700;
  color:rgba(244,234,223,0.88);
  transition:.25s;
}

.nav-links a:hover,
.nav-links a.active{
  color:#fff;
}

.nav-btn{
  padding:13px 18px;
  border-radius:16px;
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  color:#1a130f;
  font-weight:800;
  box-shadow:var(--shadow);
}

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

.hero-card{
  min-height:500px;
  border-radius:32px;
  background:
    radial-gradient(circle at top right, rgba(185,138,98,0.18), transparent 20%),
    linear-gradient(135deg,#17110e 0%, #231913 55%, #2b1f17 100%);
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  padding:34px;
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:end;
}

.hero-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:url("logo.png") center/430px no-repeat;
  opacity:.13;
}

.hero-card-content{
  position:relative;
  z-index:2;
  max-width:420px;
}

.hero-card-content h3{
  font-size:1.8rem;
  margin-bottom:10px;
}

.hero-card-content p{
  color:rgba(244,234,223,.8);
}

.btn-row{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:26px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 22px;
  border-radius:16px;
  font-weight:800;
  transition:.25s;
}

.btn-primary{
  background:linear-gradient(135deg,var(--accent),var(--accent-2));
  color:#1a130f;
}

.btn-secondary{
  border:1px solid rgba(226,196,165,.25);
  color:var(--text);
  background:rgba(255,255,255,.02);
}

.btn:hover{
  transform:translateY(-2px);
}

.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}

.card{
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:28px;
  box-shadow:var(--shadow);
}

.card h3{
  font-size:1.35rem;
  margin-bottom:10px;
}

.card p{
  color:rgba(244,234,223,.78);
}

.card strong{
  color:var(--accent-2);
}

/* STATS */
.stats{
  display:grid !important;
  grid-template-columns:repeat(4, 1fr) !important;
  gap:22px !important;
  margin-top:30px;
}

.stat{
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:22px;
  padding:35px 20px;
  text-align:center;
  transition:0.3s ease;
  box-shadow:var(--shadow);
}

.stat:hover{
  transform:translateY(-6px);
  border-color:rgba(212,168,120,0.35);
}

.stat h3{
  font-size:42px;
  color:#d7b187;
  margin-bottom:10px;
}

.stat p{
  color:#ddd;
  font-size:18px;
  font-weight:700;
}

.project-grid,
.team-grid,
.apply-grid,
.contact-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}

.project-card,
.team-card,
.apply-card,
.contact-card{
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  border:1px solid var(--line);
  border-radius:26px;
  padding:28px;
  box-shadow:var(--shadow);
}

.team-card{
  position:relative;
  overflow:hidden;
}

.team-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top right, rgba(185,138,98,.12), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.02), transparent 35%);
  pointer-events:none;
}

.team-icon{
  width:70px;
  height:70px;
  border-radius:18px;
  object-fit:cover;
  margin-bottom:18px;
  border:1px solid rgba(255,255,255,.10);
}

.team-card h3,
.project-card h3,
.apply-card h3,
.contact-card h3{
  font-size:1.45rem;
  margin-bottom:10px;
}

.team-card p,
.project-card p,
.apply-card p,
.contact-card p{
  color:rgba(244,234,223,.78);
}

.team-card p strong{
  color:var(--accent-2);
}

.member-list{
  margin-top:18px;
  padding-left:18px;
  color:var(--muted);
}

.member-list li{
  margin-bottom:6px;
}

.member-list strong{
  color:#fff;
}

.contact-card a{
  color:var(--accent-2);
  font-weight:700;
}

.contact-card a:hover{
  color:#fff;
}

.cta-box{
  margin-top:34px;
  background:
    linear-gradient(135deg, rgba(185,138,98,.25), rgba(255,255,255,.03)),
    #241913;
  border:1px solid var(--line);
  border-radius:28px;
  padding:30px;
  box-shadow:var(--shadow);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

footer{
  margin-top:40px;
  padding:28px 0 40px;
  border-top:1px solid var(--line);
  color:rgba(244,234,223,.68);
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

/* RESPONSIVE */
@media (max-width: 1024px){
  .hero-grid,
  .grid-2,
  .project-grid,
  .team-grid,
  .apply-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .stats{
    grid-template-columns:repeat(2, 1fr) !important;
  }
}

@media (max-width: 600px){
  .stats{
    grid-template-columns:1fr !important;
  }
}

@media (max-width: 760px){
  .navbar{
    flex-direction:column;
    align-items:flex-start;
  }

  .nav-links{
    gap:14px;
  }

  .title{
    font-size:2.5rem;
  }

  .section{
    padding:72px 0;
  }

  .page-hero{
    padding:84px 0 56px;
  }

  .hero-card{
    min-height:360px;
  }
}
.footer-logo-link{
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.footer-logo{
  width:34px;
  height:34px;
  object-fit:contain;
  filter:drop-shadow(0 0 8px rgba(185,138,98,.35));
  transition:0.3s ease;
}

.footer-logo:hover{
  transform:scale(1.12);
}
