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


/* =========================================================
   ROOT
   ========================================================= */

:root{
  --bg:#202020;
  --white:#ffffff;
  --accent:#2dbbb1;

  --mono:"Roboto Mono", monospace;
  --body:"Roboto Flex", Arial, sans-serif;
  --heading:"Inter", Arial, sans-serif;
}


/* =========================================================
   RESET
   ========================================================= */

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:var(--bg);
  color:var(--white);
  font-family:var(--body);
  font-weight:500;
}

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


/* =========================================================
   GENERAL IMAGE
   ========================================================= */

.bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}


/* =========================================================
   HERO
   ========================================================= */

.hero{
  position:relative;
  height:746px;
  overflow:hidden;
}

.hero .bg{
  filter:
    brightness(.78)
    contrast(.86)
    saturate(.88);
}

.hero-shade{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.18);
}


/* =========================================================
   HERO NAVIGATION
   ========================================================= */

.nav{
  position:absolute;
  z-index:5;

  top:20px;
  left:20px;
  right:20px;

  height:52px;
}


/* HOME - LEFT */

.nav > a:first-child{
  position:absolute;

  left:0;
  top:0;

  font-family:var(--heading);
  font-size:16px;
  font-weight:600;
  line-height:1.1;
}


/* LOGO + COMPANY NAME - CENTER */

.nav .brand{
  position:absolute;

  left:50%;
  top:0;

  transform:translateX(-50%);

  display:flex;
  align-items:center;

  gap:10px;

  white-space:nowrap;

  font-family:var(--heading);
  font-size:16px;
  font-weight:600;
  line-height:1.1;
}

.nav .brand img{
  width:52px;
  height:52px;

  object-fit:contain;

  flex-shrink:0;
}


/* ABOUT US + SERVICES - RIGHT */

.nav .nav-links{
  position:absolute;

  right:0;
  top:0;

  display:flex;
  flex-direction:column;
  align-items:flex-start;

  font-family:var(--heading);
  font-size:16px;
  font-weight:600;
  line-height:1.05;
}

.nav .nav-links a{
  display:block;
}


/* =========================================================
   HERO BOTTOM
   ========================================================= */

.hero-bottom{
  position:absolute;
  z-index:5;

  left:20px;
  right:20px;
  bottom:20px;

  display:flex;
  justify-content:space-between;
  align-items:center;
}


/* INFORMATION BOX */

.meta-box{
  display:flex;
  gap:48px;

  background:rgba(32,32,32,.88);

  padding:10px 12px;
}

.meta-box div{
  display:flex;
  flex-direction:column;
  gap:2px;
}

.meta-box span,
.meta-box b{
  font-family:var(--mono);
  font-size:12px;
  font-weight:400;
  line-height:1.2;
}


/* =========================================================
   BUTTON
   ========================================================= */

.pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  border:0;
  border-radius:999px;

  background:var(--accent);
  color:#202020;

  padding:7px 15px;
  min-height:30px;

  font-family:var(--mono);
  font-size:12px;
  font-weight:500;
  line-height:1.4;

  letter-spacing:-.03em;
}

.pill.dark{
  background:rgba(32,32,32,.72);
  color:var(--accent);
}


/* =========================================================
   MAIN STATEMENT
   ========================================================= */

.statement{
  position:relative;

  height:700px;

  display:flex;
  align-items:center;
  justify-content:center;

  overflow:hidden;

  text-align:center;
}

.statement .bg{
  filter:
    brightness(.78)
    contrast(.86)
    saturate(.88);
}

.section-shade{
  position:absolute;
  inset:0;

  background:rgba(0,0,0,.40);
}

.statement-content{
  position:relative;
  z-index:2;

  margin-top:-5px;
}


/* MAIN HEADLINE */

.statement h1{
  margin:0 auto 18px;

  font-family:var(--heading);
  font-size:120px;
  font-weight:800;
  line-height:.90;

  letter-spacing:-.04em;
}


/* SUPPORTING TEXT */

.statement p{
  width:318px;

  margin:0 auto 18px;

  font-family:var(--body);
  font-size:12px;
  font-weight:500;
  line-height:1.4;

  letter-spacing:-.03em;
}


/* =========================================================
   50 / 50 SECTION
   ========================================================= */

.split{
  height:800px;

  display:grid;
  grid-template-columns:1fr 1fr;
}

.split-image,
.split-dark{
  position:relative;

  min-width:0;
  overflow:hidden;
}

.split-image .bg{
  filter:
    brightness(.78)
    contrast(.86)
    saturate(.88);
}

.split-dark{
  background:var(--bg);
}


/* CENTER CONTENT */

.center-content{
  position:absolute;
  z-index:2;

  left:50%;
  top:50%;

  width:min(88%,440px);

  transform:translate(-50%,-50%);

  text-align:center;
}

