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

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure {
  margin: 0;
  padding: 0;
}

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

/* VARIABLES */
:root {
  --ivory: #F7F5EE;
  --gold: #C1A45D;
  --white: #FFFFFF;
  --serif: "Source Serif 4", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

/* GLOBAL */
html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--sans);
  background: #102F27;
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.5;
}

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

button {
  font: inherit;
}

/* HEADER */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 0 clamp(24px, 4.5vw, 72px);
}

.nav {
  height: 92px;
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, .24);
}

.brand img {
  display: block;
  width: 320px;
  max-height: 85px;
  object-fit: contain;
  object-position: left center;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  color: rgba(255, 255, 255, .86);
}

.nav-links a {
  padding: 12px 0;
  transition: opacity .2s ease;
}

.nav-links a:hover {
  opacity: .72;
}

.nav-contact {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: white;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .35);
  color: white;
  background: rgba(0, 0, 0, .08);
}

/* HERO */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #102F27;
}

.hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: -5;
  background:
    linear-gradient(135deg, #173d32 0%, #244e41 48%, #0c251f 100%);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: -4;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(90deg,
      rgba(7, 24, 20, .78) 0%,
      rgba(7, 24, 20, .60) 38%,
      rgba(7, 24, 20, .23) 68%,
      rgba(7, 24, 20, .12) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(5, 19, 15, .48) 0%,
      rgba(5, 19, 15, .05) 30%,
      rgba(5, 19, 15, .08) 68%,
      rgba(5, 19, 15, .52) 100%);
}

.hero-content {
  height: 100%;
  width: min(1280px, calc(100vw - 72px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  padding-top: 72px;
}

.hero-copy {
  width: min(890px, 72vw);
  padding-bottom: 2vh;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  font-size: 11px;
  line-height: 1.3;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .17em;
  color: rgba(255, 255, 255, .88);
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

h1 {
  margin: 0;
  max-width: 980px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(54px, 6.2vw, 100px);
  line-height: .96;
  font-weight: 400;
  letter-spacing: -.035em;
  text-wrap: balance;
}

.hero-subtitle {
  max-width: 675px;
  margin-top: 28px;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.7;
  color: rgba(255, 255, 255, .82);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 28px;
  margin-top: 34px;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  background: var(--gold);
  color: #183D32;
  font-size: 13px;
  font-weight: 600;
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: white;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, .48);
  font-size: 13px;
  font-weight: 600;
}

.bottom-meta {
  position: absolute;
  left: clamp(24px, 4.5vw, 72px);
  right: clamp(24px, 4.5vw, 72px);
  bottom: 28px;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  color: rgba(255, 255, 255, .66);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .15em;
}

.scroll-mark {
  display: flex;
  align-items: center;
  gap: 10px;
}

.scroll-mark::before {
  content: "";
  width: 36px;
  height: 1px;
  background: rgba(255, 255, 255, .55);
}

.video-note {
  max-width: 340px;
  text-align: right;
  line-height: 1.5;
}

/* SECTIONS */

/* FOOTER */

/* UTILITIES */

/* RESPONSIVE */
@media (max-width: 860px) {
  .header {
    padding-inline: 20px;
  }

  .nav {
    position: relative;
    height: 76px;
    grid-template-columns: 1fr auto;
  }

  .brand img {
    width: 217px;
    max-height: 61px;
  }

  .nav-links,
  .nav-contact {
    display: none;
  }

  .nav.is-open .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 18px 0;
    background: rgba(16, 47, 39, .98);
    border-bottom: 1px solid rgba(255, 255, 255, .24);
    z-index: 20;
  }

  .nav.is-open .nav-links a {
    padding: 10px 0;
  }

  .nav.is-open .nav-contact {
    position: absolute;
    top: calc(100% + 18px);
    right: 0;
    display: inline-flex;
    z-index: 21;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    width: 100%;
    height: 100svh;
    min-height: 100svh;
  }

  @supports (height: 100dvh) {
    .hero {
      height: 100dvh;
      min-height: 100dvh;
    }
  }

  .hero-content {
    width: calc(100% - 40px);
    height: 100%;
    margin-inline: auto;
    display: flex;
    align-items: center;
    padding-top: 88px;
    padding-bottom: 28px;
  }

  .hero-copy {
    width: 100%;
    padding-bottom: 0;
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 10px;
    line-height: 1.35;
    letter-spacing: .13em;
    flex-wrap: wrap;
  }

  h1 {
    font-size: clamp(42px, 11vw, 58px);
    line-height: .98;
    max-width: 100%;
  }

  .hero-subtitle {
    max-width: 100%;
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 22px;
    gap: 14px;
  }

  .bottom-meta {
    display: none;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    display: grid;
    justify-items: start;
  }

  .primary-link {
    width: auto;
    min-height: 36px;
    background: var(--gold);
    justify-content: flex-start;
    padding: 0 18px;
  }
}

@media (max-width: 520px) and (max-height: 680px) {
  .hero-content {
    padding-top: 80px;
    padding-bottom: 20px;
  }

  .eyebrow {
    margin-bottom: 12px;
  }

  h1 {
    font-size: clamp(38px, 9.8vw, 52px);
  }

  .hero-subtitle {
    line-height: 1.42;
  }

  .hero-actions {
    margin-top: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }
}
