@font-face {
  font-family: 'Helvetica Neue';
  src: url('fonts/HelveticaNeue-Medium.eot?#iefix') format('embedded-opentype'),
    url('fonts/HelveticaNeue-Medium.woff2') format('woff2'),
    url('fonts/HelveticaNeue-Medium.woff') format('woff'),
    url('fonts/HelveticaNeue-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  display: swap;
}

:root {
  --green: #A0AF2880;
  --dark: #1E1E1E;
  --light: #fff;
  --footer-space: 132px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: var(--light);
  color: var(--dark);
  overflow-x: hidden;
}

/* ─────────────────────────────────────────
       PARALLAX FOOTER BACKGROUND (fixed)
       Group_40.png pinned behind everything,
       only visible once the main content ends.
    ───────────────────────────────────────── */
#parallax-bg {
  position: fixed;
  /*top: 0;*/
  bottom: 70px;
  left: 0;
  right: 0;
  height: calc(100vh - 70px);
  background: url('../images/logo-bg.jpg') center bottom / 100% no-repeat;
  z-index: 2;
  pointer-events: none;
}

/* All page content sits above the fixed bg */
#page-content {
  position: relative;
  z-index: 2;
  background: var(--light);
}

/* The spacer at the end lets the bg show through */
#footer-reveal {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  /*background: #A0AF28;*/
}

.sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px 28px;
  background: #000;
  color: rgba(160, 175, 40, 1);
  font-size: .78rem;
  line-height: 1.5;
}

.sticky-bar a {
  color: inherit;
  text-decoration: none;
}

.sticky-bar a:hover {
  text-decoration: underline;
}

/* ─────────────────────────────────────────
       NAV
    ───────────────────────────────────────── */
nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 22px 27px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: -.01em;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  opacity: .55;
  transition: opacity .2s;
}

.nav-links a:hover {
  opacity: 1;
}

/* ─────────────────────────────────────────
       BANNER
    ───────────────────────────────────────── */
#banner {
  background: var(--green);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 180px 40px 110px;
  overflow: hidden;
  text-align: center;
}

#banner .banner-img {
  max-width: 365px;
  mix-blend-mode: multiply;
}

.logo {
  max-width: 105px;
}

.banner-eyebrow {
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--dark);
  margin-bottom: 0;
  line-height: 0.8;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp .6s ease forwards .1s;
  letter-spacing: -3%;
}

.banner-headline {
  font-size: 128px;
  line-height: 1.17;
  color: var(--dark);
  letter-spacing: -4%;
}

.banner-headline .lw:not(:first-child) {
  margin-top: -0.22em;
}

.qt {
  display: block;
  padding-left: clamp(0.8rem, 0.38em, 1.6rem);
}

.lw {
  overflow: hidden;
  display: block;
}

.ln {
  display: block;
  opacity: 0;
  transform: translateY(105%);
}

.ln-1 {
  animation: lineUp .9s cubic-bezier(.16, 1, .3, 1) forwards .25s;
}

.ln-2 {
  animation: lineUp .9s cubic-bezier(.16, 1, .3, 1) forwards .42s;
}

.ln-3 {
  animation: lineUp .9s cubic-bezier(.16, 1, .3, 1) forwards .58s;
}

.banner-sketch {
  margin-top: 52px;
  opacity: 0;
  animation: fadeUp 1s ease forwards 1s;
  background-color: var(--green);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes lineUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─────────────────────────────────────────
       SHARED
    ───────────────────────────────────────── */
.divider {
  width: 100%;
  height: 1px;
  background: #000000;
}

.label {
  font-size: clamp(2rem, 2.5vw, 2.75rem);
  letter-spacing: -3%;
  color: #A0AF28;
  margin-bottom: 0;
  line-height: 1;
}

#vision .label {
  color: var(--dark);
}

/* ─────────────────────────────────────────
       INTRO  (4-line section)
    ───────────────────────────────────────── */
#intro {
  background: var(--light);
  padding-left: 27px;
  padding-right: 27px;
}

.intro-inner {
  padding-top: 21px;
  padding-bottom: clamp(16rem, 18vw, 24.5rem);
}

