@charset "UTF-8";

/* RESET */

* {
	padding:0;
	margin:0;
	outline:none;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

* > :last-child { 
	margin-bottom:0;
}

img {
	display:block;
	vertical-align: middle;
}

.clearfix::after {
	content:"";
	clear:both;
	display:table;
}

a, abbr, acronym, address, applet, article, aside, audio, b, blockquote, big, body, center, canvas, caption, cite, code, command, datalist, dd, del, details, dfn, dl, div, dt, 
em, embed, fieldset, figcaption, figure, font, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, keygen, label, legend, li, meter, nav,
object, ol, output, p, pre, progress, q, s, samp, section, small, span, source, strike, strong, sub, sup, table, tbody, tfoot, thead, th, tr, td, video, tt, u, ul, var, a img {
    background:transparent;
	border:0 none;
	outline:none;
	vertical-align:baseline;
	padding:0;
	margin:0;    
}

/* FONTS */

@font-face {
  font-family: 'AltMariaClara Light';
  src: url('../fonts/ALTMariaClara-Light.woff2') format('woff2'),
       url('../fonts/ALTMariaClara-Light.woff') format('woff'),
       url('../fonts/ALTMariaClara-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap; /* Improves loading performance */
}

@font-face {
  font-family: 'AltMariaClara Medium';
  src: url('../fonts/ALTMariaClara-Medium.woff2') format('woff2'),
       url('../fonts/ALTMariaClara-Medium.woff') format('woff'),
       url('../fonts/ALTMariaClara-Medium.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap; /* Improves loading performance */
}

@font-face {
  font-family: 'AltMariaClara Regular';
  src: url('../fonts/ALTMariaClara-Regular.woff2') format('woff2'),
       url('../fonts/ALTMariaClara-Regular.woff') format('woff'),
       url('../fonts/ALTMariaClara-Regular.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap; /* Improves loading performance */
}


/* GENERAL */

html, body {
  overflow-x:hidden;
}

body {
  background:#5c7e51;
	text-rendering:optimizeLegibility;
	position:relative;
}

h1 {
	font:300 100px/100px "AltMariaClara Medium", sans-serif;
  text-transform:uppercase;
	color:#fff;
	margin:0 0 40px 0;
}

h2 {
  font:300 50px/55px "AltMariaClara Medium", sans-serif;
  color:#fff;
  margin:0 0 30px 0;
}

h3 {
  font:300 45px/50px "AltMariaClara Medium", sans-serif;
  color:#fff;
  margin:0 0 30px 0;
}

h4 {
  font:400 15px/24px "roc-grotesk", sans-serif;
  text-transform:uppercase;
  letter-spacing:0.15em;
  color:#00b155;
  margin:0 0 25px 0;
}

h5 {
  font:300 35px/35px "AltMariaClara Regular", sans-serif;
  color:#587e51;
}

p {
	font:300 18px/24px "roc-grotesk", sans-serif;
  color:#fff;
	margin:0 0 40px;
}

blockquote {
  font:300 70px/70px "AltMariaClara Light", sans-serif;
  color:#587e51;
  margin:0 0 30px 0;
}

blockquote::first-letter {
  margin-left: -0.4em;
}


.spacer {
  border:0;
  height:1px;
  margin:30px 0 0 0;
}

/* TEXT ANIMATIONS */

/* ---------- LINE WRAPPING & OVERFLOW HIDDEN ---------- */
/* each line is a block with overflow hidden + a slight clip */
.line {
  display: inline-block;
  overflow: hidden;          /* <-- key: hide the overflowing part during translateY */
  vertical-align: bottom;    /* keep lines aligned nicely */
  /* inner span will be the one that moves */
}

/* the actual text container – this gets animated (translateY) */
.line-inner {
  display: inline-block;
  opacity: 0;                /* start hidden – GSAP will fade & slide */
  transform: translateY(50px);
  will-change: transform, opacity;
  padding: 0.05rem 0;        /* tiny vertical padding to avoid clipping ascenders */
}

/* force line breaks after each <br> replacement */
.line-break {
  display: block;
  width: 100%;
  height: 0;
  content: '';
}

/* BUTTONS */

.button {
  background:#bca271;
  font:400 17px/22px "roc-grotesk", sans-serif;
  letter-spacing:0.05em;
  text-transform:uppercase;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  color:#fff;
  transition:all 0.2s ease;
  padding:15px 25px;
  margin:20px 20px 0 0;
}

.button:hover {
  
}

.button:after {
  content:"";
  width:21px;
  height:16px;
  background:url("../images/arrow.svg") no-repeat;
  display:inline-block;
  margin-left:15px;
  position:relative;
  transition:all 0.2s ease;
}

.button:hover:after {
  margin-left:25px;
}

.button-outlined {
  font:400 17px/22px "roc-grotesk", sans-serif;
  letter-spacing:0.05em;
  text-transform:uppercase;
  text-decoration:none;
  border:2px solid #bca271;
  display:inline-flex;
  align-items:center;
  color:#bca271;
  transition:all 0.2s ease;
  padding:15px 25px;
  margin:20px 20px 0 0;
}

.button-outlined:hover {
 
}

.button-outlined:after {
  content:"";
  width:21px;
  height:16px;
  background:url("../images/arrow-gold.svg") no-repeat;
  display:inline-block;
  margin-left:15px;
  position:relative;
  transition:all 0.2s ease;
}

.button-outlined:hover:after {
  margin-left:25px;
}


/* LAYOUT */

.container {
  width:1600px;
  position:relative;
  padding:120px 0;
  margin:0 auto;
}

.two-columns {
	display:grid;
  grid-template-columns:repeat(2, 1fr);
  column-gap:150px;
}

.centered {
  align-items:center;
}

.photo {
  width:100%;
}


/* NAV */

nav {
  width:100%;
  height:115px;
  background:#eef6ed;
}

nav .container {
  height:100%;
  padding:0;
}

#logo {
	width:400px;
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  margin-top:-5px;
}

nav .button {
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  right:0;
  margin:0;
}

header {
  height:700px;
  background:url("../images/header-photo.jpg") no-repeat center center / cover;
  display:flex;
  align-items:flex-end;
  position:relative;
}

header .container {
  padding:0 0 60px 0;
}

header h1,
header h4 {
  color:#fff;
}

#pinned-container {
  position: relative;
  z-index: 1;



}
    
#intro {
  background:#eef6ed;
  position:relative;
  z-index:2;
}

#intro .container {
  background:url("../images/intro-logo-icon.svg") no-repeat right 100px bottom / 550px 681px;
  padding-top:250px;
}

