@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800;900&family=Inter:wght@400;500;600;700;800;900&display=swap');

:root{
  --black:#050606;
  --dark:#080909;
  --white:#f4f4f1;
  --muted:#d8d8d0;
  --orange:#f97316;
  --blue:#38a9ff;
  --green:#87b84a;
  --yellow:#f5b51b;
  --olive:#cdd448;
  --line:rgba(255,255,255,.18);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--black);
  color:var(--white);
  font-family:Inter,Arial,sans-serif;
  overflow-x:hidden;
}

.container{
  width:min(1500px, calc(100% - 68px));
  margin-inline:auto;
}

.site-header{
  min-height:96px;
  background:#050606;
  border-bottom:1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  position:sticky;
  top:0;
  z-index:50;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:26px;
}

.brand{
  display:flex;
  align-items:center;
  gap:18px;
  text-decoration:none;
  color:white;
  min-width:max-content;
}

.brand-mark{
  width:70px;
  height:70px;
  display:block;
}

.brand-wordmark strong{
  display:block;
  font-family:'Barlow Condensed',Inter,sans-serif;
  font-size:30px;
  font-weight:800;
  letter-spacing:.18em;
  line-height:.9;
}

.brand-wordmark em{
  display:block;
  margin-top:8px;
  color:var(--orange);
  font-style:normal;
  font-family:'Barlow Condensed',Inter,sans-serif;
  font-size:22px;
  font-weight:700;
  letter-spacing:.22em;
  line-height:.9;
}

.main-nav{
  display:flex;
  align-items:center;
  gap:31px;
}

.main-nav a{
  position:relative;
  color:#f5f5f5;
  text-decoration:none;
  text-transform:uppercase;
  font-family:'Barlow Condensed',Inter,sans-serif;
  font-size:16px;
  font-weight:800;
  letter-spacing:.08em;
}

.main-nav a.active::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-18px;
  width:36px;
  height:3px;
  background:var(--orange);
}

.header-cta{
  background:var(--orange);
  color:white;
  text-decoration:none;
  text-transform:uppercase;
  font-family:'Barlow Condensed',Inter,sans-serif;
  font-size:18px;
  font-weight:800;
  letter-spacing:.06em;
  padding:18px 32px;
  border-radius:5px;
  min-width:max-content;
}

.hero{
  position:relative;
  min-height:442px;
  overflow:hidden;
  background:#070707;
}

.hero-media{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(0,0,0,.91) 0%,rgba(0,0,0,.78) 30%,rgba(0,0,0,.40) 53%,rgba(0,0,0,.02) 100%),
    url('assets/hero-mountain-path.jpg') center right/cover no-repeat;
}

.hero-contours{
  position:absolute;
  left:-13%;
  top:-34%;
  width:58%;
  height:168%;
  opacity:.27;
  background:repeating-radial-gradient(ellipse at 56% 50%,transparent 0 22px,rgba(255,255,255,.42) 23px 24px,transparent 25px 48px);
  transform:rotate(-8deg);
}

.hero-content{
  position:relative;
  z-index:2;
  min-height:442px;
  display:flex;
  align-items:center;
}

.hero-copy{
  max-width:630px;
}

h1{
  margin:0 0 16px;
  font-family:'Barlow Condensed',Inter,sans-serif;
  font-size:clamp(72px,7.1vw,108px);
  line-height:.86;
  letter-spacing:.025em;
  text-transform:uppercase;
  font-weight:900;
  text-shadow:0 5px 18px rgba(0,0,0,.42);
}

h1 span{color:var(--orange)}

.hero-copy p{
  max-width:520px;
  margin:0;
  color:#eeeeea;
  font-size:21px;
  line-height:1.34;
  text-shadow:0 3px 12px rgba(0,0,0,.60);
}

.hero-actions{
  display:flex;
  gap:24px;
  margin-top:26px;
}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  min-height:52px;
  padding:0 30px;
  border-radius:5px;
  text-decoration:none;
  text-transform:uppercase;
  font-family:'Barlow Condensed',Inter,sans-serif;
  font-size:19px;
  font-weight:800;
  letter-spacing:.06em;
}

.button-primary{
  background:var(--orange);
  color:white;
}

.button-secondary{
  border:1px solid rgba(255,255,255,.68);
  color:white;
  background:rgba(0,0,0,.25);
}

.services-section{
  padding:0 0 12px;
  background:#050606;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:12px;
}

.service-card{
  min-height:300px;
  display:flex;
  flex-direction:column;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:7px;
  background:#080909;
  box-shadow:0 18px 42px rgba(0,0,0,.30);
}

.service-art{
  width:100%;
  height:132px;
  object-fit:cover;
  display:block;
  border-bottom:1px solid rgba(255,255,255,.12);
}

.service-copy{
  min-height:168px;
  padding:18px 28px 24px;
  display:flex;
  flex-direction:column;
  background:linear-gradient(180deg,rgba(8,9,9,.92),rgba(4,5,5,1));
}