.center-content h2{
  margin:0 0 16px;

  font-family:var(--heading);
  font-size:48px;
  font-weight:800;
  line-height:.90;

  letter-spacing:-.04em;
}

.center-content p{
  max-width:330px;

  margin:0 auto 18px;

  font-family:var(--body);
  font-size:12px;
  font-weight:500;
  line-height:1.4;
}


/* =========================================================
   MISSION
   ========================================================= */

.mission{
  position:relative;

  height:700px;
  min-height:700px;

  padding:20px;

  background:var(--accent);
  color:#202020;
}

.mission p{
  margin:0;

  width:100%;
  max-width:1000px;

  font-family:var(--heading);
  font-size:48px;
  font-weight:600;
  line-height:1.05;

  letter-spacing:-.04em;
}

.mission .pill{
  position:absolute;

  left:20px;
  bottom:20px;

  background:#202020;
  color:var(--accent);
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer{
  position:relative;

  min-height:700px;

  padding:20px;

  overflow:hidden;

  background:#202020;
}


/* FOOTER BACKGROUND */

.footer::before{
  content:"";

  position:absolute;
  inset:0;

  background:
    linear-gradient(
      rgba(0,0,0,.60),
      rgba(0,0,0,.72)
    ),
    url("footer.jpeg") center / cover no-repeat;

  filter:
    brightness(.78)
    contrast(.86)
    saturate(.88);
}


/* KEEP CONTENT ABOVE IMAGE */

.footer > *{
  position:relative;
  z-index:2;
}


/* FOOTER TOP */

.footer-top{
  display:grid;
  grid-template-columns:1.5fr 1fr;

  gap:30px;

  font-family:var(--mono);
  font-size:12px;
  font-weight:400;
  line-height:1.25;
}

.footer-top strong,
.footer-top span{
  display:block;
}

.footer-top span{
  font-size:11px;
}


/* SOCIALS OFF */

.socials{
  display:none !important;
}


/* OFFICE */

.office p{
  margin:3px 0 0;

  font-family:var(--mono);
  font-size:12px;
  font-weight:400;
  line-height:1.25;
}


/* FOOTER HEADLINE */

.footer h2{
  width:100%;
  max-width:none;

  margin:70px 0 0;

  font-family:var(--heading);
  font-size:clamp(48px,7vw,110px);
  font-weight:700;
  line-height:.92;

  letter-spacing:-.045em;
}


/* =========================================================
   TABLET
   ========================================================= */

@media(max-width:1279px){

  .statement h1{
    font-size:64px;
  }

  .mission p{
    font-size:38px;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media(max-width:799px){

  /* -------------------------------------------------------
     HERO
     ------------------------------------------------------- */

  .hero{
    height:620px;
  }


  /* -------------------------------------------------------
     NAVIGATION
     ------------------------------------------------------- */

  .nav{
    top:16px;
    left:16px;
    right:16px;

    height:42px;
  }


  /* HOME */

  .nav > a:first-child{
    font-size:14px;
  }


  /* LOGO + COMPANY */

  .nav .brand{
    gap:7px;

    font-size:14px;
  }

  .nav .brand img{
    width:42px;
    height:42px;
  }


  /* ABOUT US + SERVICES */

  .nav .nav-links{
    font-size:14px;
  }


  /* -------------------------------------------------------
     HERO BOTTOM
     ------------------------------------------------------- */

  .hero-bottom{
    left:16px;
    right:16px;
    bottom:16px;

    gap:10px;
  }

  .meta-box{
    gap:18px;

    padding:9px 10px;
  }

  .meta-box span,
  .meta-box b{
    font-size:10px;
  }


  /* -------------------------------------------------------
     STATEMENT
     ------------------------------------------------------- */

  .statement{
    height:620px;
  }

  .statement h1{
    font-size:50px;
  }

  .statement p{
    width:min(90%,300px);
  }


  /* -------------------------------------------------------
     SPLIT
     ------------------------------------------------------- */

  .split{
    height:auto;

    grid-template-columns:1fr;
  }

  .split-image,
  .split-dark{
    height:440px;
  }

  .center-content h2{
    font-size:42px;
  }


  /* -------------------------------------------------------
     MISSION
     ------------------------------------------------------- */

  .mission{
    height:420px;
    min-height:420px;
  }

  .mission p{
    font-size:30px;
  }


  /* -------------------------------------------------------
     FOOTER
     ------------------------------------------------------- */

  .footer{
    min-height:560px;
  }

  .footer-top{
    grid-template-columns:1fr;

    gap:25px;
  }

  .footer h2{
    margin-top:55px;

    font-size:clamp(42px,10vw,64px);
  }

}.footer-credit{
  position:absolute;
  left:20px;
  bottom:20px;
  z-index:2;

  font-family:var(--mono);
  font-size:11px;
  font-weight:400;
  line-height:1.2;
  letter-spacing:-0.02em;
}