#intro .content {
  width:930px;
  margin:0 0 50px 0;
}

#intro h3 {
  font:300 45px/52px "AltMariaClara Medium", sans-serif;
  color:#587e51;
  margin:0 0 50px 0;
}

#intro p {
  font:300 35px/42px "AltMariaClara Regular", sans-serif;
  color:#587e51;
  margin:0 0 40px 0;
}

/*
#intro h3,
#intro p {
  opacity:0;
  transform:translateY(50px);
}*/

#what-we-do {
  background:#5c7e51;
  position:relative;
  z-index:1;
}

#what-we-do h4 {
  color:#bca271;
}

/*
#what-we-do h4,
#what-we-do h2,
#what-we-do p {
  opacity:0;
  transform:translateY(50px); 
}*/

#why-were-here {
  background:url("../images/why-were-different-background.jpg") no-repeat center center / cover;
}

#why-were-here .container {
  display:flex;
  justify-content:flex-end;
  transition: all 0.2s ease;
}

#why-were-here .content {
  width:950px;
  max-width:100%;
  max-height:585px;
  background:#392733;
  transition:width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change:width;
  position:relative;
  overflow:hidden;
  padding:60px 50px;
}

#why-were-here .content.expanded {
  width:100% !important;
}

#why-were-here .text-wrapper {
  position: relative;
  min-height:200px;
}

