@import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:ital,wght@0,400..900;1,400..900&display=swap');

@font-face {
  font-family: 'Open Sauce Sans';
  src: url('assets/font/OpenSauceSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Body Grotesque Fit';
  src: url('assets/font/Body-Grotesque-Bold-trial.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #1f2a44;
  --green: #8fa89b;
  --gold: #c6a75e;
  --lavender: #aeb2cd;
  --white: #ffffff;
  --grey-light: #e8eaed;
  --grey-mid: #9ca3af;
  --footer-bg: #ced7d1;
  --footer-text: #1F2A44;
  --font: 'Open Sauce Sans', system-ui, -apple-system, sans-serif;
  --font-heading: "Schibsted Grotesk", sans-serif;
  --container: min(1120px, 92vw);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--grey-light);
  background: var(--navy);
}

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

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ----- Hero ----- */
.hero {
  position: relative;
  padding: 110px 0 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-color: var(--navy); */
  background-image: url('assets/img/hero.jpeg');
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgb(160, 165, 184, 0.7);
  /* backdrop-filter: blur(2px); */
}

.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;

}

.hero-brand {
  margin: 0 0 12px;
  font-family: var(--font-heading);

  font-size: 28px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--footer-text);
}

.hero-title {
  margin: 0 0 45px 0;
  font-family: var(--font-heading);

  font-size: 110px;
  font-weight: 500;
  line-height: 1.05;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  /* gap: 0.25em; */
}

.hero-logo img {
  width: 15%;
  margin: auto;
}



.hero-logo-moderari {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
}

.hero-logo-studio {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--grey-light);
}

/* ----- Section label ----- */
.section-label {

  margin: 0 0 7px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #A0A5C0;
}

.section-label-right {
  text-align: right;
}

/* ----- About ----- */
.about {
  padding: 100px 0 80px 0;
  background: var(--navy);

  display: flex;
}

.about .container {
  text-align: center;
  margin: auto;
}

.about-lead {
  margin: 0 0 26px;
  font-size: 28px;
  color: var(--lavender);
  font-family: var(--font-heading);
}

.about-highlight {
  margin: 0 0 26px;
  font-size: 28PX;
  font-family: var(--font-heading);
  color: var(--gold);
}

.about-body {
  margin: 0 auto 28px;
}

.about-body p {
  margin: 0 0 26px;
  font-size: 28px;
  font-family: var(--font-heading);
  color: var(--lavender);
}

.t-green {
  color: var(--green);
}

.about-body p:last-child {
  margin-bottom: 0;
}

.about-tagline {
  margin: 0 0 26px;
  font-size: 28px;
  font-family: var(--font-heading);
  color: var(--lavender);
}

.btn {
  display: inline-block;
  padding: 18px 40px;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn:hover {
  opacity: 0.9;
}

.btn-primary {
  background: var(--green);
  color: #27334A;
}

/* ----- Why We Exist ----- */
.why {
  position: relative;
  padding: 200px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background-color: var(--navy);
  background-image: url('assets/img/whyWeExist.jpeg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.why-overlay {
  position: absolute;
  inset: 0;
  background: rgb(31, 42, 68, 0.7);

}

.why-inner {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin: auto 0 auto auto;
  padding-right: 120px;
}

.text-center {
  text-align: center;
}

.why-content {

  text-align: center;
}

.why-content p {
  margin: 0 0 26px;
  font-size: 25px;
  line-height: 1.35;
  font-family: var(--font-heading);
  color: var(--lavender);
}

.why-content p:last-child {
  margin-bottom: 0;
}

.why-highlight {
  color: var(--green);
  font-family: var(--font-heading);
}

/* ----- Our Work ----- */
.work {
  background: var(--navy);
  padding: 100px 0 80px 0;
  display: flex;
}

.work div.container {
  width: 93%;
  max-width: unset;
}

.work .section-label {
  text-align: center;
}

.work-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 37px;
  margin-top: 32px;
}

.work-card {
  border: 3px solid var(--lavender);
  background: var(--navy);
}

.card-1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.9rem 1.7rem 0 1.7rem;
  height: 240px;
}

