:root{
  --bg:#efe7dc;
  --ink:#161616;
  --line:rgba(0,0,0,.12);
  --card:rgba(255,255,255,.45);
  --accent:#f29b1a;
  --shadow:0 16px 40px rgba(0,0,0,.10);
  --radius:18px;
  --max:1160px;
}

/* RESET */
*{box-sizing:border-box}
body{
  margin:0;
  font-family:ui-serif,Georgia,"Times New Roman",serif;
  background:var(--bg);
  color:var(--ink);
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}

/* LAYOUT */
.wrap{
  max-width:var(--max);
  margin:auto;
  padding:0 18px;
}
section{padding:70px 0}

/* TOPBAR */
.topbar{
  position:sticky;
  top:0;
  background:rgba(239,231,220,.85);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
  z-index:50;
}
.topbar .row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}
.brand{
  font-size:12px;
  letter-spacing:.12em;
  text-transform:lowercase;
}
.brand span{border-bottom:1px solid rgba(0,0,0,.35)}

.nav{
  display:flex;
  gap:18px;
  font-family:ui-sans-serif,system-ui;
  font-size:13px;
}
.nav a{
  padding:8px 10px;
  border-radius:10px;
}
.nav a:hover{background:rgba(255,255,255,.35)}

.btn{
  background:var(--accent);
  border:none;
  padding:10px 14px;
  font-weight:700;
  border-radius:10px;
  cursor:pointer;
}

/* GRID */
.grid-2{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:40px;
  align-items:center;
}

/* TEXT */
.kicker{
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:rgba(0,0,0,.6);
}
h1{
  font-size:clamp(36px,4.6vw,54px);
  margin:10px 0;
}
.lead{
  font-family:ui-sans-serif,system-ui;
  font-size:15px;
  line-height:1.7;
  max-width:52ch;
  color:rgba(0,0,0,.7);
}

/* CHIPS */
.chips{display:flex;flex-wrap:wrap;gap:8px;margin-top:16px}
.chip{
  font-size:12px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.35);
  border:1px solid var(--line);
  font-family:ui-sans-serif;
}

/* HERO IMAGE */
.hero-media{
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
}
.hero-media img{
  height:420px;
  object-fit:cover;
  width:100%;
}

/* DARK BAND */
.band{
  background:#0f0f0f;
  color:#f1f1f1;
}
.band h2{margin:0;font-size:28px}
.band p{
  font-family:ui-sans-serif;
  color:rgba(255,255,255,.75);
  max-width:70ch;
  line-height:1.7;
}

/* ABOUT ROW */
.about-row{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:80px;
  align-items:center;
}
.about-left{text-align:center}
.about-logo{width:240px;margin:auto}
.about-name{
  margin-top:18px;
  font-weight:700;
  letter-spacing:.08em;
  font-size:18px;
}
.about-right h3{
  font-size:26px;
  margin-bottom:16px;
}
.about-right p{
  font-family:ui-sans-serif;
  font-size:16px;
  line-height:1.7;
  color:rgba(0,0,0,.75);
}

/* MISSION */
.mission-band{
  background:#1f2629;
  padding:90px 0;
}
.mission-wrap{max-width:900px;margin:auto}
.mission-title{
  font-size:12px;
  letter-spacing:.28em;
  color:rgba(255,255,255,.6);
  display:block;
  margin-bottom:18px;
}
.mission-text{
  font-size:clamp(28px,4vw,44px);
  color:#f1f1f1;
  line-height:1.35;
}

/* CTA */
.cta-band{
  padding:100px 0;
  text-align:center;
}
.cta-wrap{max-width:800px;margin:auto}
.cta-wrap h2{
  font-size:clamp(34px,4vw,46px);
}
.cta-wrap span{font-weight:700}
.cta-wrap p{
  font-family:ui-sans-serif;
  color:rgba(0,0,0,.7);
  margin:20px auto 40px;
}
.cta-button{
  padding:14px 34px;
  border:1.5px solid #111;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.cta-button:hover{
  background:#111;
  color:#fff;
}

/* FOOTER */
footer{
  background:rgba(255,255,255,.25);
  border-top:1px solid var(--line);
  padding:40px 0;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:30px;
}
.small{
  font-family:ui-sans-serif;
  font-size:13px;
  color:rgba(0,0,0,.65);
}
.contact a{
  display:block;
  margin-bottom:10px;
  padding:10px;
  background:rgba(255,255,255,.35);
  border-radius:12px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .grid-2,.about-row,.footer-grid{grid-template-columns:1fr}
  .hero-media img{height:320px}
  .nav{display:none}
}
