html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
  margin: auto;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

body {
  max-width: 1500px;
  background-color: #0a1628;
}

/* NavBar */
.navbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 80%;
  margin: 0 auto;
  padding: 10px;
  position: relative;
  padding: 1rem 0;
}

.brand {
  font-size: 2em;
  color: #e8943a;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger .bar {
  width: 100%;
  height: 2px;
  background: #e8943a;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.hamburger[aria-expanded='true'] .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger[aria-expanded='true'] .bar:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded='true'] .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu ul {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu ul li a {
  text-decoration: none;
  color: #c4a882;
  font-size: 1.4em;
  font-weight: bolder;
}

.menu ul li a.active {
  color: #f5f2ec;
}

/* Hero */
.hero {
  width: 80%;
  padding: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: auto;
  /* border-bottom: 1px #c4a882 solid; */
}

.header {
  grid-column: 1 / 2;
  grid-row: 1;
  font-size: 2em;
  text-transform: uppercase;
  font-weight: 900;
}
.hero-title {
  grid-column: 1;
  grid-row: 2 / 3;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 4.5em;
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: #f5f2ec;
  text-transform: uppercase;
}

.hero-title .accent {
  color: #e8943a;
  display: block;
}

.textBox {
  grid-column: 1;
  grid-row: 3 / 4;
  font-size: 1.2em;
  color: #c4a882;
  width: 70%;
  margin-bottom: 10px;
}

.links {
  grid-column: 1 / 3;
  grid-row: 4 / 5;
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  padding-bottom: 10px;
}

.btn:hover {
  font-size: 1.1em;
}

.video {
  grid-column: 2;
  grid-row: 1/5;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: none;
  display: block;
}

/* journey section */
.section {
  padding: 10px;
  width: 80%;
  margin: auto;
}

.section-eyebrow {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e8943a;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 44px;
  font-weight: 900;
  color: #f5f2ec;
  margin-bottom: 3rem;
  line-height: 1;
}

.timeline {
  position: relative;
  padding-left: 2.5rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(245, 242, 236, 0.15);
}

.timeline-phase {
  position: relative;
  margin-bottom: 2.5rem;
}

.phase-dot {
  position: absolute;
  left: -2.5rem;
  top: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #e8943a;
  background: #0a1628;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phase-dot.active {
  background: #e8943a;
}

.phase-dot-inner {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e8943a;
}

.phase-dot.active .phase-dot-inner {
  background: #0a1628;
}

.phase-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #e8943a;
  margin-bottom: 4px;
}

.phase-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #f5f2ec;
  margin-bottom: 4px;
}

.phase-desc {
  font-size: 14px;
  color: rgba(245, 242, 236, 0.55);
  line-height: 1.6;
}

.phase-upcoming {
  opacity: 0.4;
}

/* email */
.email {
  /* border-bottom: 1px #c4a882 solid; */
  max-width: 80%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px;
}

.message {
  font-size: 1.3em;
  color: #767d8a;
  padding: 10px;
}

.input {
  padding: 40px;
}

.input input {
  background: none;
  border: none;
  font-size: 1.1em;
}

/* footer */
.footer {
  width: 81%;
  margin: auto;
}

.menu a {
  text-transform: uppercase;
  padding: 20px 0px;
}

.footer-menu ul {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.footer-menu ul li a {
  text-decoration: none;
  color: #c4a882;
  text-transform: uppercase;
}

/* about */
.box {
  color: white;
  display: flex;
}
.box img {
  max-width: 40%;
  margin: 20px;
  box-shadow: 4px 4px 14px #f5f2ec;
}

.box-text {
  margin: auto;
  text-align: center;
}
/* video page */

.section-video {
  margin: auto;
}

.youtube.yvideo {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 80%;
  margin: 2rem auto;
}

.latestVideoEmbed {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  background: rgba(245, 242, 236, 0.04);
}

.vidtitle {
  width: 80%;
  margin: 2rem auto 0;
}

.vidtitle h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #f5f2ec;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.button {
  display: flex;
  justify-content: center;
  margin: 3rem 0;
}

.button-56 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: #e8943a;
  color: #0a1628;
  padding: 14px 32px;
  border: none;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}

.button-56:hover {
  background: #c4a882;
}

.foot-video {
  border-top: 1px #c4a882 solid;
}

:root {
  --hairline: 1px solid #c4a882;
}

.navbar,
.hero,
.section,
.email {
  border-bottom: var(--hairline);
}

@media screen and (max-width: 767px) {
  .hamburger {
    display: flex;
  }

  .foot {
    max-height: fit-content;
  }
  .menu {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    order: 3;
  }

  .menu.open {
    max-height: 300px;
  }

  .menu ul {
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
  }

  .menu ul li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(196, 168, 130, 0.2);
  }

  /* Hero */
  .hero {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .hero-title {
    font-size: 3em;
  }

  .textBox {
    text-align: center;
    margin: auto;
  }

  .video iframe {
    width: 95%;
    height: auto;
  }

  .links {
    width: 100%;
  }

  .input {
    display: flex;
    flex-direction: column;
  }

  .footer {
    margin: auto;
    width: 100%;
    text-align: center;
  }

  .footer-menu ul {
    margin: auto;
    text-align: center;
  }
}

@media screen and (max-width: 1024px) {
  .youtube.yvideo {
    display: flex;
    flex-direction: column;
  }
  .youtube iframe {
    width: 90%;
    height: auto;
  }

  .box {
    flex-direction: column;
    width: 100%;
  }
  .box img {
    max-width: 100%;
  }

  .button-56 {
    font-size: 10px;
  }
}