.card-2 {
  padding: 1.7rem;
  border-top: 3px solid var(--lavender);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin: auto;
  height: calc(100% - 240px);
}

.work-card-title {
  margin: 0;
  font-family: var(--font-heading);
  letter-spacing: -2px;
  font-size: 42px;
  font-weight: 500;
  color: var(--gold);
  line-height: 0.9;
}

.work-card-link {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 16px;
  color: var(--gold);
  font-family: var(--font-heading);
  text-decoration: underline;
}

.work-card-badge {
  position: relative;
  top: -1rem;
  display: inline-block;
  font-style: italic;
  font-size: 26px;
  color: var(--gold);
  font-family: var(--font-heading);
}

.work-card p {
  margin: 0 0 25px;
  font-size: 20px;
  color: var(--gold);
  font-family: var(--font-heading);
  line-height: 1.2;
}

.work-card p:last-child {
  margin-bottom: 0;
}

/* ----- Footer ----- */

div.footer-inner {
  background-image: url(./assets/img/approach.jpeg);
  padding: 100px 60px 60px 60px;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  background-position: center;
  background-size: cover;
  position: relative;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(165, 182, 169, 0.8);
  z-index: 0;
}

.footer-logo {
  position: relative;
  z-index: 1;
}

.footer-logo img {
  width: 220px;
}

.footer-right {
  position: relative;
  z-index: 1;
  width: fit-content;
  text-align: center;
}

.footer-right p.footer-heading,
.footer-heading {
  margin: 0 0 5px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  color: var(--footer-text);
}

.footer-right p {
  margin: 0 0 24px;
  font-size: 24px;
  color: var(--footer-text);
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.4;
}

.footer-right p span {
  font-weight: 700;
}

.footer-email {
  text-decoration: underline;
  font-size: 24px;
  color: var(--footer-text);
  font-family: var(--font-heading);
  font-weight: 600;

}



.footer-statement {
  margin: 0 0 4px;
  font-size: 1rem;
}

.footer-right p.footer-statement-bold {
  font-weight: 700;
}



.footer-2 {
  background-color: #8FA89B;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 60px 80px 100px 80px;
}

.footer-2 .footer-heading {
  margin-bottom: 20px;
}

/* ----- Responsive ----- */
@media (max-width: 992px) {
  .hero-title {
    font-size: 60px;
    
  }

  .hero-logo img {
    width: 220px;

  }

  div.footer-inner {
    padding: 80px 20px;
    flex-direction: column-reverse;
    align-items: center;
    gap: 3rem;
  }

  .work-cards {
    grid-template-columns: 1fr;
  }

  .work-card {
    max-width: 500px;
    margin: auto;
  }


}

@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
  }

  .hero-inner {
    padding: 60px 20px 80px;
  }

  .hero-title {
    font-size: 45px;
    margin-bottom: 20px;
  }



  .about,
  .work {
    padding: 60px 0 80px;
  }

  .about-body p,
  .about-tagline,
  .about-lead {
    margin: 0 0 15px;
    font-size: 24px;

  }

  .about-tagline {
    margin-bottom: 30px;
  }

  .why {
    padding: 80px 0;
    background-position: left top;
    background-size: cover;
    justify-content: center;
  }

  .why-content p {
    margin: 0 0 15px;
    font-size: 24px;

  }

  .why-inner {
    margin: 0;
  }

  .section-label-right {
    text-align: left;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%;
  }

  .work div.container {
    width: 100%;
    max-width: unset;
  }

  .footer-right p {
    margin: 0 0 15px;
    font-size: 24px;
  }

  .footer-2 {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
    padding: 60px 0;
  }

  .footer-2 .footer-heading {
    margin-bottom: 10px;
  }
}

@media (max-width: 580px) {
  .hero-inner {
    padding: 50px 10px;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-brand {

    font-size: 20px;

  }

}

@media (max-width: 420px) {
  .hero-title {
    font-size: 30px;
  }

}