.intro-title {
  font-size: clamp(2rem, 2.5vw, 2.75rem);
  line-height: 1;
  letter-spacing: -3%;
  color: var(--dark);
}

.text-link {
  display: inline-block;
  font-size: 22px;
  color: var(--dark);
  text-decoration: none;
  padding-bottom: 1px;
  margin-top: 10px;
  transition: opacity .2s;
}

.text-link:hover {
  color: rgb(160 175 40);
}

.footer-link {
  display: flex;
  gap: 10px;
}

.footer-link a {
  text-decoration: underline;
  display: inline-block;
}

/* ─────────────────────────────────────────
       THE VISION
    ───────────────────────────────────────── */
#vision {
  background: var(--light);
  padding-bottom: 20.375rem;
  padding-right: 27px;
  padding-left: 27px;
}

.vision-label-row {
  padding: clamp(2rem, 2.5vw, 2.75rem);
}

.vision-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.vision-left {
  padding-right: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px;
}

.vision-left a:hover {
  color: #ed5001;
}

.vision-right {
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  min-height: 520px;
}

.quote-text {
  font-size: clamp(1.9rem, 5vw, 4.125rem);
  line-height: 1;
  color: var(--dark);
  margin-bottom: 1.5rem;
  position: relative;
  padding-left: clamp(0.8rem, 0.38em, 1.6rem);
  letter-spacing: -3%;
  display: inline-block;
}

.quote-char {
  font-size: clamp(2rem, 5vw, 4.125rem);
  position: absolute;
  top: -11px;
}

.quote-container {
  position: relative;
}


.quote-text::before {
  content: "“";
  font-size: clamp(2rem, 5vw, 4.125rem);
  top: 0;
  position: absolute;
  left: 0;
}

.quote-author.first {
  padding-left: 1px;
}

.quote-author {
  font-size: 22px;
  letter-spacing: -3%;
  margin-top: 14px;
  margin-bottom: 0;
  line-height: 1;
}

.quote-author.last {
  text-decoration: none;
  color: var(--dark);
}

/* ─────────────────────────────────────────
       BUILDING IMAGE SECTION
    ───────────────────────────────────────── */
#building {
  background: var(--light);
  padding: 0 27px;
  display: grid;
}

.building-img {
  width: 100%;
  grid-area: 1 / 1;
  display: block;
}

#building .building-img:first-child {
  animation: buildingFadePrimary 16s ease-in-out infinite;
}

#building .building-img:last-child {
  animation: buildingFadeSecondary 16s ease-in-out infinite;
}

@keyframes buildingFadePrimary {

  0%,
  40% {
    opacity: 1;
  }

  50%,
  90% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes buildingFadeSecondary {

  0%,
  40% {
    opacity: 0;
  }

  50%,
  90% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.building-caption {
  padding: 12px 40px;
  font-size: .62rem;
  color: rgba(0, 0, 0, .35);
  letter-spacing: .06em;
  text-align: right;
}

/* ─────────────────────────────────────────
       FORM
    ───────────────────────────────────────── */
#contact {
  background: var(--light);
  padding: 80px 40px 100px;
}

.email {
  margin-bottom: 25px;
  display: block;
  margin-top: 5px;
}

#contact .label,
#contact label {
  font-size: 22px;
  color: var(--dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: start;
  margin-top: 20px;
}

.contact-left {
  padding-right: 60px;
}

.contact-title {
  font-size: clamp(3rem, 6.5vw, 7rem);
  font-weight: 900;
  line-height: .88;
  letter-spacing: -.03em;
  color: var(--dark);
  margin-top: 16px;
}

.form-field {
  margin-bottom: 36px;
}

.form-field label {
  display: block;
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .15em;
  color: rgba(0, 0, 0, .42);
  margin-bottom: 8px;
}

.form-field input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, .2);
  padding: 10px 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: .95rem;
  color: var(--dark);
  outline: none;
  transition: border-color .25s;
}

.form-field input:focus {
  border-bottom-color: var(--dark);
}

.btn-send {
  background: var(--dark);
  color: #fff;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 700;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 16px 40px;
  border: none;
  cursor: pointer;
  transition: background .25s, color .25s;
  margin-top: 4px;
}