#why-were-here .text-block {
  width:100%;
}

#why-were-here .text-block.hidden {
  display:none;
}

.close-btn {
  position:absolute;
  top:20px;
  right:25px;
  background:none;
  border:none;
  color:#bca271;
  font-size:2rem;
  cursor:pointer;
  opacity:0;
  pointer-events:none;
  transition:opacity 0.3s ease, transform 0.2s ease;
  z-index:10;
  font-family:system-ui, sans-serif;
  line-height:1;
  padding:5px 10px;
}

.close-btn.visible {
  opacity:1;
  pointer-events:auto;
}

.close-btn:hover {
  color:#d4b87a;
}



#why-were-here h4 {
  color:#bca271;
}

#why-were-here .button {
  background:none;
  color:#bca271;
  border:2px solid #bca271;
  cursor:pointer;
}

#why-were-here .button:after {
  background:url("../images/arrow-gold.svg") no-repeat;
}

#blockStructure .two-columns {
  display:grid;
  grid-template-columns:450px 1fr;
}

#blockStructure h2 {
  font:300 80px/85px "AltMariaClara Light", sans-serif;
}

.timeline {
    position: relative;


    padding-left: 42px;
}

/* Vertical line */
.timeline::before {
    content: "";
    position: absolute;
    left:0;
    top:15px;
    bottom:-10px;
    width:2px;
    background: #c8aa67;
}

/* Arrow */
.timeline::after {
    content: "";
    position: absolute;
    left: -10px;
    bottom: -8px;
    width:20px;
    height:20px;
    border-left: 2px solid #c8aa67;
    border-bottom: 2px solid #c8aa67;
    transform: rotate(-45deg);
}

.item {
    position: relative;
    margin-bottom:20px;
}

.item h3 {
  font:300 30px/35px "AltMariaClara Regular", sans-serif;
  margin:0 0 15px 0;
}

/* Horizontal connector */
.item::before {
    content: "";
    position: absolute;
    left: -42px;
    top: 15px;
    width: 30px;
    height: 2px;
    background: #c8aa67;
}


/* Mobile */
@media (max-width: 768px) {
    .trust-structure {
        padding: 40px 24px 60px;
    }

    .timeline {
        padding-left: 32px;
    }

    .item::before {
        left: -32px;
        width: 22px;
    }

    .item h2 {
        font-size: 32px;
    }

    .item p {
        font-size: 16px;
    }
}












#leadership {
  background:#eef6ed;
}

#leadership p {
  color:#382933;
}

#how-it-works {
  background:#392733;
}

#how-it-works h4 {
  color:#bca271;
}

#how-it-works h3 {
  font:300 35px/40px "AltMariaClara Regular", sans-serif;
}

#contact-us {
  height:750px;
  background:#eef6ed url("../images/contact-us-background.svg") no-repeat center center / 1920px 750px;
}

#contact-us .container {
  height:100%;
  display:flex;
  justify-content:center;
  align-items:center;
}

#contact-us .content {
  width:750px;
  text-align:center;
}

#contact-us h3 {
  font:300 50px/55px "AltMariaClara Regular", sans-serif;
  color:#587e51;
}

#contact-us p {
  color:#392733;
  margin:0 0 30px 0;
}

footer {
  background:#587e51;
}

footer .container {
  padding-top:200px;
  padding-bottom:40px;
}

footer p a {
  color:#fff;
  text-decoration:None;
}

#logo-footer {
  width:100%;
  margin:0 0 30px 0;
}

#logo-footer-icon {
  width:90px;
  position:absolute;
  top:150px;
  right:0;
}

footer .two-columns .col:nth-child(2) {
  text-align:right;
}

footer .two-columns p,
footer .two-columns p a {
  font-size:16px;
  font-weight:500;
  text-decoration:none;
  color:#abc0aa;
}