.service-copy h3{
  margin:0 0 4px;
  font-family:'Barlow Condensed',Inter,sans-serif;
  font-size:27px;
  line-height:1;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.service-copy h4{
  margin:0 0 16px;
  color:#fff;
  font-size:18px;
  line-height:1.18;
  font-weight:800;
}

.service-copy p{
  margin:0;
  color:#f0f0e9;
  font-size:15px;
  line-height:1.46;
}

.service-copy a,
.service-copy a:visited{
  margin-top:auto;
  padding-top:18px;
  color:currentColor;
  text-decoration:none;
  text-transform:uppercase;
  font-family:'Barlow Condensed',Inter,sans-serif;
  font-size:18px;
  font-weight:800;
  letter-spacing:.05em;
}

.service-orange{color:var(--orange)}
.service-blue{color:var(--blue)}
.service-green{color:var(--green)}
.service-yellow{color:var(--yellow)}

.values-strip{
  border-top:1px solid rgba(255,255,255,.18);
  border-bottom:1px solid rgba(255,255,255,.14);
  background:linear-gradient(90deg,#080a0a,#101515);
}

.values-grid{
  display:grid;
  grid-template-columns:2fr repeat(4,1.08fr) 2.25fr;
}

.walk-panel,
.value,
.supporting-panel{
  min-height:172px;
  padding:28px 30px;
  border-right:1px solid rgba(255,255,255,.18);
}

.walk-panel{
  display:grid;
  grid-template-columns:70px 1fr;
  column-gap:18px;
  align-items:start;
}

.walk-icon{
  color:var(--orange);
  font-size:52px;
  line-height:1;
}

.walk-panel h2{
  margin:0;
  font-family:'Barlow Condensed',Inter,sans-serif;
  font-size:34px;
  line-height:.95;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.walk-panel p{
  margin:12px 0 12px;
  color:#ecece7;
  line-height:1.45;
}

.walk-panel a{
  display:inline-flex;
  color:var(--orange);
  border:1px solid var(--orange);
  text-decoration:none;
  text-transform:uppercase;
  font-family:'Barlow Condensed',Inter,sans-serif;
  font-size:17px;
  font-weight:800;
  padding:8px 16px;
  border-radius:4px;
}

.value{
  text-align:center;
}

.value span{
  display:block;
  color:var(--olive);
  font-size:42px;
  line-height:1;
  margin-bottom:14px;
}

.value h3{
  margin:0 0 12px;
  color:#e6d76d;
  text-transform:uppercase;
  font-family:'Barlow Condensed',Inter,sans-serif;
  font-size:19px;
  letter-spacing:.07em;
}

.value p{
  margin:0;
  color:#e7e7df;
  font-size:14px;
  line-height:1.45;
}

.supporting-panel h2{
  margin:0 0 20px;
  font-family:'Barlow Condensed',Inter,sans-serif;
  font-size:29px;
  line-height:1;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:#f4f4f1;
}

.charity-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
}

.charity-list span{
  min-height:44px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  border:1px solid rgba(255,255,255,.18);
  padding:8px 10px;
  color:#eee;
  font-family:'Barlow Condensed',Inter,sans-serif;
  font-size:20px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.04em;
  line-height:1.05;
}

.mission-section{
  padding:72px 0;
  background:#080909;
  border-bottom:1px solid rgba(255,255,255,.14);
}

.mission-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:start;
}

.eyebrow{
  margin:0 0 16px;
  color:var(--orange);
  font-family:'Barlow Condensed',Inter,sans-serif;
  font-size:19px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.mission-section h2{
  margin:0;
  font-family:'Barlow Condensed',Inter,sans-serif;
  font-size:54px;
  line-height:.96;
  text-transform:uppercase;
}

.mission-section p{
  margin:0;
  color:#d9d9d2;
  font-size:18px;
  line-height:1.7;
}

.contact-section{
  padding:48px 0;
  background:#050606;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.contact-section h2{
  margin:0 0 10px;
  font-family:'Barlow Condensed',Inter,sans-serif;
  font-size:44px;
  text-transform:uppercase;
}

.contact-section p{
  color:#d9d9d2;
  line-height:1.55;
}

.contact-section a{
  color:var(--orange);
}

.visually-hidden{
  position:absolute;
  width:1px;
  height:1px;
  overflow:hidden;
  clip:rect(0 0 0 0);
  white-space:nowrap;
}

@media(max-width:1320px){
  .main-nav{display:none}
  .services-grid{grid-template-columns:repeat(3,1fr)}
  .values-grid{grid-template-columns:1fr 1fr}
}

@media(max-width:760px){
  .container{width:min(100% - 28px,1500px)}
  .site-header{min-height:auto;padding:12px 0}
  .brand-mark{width:58px;height:58px}
  .brand-wordmark strong{font-size:23px}
  .brand-wordmark em{font-size:17px}
  .header-cta{display:none}

  .hero{min-height:690px}
  .hero-media{
    background:
      linear-gradient(180deg,rgba(0,0,0,.72) 0%,rgba(0,0,0,.46) 50%,rgba(0,0,0,.70) 100%),
      url('assets/hero-mountain-path.jpg') 63% center/cover no-repeat;
  }
  .hero-content{min-height:690px;align-items:flex-start;padding-top:46px}
  h1{font-size:62px}
  .hero-copy p{font-size:18px}
  .hero-actions{display:grid}
  .button{width:100%}

  .services-grid{grid-template-columns:1fr}
  .service-card{min-height:auto}
  .service-art{height:150px}

  .values-grid,
  .mission-grid,
  .contact-grid{grid-template-columns:1fr}

  .walk-panel,
  .value,
  .supporting-panel{
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.18);
  }

  .charity-list{grid-template-columns:1fr}
}