.btn-send:hover {
  background: var(--green);
  color: var(--dark);
}

/* ─────────────────────────────────────────
       SCROLL REVEAL
    ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1s ease, transform 1s ease;
  will-change: opacity, transform;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  :root {
    --footer-space: 148px;
  }

  #parallax-bg {
    height: calc(100svh - calc(100svh - 65%));
    background-size: 100% auto;
    background-position: center bottom;
  }

  /* #footer-reveal {
    min-height: 100svh;
  } */

  #intro,
  #vision,
  #building {
    padding-left: 24px;
    padding-right: 24px;
  }

  .intro-inner {
    padding-top: 18px;
    padding-bottom: clamp(8rem, 14vw, 12rem);
  }

  #vision {
    padding-bottom: 9rem;
  }

  .vision-cols {
    gap: 32px;
  }

  .vision-left {
    padding-right: 20px;
    min-height: 440px;
  }

  .portrait-img {
    min-height: 440px;
  }

  #building {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  #footer-reveal {
    min-height: 560px;
  }


  .mb {
    display: none;
  }

  .vision-left .label {
    margin-bottom: 100px;
  }

  .vision-left .quote-author.last {
    padding-top: 100px;
  }
}

@media (max-width: 768px) {
  #footer-reveal {
    min-height: 430px;
  }

  :root {
    --footer-space: 176px;
  }

  #parallax-bg {
    background-size: 100% auto;
    background-position: center bottom;
    height: calc(100svh - 62%);
    bottom: 60px;
  }

  .banner-headline {
    font-size: 4.5rem;
  }

  @supports (-webkit-touch-callout: none) {
    body {
      font-weight: 500;
    }
  }

  #banner {
    padding: 100px 24px 0;
  }

  #intro,
  #vision,
  #building {
    padding-left: 18px;
    padding-right: 18px;
  }

  .intro-inner {
    padding-top: 16px;
    padding-bottom: 72px;
  }

  .text-link {
    margin-top: 12px;
  }

  .sticky-bar {
    padding: 20px 24px 24px;
    gap: 10px 18px;
    font-size: .72rem;
    justify-content: flex-start;
  }

  .vision-cols {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .reveal.in-view {
    padding-bottom: 28px;
  }

  /*
  .quote-author.last {
    padding-top: 30px;
  }
*/
  .vision-left {
    border-right: none;
    min-height: auto;
    padding-right: 0;
    padding-bottom: 28px;
    padding-top: 28px;
    order: 2;
  }

  .vision-right {
    order: 1;
  }

  #vision {
    padding-bottom: 64px;
  }

  .portrait-img {
    min-height: 360px;
  }

  .quote-text {
    margin-bottom: 18px;
  }

  /*
  .contact-grid {
    grid-template-columns: 1fr;
  }
*/
  .contact-left {
    padding-right: 0;
    margin-bottom: 40px;
  }

  #contact {
    padding: 60px 24px 100px;
  }

  .nav-links {
    display: none;
  }

  #building {
    padding-top: 8px;
    padding-bottom: 16px;
  }

  .building-caption {
    padding: 10px 18px;
  }
}

@media (max-width: 460px) {
  #parallax-bg {
    height: calc(100svh - 77px);
  }

  #footer-reveal {
    min-height: 300px;
  }

  :root {
    --footer-space: 144px;
  }

  #contact .label,
  #contact label,
  .quote-author,
  .text-link {
    font-size: 1.2rem;
  }

  .quote-text {
    line-height: 1.1;
  }

  .intro-title,
  .label {
    font-size: 1.5rem;
    line-height: 1.1;
  }

  .sticky-bar {
    padding-left: 5px;
    padding-right: 5px;
  }

  .contact-left {
    margin-bottom: 0.5rem;
  }

  #contact {
    padding: 60px 24px 20px;
  }
}

@media (max-width: 375px) {
  :root {
    --footer-space: 160px;
  }

  #footer-reveal {
    min-height: 250px;
  }

  #parallax-bg {
    height: calc(100svh - 70px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .building-img {
    animation: none;
  }

  #building .building-img:last-child {
    opacity: 0;
  }
}